ETH Price: $2,686.38 (-1.75%)

Token

Pixel Elements (ELEMENTS)
 

Overview

Max Total Supply

300 ELEMENTS

Holders

165

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
westwood.eth
Balance
4 ELEMENTS
0x8df937Afdf1d08C2bA565d636ca1365a42144385
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
elements

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-10-14
*/

// 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.
  0x8D58e44836aE63Af9b5B01a75D1D1Cc2Ed8    * - `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 elements is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Address for address;
    using Strings for uint256;

    uint256 public MAX_SUPPLY = 300;
    bool public saleIsActive = false;
    
    //code to reference Pixel Runes
    ERC721 planets = ERC721(0xB228077BCE558dd6844032c29630f13818C4C4Dc);
    

    uint256 public startingIndex;
    uint256 public startingIndexBlock;

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

    constructor() ERC721("Pixel Elements","ELEMENTS"){
    }


    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(uint256 tokenId) public {
        require(planets.ownerOf(tokenId) == msg.sender, "Not Owner Of this planet");
        require(saleIsActive, "Sale is not active at the moment");
        require((totalSupply() + 1) <= MAX_SUPPLY, "Purchase would exceed max supply");

        
        //burn planet
        address burner = planets.ownerOf(tokenId);
        planets.transferFrom(burner, address(0x000000000000000000000000000000000000dEaD), tokenId);
 
        
        if ((totalSupply() + 1) <= MAX_SUPPLY) {
            _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 setPlanetContract(address address_) external onlyOwner {
        planets = ERC721(address_);
    }

    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_SUPPLY","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"address_","type":"address"}],"name":"setPlanetContract","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"}]

608060405261012c600b55600c80546001600160a81b03191674b228077bce558dd6844032c29630f13818c4c4dc001790553480156200003e57600080fd5b50604080518082018252600e81526d506978656c20456c656d656e747360901b602080830191825283518085019094526008845267454c454d454e545360c01b908401528151919291620000959160009162000118565b508051620000ab90600190602084019062000118565b5050506000620000c06200011460201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001fb565b3390565b8280546200012690620001be565b90600052602060002090601f0160209004810192826200014a576000855562000195565b82601f106200016557805160ff191683800117855562000195565b8280016001018555821562000195579182015b828111156200019557825182559160200191906001019062000178565b50620001a3929150620001a7565b5090565b5b80821115620001a35760008155600101620001a8565b600181811c90821680620001d357607f821691505b60208210811415620001f557634e487b7160e01b600052602260045260246000fd5b50919050565b61238b806200020b6000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80637d17fcbe1161010f578063cb774d47116100a2578063e36d649811610071578063e36d6498146103e1578063e985e9c5146103ea578063eb8d244414610426578063f2fde38b1461043357600080fd5b8063cb774d47146103aa578063cba68a9b146103b3578063d031370b146103c6578063e13f351a146103d957600080fd5b8063a22cb465116100de578063a22cb4651461035e578063b07ed98214610371578063b88d4fde14610384578063c87b56dd1461039757600080fd5b80637d17fcbe1461032a5780638da5cb5b1461033257806395d89b4114610343578063a0712d681461034b57600080fd5b806334918dfd1161018757806355f804b31161015657806355f804b3146102e95780636352211e146102fc57806370a082311461030f578063715018a61461032257600080fd5b806334918dfd146102b35780633ccfd60b146102bb57806342842e0e146102c35780634f6ccce7146102d657600080fd5b806318160ddd116101c357806318160ddd1461027257806323b872dd146102845780632f745c591461029757806332cb6b0c146102aa57600080fd5b806301ffc9a7146101f557806306fdde031461021d578063081812fc14610232578063095ea7b31461025d575b600080fd5b610208610203366004611fc1565b610446565b60405190151581526020015b60405180910390f35b610225610471565b60405161021491906120f5565b610245610240366004612044565b610503565b6040516001600160a01b039091168152602001610214565b61027061026b366004611f95565b61059d565b005b6008545b604051908152602001610214565b610270610292366004611ea1565b6106b3565b6102766102a5366004611f95565b6106e4565b610276600b5481565b61027061077a565b6102706107b8565b6102706102d1366004611ea1565b610815565b6102766102e4366004612044565b610830565b6102706102f7366004611ffb565b6108c3565b61024561030a366004612044565b610900565b61027661031d366004611e2e565b610977565b6102706109fe565b610270610a72565b600a546001600160a01b0316610245565b610225610af2565b610270610359366004612044565b610b01565b61027061036c366004611f62565b610db0565b61027061037f366004612044565b610e75565b610270610392366004611ee2565b610ea4565b6102256103a5366004612044565b610edc565b610276600d5481565b6102706103c1366004611e2e565b61105e565b6102706103d4366004612044565b6110b0565b610270611122565b610276600e5481565b6102086103f8366004611e68565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600c546102089060ff1681565b610270610441366004611e2e565b611266565b60006001600160e01b0319821663780e9d6360e01b148061046b575061046b82611351565b92915050565b6060600080546104809061224f565b80601f01602080910402602001604051908101604052809291908181526020018280546104ac9061224f565b80156104f95780601f106104ce576101008083540402835291602001916104f9565b820191906000526020600020905b8154815290600101906020018083116104dc57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105815760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105a882610900565b9050806001600160a01b0316836001600160a01b031614156106165760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610578565b336001600160a01b0382161480610632575061063281336103f8565b6106a45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610578565b6106ae83836113a1565b505050565b6106bd338261140f565b6106d95760405162461bcd60e51b81526004016105789061218f565b6106ae838383611506565b60006106ef83610977565b82106107515760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610578565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146107a45760405162461bcd60e51b81526004016105789061215a565b600c805460ff19811660ff90911615179055565b600a546001600160a01b031633146107e25760405162461bcd60e51b81526004016105789061215a565b6040514790339082156108fc029083906000818181858888f19350505050158015610811573d6000803e3d6000fd5b5050565b6106ae83838360405180602001604052806000815250610ea4565b600061083b60085490565b821061089e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610578565b600882815481106108b1576108b16122fb565b90600052602060002001549050919050565b600a546001600160a01b031633146108ed5760405162461bcd60e51b81526004016105789061215a565b805161081190600f906020840190611d1f565b6000818152600260205260408120546001600160a01b03168061046b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610578565b60006001600160a01b0382166109e25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610578565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610a285760405162461bcd60e51b81526004016105789061215a565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b03163314610a9c5760405162461bcd60e51b81526004016105789061215a565b600d5415610aec5760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610578565b43600e55565b6060600180546104809061224f565b600c546040516331a9108f60e11b815260048101839052339161010090046001600160a01b031690636352211e9060240160206040518083038186803b158015610b4a57600080fd5b505afa158015610b5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b829190611e4b565b6001600160a01b031614610bd85760405162461bcd60e51b815260206004820152601860248201527f4e6f74204f776e6572204f66207468697320706c616e657400000000000000006044820152606401610578565b600c5460ff16610c2a5760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746044820152606401610578565b600b54600854610c3b9060016121e0565b1115610c895760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610578565b600c546040516331a9108f60e11b81526004810183905260009161010090046001600160a01b031690636352211e9060240160206040518083038186803b158015610cd357600080fd5b505afa158015610ce7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0b9190611e4b565b600c546040516323b872dd60e01b81526001600160a01b03808416600483015261dead602483015260448201869052929350610100909104909116906323b872dd90606401600060405180830381600087803b158015610d6a57600080fd5b505af1158015610d7e573d6000803e3d6000fd5b50505050600b54610d8e60085490565b610d999060016121e0565b116108115761081133610dab60085490565b6116b3565b6001600160a01b038216331415610e095760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610578565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314610e9f5760405162461bcd60e51b81526004016105789061215a565b600b55565b610eae338361140f565b610eca5760405162461bcd60e51b81526004016105789061218f565b610ed6848484846116cd565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f5b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610578565b60008281526010602052604081208054610f749061224f565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa09061224f565b8015610fed5780601f10610fc257610100808354040283529160200191610fed565b820191906000526020600020905b815481529060010190602001808311610fd057829003601f168201915b505050505090506000610ffe611700565b9050805160001415611011575092915050565b81511561104357808260405160200161102b929190612089565b60405160208183030381529060405292505050919050565b8061104d8561170f565b60405160200161102b929190612089565b600a546001600160a01b031633146110885760405162461bcd60e51b81526004016105789061215a565b600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600a546001600160a01b031633146110da5760405162461bcd60e51b81526004016105789061215a565b60006110e560085490565b905060005b828110156111125761110033610dab83856121e0565b8061110a8161228a565b9150506110ea565b600e546106ae5743600e55505050565b600a546001600160a01b0316331461114c5760405162461bcd60e51b81526004016105789061215a565b600d54156111a85760405162461bcd60e51b815260206004820152602360248201527f5374617274696e6720696e6465782068617320616c7265616479206265656e206044820152621cd95d60ea1b6064820152608401610578565b600e546112035760405162461bcd60e51b815260206004820152602360248201527f5374617274696e6720696e64657820686173206e6f74206265656e20736574206044820152621e595d60ea1b6064820152608401610578565b600b54600e546112149190406122a5565b600d55600e5460ff9061122890439061180d565b111561124b57600b5461123c60014361220c565b6112479190406122a5565b600d555b600d5461126457600d54611260906001611820565b600d555b565b600a546001600160a01b031633146112905760405162461bcd60e51b81526004016105789061215a565b6001600160a01b0381166112f55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610578565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061138257506001600160e01b03198216635b5e139f60e01b145b8061046b57506301ffc9a760e01b6001600160e01b031983161461046b565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113d682610900565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114885760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610578565b600061149383610900565b9050806001600160a01b0316846001600160a01b031614806114ce5750836001600160a01b03166114c384610503565b6001600160a01b0316145b806114fe57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661151982610900565b6001600160a01b0316146115815760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610578565b6001600160a01b0382166115e35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610578565b6115f0838383600161182c565b6115fb6000826113a1565b6001600160a01b038316600090815260036020526040812080546001929061162490849061220c565b90915550506001600160a01b03821660009081526003602052604081208054600192906116529084906121e0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6108118282604051806020016040528060008152506118ff565b6116d8848484611506565b6116e484848484611932565b610ed65760405162461bcd60e51b815260040161057890612108565b6060600f80546104809061224f565b6060816117335750506040805180820190915260018152600360fc1b602082015290565b8160005b811561175d57806117478161228a565b91506117569050600a836121f8565b9150611737565b60008167ffffffffffffffff81111561177857611778612311565b6040519080825280601f01601f1916602001820160405280156117a2576020820181803683370190505b5090505b84156114fe576117b760018361220c565b91506117c4600a866122a5565b6117cf9060306121e0565b60f81b8183815181106117e4576117e46122fb565b60200101906001600160f81b031916908160001a905350611806600a866121f8565b94506117a6565b6000611819828461220c565b9392505050565b600061181982846121e0565b6001600160a01b0384166118875761188282600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6118aa565b826001600160a01b0316846001600160a01b0316146118aa576118aa8483611a3f565b6001600160a01b0383161580156118be5750805b156118d1576118cc82611adc565b610ed6565b836001600160a01b0316836001600160a01b0316141580156118f05750805b15610ed657610ed68383611b8b565b6119098383611bcf565b6119166000848484611932565b6106ae5760405162461bcd60e51b815260040161057890612108565b60006001600160a01b0384163b15611a3457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119769033908990889088906004016120b8565b602060405180830381600087803b15801561199057600080fd5b505af19250505080156119c0575060408051601f3d908101601f191682019092526119bd91810190611fde565b60015b611a1a573d8080156119ee576040519150601f19603f3d011682016040523d82523d6000602084013e6119f3565b606091505b508051611a125760405162461bcd60e51b815260040161057890612108565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114fe565b506001949350505050565b60006001611a4c84610977565b611a56919061220c565b600083815260076020526040902054909150808214611aa9576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611aee9060019061220c565b60008381526009602052604081205460088054939450909284908110611b1657611b166122fb565b906000526020600020015490508060088381548110611b3757611b376122fb565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b6f57611b6f6122e5565b6001900381819060005260206000200160009055905550505050565b6000611b9683610977565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c255760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610578565b6000818152600260205260409020546001600160a01b031615611c8a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610578565b611c9860008383600161182c565b6001600160a01b0382166000908152600360205260408120805460019290611cc19084906121e0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d2b9061224f565b90600052602060002090601f016020900481019282611d4d5760008555611d93565b82601f10611d6657805160ff1916838001178555611d93565b82800160010185558215611d93579182015b82811115611d93578251825591602001919060010190611d78565b50611d9f929150611da3565b5090565b5b80821115611d9f5760008155600101611da4565b600067ffffffffffffffff80841115611dd357611dd3612311565b604051601f8501601f19908116603f01168101908282118183101715611dfb57611dfb612311565b81604052809350858152868686011115611e1457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e4057600080fd5b813561181981612327565b600060208284031215611e5d57600080fd5b815161181981612327565b60008060408385031215611e7b57600080fd5b8235611e8681612327565b91506020830135611e9681612327565b809150509250929050565b600080600060608486031215611eb657600080fd5b8335611ec181612327565b92506020840135611ed181612327565b929592945050506040919091013590565b60008060008060808587031215611ef857600080fd5b8435611f0381612327565b93506020850135611f1381612327565b925060408501359150606085013567ffffffffffffffff811115611f3657600080fd5b8501601f81018713611f4757600080fd5b611f5687823560208401611db8565b91505092959194509250565b60008060408385031215611f7557600080fd5b8235611f8081612327565b915060208301358015158114611e9657600080fd5b60008060408385031215611fa857600080fd5b8235611fb381612327565b946020939093013593505050565b600060208284031215611fd357600080fd5b81356118198161233f565b600060208284031215611ff057600080fd5b81516118198161233f565b60006020828403121561200d57600080fd5b813567ffffffffffffffff81111561202457600080fd5b8201601f8101841361203557600080fd5b6114fe84823560208401611db8565b60006020828403121561205657600080fd5b5035919050565b60008151808452612075816020860160208601612223565b601f01601f19169290920160200192915050565b6000835161209b818460208801612223565b8351908301906120af818360208801612223565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120eb9083018461205d565b9695505050505050565b602081526000611819602083018461205d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156121f3576121f36122b9565b500190565b600082612207576122076122cf565b500490565b60008282101561221e5761221e6122b9565b500390565b60005b8381101561223e578181015183820152602001612226565b83811115610ed65750506000910152565b600181811c9082168061226357607f821691505b6020821081141561228457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561229e5761229e6122b9565b5060010190565b6000826122b4576122b46122cf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461233c57600080fd5b50565b6001600160e01b03198116811461233c57600080fdfea26469706673582212201333ac41b6c5d5a6d73c59165a731602d7b6296883e60c05fe6aac23b3f03ff964736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c80637d17fcbe1161010f578063cb774d47116100a2578063e36d649811610071578063e36d6498146103e1578063e985e9c5146103ea578063eb8d244414610426578063f2fde38b1461043357600080fd5b8063cb774d47146103aa578063cba68a9b146103b3578063d031370b146103c6578063e13f351a146103d957600080fd5b8063a22cb465116100de578063a22cb4651461035e578063b07ed98214610371578063b88d4fde14610384578063c87b56dd1461039757600080fd5b80637d17fcbe1461032a5780638da5cb5b1461033257806395d89b4114610343578063a0712d681461034b57600080fd5b806334918dfd1161018757806355f804b31161015657806355f804b3146102e95780636352211e146102fc57806370a082311461030f578063715018a61461032257600080fd5b806334918dfd146102b35780633ccfd60b146102bb57806342842e0e146102c35780634f6ccce7146102d657600080fd5b806318160ddd116101c357806318160ddd1461027257806323b872dd146102845780632f745c591461029757806332cb6b0c146102aa57600080fd5b806301ffc9a7146101f557806306fdde031461021d578063081812fc14610232578063095ea7b31461025d575b600080fd5b610208610203366004611fc1565b610446565b60405190151581526020015b60405180910390f35b610225610471565b60405161021491906120f5565b610245610240366004612044565b610503565b6040516001600160a01b039091168152602001610214565b61027061026b366004611f95565b61059d565b005b6008545b604051908152602001610214565b610270610292366004611ea1565b6106b3565b6102766102a5366004611f95565b6106e4565b610276600b5481565b61027061077a565b6102706107b8565b6102706102d1366004611ea1565b610815565b6102766102e4366004612044565b610830565b6102706102f7366004611ffb565b6108c3565b61024561030a366004612044565b610900565b61027661031d366004611e2e565b610977565b6102706109fe565b610270610a72565b600a546001600160a01b0316610245565b610225610af2565b610270610359366004612044565b610b01565b61027061036c366004611f62565b610db0565b61027061037f366004612044565b610e75565b610270610392366004611ee2565b610ea4565b6102256103a5366004612044565b610edc565b610276600d5481565b6102706103c1366004611e2e565b61105e565b6102706103d4366004612044565b6110b0565b610270611122565b610276600e5481565b6102086103f8366004611e68565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600c546102089060ff1681565b610270610441366004611e2e565b611266565b60006001600160e01b0319821663780e9d6360e01b148061046b575061046b82611351565b92915050565b6060600080546104809061224f565b80601f01602080910402602001604051908101604052809291908181526020018280546104ac9061224f565b80156104f95780601f106104ce576101008083540402835291602001916104f9565b820191906000526020600020905b8154815290600101906020018083116104dc57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105815760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105a882610900565b9050806001600160a01b0316836001600160a01b031614156106165760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610578565b336001600160a01b0382161480610632575061063281336103f8565b6106a45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610578565b6106ae83836113a1565b505050565b6106bd338261140f565b6106d95760405162461bcd60e51b81526004016105789061218f565b6106ae838383611506565b60006106ef83610977565b82106107515760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610578565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146107a45760405162461bcd60e51b81526004016105789061215a565b600c805460ff19811660ff90911615179055565b600a546001600160a01b031633146107e25760405162461bcd60e51b81526004016105789061215a565b6040514790339082156108fc029083906000818181858888f19350505050158015610811573d6000803e3d6000fd5b5050565b6106ae83838360405180602001604052806000815250610ea4565b600061083b60085490565b821061089e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610578565b600882815481106108b1576108b16122fb565b90600052602060002001549050919050565b600a546001600160a01b031633146108ed5760405162461bcd60e51b81526004016105789061215a565b805161081190600f906020840190611d1f565b6000818152600260205260408120546001600160a01b03168061046b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610578565b60006001600160a01b0382166109e25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610578565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610a285760405162461bcd60e51b81526004016105789061215a565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b03163314610a9c5760405162461bcd60e51b81526004016105789061215a565b600d5415610aec5760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610578565b43600e55565b6060600180546104809061224f565b600c546040516331a9108f60e11b815260048101839052339161010090046001600160a01b031690636352211e9060240160206040518083038186803b158015610b4a57600080fd5b505afa158015610b5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b829190611e4b565b6001600160a01b031614610bd85760405162461bcd60e51b815260206004820152601860248201527f4e6f74204f776e6572204f66207468697320706c616e657400000000000000006044820152606401610578565b600c5460ff16610c2a5760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746044820152606401610578565b600b54600854610c3b9060016121e0565b1115610c895760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610578565b600c546040516331a9108f60e11b81526004810183905260009161010090046001600160a01b031690636352211e9060240160206040518083038186803b158015610cd357600080fd5b505afa158015610ce7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0b9190611e4b565b600c546040516323b872dd60e01b81526001600160a01b03808416600483015261dead602483015260448201869052929350610100909104909116906323b872dd90606401600060405180830381600087803b158015610d6a57600080fd5b505af1158015610d7e573d6000803e3d6000fd5b50505050600b54610d8e60085490565b610d999060016121e0565b116108115761081133610dab60085490565b6116b3565b6001600160a01b038216331415610e095760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610578565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314610e9f5760405162461bcd60e51b81526004016105789061215a565b600b55565b610eae338361140f565b610eca5760405162461bcd60e51b81526004016105789061218f565b610ed6848484846116cd565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f5b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610578565b60008281526010602052604081208054610f749061224f565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa09061224f565b8015610fed5780601f10610fc257610100808354040283529160200191610fed565b820191906000526020600020905b815481529060010190602001808311610fd057829003601f168201915b505050505090506000610ffe611700565b9050805160001415611011575092915050565b81511561104357808260405160200161102b929190612089565b60405160208183030381529060405292505050919050565b8061104d8561170f565b60405160200161102b929190612089565b600a546001600160a01b031633146110885760405162461bcd60e51b81526004016105789061215a565b600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600a546001600160a01b031633146110da5760405162461bcd60e51b81526004016105789061215a565b60006110e560085490565b905060005b828110156111125761110033610dab83856121e0565b8061110a8161228a565b9150506110ea565b600e546106ae5743600e55505050565b600a546001600160a01b0316331461114c5760405162461bcd60e51b81526004016105789061215a565b600d54156111a85760405162461bcd60e51b815260206004820152602360248201527f5374617274696e6720696e6465782068617320616c7265616479206265656e206044820152621cd95d60ea1b6064820152608401610578565b600e546112035760405162461bcd60e51b815260206004820152602360248201527f5374617274696e6720696e64657820686173206e6f74206265656e20736574206044820152621e595d60ea1b6064820152608401610578565b600b54600e546112149190406122a5565b600d55600e5460ff9061122890439061180d565b111561124b57600b5461123c60014361220c565b6112479190406122a5565b600d555b600d5461126457600d54611260906001611820565b600d555b565b600a546001600160a01b031633146112905760405162461bcd60e51b81526004016105789061215a565b6001600160a01b0381166112f55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610578565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061138257506001600160e01b03198216635b5e139f60e01b145b8061046b57506301ffc9a760e01b6001600160e01b031983161461046b565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113d682610900565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114885760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610578565b600061149383610900565b9050806001600160a01b0316846001600160a01b031614806114ce5750836001600160a01b03166114c384610503565b6001600160a01b0316145b806114fe57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661151982610900565b6001600160a01b0316146115815760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610578565b6001600160a01b0382166115e35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610578565b6115f0838383600161182c565b6115fb6000826113a1565b6001600160a01b038316600090815260036020526040812080546001929061162490849061220c565b90915550506001600160a01b03821660009081526003602052604081208054600192906116529084906121e0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6108118282604051806020016040528060008152506118ff565b6116d8848484611506565b6116e484848484611932565b610ed65760405162461bcd60e51b815260040161057890612108565b6060600f80546104809061224f565b6060816117335750506040805180820190915260018152600360fc1b602082015290565b8160005b811561175d57806117478161228a565b91506117569050600a836121f8565b9150611737565b60008167ffffffffffffffff81111561177857611778612311565b6040519080825280601f01601f1916602001820160405280156117a2576020820181803683370190505b5090505b84156114fe576117b760018361220c565b91506117c4600a866122a5565b6117cf9060306121e0565b60f81b8183815181106117e4576117e46122fb565b60200101906001600160f81b031916908160001a905350611806600a866121f8565b94506117a6565b6000611819828461220c565b9392505050565b600061181982846121e0565b6001600160a01b0384166118875761188282600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6118aa565b826001600160a01b0316846001600160a01b0316146118aa576118aa8483611a3f565b6001600160a01b0383161580156118be5750805b156118d1576118cc82611adc565b610ed6565b836001600160a01b0316836001600160a01b0316141580156118f05750805b15610ed657610ed68383611b8b565b6119098383611bcf565b6119166000848484611932565b6106ae5760405162461bcd60e51b815260040161057890612108565b60006001600160a01b0384163b15611a3457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119769033908990889088906004016120b8565b602060405180830381600087803b15801561199057600080fd5b505af19250505080156119c0575060408051601f3d908101601f191682019092526119bd91810190611fde565b60015b611a1a573d8080156119ee576040519150601f19603f3d011682016040523d82523d6000602084013e6119f3565b606091505b508051611a125760405162461bcd60e51b815260040161057890612108565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114fe565b506001949350505050565b60006001611a4c84610977565b611a56919061220c565b600083815260076020526040902054909150808214611aa9576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611aee9060019061220c565b60008381526009602052604081205460088054939450909284908110611b1657611b166122fb565b906000526020600020015490508060088381548110611b3757611b376122fb565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b6f57611b6f6122e5565b6001900381819060005260206000200160009055905550505050565b6000611b9683610977565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c255760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610578565b6000818152600260205260409020546001600160a01b031615611c8a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610578565b611c9860008383600161182c565b6001600160a01b0382166000908152600360205260408120805460019290611cc19084906121e0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d2b9061224f565b90600052602060002090601f016020900481019282611d4d5760008555611d93565b82601f10611d6657805160ff1916838001178555611d93565b82800160010185558215611d93579182015b82811115611d93578251825591602001919060010190611d78565b50611d9f929150611da3565b5090565b5b80821115611d9f5760008155600101611da4565b600067ffffffffffffffff80841115611dd357611dd3612311565b604051601f8501601f19908116603f01168101908282118183101715611dfb57611dfb612311565b81604052809350858152868686011115611e1457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e4057600080fd5b813561181981612327565b600060208284031215611e5d57600080fd5b815161181981612327565b60008060408385031215611e7b57600080fd5b8235611e8681612327565b91506020830135611e9681612327565b809150509250929050565b600080600060608486031215611eb657600080fd5b8335611ec181612327565b92506020840135611ed181612327565b929592945050506040919091013590565b60008060008060808587031215611ef857600080fd5b8435611f0381612327565b93506020850135611f1381612327565b925060408501359150606085013567ffffffffffffffff811115611f3657600080fd5b8501601f81018713611f4757600080fd5b611f5687823560208401611db8565b91505092959194509250565b60008060408385031215611f7557600080fd5b8235611f8081612327565b915060208301358015158114611e9657600080fd5b60008060408385031215611fa857600080fd5b8235611fb381612327565b946020939093013593505050565b600060208284031215611fd357600080fd5b81356118198161233f565b600060208284031215611ff057600080fd5b81516118198161233f565b60006020828403121561200d57600080fd5b813567ffffffffffffffff81111561202457600080fd5b8201601f8101841361203557600080fd5b6114fe84823560208401611db8565b60006020828403121561205657600080fd5b5035919050565b60008151808452612075816020860160208601612223565b601f01601f19169290920160200192915050565b6000835161209b818460208801612223565b8351908301906120af818360208801612223565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120eb9083018461205d565b9695505050505050565b602081526000611819602083018461205d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156121f3576121f36122b9565b500190565b600082612207576122076122cf565b500490565b60008282101561221e5761221e6122b9565b500390565b60005b8381101561223e578181015183820152602001612226565b83811115610ed65750506000910152565b600181811c9082168061226357607f821691505b6020821081141561228457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561229e5761229e6122b9565b5060010190565b6000826122b4576122b46122cf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461233c57600080fd5b50565b6001600160e01b03198116811461233c57600080fdfea26469706673582212201333ac41b6c5d5a6d73c59165a731602d7b6296883e60c05fe6aac23b3f03ff964736f6c63430008070033

Deployed Bytecode Sourcemap

49245:4021:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43044:233;;;;;;:::i;:::-;;:::i;:::-;;;6679:14:1;;6672:22;6654:41;;6642:2;6627:18;43044:233:0;;;;;;;;30966:100;;;:::i;:::-;;;;;;;:::i;32418:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5597:32:1;;;5579:51;;5567:2;5552:18;32418:221:0;5433:203:1;31955:397:0;;;;;;:::i;:::-;;:::i;:::-;;43693:113;43781:10;:17;43693:113;;;16524:25:1;;;16512:2;16497:18;43693:113:0;16378:177:1;33308:305:0;;;;;;:::i;:::-;;:::i;43361:256::-;;;;;;:::i;:::-;;:::i;49398:31::-;;;;;;49829:89;;;:::i;49926:140::-;;;:::i;33684:151::-;;;;;;:::i;:::-;;:::i;43883:233::-;;;;;;:::i;:::-;;:::i;52232:109::-;;;;;;:::i;:::-;;:::i;30660:239::-;;;;;;:::i;:::-;;:::i;30390:208::-;;;;;;:::i;:::-;;:::i;28226:148::-;;;:::i;51838:182::-;;;:::i;27575:87::-;27648:6;;-1:-1:-1;;;;;27648:6:0;27575:87;;31135:104;;;:::i;50511:612::-;;;;;;:::i;:::-;;:::i;32711:295::-;;;;;;:::i;:::-;;:::i;50395:104::-;;;;;;:::i;:::-;;:::i;33906:285::-;;;;;;:::i;:::-;;:::i;52470:793::-;;;;;;:::i;:::-;;:::i;49600:28::-;;;;;;52353:109;;;;;;:::i;:::-;;:::i;50074:313::-;;;;;;:::i;:::-;;:::i;51133:697::-;;;:::i;49635:33::-;;;;;;33077:164;;;;;;:::i;:::-;-1:-1:-1;;;;;33198:25:0;;;33174:4;33198:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33077:164;49436:32;;;;;;;;;28529:244;;;;;;:::i;:::-;;:::i;43044:233::-;43146:4;-1:-1:-1;;;;;;43170:50:0;;-1:-1:-1;;;43170:50:0;;:99;;;43233:36;43257:11;43233:23;:36::i;:::-;43163:106;43044:233;-1:-1:-1;;43044:233:0:o;30966:100::-;31020:13;31053:5;31046:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30966:100;:::o;32418:221::-;32494:7;35747:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35747:16:0;32514:73;;;;-1:-1:-1;;;32514:73:0;;12982:2:1;32514:73:0;;;12964:21:1;13021:2;13001:18;;;12994:30;13060:34;13040:18;;;13033:62;-1:-1:-1;;;13111:18:1;;;13104:42;13163:19;;32514:73:0;;;;;;;;;-1:-1:-1;32607:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32607:24:0;;32418:221::o;31955:397::-;32036:13;32052:23;32067:7;32052:14;:23::i;:::-;32036:39;;32100:5;-1:-1:-1;;;;;32094:11:0;:2;-1:-1:-1;;;;;32094:11:0;;;32086:57;;;;-1:-1:-1;;;32086:57:0;;14582:2:1;32086:57:0;;;14564:21:1;14621:2;14601:18;;;14594:30;14660:34;14640:18;;;14633:62;-1:-1:-1;;;14711:18:1;;;14704:31;14752:19;;32086:57:0;14380:397:1;32086:57:0;26272:10;-1:-1:-1;;;;;32164:21:0;;;;:62;;-1:-1:-1;32189:37:0;32206:5;26272:10;33077:164;:::i;32189:37::-;32156:154;;;;-1:-1:-1;;;32156:154:0;;11014:2:1;32156:154:0;;;10996:21:1;11053:2;11033:18;;;11026:30;11092:34;11072:18;;;11065:62;11163:26;11143:18;;;11136:54;11207:19;;32156:154:0;10812:420:1;32156:154:0;32323:21;32332:2;32336:7;32323:8;:21::i;:::-;32025:327;31955:397;;:::o;33308:305::-;33469:41;26272:10;33502:7;33469:18;:41::i;:::-;33461:103;;;;-1:-1:-1;;;33461:103:0;;;;;;;:::i;:::-;33577:28;33587:4;33593:2;33597:7;33577:9;:28::i;43361:256::-;43458:7;43494:23;43511:5;43494:16;:23::i;:::-;43486:5;:31;43478:87;;;;-1:-1:-1;;;43478:87:0;;7536:2:1;43478:87:0;;;7518:21:1;7575:2;7555:18;;;7548:30;7614:34;7594:18;;;7587:62;-1:-1:-1;;;7665:18:1;;;7658:41;7716:19;;43478:87:0;7334:407:1;43478:87:0;-1:-1:-1;;;;;;43583:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43361:256::o;49829:89::-;27648:6;;-1:-1:-1;;;;;27648:6:0;26272:10;27795:23;27787:68;;;;-1:-1:-1;;;27787:68:0;;;;;;;:::i;:::-;49898:12:::1;::::0;;-1:-1:-1;;49882:28:0;::::1;49898:12;::::0;;::::1;49897:13;49882:28;::::0;;49829:89::o;49926:140::-;27648:6;;-1:-1:-1;;;;;27648:6:0;26272:10;27795:23;27787:68;;;;-1:-1:-1;;;27787:68:0;;;;;;;:::i;:::-;50021:37:::1;::::0;49989:21:::1;::::0;50029:10:::1;::::0;50021:37;::::1;;;::::0;49989:21;;49974:12:::1;50021:37:::0;49974:12;50021:37;49989:21;50029:10;50021:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;49963:103;49926:140::o:0;33684:151::-;33788:39;33805:4;33811:2;33815:7;33788:39;;;;;;;;;;;;:16;:39::i;43883:233::-;43958:7;43994:30;43781:10;:17;;43693:113;43994:30;43986:5;:38;43978:95;;;;-1:-1:-1;;;43978:95:0;;15402:2:1;43978:95:0;;;15384:21:1;15441:2;15421:18;;;15414:30;15480:34;15460:18;;;15453:62;-1:-1:-1;;;15531:18:1;;;15524:42;15583:19;;43978:95:0;15200:408:1;43978:95:0;44091:10;44102:5;44091:17;;;;;;;;:::i;:::-;;;;;;;;;44084:24;;43883:233;;;:::o;52232:109::-;27648:6;;-1:-1:-1;;;;;27648:6:0;26272:10;27795:23;27787:68;;;;-1:-1:-1;;;27787:68:0;;;;;;;:::i;:::-;52306:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;30660:239::-:0;30732:7;30768:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30768:16:0;30803:19;30795:73;;;;-1:-1:-1;;;30795:73:0;;11850:2:1;30795:73:0;;;11832:21:1;11889:2;11869:18;;;11862:30;11928:34;11908:18;;;11901:62;-1:-1:-1;;;11979:18:1;;;11972:39;12028:19;;30795:73:0;11648:405:1;30390:208:0;30462:7;-1:-1:-1;;;;;30490:19:0;;30482:74;;;;-1:-1:-1;;;30482:74:0;;11439:2:1;30482:74:0;;;11421:21:1;11478:2;11458:18;;;11451:30;11517:34;11497:18;;;11490:62;-1:-1:-1;;;11568:18:1;;;11561:40;11618:19;;30482:74:0;11237:406:1;30482:74:0;-1:-1:-1;;;;;;30574:16:0;;;;;:9;:16;;;;;;;30390:208::o;28226:148::-;27648:6;;-1:-1:-1;;;;;27648:6:0;26272:10;27795:23;27787:68;;;;-1:-1:-1;;;27787:68:0;;;;;;;:::i;:::-;28317:6:::1;::::0;28296:40:::1;::::0;28333:1:::1;::::0;-1:-1:-1;;;;;28317:6:0::1;::::0;28296:40:::1;::::0;28333:1;;28296:40:::1;28347:6;:19:::0;;-1:-1:-1;;;;;;28347:19:0::1;::::0;;28226:148::o;51838:182::-;27648:6;;-1:-1:-1;;;;;27648:6:0;26272:10;27795:23;27787:68;;;;-1:-1:-1;;;27787:68:0;;;;;;;:::i;:::-;51916:13:::1;::::0;:18;51908:60:::1;;;::::0;-1:-1:-1;;;51908:60:0;;10656:2:1;51908:60:0::1;::::0;::::1;10638:21:1::0;10695:2;10675:18;;;10668:30;10734:31;10714:18;;;10707:59;10783:18;;51908:60:0::1;10454:353:1::0;51908:60:0::1;52000:12;51979:18;:33:::0;51838:182::o;31135:104::-;31191:13;31224:7;31217:14;;;;;:::i;50511:612::-;50568:7;;:24;;-1:-1:-1;;;50568:24:0;;;;;16524:25:1;;;50596:10:0;;50568:7;;;-1:-1:-1;;;;;50568:7:0;;:15;;16497:18:1;;50568:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;50568:38:0;;50560:75;;;;-1:-1:-1;;;50560:75:0;;10303:2:1;50560:75:0;;;10285:21:1;10342:2;10322:18;;;10315:30;10381:26;10361:18;;;10354:54;10425:18;;50560:75:0;10101:348:1;50560:75:0;50654:12;;;;50646:57;;;;-1:-1:-1;;;50646:57:0;;16219:2:1;50646:57:0;;;16201:21:1;;;16238:18;;;16231:30;16297:34;16277:18;;;16270:62;16349:18;;50646:57:0;16017:356:1;50646:57:0;50745:10;;43781;:17;50723;;50739:1;50723:17;:::i;:::-;50722:33;;50714:78;;;;-1:-1:-1;;;50714:78:0;;12260:2:1;50714:78:0;;;12242:21:1;;;12279:18;;;12272:30;12338:34;12318:18;;;12311:62;12390:18;;50714:78:0;12058:356:1;50714:78:0;50855:7;;:24;;-1:-1:-1;;;50855:24:0;;;;;16524:25:1;;;50838:14:0;;50855:7;;;-1:-1:-1;;;;;50855:7:0;;:15;;16497:18:1;;50855:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50890:7;;:90;;-1:-1:-1;;;50890:90:0;;-1:-1:-1;;;;;5899:15:1;;;50890:90:0;;;5881:34:1;50927:42:0;5931:18:1;;;5924:43;5983:18;;;5976:34;;;50838:41:0;;-1:-1:-1;50890:7:0;;;;;;;;:20;;5816:18:1;;50890:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51031:10;;51009:13;43781:10;:17;;43693:113;51009:13;:17;;51025:1;51009:17;:::i;:::-;51008:33;51004:102;;51058:36;51068:10;51080:13;43781:10;:17;;43693:113;51080:13;51058:9;:36::i;32711:295::-;-1:-1:-1;;;;;32814:24:0;;26272:10;32814:24;;32806:62;;;;-1:-1:-1;;;32806:62:0;;9536:2:1;32806:62:0;;;9518:21:1;9575:2;9555:18;;;9548:30;9614:27;9594:18;;;9587:55;9659:18;;32806:62:0;9334:349:1;32806:62:0;26272:10;32881:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32881:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32881:53:0;;;;;;;;;;32950:48;;6654:41:1;;;32881:42:0;;26272:10;32950:48;;6627:18:1;32950:48:0;;;;;;;32711:295;;:::o;50395:104::-;27648:6;;-1:-1:-1;;;;;27648:6:0;26272:10;27795:23;27787:68;;;;-1:-1:-1;;;27787:68:0;;;;;;;:::i;:::-;50469:10:::1;:22:::0;50395:104::o;33906:285::-;34038:41;26272:10;34071:7;34038:18;:41::i;:::-;34030:103;;;;-1:-1:-1;;;34030:103:0;;;;;;;:::i;:::-;34144:39;34158:4;34164:2;34168:7;34177:5;34144:13;:39::i;:::-;33906:285;;;;:::o;52470:793::-;35723:4;35747:16;;;:7;:16;;;;;;52543:13;;-1:-1:-1;;;;;35747:16:0;52569:76;;;;-1:-1:-1;;;52569:76:0;;14166:2:1;52569:76:0;;;14148:21:1;14205:2;14185:18;;;14178:30;14244:34;14224:18;;;14217:62;-1:-1:-1;;;14295:18:1;;;14288:45;14350:19;;52569:76:0;13964:411:1;52569:76:0;52658:23;52684:19;;;:10;:19;;;;;52658:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52714:18;52735:10;:8;:10::i;:::-;52714:31;;52827:4;52821:18;52843:1;52821:23;52817:72;;;-1:-1:-1;52868:9:0;52470:793;-1:-1:-1;;52470:793:0:o;52817:72::-;52993:23;;:27;52989:108;;53068:4;53074:9;53051:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53037:48;;;;52470:793;;;:::o;52989:108::-;53229:4;53235:18;:7;:16;:18::i;:::-;53212:42;;;;;;;;;:::i;52353:109::-;27648:6;;-1:-1:-1;;;;;27648:6:0;26272:10;27795:23;27787:68;;;;-1:-1:-1;;;27787:68:0;;;;;;;:::i;:::-;52428:7:::1;:26:::0;;-1:-1:-1;;;;;52428:26:0;;::::1;;;-1:-1:-1::0;;;;;;52428:26:0;;::::1;::::0;;;::::1;::::0;;52353:109::o;50074:313::-;27648:6;;-1:-1:-1;;;;;27648:6:0;26272:10;27795:23;27787:68;;;;-1:-1:-1;;;27787:68:0;;;;;;;:::i;:::-;50138:11:::1;50152:13;43781:10:::0;:17;;43693:113;50152:13:::1;50138:27;;50176:6;50193:86;50209:3;50205:1;:7;50193:86;;;50234:33;50244:10;50256;50265:1:::0;50256:6;:10:::1;:::i;50234:33::-;50214:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50193:86;;;50295:18;::::0;50291:89:::1;;50356:12;50335:18;:33:::0;50127:260:::1;;50074:313:::0;:::o;51133:697::-;27648:6;;-1:-1:-1;;;;;27648:6:0;26272:10;27795:23;27787:68;;;;-1:-1:-1;;;27787:68:0;;;;;;;:::i;:::-;51198:13:::1;::::0;:18;51190:66:::1;;;::::0;-1:-1:-1;;;51190:66:0;;15815:2:1;51190:66:0::1;::::0;::::1;15797:21:1::0;15854:2;15834:18;;;15827:30;15893:34;15873:18;;;15866:62;-1:-1:-1;;;15944:18:1;;;15937:33;15987:19;;51190:66:0::1;15613:399:1::0;51190:66:0::1;51275:18;::::0;51267:71:::1;;;::::0;-1:-1:-1;;;51267:71:0;;7132:2:1;51267:71:0::1;::::0;::::1;7114:21:1::0;7171:2;7151:18;;;7144:30;7210:34;7190:18;;;7183:62;-1:-1:-1;;;7261:18:1;;;7254:33;7304:19;;51267:71:0::1;6930:399:1::0;51267:71:0::1;51405:10;::::0;51382:18:::1;::::0;51367:48:::1;::::0;51405:10;51372:29:::1;51367:48;:::i;:::-;51351:13;:64:::0;51567:18:::1;::::0;51589:3:::1;::::0;51550:36:::1;::::0;:12:::1;::::0;:16:::1;:36::i;:::-;:42;51547:136;;;51661:10;::::0;51640:16:::1;51655:1;51640:12;:16;:::i;:::-;51625:46;::::0;;51630:27:::1;51625:46;:::i;:::-;51609:13;:62:::0;51547:136:::1;51740:13;::::0;51736:87:::1;;51791:13;::::0;:20:::1;::::0;51809:1:::1;51791:17;:20::i;:::-;51775:13;:36:::0;51736:87:::1;51133:697::o:0;28529:244::-;27648:6;;-1:-1:-1;;;;;27648:6:0;26272:10;27795:23;27787:68;;;;-1:-1:-1;;;27787:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28618:22:0;::::1;28610:73;;;::::0;-1:-1:-1;;;28610:73:0;;8367:2:1;28610:73:0::1;::::0;::::1;8349:21:1::0;8406:2;8386:18;;;8379:30;8445:34;8425:18;;;8418:62;-1:-1:-1;;;8496:18:1;;;8489:36;8542:19;;28610:73:0::1;8165:402:1::0;28610:73:0::1;28720:6;::::0;28699:38:::1;::::0;-1:-1:-1;;;;;28699:38:0;;::::1;::::0;28720:6:::1;::::0;28699:38:::1;::::0;28720:6:::1;::::0;28699:38:::1;28748:6;:17:::0;;-1:-1:-1;;;;;;28748:17:0::1;-1:-1:-1::0;;;;;28748:17:0;;;::::1;::::0;;;::::1;::::0;;28529:244::o;30042:284::-;30144:4;-1:-1:-1;;;;;;30168:40:0;;-1:-1:-1;;;30168:40:0;;:101;;-1:-1:-1;;;;;;;30221:48:0;;-1:-1:-1;;;30221:48:0;30168:101;:150;;;-1:-1:-1;;;;;;;;;;19337:40:0;;;30282:36;19228:157;39897:174;39972:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39972:29:0;-1:-1:-1;;;;;39972:29:0;;;;;;;;:24;;40026:23;39972:24;40026:14;:23::i;:::-;-1:-1:-1;;;;;40017:46:0;;;;;;;;;;;39897:174;;:::o;35952:348::-;36045:4;35747:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35747:16:0;36062:73;;;;-1:-1:-1;;;36062:73:0;;9890:2:1;36062:73:0;;;9872:21:1;9929:2;9909:18;;;9902:30;9968:34;9948:18;;;9941:62;-1:-1:-1;;;10019:18:1;;;10012:42;10071:19;;36062:73:0;9688:408:1;36062:73:0;36146:13;36162:23;36177:7;36162:14;:23::i;:::-;36146:39;;36215:5;-1:-1:-1;;;;;36204:16:0;:7;-1:-1:-1;;;;;36204:16:0;;:51;;;;36248:7;-1:-1:-1;;;;;36224:31:0;:20;36236:7;36224:11;:20::i;:::-;-1:-1:-1;;;;;36224:31:0;;36204:51;:87;;;-1:-1:-1;;;;;;33198:25:0;;;33174:4;33198:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36259:32;36196:96;35952:348;-1:-1:-1;;;;35952:348:0:o;39229:550::-;39354:4;-1:-1:-1;;;;;39327:31:0;:23;39342:7;39327:14;:23::i;:::-;-1:-1:-1;;;;;39327:31:0;;39319:85;;;;-1:-1:-1;;;39319:85:0;;13756:2:1;39319:85:0;;;13738:21:1;13795:2;13775:18;;;13768:30;13834:34;13814:18;;;13807:62;-1:-1:-1;;;13885:18:1;;;13878:39;13934:19;;39319:85:0;13554:405:1;39319:85:0;-1:-1:-1;;;;;39423:16:0;;39415:65;;;;-1:-1:-1;;;39415:65:0;;9131:2:1;39415:65:0;;;9113:21:1;9170:2;9150:18;;;9143:30;9209:34;9189:18;;;9182:62;-1:-1:-1;;;9260:18:1;;;9253:34;9304:19;;39415:65:0;8929:400:1;39415:65:0;39493:45;39514:4;39520:2;39524:7;39533:4;39493:20;:45::i;:::-;39603:29;39620:1;39624:7;39603:8;:29::i;:::-;-1:-1:-1;;;;;39645:15:0;;;;;;:9;:15;;;;;:20;;39664:1;;39645:15;:20;;39664:1;;39645:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39676:13:0;;;;;;:9;:13;;;;;:18;;39693:1;;39676:13;:18;;39693:1;;39676:18;:::i;:::-;;;;-1:-1:-1;;39705:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39705:21:0;-1:-1:-1;;;;;39705:21:0;;;;;;;;;39744:27;;39705:16;;39744:27;;;;;;;39229:550;;;:::o;36642:110::-;36718:26;36728:2;36732:7;36718:26;;;;;;;;;;;;:9;:26::i;35073:272::-;35187:28;35197:4;35203:2;35207:7;35187:9;:28::i;:::-;35234:48;35257:4;35263:2;35267:7;35276:5;35234:22;:48::i;:::-;35226:111;;;;-1:-1:-1;;;35226:111:0;;;;;;;:::i;52028:117::-;52088:13;52121:16;52114:23;;;;;:::i;7152:723::-;7208:13;7429:10;7425:53;;-1:-1:-1;;7456:10:0;;;;;;;;;;;;-1:-1:-1;;;7456:10:0;;;;;7152:723::o;7425:53::-;7503:5;7488:12;7544:78;7551:9;;7544:78;;7577:8;;;;:::i;:::-;;-1:-1:-1;7600:10:0;;-1:-1:-1;7608:2:0;7600:10;;:::i;:::-;;;7544:78;;;7632:19;7664:6;7654:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7654:17:0;;7632:39;;7682:154;7689:10;;7682:154;;7716:11;7726:1;7716:11;;:::i;:::-;;-1:-1:-1;7785:10:0;7793:2;7785:5;:10;:::i;:::-;7772:24;;:2;:24;:::i;:::-;7759:39;;7742:6;7749;7742:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7742:56:0;;;;;;;;-1:-1:-1;7813:11:0;7822:2;7813:11;;:::i;:::-;;;7682:154;;3040:98;3098:7;3125:5;3129:1;3125;:5;:::i;:::-;3118:12;3040:98;-1:-1:-1;;;3040:98:0:o;2659:::-;2717:7;2744:5;2748:1;2744;:5;:::i;44729:604::-;-1:-1:-1;;;;;44926:18:0;;44922:187;;44961:40;44993:7;46160:10;:17;;46133:24;;;;:15;:24;;;;;:44;;;46188:24;;;;;;;;;;;;46056:164;44961:40;44922:187;;;45031:2;-1:-1:-1;;;;;45023:10:0;:4;-1:-1:-1;;;;;45023:10:0;;45019:90;;45050:47;45083:4;45089:7;45050:32;:47::i;:::-;-1:-1:-1;;;;;45123:16:0;;;:28;;;;;45143:8;45123:28;45119:207;;;45168:45;45205:7;45168:36;:45::i;:::-;45119:207;;;45241:4;-1:-1:-1;;;;;45235:10:0;:2;-1:-1:-1;;;;;45235:10:0;;;:22;;;;;45249:8;45235:22;45231:95;;;45274:40;45302:2;45306:7;45274:27;:40::i;36979:250::-;37075:18;37081:2;37085:7;37075:5;:18::i;:::-;37112:54;37143:1;37147:2;37151:7;37160:5;37112:22;:54::i;:::-;37104:117;;;;-1:-1:-1;;;37104:117:0;;;;;;;:::i;40636:839::-;40753:4;-1:-1:-1;;;;;40779:13:0;;9984:20;10023:8;40775:693;;40815:72;;-1:-1:-1;;;40815:72:0;;-1:-1:-1;;;;;40815:36:0;;;;;:72;;26272:10;;40866:4;;40872:7;;40881:5;;40815:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40815:72:0;;;;;;;;-1:-1:-1;;40815:72:0;;;;;;;;;;;;:::i;:::-;;;40811:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41061:13:0;;41057:341;;41104:60;;-1:-1:-1;;;41104:60:0;;;;;;;:::i;41057:341::-;41348:6;41342:13;41333:6;41329:2;41325:15;41318:38;40811:602;-1:-1:-1;;;;;;40938:55:0;-1:-1:-1;;;40938:55:0;;-1:-1:-1;40931:62:0;;40775:693;-1:-1:-1;41452:4:0;40636:839;;;;;;:::o;46847:988::-;47113:22;47163:1;47138:22;47155:4;47138:16;:22::i;:::-;:26;;;;:::i;:::-;47175:18;47196:26;;;:17;:26;;;;;;47113:51;;-1:-1:-1;47329:28:0;;;47325:328;;-1:-1:-1;;;;;47396:18:0;;47374:19;47396:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47447:30;;;;;;:44;;;47564:30;;:17;:30;;;;;:43;;;47325:328;-1:-1:-1;47749:26:0;;;;:17;:26;;;;;;;;47742:33;;;-1:-1:-1;;;;;47793:18:0;;;;;:12;:18;;;;;:34;;;;;;;47786:41;46847:988::o;48130:1079::-;48408:10;:17;48383:22;;48408:21;;48428:1;;48408:21;:::i;:::-;48440:18;48461:24;;;:15;:24;;;;;;48834:10;:26;;48383:46;;-1:-1:-1;48461:24:0;;48383:46;;48834:26;;;;;;:::i;:::-;;;;;;;;;48812:48;;48898:11;48873:10;48884;48873:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48978:28;;;:15;:28;;;;;;;:41;;;49150:24;;;;;49143:31;49185:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;48201:1008;;;48130:1079;:::o;45634:221::-;45719:14;45736:20;45753:2;45736:16;:20::i;:::-;-1:-1:-1;;;;;45767:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45812:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45634:221:0:o;37565:388::-;-1:-1:-1;;;;;37645:16:0;;37637:61;;;;-1:-1:-1;;;37637:61:0;;12621:2:1;37637:61:0;;;12603:21:1;;;12640:18;;;12633:30;12699:34;12679:18;;;12672:62;12751:18;;37637:61:0;12419:356:1;37637:61:0;35723:4;35747:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35747:16:0;:30;37709:58;;;;-1:-1:-1;;;37709:58:0;;8774:2:1;37709:58:0;;;8756:21:1;8813:2;8793:18;;;8786:30;8852;8832:18;;;8825:58;8900:18;;37709:58:0;8572:352:1;37709:58:0;37780:51;37809:1;37813:2;37817:7;37826:4;37780:20;:51::i;:::-;-1:-1:-1;;;;;37844:13:0;;;;;;:9;:13;;;;;:18;;37861:1;;37844:13;:18;;37861:1;;37844:18;:::i;:::-;;;;-1:-1:-1;;37873:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37873:21:0;-1:-1:-1;;;;;37873:21:0;;;;;;;;37912:33;;37873:16;;;37912:33;;37873:16;;37912:33;37565:388;;:::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:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;902:251::-;972:6;1025:2;1013:9;1004:7;1000:23;996:32;993:52;;;1041:1;1038;1031:12;993:52;1073:9;1067:16;1092:31;1117:5;1092:31;:::i;1158:388::-;1226:6;1234;1287:2;1275:9;1266:7;1262:23;1258:32;1255:52;;;1303:1;1300;1293:12;1255:52;1342:9;1329:23;1361:31;1386:5;1361:31;:::i;:::-;1411:5;-1:-1:-1;1468:2:1;1453:18;;1440:32;1481:33;1440:32;1481:33;:::i;:::-;1533:7;1523:17;;;1158:388;;;;;:::o;1551:456::-;1628:6;1636;1644;1697:2;1685:9;1676:7;1672:23;1668:32;1665:52;;;1713:1;1710;1703:12;1665:52;1752:9;1739:23;1771:31;1796:5;1771:31;:::i;:::-;1821:5;-1:-1:-1;1878:2:1;1863:18;;1850:32;1891:33;1850:32;1891:33;:::i;:::-;1551:456;;1943:7;;-1:-1:-1;;;1997:2:1;1982:18;;;;1969:32;;1551:456::o;2012:794::-;2107:6;2115;2123;2131;2184:3;2172:9;2163:7;2159:23;2155:33;2152:53;;;2201:1;2198;2191:12;2152:53;2240:9;2227:23;2259:31;2284:5;2259:31;:::i;:::-;2309:5;-1:-1:-1;2366:2:1;2351:18;;2338:32;2379:33;2338:32;2379:33;:::i;:::-;2431:7;-1:-1:-1;2485:2:1;2470:18;;2457:32;;-1:-1:-1;2540:2:1;2525:18;;2512:32;2567:18;2556:30;;2553:50;;;2599:1;2596;2589:12;2553:50;2622:22;;2675:4;2667:13;;2663:27;-1:-1:-1;2653:55:1;;2704:1;2701;2694:12;2653:55;2727:73;2792:7;2787:2;2774:16;2769:2;2765;2761:11;2727:73;:::i;:::-;2717:83;;;2012:794;;;;;;;:::o;2811:416::-;2876:6;2884;2937:2;2925:9;2916:7;2912:23;2908:32;2905:52;;;2953:1;2950;2943:12;2905:52;2992:9;2979:23;3011:31;3036:5;3011:31;:::i;:::-;3061:5;-1:-1:-1;3118:2:1;3103:18;;3090:32;3160:15;;3153:23;3141:36;;3131:64;;3191:1;3188;3181:12;3232:315;3300:6;3308;3361:2;3349:9;3340:7;3336:23;3332:32;3329:52;;;3377:1;3374;3367:12;3329:52;3416:9;3403:23;3435:31;3460:5;3435:31;:::i;:::-;3485:5;3537:2;3522:18;;;;3509:32;;-1:-1:-1;;;3232:315:1:o;3552:245::-;3610:6;3663:2;3651:9;3642:7;3638:23;3634:32;3631:52;;;3679:1;3676;3669:12;3631:52;3718:9;3705:23;3737:30;3761:5;3737:30;:::i;3802:249::-;3871:6;3924:2;3912:9;3903:7;3899:23;3895:32;3892:52;;;3940:1;3937;3930:12;3892:52;3972:9;3966:16;3991:30;4015:5;3991:30;:::i;4056:450::-;4125:6;4178:2;4166:9;4157:7;4153:23;4149:32;4146:52;;;4194:1;4191;4184:12;4146:52;4234:9;4221:23;4267:18;4259:6;4256:30;4253:50;;;4299:1;4296;4289:12;4253:50;4322:22;;4375:4;4367:13;;4363:27;-1:-1:-1;4353:55:1;;4404:1;4401;4394:12;4353:55;4427:73;4492:7;4487:2;4474:16;4469:2;4465;4461:11;4427:73;:::i;4511:180::-;4570:6;4623:2;4611:9;4602:7;4598:23;4594:32;4591:52;;;4639:1;4636;4629:12;4591:52;-1:-1:-1;4662:23:1;;4511:180;-1:-1:-1;4511:180:1:o;4696:257::-;4737:3;4775:5;4769:12;4802:6;4797:3;4790:19;4818:63;4874:6;4867:4;4862:3;4858:14;4851:4;4844:5;4840:16;4818:63;:::i;:::-;4935:2;4914:15;-1:-1:-1;;4910:29:1;4901:39;;;;4942:4;4897:50;;4696:257;-1:-1:-1;;4696:257:1:o;4958:470::-;5137:3;5175:6;5169:13;5191:53;5237:6;5232:3;5225:4;5217:6;5213:17;5191:53;:::i;:::-;5307:13;;5266:16;;;;5329:57;5307:13;5266:16;5363:4;5351:17;;5329:57;:::i;:::-;5402:20;;4958:470;-1:-1:-1;;;;4958:470:1:o;6021:488::-;-1:-1:-1;;;;;6290:15:1;;;6272:34;;6342:15;;6337:2;6322:18;;6315:43;6389:2;6374:18;;6367:34;;;6437:3;6432:2;6417:18;;6410:31;;;6215:4;;6458:45;;6483:19;;6475:6;6458:45;:::i;:::-;6450:53;6021:488;-1:-1:-1;;;;;;6021:488:1:o;6706:219::-;6855:2;6844:9;6837:21;6818:4;6875:44;6915:2;6904:9;6900:18;6892:6;6875:44;:::i;7746:414::-;7948:2;7930:21;;;7987:2;7967:18;;;7960:30;8026:34;8021:2;8006:18;;7999:62;-1:-1:-1;;;8092:2:1;8077:18;;8070:48;8150:3;8135:19;;7746:414::o;13193:356::-;13395:2;13377:21;;;13414:18;;;13407:30;13473:34;13468:2;13453:18;;13446:62;13540:2;13525:18;;13193:356::o;14782:413::-;14984:2;14966:21;;;15023:2;15003:18;;;14996:30;15062:34;15057:2;15042:18;;15035:62;-1:-1:-1;;;15128:2:1;15113:18;;15106:47;15185:3;15170:19;;14782:413::o;16560:128::-;16600:3;16631:1;16627:6;16624:1;16621:13;16618:39;;;16637:18;;:::i;:::-;-1:-1:-1;16673:9:1;;16560:128::o;16693:120::-;16733:1;16759;16749:35;;16764:18;;:::i;:::-;-1:-1:-1;16798:9:1;;16693:120::o;16818:125::-;16858:4;16886:1;16883;16880:8;16877:34;;;16891:18;;:::i;:::-;-1:-1:-1;16928:9:1;;16818:125::o;16948:258::-;17020:1;17030:113;17044:6;17041:1;17038:13;17030:113;;;17120:11;;;17114:18;17101:11;;;17094:39;17066:2;17059:10;17030:113;;;17161:6;17158:1;17155:13;17152:48;;;-1:-1:-1;;17196:1:1;17178:16;;17171:27;16948:258::o;17211:380::-;17290:1;17286:12;;;;17333;;;17354:61;;17408:4;17400:6;17396:17;17386:27;;17354:61;17461:2;17453:6;17450:14;17430:18;17427:38;17424:161;;;17507:10;17502:3;17498:20;17495:1;17488:31;17542:4;17539:1;17532:15;17570:4;17567:1;17560:15;17424:161;;17211:380;;;:::o;17596:135::-;17635:3;-1:-1:-1;;17656:17:1;;17653:43;;;17676:18;;:::i;:::-;-1:-1:-1;17723:1:1;17712:13;;17596:135::o;17736:112::-;17768:1;17794;17784:35;;17799:18;;:::i;:::-;-1:-1:-1;17833:9:1;;17736:112::o;17853:127::-;17914:10;17909:3;17905:20;17902:1;17895:31;17945:4;17942:1;17935:15;17969:4;17966:1;17959:15;17985:127;18046:10;18041:3;18037:20;18034:1;18027:31;18077:4;18074:1;18067:15;18101:4;18098:1;18091:15;18117:127;18178:10;18173:3;18169:20;18166:1;18159:31;18209:4;18206:1;18199:15;18233:4;18230:1;18223:15;18249:127;18310:10;18305:3;18301:20;18298:1;18291:31;18341:4;18338:1;18331:15;18365:4;18362:1;18355:15;18381:127;18442:10;18437:3;18433:20;18430:1;18423:31;18473:4;18470:1;18463:15;18497:4;18494:1;18487:15;18513:131;-1:-1:-1;;;;;18588:31:1;;18578:42;;18568:70;;18634:1;18631;18624:12;18568:70;18513:131;:::o;18649:::-;-1:-1:-1;;;;;;18723:32:1;;18713:43;;18703:71;;18770:1;18767;18760:12

Swarm Source

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