ETH Price: $2,918.63 (-3.64%)
Gas: 1 Gwei

Token

MetaKidz Genesis (MetaKidzGC)
 

Overview

Max Total Supply

950 MetaKidzGC

Holders

717

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
fiendd.eth
Balance
1 MetaKidzGC
0xbcec43bbc3c9a4cc2a133e92e8b200e0e92c221b
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:
Genesis

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-10
*/

/**
 *Submitted for verification at Etherscan.io on 2022-01-10
*/

/**
 *Submitted for verification at Etherscan.io on 2022-01-10
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

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

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
      * - `from` cannot be the zero address.
      * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}




pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping (uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping (address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping (uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping (address => mapping (address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(IERC721).interfaceId
            || interfaceId == type(IERC721Metadata).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, tokenId.toString()))
            : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev 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) 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) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

pragma solidity ^0.8.0;

contract Metabits {
    function updateTimeForMetaKidzGC(uint256 _tokenId) external {}
}

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

    address public metabitsContractAddress;
    uint256 public MAX_SUPPLY = 1000;
    uint256 public RESERVED = 50;
    bool public saleIsActive = false;
    string private _baseURIExtended;
    address public admin = 0x1097fd1777409Ff30fF32191891A9a9752b61F01;
    Metabits public metabits;

    constructor(string memory _name, string memory _symbol, string memory _BaseURI,address _metabitsContractAddress) ERC721(_name, _symbol){
        _baseURIExtended = _BaseURI;
        metabitsContractAddress = _metabitsContractAddress;
        metabits = Metabits(_metabitsContractAddress);
    }
    function flipSaleState() public {
        require(msg.sender == admin || msg.sender == owner(), "Invalid sender");
        saleIsActive = !saleIsActive;
    }

    function mintGenesis(uint numberOfToken) public payable {
        require(saleIsActive, "Sale is not active at the moment");
        require(balanceOf(msg.sender) < 1, "You have exceeded max genesis limit per wallet");
        require(totalSupply().add(numberOfToken) <= MAX_SUPPLY.sub(RESERVED), "Purchase would exceed max supply of genesis");
        require(numberOfToken <= 1, "You have exceeded max Genesis limit per transaction");
        require(numberOfToken > 0, "Number of tokens can not be less than or equal to 0");
        _safeMint(msg.sender, totalSupply());
        uint256 mintIndex =  totalSupply();
        if(metabitsContractAddress != 0x000000000000000000000000000000000000dEaD){
        metabits.updateTimeForMetaKidzGC(mintIndex);
        }
    }

    function mintReserveGenesis(uint numberOfToken) public payable {
        require(msg.sender == admin || msg.sender == owner(), "Invalid sender");
        require(numberOfToken > 0 && numberOfToken <= RESERVED, "Not enough reserve left");
        for(uint256 i = 0; i < numberOfToken; i++) {
            uint256 mintIndex = totalSupply();
            _safeMint(msg.sender, mintIndex);
        if(metabitsContractAddress != 0x000000000000000000000000000000000000dEaD){
        metabits.updateTimeForMetaKidzGC(mintIndex);
        }
        }

        RESERVED = RESERVED.sub(numberOfToken);
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIExtended;
    }

    function transferFrom(address from, address to, uint256 tokenId) public override {
        if(metabitsContractAddress != 0x000000000000000000000000000000000000dEaD){
        metabits.updateTimeForMetaKidzGC(tokenId);
        }
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _transfer(from, to, tokenId);
    }

    function setBaseURI(string memory baseURI_) external {
        require(msg.sender == admin || msg.sender == owner(), "Invalid sender");
        _baseURIExtended = baseURI_;
    }

     function setMetaBitsContractAddress(address _addr) public {
        require(msg.sender == admin || msg.sender == owner(), "Invalid sender");
        metabitsContractAddress = _addr;
        metabits = Metabits(_addr);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_BaseURI","type":"string"},{"internalType":"address","name":"_metabitsContractAddress","type":"address"}],"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":[],"name":"RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metabits","outputs":[{"internalType":"contract Metabits","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metabitsContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfToken","type":"uint256"}],"name":"mintGenesis","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfToken","type":"uint256"}],"name":"mintReserveGenesis","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"address","name":"_addr","type":"address"}],"name":"setMetaBitsContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103e8600c556032600d55600e805460ff19169055601080546001600160a01b031916731097fd1777409ff30ff32191891a9a9752b61f011790553480156200004c57600080fd5b5060405162002757380380620027578339810160408190526200006f91620002ac565b835184908490620000889060009060208501906200014f565b5080516200009e9060019060208401906200014f565b5050506000620000b36200014b60201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35081516200011690600f9060208501906200014f565b50600b80546001600160a01b039092166001600160a01b031992831681179091556011805490921617905550620003b2915050565b3390565b8280546200015d906200035f565b90600052602060002090601f016020900481019282620001815760008555620001cc565b82601f106200019c57805160ff1916838001178555620001cc565b82800160010185558215620001cc579182015b82811115620001cc578251825591602001919060010190620001af565b50620001da929150620001de565b5090565b5b80821115620001da5760008155600101620001df565b600082601f8301126200020757600080fd5b81516001600160401b03808211156200022457620002246200039c565b604051601f8301601f19908116603f011681019082821181831017156200024f576200024f6200039c565b816040528381526020925086838588010111156200026c57600080fd5b600091505b8382101562000290578582018301518183018401529082019062000271565b83821115620002a25760008385830101525b9695505050505050565b60008060008060808587031215620002c357600080fd5b84516001600160401b0380821115620002db57600080fd5b620002e988838901620001f5565b955060208701519150808211156200030057600080fd5b6200030e88838901620001f5565b945060408701519150808211156200032557600080fd5b506200033487828801620001f5565b606087015190935090506001600160a01b03811681146200035457600080fd5b939692955090935050565b600181811c908216806200037457607f821691505b602082108114156200039657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61239580620003c26000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063c1bb134e11610095578063eb8d244411610064578063eb8d24441461051a578063f2fde38b14610534578063f851a44014610554578063ff5029ff1461057457600080fd5b8063c1bb134e1461047e578063c87b56dd1461049e578063dff63243146104be578063e985e9c5146104d157600080fd5b8063a22cb465116100d1578063a22cb46514610408578063aa30a94714610428578063aa592f2514610448578063b88d4fde1461045e57600080fd5b8063715018a6146103c05780638da5cb5b146103d557806395d89b41146103f357600080fd5b806332cb6b0c1161016f5780634f6ccce71161013e5780634f6ccce71461034057806355f804b3146103605780636352211e1461038057806370a08231146103a057600080fd5b806332cb6b0c146102e257806334918dfd146102f85780633b4041191461030d57806342842e0e1461032057600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a25780632f745c59146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611fed565b610594565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105bf565b6040516101fe9190612121565b34801561023557600080fd5b50610249610244366004612070565b610651565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611fc3565b6106eb565b005b34801561028f57600080fd5b506008545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004611ecf565b610801565b3480156102ce57600080fd5b506102946102dd366004611fc3565b6108a5565b3480156102ee57600080fd5b50610294600c5481565b34801561030457600080fd5b5061028161093b565b61028161031b366004612070565b61098e565b34801561032c57600080fd5b5061028161033b366004611ecf565b610ae7565b34801561034c57600080fd5b5061029461035b366004612070565b610b02565b34801561036c57600080fd5b5061028161037b366004612027565b610b95565b34801561038c57600080fd5b5061024961039b366004612070565b610beb565b3480156103ac57600080fd5b506102946103bb366004611e81565b610c62565b3480156103cc57600080fd5b50610281610ce9565b3480156103e157600080fd5b50600a546001600160a01b0316610249565b3480156103ff57600080fd5b5061021c610d8d565b34801561041457600080fd5b50610281610423366004611f87565b610d9c565b34801561043457600080fd5b50600b54610249906001600160a01b031681565b34801561045457600080fd5b50610294600d5481565b34801561046a57600080fd5b50610281610479366004611f0b565b610e61565b34801561048a57600080fd5b50610281610499366004611e81565b610e99565b3480156104aa57600080fd5b5061021c6104b9366004612070565b610f04565b6102816104cc366004612070565b610fdf565b3480156104dd57600080fd5b506101f26104ec366004611e9c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561052657600080fd5b50600e546101f29060ff1681565b34801561054057600080fd5b5061028161054f366004611e81565b611293565b34801561056057600080fd5b50601054610249906001600160a01b031681565b34801561058057600080fd5b50601154610249906001600160a01b031681565b60006001600160e01b0319821663780e9d6360e01b14806105b957506105b9826113ae565b92915050565b6060600080546105ce9061226e565b80601f01602080910402602001604051908101604052809291908181526020018280546105fa9061226e565b80156106475780601f1061061c57610100808354040283529160200191610647565b820191906000526020600020905b81548152906001019060200180831161062a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106cf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106f682610beb565b9050806001600160a01b0316836001600160a01b031614156107645760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106c6565b336001600160a01b0382161480610780575061078081336104ec565b6107f25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106c6565b6107fc83836113fe565b505050565b600b546001600160a01b031661dead1461087457601154604051633ade29b160e01b8152600481018390526001600160a01b0390911690633ade29b190602401600060405180830381600087803b15801561085b57600080fd5b505af115801561086f573d6000803e3d6000fd5b505050505b61087e338261146c565b61089a5760405162461bcd60e51b81526004016106c6906121ae565b6107fc838383611563565b60006108b083610c62565b82106109125760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106c6565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6010546001600160a01b031633148061095e5750600a546001600160a01b031633145b61097a5760405162461bcd60e51b81526004016106c690612186565b600e805460ff19811660ff90911615179055565b6010546001600160a01b03163314806109b15750600a546001600160a01b031633145b6109cd5760405162461bcd60e51b81526004016106c690612186565b6000811180156109df5750600d548111155b610a2b5760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f7567682072657365727665206c65667400000000000000000060448201526064016106c6565b60005b81811015610ad3576000610a4160085490565b9050610a4d338261170e565b600b546001600160a01b031661dead14610ac057601154604051633ade29b160e01b8152600481018390526001600160a01b0390911690633ade29b190602401600060405180830381600087803b158015610aa757600080fd5b505af1158015610abb573d6000803e3d6000fd5b505050505b5080610acb816122a9565b915050610a2e565b50600d54610ae19082611728565b600d5550565b6107fc83838360405180602001604052806000815250610e61565b6000610b0d60085490565b8210610b705760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106c6565b60088281548110610b8357610b8361231a565b90600052602060002001549050919050565b6010546001600160a01b0316331480610bb85750600a546001600160a01b031633145b610bd45760405162461bcd60e51b81526004016106c690612186565b8051610be790600f906020840190611d56565b5050565b6000818152600260205260408120546001600160a01b0316806105b95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106c6565b60006001600160a01b038216610ccd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106c6565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106c6565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6060600180546105ce9061226e565b6001600160a01b038216331415610df55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106c6565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e6b338361146c565b610e875760405162461bcd60e51b81526004016106c6906121ae565b610e9384848484611734565b50505050565b6010546001600160a01b0316331480610ebc5750600a546001600160a01b031633145b610ed85760405162461bcd60e51b81526004016106c690612186565b600b80546001600160a01b039092166001600160a01b0319928316811790915560118054909216179055565b6000818152600260205260409020546060906001600160a01b0316610f835760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106c6565b6000610f8d611767565b90506000815111610fad5760405180602001604052806000815250610fd8565b80610fb784611776565b604051602001610fc89291906120b5565b6040516020818303038152906040525b9392505050565b600e5460ff166110315760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e7460448201526064016106c6565b600161103c33610c62565b106110a05760405162461bcd60e51b815260206004820152602e60248201527f596f752068617665206578636565646564206d61782067656e65736973206c6960448201526d1b5a5d081c195c881dd85b1b195d60921b60648201526084016106c6565b600d54600c546110af91611728565b6110c2826110bc60085490565b90611874565b11156111245760405162461bcd60e51b815260206004820152602b60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526a206f662067656e6573697360a81b60648201526084016106c6565b60018111156111915760405162461bcd60e51b815260206004820152603360248201527f596f752068617665206578636565646564206d61782047656e65736973206c6960448201527236b4ba103832b9103a3930b739b0b1ba34b7b760691b60648201526084016106c6565b600081116111fd5760405162461bcd60e51b815260206004820152603360248201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736044820152720207468616e206f7220657175616c20746f203606c1b60648201526084016106c6565b61120f3361120a60085490565b61170e565b600061121a60085490565b600b549091506001600160a01b031661dead14610be757601154604051633ade29b160e01b8152600481018390526001600160a01b0390911690633ade29b190602401600060405180830381600087803b15801561127757600080fd5b505af115801561128b573d6000803e3d6000fd5b505050505050565b600a546001600160a01b031633146112ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106c6565b6001600160a01b0381166113525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c6565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806113df57506001600160e01b03198216635b5e139f60e01b145b806105b957506301ffc9a760e01b6001600160e01b03198316146105b9565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061143382610beb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114e55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106c6565b60006114f083610beb565b9050806001600160a01b0316846001600160a01b0316148061152b5750836001600160a01b031661152084610651565b6001600160a01b0316145b8061155b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661157682610beb565b6001600160a01b0316146115de5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106c6565b6001600160a01b0382166116405760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106c6565b61164b838383611880565b6116566000826113fe565b6001600160a01b038316600090815260036020526040812080546001929061167f90849061222b565b90915550506001600160a01b03821660009081526003602052604081208054600192906116ad9084906121ff565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610be7828260405180602001604052806000815250611938565b6000610fd8828461222b565b61173f848484611563565b61174b8484848461196b565b610e935760405162461bcd60e51b81526004016106c690612134565b6060600f80546105ce9061226e565b60608161179a5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117c457806117ae816122a9565b91506117bd9050600a83612217565b915061179e565b60008167ffffffffffffffff8111156117df576117df612330565b6040519080825280601f01601f191660200182016040528015611809576020820181803683370190505b5090505b841561155b5761181e60018361222b565b915061182b600a866122c4565b6118369060306121ff565b60f81b81838151811061184b5761184b61231a565b60200101906001600160f81b031916908160001a90535061186d600a86612217565b945061180d565b6000610fd882846121ff565b6001600160a01b0383166118db576118d681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6118fe565b816001600160a01b0316836001600160a01b0316146118fe576118fe8382611a78565b6001600160a01b038216611915576107fc81611b15565b826001600160a01b0316826001600160a01b0316146107fc576107fc8282611bc4565b6119428383611c08565b61194f600084848461196b565b6107fc5760405162461bcd60e51b81526004016106c690612134565b60006001600160a01b0384163b15611a6d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119af9033908990889088906004016120e4565b602060405180830381600087803b1580156119c957600080fd5b505af19250505080156119f9575060408051601f3d908101601f191682019092526119f69181019061200a565b60015b611a53573d808015611a27576040519150601f19603f3d011682016040523d82523d6000602084013e611a2c565b606091505b508051611a4b5760405162461bcd60e51b81526004016106c690612134565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061155b565b506001949350505050565b60006001611a8584610c62565b611a8f919061222b565b600083815260076020526040902054909150808214611ae2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b279060019061222b565b60008381526009602052604081205460088054939450909284908110611b4f57611b4f61231a565b906000526020600020015490508060088381548110611b7057611b7061231a565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ba857611ba8612304565b6001900381819060005260206000200160009055905550505050565b6000611bcf83610c62565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c5e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106c6565b6000818152600260205260409020546001600160a01b031615611cc35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106c6565b611ccf60008383611880565b6001600160a01b0382166000908152600360205260408120805460019290611cf89084906121ff565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d629061226e565b90600052602060002090601f016020900481019282611d845760008555611dca565b82601f10611d9d57805160ff1916838001178555611dca565b82800160010185558215611dca579182015b82811115611dca578251825591602001919060010190611daf565b50611dd6929150611dda565b5090565b5b80821115611dd65760008155600101611ddb565b600067ffffffffffffffff80841115611e0a57611e0a612330565b604051601f8501601f19908116603f01168101908282118183101715611e3257611e32612330565b81604052809350858152868686011115611e4b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e7c57600080fd5b919050565b600060208284031215611e9357600080fd5b610fd882611e65565b60008060408385031215611eaf57600080fd5b611eb883611e65565b9150611ec660208401611e65565b90509250929050565b600080600060608486031215611ee457600080fd5b611eed84611e65565b9250611efb60208501611e65565b9150604084013590509250925092565b60008060008060808587031215611f2157600080fd5b611f2a85611e65565b9350611f3860208601611e65565b925060408501359150606085013567ffffffffffffffff811115611f5b57600080fd5b8501601f81018713611f6c57600080fd5b611f7b87823560208401611def565b91505092959194509250565b60008060408385031215611f9a57600080fd5b611fa383611e65565b915060208301358015158114611fb857600080fd5b809150509250929050565b60008060408385031215611fd657600080fd5b611fdf83611e65565b946020939093013593505050565b600060208284031215611fff57600080fd5b8135610fd881612346565b60006020828403121561201c57600080fd5b8151610fd881612346565b60006020828403121561203957600080fd5b813567ffffffffffffffff81111561205057600080fd5b8201601f8101841361206157600080fd5b61155b84823560208401611def565b60006020828403121561208257600080fd5b5035919050565b600081518084526120a1816020860160208601612242565b601f01601f19169290920160200192915050565b600083516120c7818460208801612242565b8351908301906120db818360208801612242565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061211790830184612089565b9695505050505050565b602081526000610fd86020830184612089565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600e908201526d24b73b30b634b21039b2b73232b960911b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612212576122126122d8565b500190565b600082612226576122266122ee565b500490565b60008282101561223d5761223d6122d8565b500390565b60005b8381101561225d578181015183820152602001612245565b83811115610e935750506000910152565b600181811c9082168061228257607f821691505b602082108114156122a357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122bd576122bd6122d8565b5060010190565b6000826122d3576122d36122ee565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461235c57600080fd5b5056fea2646970667358221220b278d3a2830ebbdb1b5c8a659a4e91fa8d93fe38267100e8f49825025682259264736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000dead00000000000000000000000000000000000000000000000000000000000000104d6574614b69647a2047656e6573697300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4d6574614b69647a474300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f6d657461646174612e6d6574616b69647a2e696f2f746f6b656e4964732f0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063c1bb134e11610095578063eb8d244411610064578063eb8d24441461051a578063f2fde38b14610534578063f851a44014610554578063ff5029ff1461057457600080fd5b8063c1bb134e1461047e578063c87b56dd1461049e578063dff63243146104be578063e985e9c5146104d157600080fd5b8063a22cb465116100d1578063a22cb46514610408578063aa30a94714610428578063aa592f2514610448578063b88d4fde1461045e57600080fd5b8063715018a6146103c05780638da5cb5b146103d557806395d89b41146103f357600080fd5b806332cb6b0c1161016f5780634f6ccce71161013e5780634f6ccce71461034057806355f804b3146103605780636352211e1461038057806370a08231146103a057600080fd5b806332cb6b0c146102e257806334918dfd146102f85780633b4041191461030d57806342842e0e1461032057600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a25780632f745c59146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611fed565b610594565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105bf565b6040516101fe9190612121565b34801561023557600080fd5b50610249610244366004612070565b610651565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611fc3565b6106eb565b005b34801561028f57600080fd5b506008545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004611ecf565b610801565b3480156102ce57600080fd5b506102946102dd366004611fc3565b6108a5565b3480156102ee57600080fd5b50610294600c5481565b34801561030457600080fd5b5061028161093b565b61028161031b366004612070565b61098e565b34801561032c57600080fd5b5061028161033b366004611ecf565b610ae7565b34801561034c57600080fd5b5061029461035b366004612070565b610b02565b34801561036c57600080fd5b5061028161037b366004612027565b610b95565b34801561038c57600080fd5b5061024961039b366004612070565b610beb565b3480156103ac57600080fd5b506102946103bb366004611e81565b610c62565b3480156103cc57600080fd5b50610281610ce9565b3480156103e157600080fd5b50600a546001600160a01b0316610249565b3480156103ff57600080fd5b5061021c610d8d565b34801561041457600080fd5b50610281610423366004611f87565b610d9c565b34801561043457600080fd5b50600b54610249906001600160a01b031681565b34801561045457600080fd5b50610294600d5481565b34801561046a57600080fd5b50610281610479366004611f0b565b610e61565b34801561048a57600080fd5b50610281610499366004611e81565b610e99565b3480156104aa57600080fd5b5061021c6104b9366004612070565b610f04565b6102816104cc366004612070565b610fdf565b3480156104dd57600080fd5b506101f26104ec366004611e9c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561052657600080fd5b50600e546101f29060ff1681565b34801561054057600080fd5b5061028161054f366004611e81565b611293565b34801561056057600080fd5b50601054610249906001600160a01b031681565b34801561058057600080fd5b50601154610249906001600160a01b031681565b60006001600160e01b0319821663780e9d6360e01b14806105b957506105b9826113ae565b92915050565b6060600080546105ce9061226e565b80601f01602080910402602001604051908101604052809291908181526020018280546105fa9061226e565b80156106475780601f1061061c57610100808354040283529160200191610647565b820191906000526020600020905b81548152906001019060200180831161062a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106cf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106f682610beb565b9050806001600160a01b0316836001600160a01b031614156107645760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106c6565b336001600160a01b0382161480610780575061078081336104ec565b6107f25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106c6565b6107fc83836113fe565b505050565b600b546001600160a01b031661dead1461087457601154604051633ade29b160e01b8152600481018390526001600160a01b0390911690633ade29b190602401600060405180830381600087803b15801561085b57600080fd5b505af115801561086f573d6000803e3d6000fd5b505050505b61087e338261146c565b61089a5760405162461bcd60e51b81526004016106c6906121ae565b6107fc838383611563565b60006108b083610c62565b82106109125760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106c6565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6010546001600160a01b031633148061095e5750600a546001600160a01b031633145b61097a5760405162461bcd60e51b81526004016106c690612186565b600e805460ff19811660ff90911615179055565b6010546001600160a01b03163314806109b15750600a546001600160a01b031633145b6109cd5760405162461bcd60e51b81526004016106c690612186565b6000811180156109df5750600d548111155b610a2b5760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f7567682072657365727665206c65667400000000000000000060448201526064016106c6565b60005b81811015610ad3576000610a4160085490565b9050610a4d338261170e565b600b546001600160a01b031661dead14610ac057601154604051633ade29b160e01b8152600481018390526001600160a01b0390911690633ade29b190602401600060405180830381600087803b158015610aa757600080fd5b505af1158015610abb573d6000803e3d6000fd5b505050505b5080610acb816122a9565b915050610a2e565b50600d54610ae19082611728565b600d5550565b6107fc83838360405180602001604052806000815250610e61565b6000610b0d60085490565b8210610b705760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106c6565b60088281548110610b8357610b8361231a565b90600052602060002001549050919050565b6010546001600160a01b0316331480610bb85750600a546001600160a01b031633145b610bd45760405162461bcd60e51b81526004016106c690612186565b8051610be790600f906020840190611d56565b5050565b6000818152600260205260408120546001600160a01b0316806105b95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106c6565b60006001600160a01b038216610ccd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106c6565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106c6565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6060600180546105ce9061226e565b6001600160a01b038216331415610df55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106c6565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e6b338361146c565b610e875760405162461bcd60e51b81526004016106c6906121ae565b610e9384848484611734565b50505050565b6010546001600160a01b0316331480610ebc5750600a546001600160a01b031633145b610ed85760405162461bcd60e51b81526004016106c690612186565b600b80546001600160a01b039092166001600160a01b0319928316811790915560118054909216179055565b6000818152600260205260409020546060906001600160a01b0316610f835760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106c6565b6000610f8d611767565b90506000815111610fad5760405180602001604052806000815250610fd8565b80610fb784611776565b604051602001610fc89291906120b5565b6040516020818303038152906040525b9392505050565b600e5460ff166110315760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e7460448201526064016106c6565b600161103c33610c62565b106110a05760405162461bcd60e51b815260206004820152602e60248201527f596f752068617665206578636565646564206d61782067656e65736973206c6960448201526d1b5a5d081c195c881dd85b1b195d60921b60648201526084016106c6565b600d54600c546110af91611728565b6110c2826110bc60085490565b90611874565b11156111245760405162461bcd60e51b815260206004820152602b60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526a206f662067656e6573697360a81b60648201526084016106c6565b60018111156111915760405162461bcd60e51b815260206004820152603360248201527f596f752068617665206578636565646564206d61782047656e65736973206c6960448201527236b4ba103832b9103a3930b739b0b1ba34b7b760691b60648201526084016106c6565b600081116111fd5760405162461bcd60e51b815260206004820152603360248201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736044820152720207468616e206f7220657175616c20746f203606c1b60648201526084016106c6565b61120f3361120a60085490565b61170e565b600061121a60085490565b600b549091506001600160a01b031661dead14610be757601154604051633ade29b160e01b8152600481018390526001600160a01b0390911690633ade29b190602401600060405180830381600087803b15801561127757600080fd5b505af115801561128b573d6000803e3d6000fd5b505050505050565b600a546001600160a01b031633146112ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106c6565b6001600160a01b0381166113525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c6565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806113df57506001600160e01b03198216635b5e139f60e01b145b806105b957506301ffc9a760e01b6001600160e01b03198316146105b9565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061143382610beb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114e55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106c6565b60006114f083610beb565b9050806001600160a01b0316846001600160a01b0316148061152b5750836001600160a01b031661152084610651565b6001600160a01b0316145b8061155b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661157682610beb565b6001600160a01b0316146115de5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106c6565b6001600160a01b0382166116405760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106c6565b61164b838383611880565b6116566000826113fe565b6001600160a01b038316600090815260036020526040812080546001929061167f90849061222b565b90915550506001600160a01b03821660009081526003602052604081208054600192906116ad9084906121ff565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610be7828260405180602001604052806000815250611938565b6000610fd8828461222b565b61173f848484611563565b61174b8484848461196b565b610e935760405162461bcd60e51b81526004016106c690612134565b6060600f80546105ce9061226e565b60608161179a5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117c457806117ae816122a9565b91506117bd9050600a83612217565b915061179e565b60008167ffffffffffffffff8111156117df576117df612330565b6040519080825280601f01601f191660200182016040528015611809576020820181803683370190505b5090505b841561155b5761181e60018361222b565b915061182b600a866122c4565b6118369060306121ff565b60f81b81838151811061184b5761184b61231a565b60200101906001600160f81b031916908160001a90535061186d600a86612217565b945061180d565b6000610fd882846121ff565b6001600160a01b0383166118db576118d681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6118fe565b816001600160a01b0316836001600160a01b0316146118fe576118fe8382611a78565b6001600160a01b038216611915576107fc81611b15565b826001600160a01b0316826001600160a01b0316146107fc576107fc8282611bc4565b6119428383611c08565b61194f600084848461196b565b6107fc5760405162461bcd60e51b81526004016106c690612134565b60006001600160a01b0384163b15611a6d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119af9033908990889088906004016120e4565b602060405180830381600087803b1580156119c957600080fd5b505af19250505080156119f9575060408051601f3d908101601f191682019092526119f69181019061200a565b60015b611a53573d808015611a27576040519150601f19603f3d011682016040523d82523d6000602084013e611a2c565b606091505b508051611a4b5760405162461bcd60e51b81526004016106c690612134565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061155b565b506001949350505050565b60006001611a8584610c62565b611a8f919061222b565b600083815260076020526040902054909150808214611ae2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b279060019061222b565b60008381526009602052604081205460088054939450909284908110611b4f57611b4f61231a565b906000526020600020015490508060088381548110611b7057611b7061231a565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ba857611ba8612304565b6001900381819060005260206000200160009055905550505050565b6000611bcf83610c62565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c5e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106c6565b6000818152600260205260409020546001600160a01b031615611cc35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106c6565b611ccf60008383611880565b6001600160a01b0382166000908152600360205260408120805460019290611cf89084906121ff565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d629061226e565b90600052602060002090601f016020900481019282611d845760008555611dca565b82601f10611d9d57805160ff1916838001178555611dca565b82800160010185558215611dca579182015b82811115611dca578251825591602001919060010190611daf565b50611dd6929150611dda565b5090565b5b80821115611dd65760008155600101611ddb565b600067ffffffffffffffff80841115611e0a57611e0a612330565b604051601f8501601f19908116603f01168101908282118183101715611e3257611e32612330565b81604052809350858152868686011115611e4b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e7c57600080fd5b919050565b600060208284031215611e9357600080fd5b610fd882611e65565b60008060408385031215611eaf57600080fd5b611eb883611e65565b9150611ec660208401611e65565b90509250929050565b600080600060608486031215611ee457600080fd5b611eed84611e65565b9250611efb60208501611e65565b9150604084013590509250925092565b60008060008060808587031215611f2157600080fd5b611f2a85611e65565b9350611f3860208601611e65565b925060408501359150606085013567ffffffffffffffff811115611f5b57600080fd5b8501601f81018713611f6c57600080fd5b611f7b87823560208401611def565b91505092959194509250565b60008060408385031215611f9a57600080fd5b611fa383611e65565b915060208301358015158114611fb857600080fd5b809150509250929050565b60008060408385031215611fd657600080fd5b611fdf83611e65565b946020939093013593505050565b600060208284031215611fff57600080fd5b8135610fd881612346565b60006020828403121561201c57600080fd5b8151610fd881612346565b60006020828403121561203957600080fd5b813567ffffffffffffffff81111561205057600080fd5b8201601f8101841361206157600080fd5b61155b84823560208401611def565b60006020828403121561208257600080fd5b5035919050565b600081518084526120a1816020860160208601612242565b601f01601f19169290920160200192915050565b600083516120c7818460208801612242565b8351908301906120db818360208801612242565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061211790830184612089565b9695505050505050565b602081526000610fd86020830184612089565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600e908201526d24b73b30b634b21039b2b73232b960911b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612212576122126122d8565b500190565b600082612226576122266122ee565b500490565b60008282101561223d5761223d6122d8565b500390565b60005b8381101561225d578181015183820152602001612245565b83811115610e935750506000910152565b600181811c9082168061228257607f821691505b602082108114156122a357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122bd576122bd6122d8565b5060010190565b6000826122d3576122d36122ee565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461235c57600080fd5b5056fea2646970667358221220b278d3a2830ebbdb1b5c8a659a4e91fa8d93fe38267100e8f49825025682259264736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000dead00000000000000000000000000000000000000000000000000000000000000104d6574614b69647a2047656e6573697300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4d6574614b69647a474300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f6d657461646174612e6d6574616b69647a2e696f2f746f6b656e4964732f0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): MetaKidz Genesis
Arg [1] : _symbol (string): MetaKidzGC
Arg [2] : _BaseURI (string): https://metadata.metakidz.io/tokenIds/
Arg [3] : _metabitsContractAddress (address): 0x000000000000000000000000000000000000dEaD

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 000000000000000000000000000000000000000000000000000000000000dead
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [5] : 4d6574614b69647a2047656e6573697300000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 4d6574614b69647a474300000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000026
Arg [9] : 68747470733a2f2f6d657461646174612e6d6574616b69647a2e696f2f746f6b
Arg [10] : 656e4964732f0000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

49190:3274:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42942:237;;;;;;;;;;-1:-1:-1;42942:237:0;;;;;:::i;:::-;;:::i;:::-;;;5646:14:1;;5639:22;5621:41;;5609:2;5594:18;42942:237:0;;;;;;;;31229:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32689:221::-;;;;;;;;;;-1:-1:-1;32689:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;32689:221:0;4780:203:1;32226:397:0;;;;;;;;;;-1:-1:-1;32226:397:0;;;;;:::i;:::-;;:::i;:::-;;43595:113;;;;;;;;;;-1:-1:-1;43683:10:0;:17;43595:113;;;16198:25:1;;;16186:2;16171:18;43595:113:0;16052:177:1;51647:389:0;;;;;;;;;;-1:-1:-1;51647:389:0;;;;;:::i;:::-;;:::i;43263:256::-;;;;;;;;;;-1:-1:-1;43263:256:0;;;;;:::i;:::-;;:::i;49387:32::-;;;;;;;;;;;;;;;;49947:161;;;;;;;;;;;;;:::i;50904:606::-;;;;;;:::i;:::-;;:::i;33955:151::-;;;;;;;;;;-1:-1:-1;33955:151:0;;;;;:::i;:::-;;:::i;43785:233::-;;;;;;;;;;-1:-1:-1;43785:233:0;;;;;:::i;:::-;;:::i;52044:181::-;;;;;;;;;;-1:-1:-1;52044:181:0;;;;;:::i;:::-;;:::i;30923:239::-;;;;;;;;;;-1:-1:-1;30923:239:0;;;;;:::i;:::-;;:::i;30653:208::-;;;;;;;;;;-1:-1:-1;30653:208:0;;;;;:::i;:::-;;:::i;28481:148::-;;;;;;;;;;;;;:::i;27830:87::-;;;;;;;;;;-1:-1:-1;27903:6:0;;-1:-1:-1;;;;;27903:6:0;27830:87;;31398:104;;;;;;;;;;;;;:::i;32982:295::-;;;;;;;;;;-1:-1:-1;32982:295:0;;;;;:::i;:::-;;:::i;49342:38::-;;;;;;;;;;-1:-1:-1;49342:38:0;;;;-1:-1:-1;;;;;49342:38:0;;;49426:28;;;;;;;;;;;;;;;;34177:285;;;;;;;;;;-1:-1:-1;34177:285:0;;;;;:::i;:::-;;:::i;52234:227::-;;;;;;;;;;-1:-1:-1;52234:227:0;;;;;:::i;:::-;;:::i;31573:360::-;;;;;;;;;;-1:-1:-1;31573:360:0;;;;;:::i;:::-;;:::i;50116:780::-;;;;;;:::i;:::-;;:::i;33348:164::-;;;;;;;;;;-1:-1:-1;33348:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33469:25:0;;;33445:4;33469:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33348:164;49461:32;;;;;;;;;;-1:-1:-1;49461:32:0;;;;;;;;28784:244;;;;;;;;;;-1:-1:-1;28784:244:0;;;;;:::i;:::-;;:::i;49538:65::-;;;;;;;;;;-1:-1:-1;49538:65:0;;;;-1:-1:-1;;;;;49538:65:0;;;49610:24;;;;;;;;;;-1:-1:-1;49610:24:0;;;;-1:-1:-1;;;;;49610:24:0;;;42942:237;43044:4;-1:-1:-1;;;;;;43068:50:0;;-1:-1:-1;;;43068:50:0;;:103;;;43135:36;43159:11;43135:23;:36::i;:::-;43061:110;42942:237;-1:-1:-1;;42942:237:0:o;31229:100::-;31283:13;31316:5;31309:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31229:100;:::o;32689:221::-;32765:7;36018:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36018:16:0;32785:73;;;;-1:-1:-1;;;32785:73:0;;11461:2:1;32785:73:0;;;11443:21:1;11500:2;11480:18;;;11473:30;11539:34;11519:18;;;11512:62;-1:-1:-1;;;11590:18:1;;;11583:42;11642:19;;32785:73:0;;;;;;;;;-1:-1:-1;32878:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32878:24:0;;32689:221::o;32226:397::-;32307:13;32323:23;32338:7;32323:14;:23::i;:::-;32307:39;;32371:5;-1:-1:-1;;;;;32365:11:0;:2;-1:-1:-1;;;;;32365:11:0;;;32357:57;;;;-1:-1:-1;;;32357:57:0;;13833:2:1;32357:57:0;;;13815:21:1;13872:2;13852:18;;;13845:30;13911:34;13891:18;;;13884:62;-1:-1:-1;;;13962:18:1;;;13955:31;14003:19;;32357:57:0;13631:397:1;32357:57:0;26527:10;-1:-1:-1;;;;;32435:21:0;;;;:62;;-1:-1:-1;32460:37:0;32477:5;26527:10;33348:164;:::i;32460:37::-;32427:154;;;;-1:-1:-1;;;32427:154:0;;9854:2:1;32427:154:0;;;9836:21:1;9893:2;9873:18;;;9866:30;9932:34;9912:18;;;9905:62;10003:26;9983:18;;;9976:54;10047:19;;32427:154:0;9652:420:1;32427:154:0;32594:21;32603:2;32607:7;32594:8;:21::i;:::-;32296:327;32226:397;;:::o;51647:389::-;51742:23;;-1:-1:-1;;;;;51742:23:0;51769:42;51742:69;51739:137;;51823:8;;:41;;-1:-1:-1;;;51823:41:0;;;;;16198:25:1;;;-1:-1:-1;;;;;51823:8:0;;;;:32;;16171:18:1;;51823:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51739:137;51894:41;26527:10;51927:7;51894:18;:41::i;:::-;51886:103;;;;-1:-1:-1;;;51886:103:0;;;;;;;:::i;:::-;52000:28;52010:4;52016:2;52020:7;52000:9;:28::i;43263:256::-;43360:7;43396:23;43413:5;43396:16;:23::i;:::-;43388:5;:31;43380:87;;;;-1:-1:-1;;;43380:87:0;;6744:2:1;43380:87:0;;;6726:21:1;6783:2;6763:18;;;6756:30;6822:34;6802:18;;;6795:62;-1:-1:-1;;;6873:18:1;;;6866:41;6924:19;;43380:87:0;6542:407:1;43380:87:0;-1:-1:-1;;;;;;43485:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43263:256::o;49947:161::-;50012:5;;-1:-1:-1;;;;;50012:5:0;49998:10;:19;;:44;;-1:-1:-1;27903:6:0;;-1:-1:-1;;;;;27903:6:0;50021:10;:21;49998:44;49990:71;;;;-1:-1:-1;;;49990:71:0;;;;;;;:::i;:::-;50088:12;;;-1:-1:-1;;50072:28:0;;50088:12;;;;50087:13;50072:28;;;49947:161::o;50904:606::-;51000:5;;-1:-1:-1;;;;;51000:5:0;50986:10;:19;;:44;;-1:-1:-1;27903:6:0;;-1:-1:-1;;;;;27903:6:0;51009:10;:21;50986:44;50978:71;;;;-1:-1:-1;;;50978:71:0;;;;;;;:::i;:::-;51084:1;51068:13;:17;:46;;;;;51106:8;;51089:13;:25;;51068:46;51060:82;;;;-1:-1:-1;;;51060:82:0;;13481:2:1;51060:82:0;;;13463:21:1;13520:2;13500:18;;;13493:30;13559:25;13539:18;;;13532:53;13602:18;;51060:82:0;13279:347:1;51060:82:0;51157:9;51153:299;51176:13;51172:1;:17;51153:299;;;51211:17;51231:13;43683:10;:17;;43595:113;51231:13;51211:33;;51259:32;51269:10;51281:9;51259;:32::i;:::-;51305:23;;-1:-1:-1;;;;;51305:23:0;51332:42;51305:69;51302:139;;51386:8;;:43;;-1:-1:-1;;;51386:43:0;;;;;16198:25:1;;;-1:-1:-1;;;;;51386:8:0;;;;:32;;16171:18:1;;51386:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51302:139;-1:-1:-1;51191:3:0;;;;:::i;:::-;;;;51153:299;;;-1:-1:-1;51475:8:0;;:27;;51488:13;51475:12;:27::i;:::-;51464:8;:38;-1:-1:-1;50904:606:0:o;33955:151::-;34059:39;34076:4;34082:2;34086:7;34059:39;;;;;;;;;;;;:16;:39::i;43785:233::-;43860:7;43896:30;43683:10;:17;;43595:113;43896:30;43888:5;:38;43880:95;;;;-1:-1:-1;;;43880:95:0;;15068:2:1;43880:95:0;;;15050:21:1;15107:2;15087:18;;;15080:30;15146:34;15126:18;;;15119:62;-1:-1:-1;;;15197:18:1;;;15190:42;15249:19;;43880:95:0;14866:408:1;43880:95:0;43993:10;44004:5;43993:17;;;;;;;;:::i;:::-;;;;;;;;;43986:24;;43785:233;;;:::o;52044:181::-;52130:5;;-1:-1:-1;;;;;52130:5:0;52116:10;:19;;:44;;-1:-1:-1;27903:6:0;;-1:-1:-1;;;;;27903:6:0;52139:10;:21;52116:44;52108:71;;;;-1:-1:-1;;;52108:71:0;;;;;;;:::i;:::-;52190:27;;;;:16;;:27;;;;;:::i;:::-;;52044:181;:::o;30923:239::-;30995:7;31031:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31031:16:0;31066:19;31058:73;;;;-1:-1:-1;;;31058:73:0;;10690:2:1;31058:73:0;;;10672:21:1;10729:2;10709:18;;;10702:30;10768:34;10748:18;;;10741:62;-1:-1:-1;;;10819:18:1;;;10812:39;10868:19;;31058:73:0;10488:405:1;30653:208:0;30725:7;-1:-1:-1;;;;;30753:19:0;;30745:74;;;;-1:-1:-1;;;30745:74:0;;10279:2:1;30745:74:0;;;10261:21:1;10318:2;10298:18;;;10291:30;10357:34;10337:18;;;10330:62;-1:-1:-1;;;10408:18:1;;;10401:40;10458:19;;30745:74:0;10077:406:1;30745:74:0;-1:-1:-1;;;;;;30837:16:0;;;;;:9;:16;;;;;;;30653:208::o;28481:148::-;27903:6;;-1:-1:-1;;;;;27903:6:0;26527:10;28050:23;28042:68;;;;-1:-1:-1;;;28042:68:0;;12294:2:1;28042:68:0;;;12276:21:1;;;12313:18;;;12306:30;12372:34;12352:18;;;12345:62;12424:18;;28042:68:0;12092:356:1;28042:68:0;28572:6:::1;::::0;28551:40:::1;::::0;28588:1:::1;::::0;-1:-1:-1;;;;;28572:6:0::1;::::0;28551:40:::1;::::0;28588:1;;28551:40:::1;28602:6;:19:::0;;-1:-1:-1;;;;;;28602:19:0::1;::::0;;28481:148::o;31398:104::-;31454:13;31487:7;31480:14;;;;;:::i;32982:295::-;-1:-1:-1;;;;;33085:24:0;;26527:10;33085:24;;33077:62;;;;-1:-1:-1;;;33077:62:0;;8744:2:1;33077:62:0;;;8726:21:1;8783:2;8763:18;;;8756:30;8822:27;8802:18;;;8795:55;8867:18;;33077:62:0;8542:349:1;33077:62:0;26527:10;33152:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33152:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33152:53:0;;;;;;;;;;33221:48;;5621:41:1;;;33152:42:0;;26527:10;33221:48;;5594:18:1;33221:48:0;;;;;;;32982:295;;:::o;34177:285::-;34309:41;26527:10;34342:7;34309:18;:41::i;:::-;34301:103;;;;-1:-1:-1;;;34301:103:0;;;;;;;:::i;:::-;34415:39;34429:4;34435:2;34439:7;34448:5;34415:13;:39::i;:::-;34177:285;;;;:::o;52234:227::-;52325:5;;-1:-1:-1;;;;;52325:5:0;52311:10;:19;;:44;;-1:-1:-1;27903:6:0;;-1:-1:-1;;;;;27903:6:0;52334:10;:21;52311:44;52303:71;;;;-1:-1:-1;;;52303:71:0;;;;;;;:::i;:::-;52385:23;:31;;-1:-1:-1;;;;;52385:31:0;;;-1:-1:-1;;;;;;52385:31:0;;;;;;;;52427:8;:26;;;;;;;;52234:227::o;31573:360::-;35994:4;36018:16;;;:7;:16;;;;;;31646:13;;-1:-1:-1;;;;;36018:16:0;31672:76;;;;-1:-1:-1;;;31672:76:0;;13065:2:1;31672:76:0;;;13047:21:1;13104:2;13084:18;;;13077:30;13143:34;13123:18;;;13116:62;-1:-1:-1;;;13194:18:1;;;13187:45;13249:19;;31672:76:0;12863:411:1;31672:76:0;31761:21;31785:10;:8;:10::i;:::-;31761:34;;31837:1;31819:7;31813:21;:25;:112;;;;;;;;;;;;;;;;;31878:7;31887:18;:7;:16;:18::i;:::-;31861:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31813:112;31806:119;31573:360;-1:-1:-1;;;31573:360:0:o;50116:780::-;50191:12;;;;50183:57;;;;-1:-1:-1;;;50183:57:0;;15893:2:1;50183:57:0;;;15875:21:1;;;15912:18;;;15905:30;15971:34;15951:18;;;15944:62;16023:18;;50183:57:0;15691:356:1;50183:57:0;50283:1;50259:21;50269:10;50259:9;:21::i;:::-;:25;50251:84;;;;-1:-1:-1;;;50251:84:0;;14235:2:1;50251:84:0;;;14217:21:1;14274:2;14254:18;;;14247:30;14313:34;14293:18;;;14286:62;-1:-1:-1;;;14364:18:1;;;14357:44;14418:19;;50251:84:0;14033:410:1;50251:84:0;50405:8;;50390:10;;:24;;:14;:24::i;:::-;50354:32;50372:13;50354;43683:10;:17;;43595:113;50354:13;:17;;:32::i;:::-;:60;;50346:116;;;;-1:-1:-1;;;50346:116:0;;15481:2:1;50346:116:0;;;15463:21:1;15520:2;15500:18;;;15493:30;15559:34;15539:18;;;15532:62;-1:-1:-1;;;15610:18:1;;;15603:41;15661:19;;50346:116:0;15279:407:1;50346:116:0;50498:1;50481:13;:18;;50473:82;;;;-1:-1:-1;;;50473:82:0;;11874:2:1;50473:82:0;;;11856:21:1;11913:2;11893:18;;;11886:30;11952:34;11932:18;;;11925:62;-1:-1:-1;;;12003:18:1;;;11996:49;12062:19;;50473:82:0;11672:415:1;50473:82:0;50590:1;50574:13;:17;50566:81;;;;-1:-1:-1;;;50566:81:0;;6324:2:1;50566:81:0;;;6306:21:1;6363:2;6343:18;;;6336:30;6402:34;6382:18;;;6375:62;-1:-1:-1;;;6453:18:1;;;6446:49;6512:19;;50566:81:0;6122:415:1;50566:81:0;50658:36;50668:10;50680:13;43683:10;:17;;43595:113;50680:13;50658:9;:36::i;:::-;50705:17;50726:13;43683:10;:17;;43595:113;50726:13;50753:23;;50705:34;;-1:-1:-1;;;;;;50753:23:0;50780:42;50753:69;50750:139;;50834:8;;:43;;-1:-1:-1;;;50834:43:0;;;;;16198:25:1;;;-1:-1:-1;;;;;50834:8:0;;;;:32;;16171:18:1;;50834:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50172:724;50116:780;:::o;28784:244::-;27903:6;;-1:-1:-1;;;;;27903:6:0;26527:10;28050:23;28042:68;;;;-1:-1:-1;;;28042:68:0;;12294:2:1;28042:68:0;;;12276:21:1;;;12313:18;;;12306:30;12372:34;12352:18;;;12345:62;12424:18;;28042:68:0;12092:356:1;28042:68:0;-1:-1:-1;;;;;28873:22:0;::::1;28865:73;;;::::0;-1:-1:-1;;;28865:73:0;;7575:2:1;28865:73:0::1;::::0;::::1;7557:21:1::0;7614:2;7594:18;;;7587:30;7653:34;7633:18;;;7626:62;-1:-1:-1;;;7704:18:1;;;7697:36;7750:19;;28865:73:0::1;7373:402:1::0;28865:73:0::1;28975:6;::::0;28954:38:::1;::::0;-1:-1:-1;;;;;28954:38:0;;::::1;::::0;28975:6:::1;::::0;28954:38:::1;::::0;28975:6:::1;::::0;28954:38:::1;29003:6;:17:::0;;-1:-1:-1;;;;;;29003:17:0::1;-1:-1:-1::0;;;;;29003:17:0;;;::::1;::::0;;;::::1;::::0;;28784:244::o;30297:292::-;30399:4;-1:-1:-1;;;;;;30423:40:0;;-1:-1:-1;;;30423:40:0;;:105;;-1:-1:-1;;;;;;;30480:48:0;;-1:-1:-1;;;30480:48:0;30423:105;:158;;;-1:-1:-1;;;;;;;;;;19629:40:0;;;30545:36;19520:157;39806:174;39881:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39881:29:0;-1:-1:-1;;;;;39881:29:0;;;;;;;;:24;;39935:23;39881:24;39935:14;:23::i;:::-;-1:-1:-1;;;;;39926:46:0;;;;;;;;;;;39806:174;;:::o;36223:348::-;36316:4;36018:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36018:16:0;36333:73;;;;-1:-1:-1;;;36333:73:0;;9098:2:1;36333:73:0;;;9080:21:1;9137:2;9117:18;;;9110:30;9176:34;9156:18;;;9149:62;-1:-1:-1;;;9227:18:1;;;9220:42;9279:19;;36333:73:0;8896:408:1;36333:73:0;36417:13;36433:23;36448:7;36433:14;:23::i;:::-;36417:39;;36486:5;-1:-1:-1;;;;;36475:16:0;:7;-1:-1:-1;;;;;36475:16:0;;:51;;;;36519:7;-1:-1:-1;;;;;36495:31:0;:20;36507:7;36495:11;:20::i;:::-;-1:-1:-1;;;;;36495:31:0;;36475:51;:87;;;-1:-1:-1;;;;;;33469:25:0;;;33445:4;33469:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36530:32;36467:96;36223:348;-1:-1:-1;;;;36223:348:0:o;39144:544::-;39269:4;-1:-1:-1;;;;;39242:31:0;:23;39257:7;39242:14;:23::i;:::-;-1:-1:-1;;;;;39242:31:0;;39234:85;;;;-1:-1:-1;;;39234:85:0;;12655:2:1;39234:85:0;;;12637:21:1;12694:2;12674:18;;;12667:30;12733:34;12713:18;;;12706:62;-1:-1:-1;;;12784:18:1;;;12777:39;12833:19;;39234:85:0;12453:405:1;39234:85:0;-1:-1:-1;;;;;39338:16:0;;39330:65;;;;-1:-1:-1;;;39330:65:0;;8339:2:1;39330:65:0;;;8321:21:1;8378:2;8358:18;;;8351:30;8417:34;8397:18;;;8390:62;-1:-1:-1;;;8468:18:1;;;8461:34;8512:19;;39330:65:0;8137:400:1;39330:65:0;39408:39;39429:4;39435:2;39439:7;39408:20;:39::i;:::-;39512:29;39529:1;39533:7;39512:8;:29::i;:::-;-1:-1:-1;;;;;39554:15:0;;;;;;:9;:15;;;;;:20;;39573:1;;39554:15;:20;;39573:1;;39554:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39585:13:0;;;;;;:9;:13;;;;;:18;;39602:1;;39585:13;:18;;39602:1;;39585:18;:::i;:::-;;;;-1:-1:-1;;39614:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39614:21:0;-1:-1:-1;;;;;39614:21:0;;;;;;;;;39653:27;;39614:16;;39653:27;;;;;;;39144:544;;;:::o;36913:110::-;36989:26;36999:2;37003:7;36989:26;;;;;;;;;;;;:9;:26::i;3286:98::-;3344:7;3371:5;3375:1;3371;:5;:::i;35344:272::-;35458:28;35468:4;35474:2;35478:7;35458:9;:28::i;:::-;35505:48;35528:4;35534:2;35538:7;35547:5;35505:22;:48::i;:::-;35497:111;;;;-1:-1:-1;;;35497:111:0;;;;;;;:::i;51522:117::-;51582:13;51615:16;51608:23;;;;;:::i;7446:723::-;7502:13;7723:10;7719:53;;-1:-1:-1;;7750:10:0;;;;;;;;;;;;-1:-1:-1;;;7750:10:0;;;;;7446:723::o;7719:53::-;7797:5;7782:12;7838:78;7845:9;;7838:78;;7871:8;;;;:::i;:::-;;-1:-1:-1;7894:10:0;;-1:-1:-1;7902:2:0;7894:10;;:::i;:::-;;;7838:78;;;7926:19;7958:6;7948:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7948:17:0;;7926:39;;7976:154;7983:10;;7976:154;;8010:11;8020:1;8010:11;;:::i;:::-;;-1:-1:-1;8079:10:0;8087:2;8079:5;:10;:::i;:::-;8066:24;;:2;:24;:::i;:::-;8053:39;;8036:6;8043;8036:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8036:56:0;;;;;;;;-1:-1:-1;8107:11:0;8116:2;8107:11;;:::i;:::-;;;7976:154;;2905:98;2963:7;2990:5;2994:1;2990;:5;:::i;44631:555::-;-1:-1:-1;;;;;44803:18:0;;44799:187;;44838:40;44870:7;46013:10;:17;;45986:24;;;;:15;:24;;;;;:44;;;46041:24;;;;;;;;;;;;45909:164;44838:40;44799:187;;;44908:2;-1:-1:-1;;;;;44900:10:0;:4;-1:-1:-1;;;;;44900:10:0;;44896:90;;44927:47;44960:4;44966:7;44927:32;:47::i;:::-;-1:-1:-1;;;;;45000:16:0;;44996:183;;45033:45;45070:7;45033:36;:45::i;44996:183::-;45106:4;-1:-1:-1;;;;;45100:10:0;:2;-1:-1:-1;;;;;45100:10:0;;45096:83;;45127:40;45155:2;45159:7;45127:27;:40::i;37250:250::-;37346:18;37352:2;37356:7;37346:5;:18::i;:::-;37383:54;37414:1;37418:2;37422:7;37431:5;37383:22;:54::i;:::-;37375:117;;;;-1:-1:-1;;;37375:117:0;;;;;;;:::i;40545:843::-;40666:4;-1:-1:-1;;;;;40692:13:0;;10278:20;10317:8;40688:693;;40728:72;;-1:-1:-1;;;40728:72:0;;-1:-1:-1;;;;;40728:36:0;;;;;:72;;26527:10;;40779:4;;40785:7;;40794:5;;40728:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40728:72:0;;;;;;;;-1:-1:-1;;40728:72:0;;;;;;;;;;;;:::i;:::-;;;40724:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40974:13:0;;40970:341;;41017:60;;-1:-1:-1;;;41017:60:0;;;;;;;:::i;40970:341::-;41261:6;41255:13;41246:6;41242:2;41238:15;41231:38;40724:602;-1:-1:-1;;;;;;40851:55:0;-1:-1:-1;;;40851:55:0;;-1:-1:-1;40844:62:0;;40688:693;-1:-1:-1;41365:4:0;40545:843;;;;;;:::o;46700:988::-;46966:22;47016:1;46991:22;47008:4;46991:16;:22::i;:::-;:26;;;;:::i;:::-;47028:18;47049:26;;;:17;:26;;;;;;46966:51;;-1:-1:-1;47182:28:0;;;47178:328;;-1:-1:-1;;;;;47249:18:0;;47227:19;47249:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47300:30;;;;;;:44;;;47417:30;;:17;:30;;;;;:43;;;47178:328;-1:-1:-1;47602:26:0;;;;:17;:26;;;;;;;;47595:33;;;-1:-1:-1;;;;;47646:18:0;;;;;:12;:18;;;;;:34;;;;;;;47639:41;46700:988::o;47983:1079::-;48261:10;:17;48236:22;;48261:21;;48281:1;;48261:21;:::i;:::-;48293:18;48314:24;;;:15;:24;;;;;;48687:10;:26;;48236:46;;-1:-1:-1;48314:24:0;;48236:46;;48687:26;;;;;;:::i;:::-;;;;;;;;;48665:48;;48751:11;48726:10;48737;48726:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48831:28;;;:15;:28;;;;;;;:41;;;49003:24;;;;;48996:31;49038:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;48054:1008;;;47983:1079;:::o;45487:221::-;45572:14;45589:20;45606:2;45589:16;:20::i;:::-;-1:-1:-1;;;;;45620:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45665:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45487:221:0:o;37836:382::-;-1:-1:-1;;;;;37916:16:0;;37908:61;;;;-1:-1:-1;;;37908:61:0;;11100:2:1;37908:61:0;;;11082:21:1;;;11119:18;;;11112:30;11178:34;11158:18;;;11151:62;11230:18;;37908:61:0;10898:356:1;37908:61:0;35994:4;36018:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36018:16:0;:30;37980:58;;;;-1:-1:-1;;;37980:58:0;;7982:2:1;37980:58:0;;;7964:21:1;8021:2;8001:18;;;7994:30;8060;8040:18;;;8033:58;8108:18;;37980:58:0;7780:352:1;37980:58:0;38051:45;38080:1;38084:2;38088:7;38051:20;:45::i;:::-;-1:-1:-1;;;;;38109:13:0;;;;;;:9;:13;;;;;:18;;38126:1;;38109:13;:18;;38126:1;;38109:18;:::i;:::-;;;;-1:-1:-1;;38138:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38138:21:0;-1:-1:-1;;;;;38138:21:0;;;;;;;;38177:33;;38138:16;;;38177:33;;38138:16;;38177:33;37836:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;4988:488::-;-1:-1:-1;;;;;5257:15:1;;;5239:34;;5309:15;;5304:2;5289:18;;5282:43;5356:2;5341:18;;5334:34;;;5404:3;5399:2;5384:18;;5377:31;;;5182:4;;5425:45;;5450:19;;5442:6;5425:45;:::i;:::-;5417:53;4988:488;-1:-1:-1;;;;;;4988:488:1:o;5898:219::-;6047:2;6036:9;6029:21;6010:4;6067:44;6107:2;6096:9;6092:18;6084:6;6067:44;:::i;6954:414::-;7156:2;7138:21;;;7195:2;7175:18;;;7168:30;7234:34;7229:2;7214:18;;7207:62;-1:-1:-1;;;7300:2:1;7285:18;;7278:48;7358:3;7343:19;;6954:414::o;9309:338::-;9511:2;9493:21;;;9550:2;9530:18;;;9523:30;-1:-1:-1;;;9584:2:1;9569:18;;9562:44;9638:2;9623:18;;9309:338::o;14448:413::-;14650:2;14632:21;;;14689:2;14669:18;;;14662:30;14728:34;14723:2;14708:18;;14701:62;-1:-1:-1;;;14794:2:1;14779:18;;14772:47;14851:3;14836:19;;14448:413::o;16234:128::-;16274:3;16305:1;16301:6;16298:1;16295:13;16292:39;;;16311:18;;:::i;:::-;-1:-1:-1;16347:9:1;;16234:128::o;16367:120::-;16407:1;16433;16423:35;;16438:18;;:::i;:::-;-1:-1:-1;16472:9:1;;16367:120::o;16492:125::-;16532:4;16560:1;16557;16554:8;16551:34;;;16565:18;;:::i;:::-;-1:-1:-1;16602:9:1;;16492:125::o;16622:258::-;16694:1;16704:113;16718:6;16715:1;16712:13;16704:113;;;16794:11;;;16788:18;16775:11;;;16768:39;16740:2;16733:10;16704:113;;;16835:6;16832:1;16829:13;16826:48;;;-1:-1:-1;;16870:1:1;16852:16;;16845:27;16622:258::o;16885:380::-;16964:1;16960:12;;;;17007;;;17028:61;;17082:4;17074:6;17070:17;17060:27;;17028:61;17135:2;17127:6;17124:14;17104:18;17101:38;17098:161;;;17181:10;17176:3;17172:20;17169:1;17162:31;17216:4;17213:1;17206:15;17244:4;17241:1;17234:15;17098:161;;16885:380;;;:::o;17270:135::-;17309:3;-1:-1:-1;;17330:17:1;;17327:43;;;17350:18;;:::i;:::-;-1:-1:-1;17397:1:1;17386:13;;17270:135::o;17410:112::-;17442:1;17468;17458:35;;17473:18;;:::i;:::-;-1:-1:-1;17507:9:1;;17410:112::o;17527:127::-;17588:10;17583:3;17579:20;17576:1;17569:31;17619:4;17616:1;17609:15;17643:4;17640:1;17633:15;17659:127;17720:10;17715:3;17711:20;17708:1;17701:31;17751:4;17748:1;17741:15;17775:4;17772:1;17765:15;17791:127;17852:10;17847:3;17843:20;17840:1;17833:31;17883:4;17880:1;17873:15;17907:4;17904:1;17897:15;17923:127;17984:10;17979:3;17975:20;17972:1;17965:31;18015:4;18012:1;18005:15;18039:4;18036:1;18029:15;18055:127;18116:10;18111:3;18107:20;18104:1;18097:31;18147:4;18144:1;18137:15;18171:4;18168:1;18161:15;18187:131;-1:-1:-1;;;;;;18261:32:1;;18251:43;;18241:71;;18308:1;18305;18298:12;18241:71;18187:131;:::o

Swarm Source

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