ETH Price: $3,113.90 (-5.41%)
Gas: 6 Gwei

Token

GenerativeDungeon (GENDUN)
 

Overview

Max Total Supply

3,000 GENDUN

Holders

687

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GENDUN
0x55e81e297b088595663d64b42c718e56027de5a2
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Artwork you can play to earn. Generative Dungeon is a collection of unique, playable NFT dungeons that can be played in your browser directly on OpenSea and other marketplaces.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GenerativeDungeon

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-05
*/

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/GenerativeDungeon.sol



pragma solidity ^0.8.9;



/**
 * @title GenerativeDungeon contract
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */
contract GenerativeDungeon is ERC721Enumerable, Ownable {
    string public NFT_PROVENANCE = "";

    string public BASE_METADATA_URI = "";
    string public CONTRACT_METADATA_URI = "";

    uint256 public startingIndexBlock;
    uint256 public startingIndex;

    uint256 public PRICE = 0.07 ether;
    uint256 public PRICE_WHITELIST = 0.05 ether;

    uint256 public MAX_NFTS_PLUS_1;

    uint256 public WALLET_LIMIT = 4; // compare will use < to save gas, so actually 3/wallet
    uint256 public WALLET_LIMIT_WHITELIST = 3; // compare will use < to save gas, so actually 2/wallet

    bool public saleIsActive = false;

    bool private locked; // for re-entrancy guard

    struct AccountInfo {
        uint256 mintedNFTs; // number of NFTs this wallet address has minted
    }

    mapping(address => AccountInfo) public accountInfoList;

    constructor() ERC721("GenerativeDungeon", "GENDUN") {
        // in max tokens, leave some space for those tokens created for giveaways after the sale, which will be minted via reserveNfts below
        MAX_NFTS_PLUS_1 = 9911; // also, to save gas during 3rd "require" in main mint below, use "plus 1" for the compare 
        BASE_METADATA_URI = "https://metadata.generativedungeon.com/"; 
        CONTRACT_METADATA_URI = "https://generativedungeon.com/storefront-metadata.json"; 
    }

    // from openzeppelin-contracts/contracts/security/ReentrancyGuard.sol
    modifier nonReentrant() {
        require(!locked, "Reentrant call");
        locked = true;
        _;
        locked = false;
    }

    // for whitelisted mint 
	modifier onlyWhitelisted(uint8 _v,
                    		bytes32 _r,
		                    bytes32 _s
	) {
		require (owner() == ecrecover(
				keccak256( abi.encodePacked('\x19Ethereum Signed Message:\n32', 
                                            keccak256( abi.encodePacked(address(this), msg.sender)))), 
                                    _v, _r, _s), 
                'Not whitelisted');
		_;
	}


    // to make OpenSea happy -  returns a URL for the storefront-level metadata 
	// https://docs.opensea.io/docs/contract-level-metadata
    function contractURI() public view returns (string memory) {
        return CONTRACT_METADATA_URI;
    }

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

    function setBaseURI(string memory _baseMetaDataURI) public onlyOwner {
        BASE_METADATA_URI = _baseMetaDataURI;
    }
    function setContractURI(string memory _contractMetaDataURI) public onlyOwner {
        CONTRACT_METADATA_URI = _contractMetaDataURI;
    }

    /*
    * in case market is volatile
    */
    function setMaxNfts(uint _maxNfts) public onlyOwner {
        MAX_NFTS_PLUS_1 = _maxNfts;
    }

    /*
    * in case Eth is volatile
    */
    function setPrice(uint256 _newPrice) public onlyOwner() {
        PRICE = _newPrice;
    }

    /*
    * in case Eth is volatile
    */
    function setPriceWhitelist(uint256 _newPrice) public onlyOwner() {
        PRICE_WHITELIST = _newPrice;
    }

    /*
     * in case we need to adjust the wallet limit 
     */
    function setWalletLimit(uint256 _newLimit) public onlyOwner() {
        WALLET_LIMIT = _newLimit;
    }

    /*
     * in case we need to adjust the wallet limit 
     */
    function setWhitelistWalletLimit(uint256 _newLimit) public onlyOwner() {
        WALLET_LIMIT_WHITELIST = _newLimit;
    }

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

    /**
     * Set some tokens aside for giveaways, etc
     */
    function reserveNfts(uint256 _amt) public onlyOwner {        
        uint256 supply = totalSupply();
        uint256 finalAmt = _amt+1;
        for (uint256 i=1; i < finalAmt; i++) { // start at Token #1
            _safeMint(msg.sender, supply+i);
        }
    }

    /* 
     * Returns all the tokenIds owned by a user in one transaction
     *
     * (backup function in case The Graph is down/unreachable)
     */
    function getNFTsByAddress(address _owner) public view returns (uint256[] memory) {
        uint256 totalItemCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](totalItemCount);

        for (uint256 i; i < totalItemCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    /*
    * Pause sale if active, make active if paused
    */
    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }


    /**
    * allows whitelisted addresses to mint NFTs
    */
    function mintWhitelist(uint256 _numberOfTokens, 
                            uint8 _v,
                    		bytes32 _r,
		                    bytes32 _s) public payable nonReentrant onlyWhitelisted(_v, _r, _s) {

        uint256 supply = totalSupply(); // store to save gas

        require((_numberOfTokens + accountInfoList[msg.sender].mintedNFTs) < WALLET_LIMIT_WHITELIST, "Exceeds wallet limit");

        // we hold the whitelist data off-chain and verify on-chain via onlyWhilelisted; 
        // still have to check against max nft supply in case people whitelist late
        require(supply + _numberOfTokens < MAX_NFTS_PLUS_1, "Exceeds max NFT supply"); //use < rather than <= to save gas

        require(msg.value >= PRICE_WHITELIST * _numberOfTokens, "Ether sent is not correct");
        
        _numberOfTokens++;  // +1 once for our for loop comparison here, to save gas
        for(uint256 i=1; i < _numberOfTokens; i++) { // start at Token #1 so IDs aren't zero-based
            accountInfoList[msg.sender].mintedNFTs++; // nonReentrant above prevents this from messing up
            _safeMint(msg.sender, supply+i);
        }
    }

    /**
    * Mints NFTs
    */
    function mint(uint256 _numberOfTokens) public payable nonReentrant {
        uint256 supply = totalSupply(); // store to save gas

        require(saleIsActive, "Sale paused");
        require((_numberOfTokens + accountInfoList[msg.sender].mintedNFTs) < WALLET_LIMIT, "Exceeds wallet limit");
        require(supply + _numberOfTokens < MAX_NFTS_PLUS_1, "Exceeds max NFT supply"); //use < rather than <= to save gas
        require(msg.value >= PRICE * _numberOfTokens, "Ether sent is not correct");
        
        _numberOfTokens++;  // +1 once for our for loop comparison here, to save gas
        for(uint256 i=1; i < _numberOfTokens; i++) { // start at Token #1 so IDs aren't zero-based
            accountInfoList[msg.sender].mintedNFTs++; // nonReentrant above prevents this from messing up
            _safeMint(msg.sender, supply+i);
        }

        // to save gas for minters, rather than automatically setting the starting block here, 
        // we'll manually set it by calling setStartingIndex when either 
        // 1) the last token has been sold, or 2) 9 days have passed since launch
    }

    /*
     * airdrops ignore wallet limits
     */
    function airDrop(address _addr, uint256 _numberOfTokens) public onlyOwner {
        uint256 supply = totalSupply(); // store to save gas
        require(supply + _numberOfTokens < MAX_NFTS_PLUS_1, "Exceeds max NFT supply"); //use < rather than <= to save gas

        _numberOfTokens++;  // +1 once for our for loop comparison here, to save gas
        for(uint256 i=1; i < _numberOfTokens; i++) { // start at Token #1 so IDs aren't zero-based
            _safeMint(_addr, supply+i);
        }
    }

    /**
     * Set the starting index for the collection after all tokens have sold or 9 days have passed since launch
     * we use that value to seed our deterministic random bit generator in the gaming code
     */
    function setStartingIndex() public onlyOwner {
        require(startingIndex == 0, "Starting index is already set");
        uint256 supply = totalSupply(); // store to save gas

        startingIndexBlock = block.number;

        startingIndex = uint256(blockhash(startingIndexBlock)) % supply;
        // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes)
        if (block.number-startingIndexBlock > 255) {
            startingIndex = uint256(blockhash(block.number - 1)) % supply;
        }
        // Prevent default sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex+1;
        }
    }

    /*     
    * Set overall provenance once it's calculated to prove we haven't touched the generated images+code
    */
    function setProvenanceHash(string memory _provenanceHash) public onlyOwner {
        NFT_PROVENANCE = _provenanceHash;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_METADATA_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONTRACT_METADATA_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFTS_PLUS_1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WALLET_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WALLET_LIMIT_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"accountInfoList","outputs":[{"internalType":"uint256","name":"mintedNFTs","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}],"name":"getNFTsByAddress","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amt","type":"uint256"}],"name":"reserveNfts","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":"_baseMetaDataURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractMetaDataURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxNfts","type":"uint256"}],"name":"setMaxNfts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPriceWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setWhitelistWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600b91620001e3565b506040805160208101918290526000908190526200003c91600c91620001e3565b506040805160208101918290526000908190526200005d91600d91620001e3565b5066f8b0a10e47000060105566b1a2bc2ec50000601155600460135560036014556015805460ff191690553480156200009557600080fd5b50604080518082018252601181527023b2b732b930ba34bb32a23ab733b2b7b760791b60208083019182528351808501909452600684526523a2a7222aa760d11b908401528151919291620000ed91600091620001e3565b50805162000103906001906020840190620001e3565b505050620001206200011a6200018d60201b60201c565b62000191565b6126b76012556040805160608101909152602780825262002e4d602083013980516200015591600c91602090910190620001e3565b5060405180606001604052806036815260200162002e746036913980516200018691600d91602090910190620001e3565b50620002c6565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001f19062000289565b90600052602060002090601f01602090048101928262000215576000855562000260565b82601f106200023057805160ff191683800117855562000260565b8280016001018555821562000260579182015b828111156200026057825182559160200191906001019062000243565b506200026e92915062000272565b5090565b5b808211156200026e576000815560010162000273565b600181811c908216806200029e57607f821691505b60208210811415620002c057634e487b7160e01b600052602260045260246000fd5b50919050565b612b7780620002d66000396000f3fe6080604052600436106102935760003560e01c806370a082311161015a578063b88d4fde116100c1578063e8a3d4851161007a578063e8a3d48514610773578063e985e9c514610788578063e9866550146107d1578063eb8d2444146107e6578063f1d5f51714610800578063f2fde38b1461082057600080fd5b8063b88d4fde146106d1578063b95f8b5f146106f1578063c50562e514610711578063c87b56dd14610727578063cb774d4714610747578063e36d64981461075d57600080fd5b806391b7f5ed1161011357806391b7f5ed14610634578063938e3d7b1461065457806395d89b41146106745780639e47f7a914610689578063a0712d681461069e578063a22cb465146106b157600080fd5b806370a082311461058b578063715018a6146105ab5780637c2431af146105c057806386451396146105ed5780638d859f3e146106005780638da5cb5b1461061657600080fd5b806323b872dd116101fe57806342842e0e116101b757806342842e0e146104df5780634f6ccce7146104ff5780634fd6567f1461051f5780634fe8545a1461053557806355f804b31461054b5780636352211e1461056b57600080fd5b806323b872dd1461043f5780632f745c591461045f57806334918dfd1461047f578063351ed951146104945780633a329d95146104aa5780633ccfd60b146104ca57600080fd5b80631096952311610250578063109695231461038957806318160ddd146103a95780631b7cfa09146103c85780631bc34727146103e85780631dadae8e146103fd578063220b67641461042a57600080fd5b806301ffc9a714610298578063045f7850146102cd57806306fdde03146102ef578063081812fc14610311578063095ea7b3146103495780630a17cc8014610369575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612507565b610840565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102ed6102e8366004612540565b61086b565b005b3480156102fb57600080fd5b5061030461091a565b6040516102c491906125c2565b34801561031d57600080fd5b5061033161032c3660046125d5565b6109ac565b6040516001600160a01b0390911681526020016102c4565b34801561035557600080fd5b506102ed610364366004612540565b610a41565b34801561037557600080fd5b506102ed6103843660046125d5565b610b57565b34801561039557600080fd5b506102ed6103a436600461267a565b610b86565b3480156103b557600080fd5b506008545b6040519081526020016102c4565b3480156103d457600080fd5b506102ed6103e33660046125d5565b610bc7565b3480156103f457600080fd5b50610304610c38565b34801561040957600080fd5b5061041d6104183660046126c3565b610cc6565b6040516102c491906126de565b34801561043657600080fd5b50610304610d68565b34801561044b57600080fd5b506102ed61045a366004612722565b610d75565b34801561046b57600080fd5b506103ba61047a366004612540565b610da6565b34801561048b57600080fd5b506102ed610e3c565b3480156104a057600080fd5b506103ba60135481565b3480156104b657600080fd5b506102ed6104c53660046125d5565b610e7a565b3480156104d657600080fd5b506102ed610ea9565b3480156104eb57600080fd5b506102ed6104fa366004612722565b610f02565b34801561050b57600080fd5b506103ba61051a3660046125d5565b610f1d565b34801561052b57600080fd5b506103ba60145481565b34801561054157600080fd5b506103ba60115481565b34801561055757600080fd5b506102ed61056636600461267a565b610fb0565b34801561057757600080fd5b506103316105863660046125d5565b610fed565b34801561059757600080fd5b506103ba6105a63660046126c3565b611064565b3480156105b757600080fd5b506102ed6110eb565b3480156105cc57600080fd5b506103ba6105db3660046126c3565b60166020526000908152604090205481565b6102ed6105fb36600461275e565b611121565b34801561060c57600080fd5b506103ba60105481565b34801561062257600080fd5b50600a546001600160a01b0316610331565b34801561064057600080fd5b506102ed61064f3660046125d5565b611425565b34801561066057600080fd5b506102ed61066f36600461267a565b611454565b34801561068057600080fd5b50610304611491565b34801561069557600080fd5b506103046114a0565b6102ed6106ac3660046125d5565b6114ad565b3480156106bd57600080fd5b506102ed6106cc3660046127a1565b6116a1565b3480156106dd57600080fd5b506102ed6106ec3660046127dd565b6116ac565b3480156106fd57600080fd5b506102ed61070c3660046125d5565b6116de565b34801561071d57600080fd5b506103ba60125481565b34801561073357600080fd5b506103046107423660046125d5565b61170d565b34801561075357600080fd5b506103ba600f5481565b34801561076957600080fd5b506103ba600e5481565b34801561077f57600080fd5b506103046117e8565b34801561079457600080fd5b506102b86107a3366004612859565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107dd57600080fd5b506102ed6117f7565b3480156107f257600080fd5b506015546102b89060ff1681565b34801561080c57600080fd5b506102ed61081b3660046125d5565b6118e0565b34801561082c57600080fd5b506102ed61083b3660046126c3565b61190f565b60006001600160e01b0319821663780e9d6360e01b14806108655750610865826119a7565b92915050565b600a546001600160a01b0316331461089e5760405162461bcd60e51b81526004016108959061288c565b60405180910390fd5b60006108a960085490565b6012549091506108b983836128d7565b106108d65760405162461bcd60e51b8152600401610895906128ef565b816108e08161291f565b9250600190505b8281101561091457610902846108fd83856128d7565b6119f7565b8061090c8161291f565b9150506108e7565b50505050565b6060600080546109299061293a565b80601f01602080910402602001604051908101604052809291908181526020018280546109559061293a565b80156109a25780601f10610977576101008083540402835291602001916109a2565b820191906000526020600020905b81548152906001019060200180831161098557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610895565b506000908152600460205260409020546001600160a01b031690565b6000610a4c82610fed565b9050806001600160a01b0316836001600160a01b03161415610aba5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610895565b336001600160a01b0382161480610ad65750610ad681336107a3565b610b485760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610895565b610b528383611a11565b505050565b600a546001600160a01b03163314610b815760405162461bcd60e51b81526004016108959061288c565b601455565b600a546001600160a01b03163314610bb05760405162461bcd60e51b81526004016108959061288c565b8051610bc390600b906020840190612458565b5050565b600a546001600160a01b03163314610bf15760405162461bcd60e51b81526004016108959061288c565b6000610bfc60085490565b90506000610c0b8360016128d7565b905060015b8181101561091457610c26336108fd83866128d7565b80610c308161291f565b915050610c10565b600b8054610c459061293a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c719061293a565b8015610cbe5780601f10610c9357610100808354040283529160200191610cbe565b820191906000526020600020905b815481529060010190602001808311610ca157829003601f168201915b505050505081565b60606000610cd383611064565b905060008167ffffffffffffffff811115610cf057610cf06125ee565b604051908082528060200260200182016040528015610d19578160200160208202803683370190505b50905060005b82811015610d6057610d318582610da6565b828281518110610d4357610d43612975565b602090810291909101015280610d588161291f565b915050610d1f565b509392505050565b600c8054610c459061293a565b610d7f3382611a7f565b610d9b5760405162461bcd60e51b81526004016108959061298b565b610b52838383611b76565b6000610db183611064565b8210610e135760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610895565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e665760405162461bcd60e51b81526004016108959061288c565b6015805460ff19811660ff90911615179055565b600a546001600160a01b03163314610ea45760405162461bcd60e51b81526004016108959061288c565b601255565b600a546001600160a01b03163314610ed35760405162461bcd60e51b81526004016108959061288c565b60405133904780156108fc02916000818181858888f19350505050158015610eff573d6000803e3d6000fd5b50565b610b52838383604051806020016040528060008152506116ac565b6000610f2860085490565b8210610f8b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610895565b60088281548110610f9e57610f9e612975565b90600052602060002001549050919050565b600a546001600160a01b03163314610fda5760405162461bcd60e51b81526004016108959061288c565b8051610bc390600c906020840190612458565b6000818152600260205260408120546001600160a01b0316806108655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610895565b60006001600160a01b0382166110cf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610895565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111155760405162461bcd60e51b81526004016108959061288c565b61111f6000611d21565b565b601554610100900460ff161561116a5760405162461bcd60e51b815260206004820152600e60248201526d1499595b9d1c985b9d0818d85b1b60921b6044820152606401610895565b6015805461010061ff00199091161790556040516bffffffffffffffffffffffff1930606090811b8216602084015233901b16603482015283908390839060019060480160408051601f198184030181529082905280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000091830191909152603c820152605c0160408051601f198184030181528282528051602091820120600084529083018083525260ff861690820152606081018490526080810183905260a0016020604051602081039080840390855afa158015611255573d6000803e3d6000fd5b505050602060405103516001600160a01b031661127a600a546001600160a01b031690565b6001600160a01b0316146112c25760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b6044820152606401610895565b60006112cd60085490565b60145433600090815260166020526040902054919250906112ee908a6128d7565b106113325760405162461bcd60e51b8152602060048201526014602482015273115e18d959591cc81dd85b1b195d081b1a5b5a5d60621b6044820152606401610895565b60125461133f89836128d7565b1061135c5760405162461bcd60e51b8152600401610895906128ef565b8760115461136a91906129dc565b3410156113b55760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610895565b876113bf8161291f565b9850600190505b8881101561140f573360009081526016602052604081208054916113e98361291f565b909155506113fd9050336108fd83856128d7565b806114078161291f565b9150506113c6565b50506015805461ff001916905550505050505050565b600a546001600160a01b0316331461144f5760405162461bcd60e51b81526004016108959061288c565b601055565b600a546001600160a01b0316331461147e5760405162461bcd60e51b81526004016108959061288c565b8051610bc390600d906020840190612458565b6060600180546109299061293a565b600d8054610c459061293a565b601554610100900460ff16156114f65760405162461bcd60e51b815260206004820152600e60248201526d1499595b9d1c985b9d0818d85b1b60921b6044820152606401610895565b6015805461ff001916610100179055600061151060085490565b60155490915060ff166115535760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b6044820152606401610895565b6013543360009081526016602052604090205461157090846128d7565b106115b45760405162461bcd60e51b8152602060048201526014602482015273115e18d959591cc81dd85b1b195d081b1a5b5a5d60621b6044820152606401610895565b6012546115c183836128d7565b106115de5760405162461bcd60e51b8152600401610895906128ef565b816010546115ec91906129dc565b3410156116375760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610895565b816116418161291f565b9250600190505b828110156116915733600090815260166020526040812080549161166b8361291f565b9091555061167f9050336108fd83856128d7565b806116898161291f565b915050611648565b50506015805461ff001916905550565b610bc3338383611d73565b6116b63383611a7f565b6116d25760405162461bcd60e51b81526004016108959061298b565b61091484848484611e42565b600a546001600160a01b031633146117085760405162461bcd60e51b81526004016108959061288c565b601155565b6000818152600260205260409020546060906001600160a01b031661178c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610895565b6000611796611e75565b905060008151116117b657604051806020016040528060008152506117e1565b806117c084611e84565b6040516020016117d19291906129fb565b6040516020818303038152906040525b9392505050565b6060600d80546109299061293a565b600a546001600160a01b031633146118215760405162461bcd60e51b81526004016108959061288c565b600f54156118715760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610895565b600061187c60085490565b43600e81905590915061189190829040612a40565b600f55600e5460ff906118a49043612a54565b11156118c557806118b6600143612a54565b6118c1919040612a40565b600f555b600f54610eff57600f546118da9060016128d7565b600f5550565b600a546001600160a01b0316331461190a5760405162461bcd60e51b81526004016108959061288c565b601355565b600a546001600160a01b031633146119395760405162461bcd60e51b81526004016108959061288c565b6001600160a01b03811661199e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610895565b610eff81611d21565b60006001600160e01b031982166380ac58cd60e01b14806119d857506001600160e01b03198216635b5e139f60e01b145b8061086557506301ffc9a760e01b6001600160e01b0319831614610865565b610bc3828260405180602001604052806000815250611f82565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a4682610fed565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611af85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610895565b6000611b0383610fed565b9050806001600160a01b0316846001600160a01b03161480611b3e5750836001600160a01b0316611b33846109ac565b6001600160a01b0316145b80611b6e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b8982610fed565b6001600160a01b031614611bf15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610895565b6001600160a01b038216611c535760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610895565b611c5e838383611fb5565b611c69600082611a11565b6001600160a01b0383166000908152600360205260408120805460019290611c92908490612a54565b90915550506001600160a01b0382166000908152600360205260408120805460019290611cc09084906128d7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611dd55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610895565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e4d848484611b76565b611e598484848461206d565b6109145760405162461bcd60e51b815260040161089590612a6b565b6060600c80546109299061293a565b606081611ea85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ed25780611ebc8161291f565b9150611ecb9050600a83612abd565b9150611eac565b60008167ffffffffffffffff811115611eed57611eed6125ee565b6040519080825280601f01601f191660200182016040528015611f17576020820181803683370190505b5090505b8415611b6e57611f2c600183612a54565b9150611f39600a86612a40565b611f449060306128d7565b60f81b818381518110611f5957611f59612975565b60200101906001600160f81b031916908160001a905350611f7b600a86612abd565b9450611f1b565b611f8c838361217a565b611f99600084848461206d565b610b525760405162461bcd60e51b815260040161089590612a6b565b6001600160a01b0383166120105761200b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612033565b816001600160a01b0316836001600160a01b0316146120335761203383826122c8565b6001600160a01b03821661204a57610b5281612365565b826001600160a01b0316826001600160a01b031614610b5257610b528282612414565b60006001600160a01b0384163b1561216f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120b1903390899088908890600401612ad1565b602060405180830381600087803b1580156120cb57600080fd5b505af19250505080156120fb575060408051601f3d908101601f191682019092526120f891810190612b0e565b60015b612155573d808015612129576040519150601f19603f3d011682016040523d82523d6000602084013e61212e565b606091505b50805161214d5760405162461bcd60e51b815260040161089590612a6b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b6e565b506001949350505050565b6001600160a01b0382166121d05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610895565b6000818152600260205260409020546001600160a01b0316156122355760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610895565b61224160008383611fb5565b6001600160a01b038216600090815260036020526040812080546001929061226a9084906128d7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016122d584611064565b6122df9190612a54565b600083815260076020526040902054909150808214612332576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061237790600190612a54565b6000838152600960205260408120546008805493945090928490811061239f5761239f612975565b9060005260206000200154905080600883815481106123c0576123c0612975565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806123f8576123f8612b2b565b6001900381819060005260206000200160009055905550505050565b600061241f83611064565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546124649061293a565b90600052602060002090601f01602090048101928261248657600085556124cc565b82601f1061249f57805160ff19168380011785556124cc565b828001600101855582156124cc579182015b828111156124cc5782518255916020019190600101906124b1565b506124d89291506124dc565b5090565b5b808211156124d857600081556001016124dd565b6001600160e01b031981168114610eff57600080fd5b60006020828403121561251957600080fd5b81356117e1816124f1565b80356001600160a01b038116811461253b57600080fd5b919050565b6000806040838503121561255357600080fd5b61255c83612524565b946020939093013593505050565b60005b8381101561258557818101518382015260200161256d565b838111156109145750506000910152565b600081518084526125ae81602086016020860161256a565b601f01601f19169290920160200192915050565b6020815260006117e16020830184612596565b6000602082840312156125e757600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561261f5761261f6125ee565b604051601f8501601f19908116603f01168101908282118183101715612647576126476125ee565b8160405280935085815286868601111561266057600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561268c57600080fd5b813567ffffffffffffffff8111156126a357600080fd5b8201601f810184136126b457600080fd5b611b6e84823560208401612604565b6000602082840312156126d557600080fd5b6117e182612524565b6020808252825182820181905260009190848201906040850190845b81811015612716578351835292840192918401916001016126fa565b50909695505050505050565b60008060006060848603121561273757600080fd5b61274084612524565b925061274e60208501612524565b9150604084013590509250925092565b6000806000806080858703121561277457600080fd5b84359350602085013560ff8116811461278c57600080fd5b93969395505050506040820135916060013590565b600080604083850312156127b457600080fd5b6127bd83612524565b9150602083013580151581146127d257600080fd5b809150509250929050565b600080600080608085870312156127f357600080fd5b6127fc85612524565b935061280a60208601612524565b925060408501359150606085013567ffffffffffffffff81111561282d57600080fd5b8501601f8101871361283e57600080fd5b61284d87823560208401612604565b91505092959194509250565b6000806040838503121561286c57600080fd5b61287583612524565b915061288360208401612524565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156128ea576128ea6128c1565b500190565b60208082526016908201527545786365656473206d6178204e465420737570706c7960501b604082015260600190565b6000600019821415612933576129336128c1565b5060010190565b600181811c9082168061294e57607f821691505b6020821081141561296f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008160001904831182151516156129f6576129f66128c1565b500290565b60008351612a0d81846020880161256a565b835190830190612a2181836020880161256a565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b600082612a4f57612a4f612a2a565b500690565b600082821015612a6657612a666128c1565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612acc57612acc612a2a565b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b0490830184612596565b9695505050505050565b600060208284031215612b2057600080fd5b81516117e1816124f1565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220667d81e5bbb7a6d5aa5fe5426cef86e36ad238a5d435a40984a67c996b625b0d64736f6c6343000809003368747470733a2f2f6d657461646174612e67656e6572617469766564756e67656f6e2e636f6d2f68747470733a2f2f67656e6572617469766564756e67656f6e2e636f6d2f73746f726566726f6e742d6d657461646174612e6a736f6e

Deployed Bytecode

0x6080604052600436106102935760003560e01c806370a082311161015a578063b88d4fde116100c1578063e8a3d4851161007a578063e8a3d48514610773578063e985e9c514610788578063e9866550146107d1578063eb8d2444146107e6578063f1d5f51714610800578063f2fde38b1461082057600080fd5b8063b88d4fde146106d1578063b95f8b5f146106f1578063c50562e514610711578063c87b56dd14610727578063cb774d4714610747578063e36d64981461075d57600080fd5b806391b7f5ed1161011357806391b7f5ed14610634578063938e3d7b1461065457806395d89b41146106745780639e47f7a914610689578063a0712d681461069e578063a22cb465146106b157600080fd5b806370a082311461058b578063715018a6146105ab5780637c2431af146105c057806386451396146105ed5780638d859f3e146106005780638da5cb5b1461061657600080fd5b806323b872dd116101fe57806342842e0e116101b757806342842e0e146104df5780634f6ccce7146104ff5780634fd6567f1461051f5780634fe8545a1461053557806355f804b31461054b5780636352211e1461056b57600080fd5b806323b872dd1461043f5780632f745c591461045f57806334918dfd1461047f578063351ed951146104945780633a329d95146104aa5780633ccfd60b146104ca57600080fd5b80631096952311610250578063109695231461038957806318160ddd146103a95780631b7cfa09146103c85780631bc34727146103e85780631dadae8e146103fd578063220b67641461042a57600080fd5b806301ffc9a714610298578063045f7850146102cd57806306fdde03146102ef578063081812fc14610311578063095ea7b3146103495780630a17cc8014610369575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612507565b610840565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102ed6102e8366004612540565b61086b565b005b3480156102fb57600080fd5b5061030461091a565b6040516102c491906125c2565b34801561031d57600080fd5b5061033161032c3660046125d5565b6109ac565b6040516001600160a01b0390911681526020016102c4565b34801561035557600080fd5b506102ed610364366004612540565b610a41565b34801561037557600080fd5b506102ed6103843660046125d5565b610b57565b34801561039557600080fd5b506102ed6103a436600461267a565b610b86565b3480156103b557600080fd5b506008545b6040519081526020016102c4565b3480156103d457600080fd5b506102ed6103e33660046125d5565b610bc7565b3480156103f457600080fd5b50610304610c38565b34801561040957600080fd5b5061041d6104183660046126c3565b610cc6565b6040516102c491906126de565b34801561043657600080fd5b50610304610d68565b34801561044b57600080fd5b506102ed61045a366004612722565b610d75565b34801561046b57600080fd5b506103ba61047a366004612540565b610da6565b34801561048b57600080fd5b506102ed610e3c565b3480156104a057600080fd5b506103ba60135481565b3480156104b657600080fd5b506102ed6104c53660046125d5565b610e7a565b3480156104d657600080fd5b506102ed610ea9565b3480156104eb57600080fd5b506102ed6104fa366004612722565b610f02565b34801561050b57600080fd5b506103ba61051a3660046125d5565b610f1d565b34801561052b57600080fd5b506103ba60145481565b34801561054157600080fd5b506103ba60115481565b34801561055757600080fd5b506102ed61056636600461267a565b610fb0565b34801561057757600080fd5b506103316105863660046125d5565b610fed565b34801561059757600080fd5b506103ba6105a63660046126c3565b611064565b3480156105b757600080fd5b506102ed6110eb565b3480156105cc57600080fd5b506103ba6105db3660046126c3565b60166020526000908152604090205481565b6102ed6105fb36600461275e565b611121565b34801561060c57600080fd5b506103ba60105481565b34801561062257600080fd5b50600a546001600160a01b0316610331565b34801561064057600080fd5b506102ed61064f3660046125d5565b611425565b34801561066057600080fd5b506102ed61066f36600461267a565b611454565b34801561068057600080fd5b50610304611491565b34801561069557600080fd5b506103046114a0565b6102ed6106ac3660046125d5565b6114ad565b3480156106bd57600080fd5b506102ed6106cc3660046127a1565b6116a1565b3480156106dd57600080fd5b506102ed6106ec3660046127dd565b6116ac565b3480156106fd57600080fd5b506102ed61070c3660046125d5565b6116de565b34801561071d57600080fd5b506103ba60125481565b34801561073357600080fd5b506103046107423660046125d5565b61170d565b34801561075357600080fd5b506103ba600f5481565b34801561076957600080fd5b506103ba600e5481565b34801561077f57600080fd5b506103046117e8565b34801561079457600080fd5b506102b86107a3366004612859565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107dd57600080fd5b506102ed6117f7565b3480156107f257600080fd5b506015546102b89060ff1681565b34801561080c57600080fd5b506102ed61081b3660046125d5565b6118e0565b34801561082c57600080fd5b506102ed61083b3660046126c3565b61190f565b60006001600160e01b0319821663780e9d6360e01b14806108655750610865826119a7565b92915050565b600a546001600160a01b0316331461089e5760405162461bcd60e51b81526004016108959061288c565b60405180910390fd5b60006108a960085490565b6012549091506108b983836128d7565b106108d65760405162461bcd60e51b8152600401610895906128ef565b816108e08161291f565b9250600190505b8281101561091457610902846108fd83856128d7565b6119f7565b8061090c8161291f565b9150506108e7565b50505050565b6060600080546109299061293a565b80601f01602080910402602001604051908101604052809291908181526020018280546109559061293a565b80156109a25780601f10610977576101008083540402835291602001916109a2565b820191906000526020600020905b81548152906001019060200180831161098557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610895565b506000908152600460205260409020546001600160a01b031690565b6000610a4c82610fed565b9050806001600160a01b0316836001600160a01b03161415610aba5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610895565b336001600160a01b0382161480610ad65750610ad681336107a3565b610b485760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610895565b610b528383611a11565b505050565b600a546001600160a01b03163314610b815760405162461bcd60e51b81526004016108959061288c565b601455565b600a546001600160a01b03163314610bb05760405162461bcd60e51b81526004016108959061288c565b8051610bc390600b906020840190612458565b5050565b600a546001600160a01b03163314610bf15760405162461bcd60e51b81526004016108959061288c565b6000610bfc60085490565b90506000610c0b8360016128d7565b905060015b8181101561091457610c26336108fd83866128d7565b80610c308161291f565b915050610c10565b600b8054610c459061293a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c719061293a565b8015610cbe5780601f10610c9357610100808354040283529160200191610cbe565b820191906000526020600020905b815481529060010190602001808311610ca157829003601f168201915b505050505081565b60606000610cd383611064565b905060008167ffffffffffffffff811115610cf057610cf06125ee565b604051908082528060200260200182016040528015610d19578160200160208202803683370190505b50905060005b82811015610d6057610d318582610da6565b828281518110610d4357610d43612975565b602090810291909101015280610d588161291f565b915050610d1f565b509392505050565b600c8054610c459061293a565b610d7f3382611a7f565b610d9b5760405162461bcd60e51b81526004016108959061298b565b610b52838383611b76565b6000610db183611064565b8210610e135760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610895565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e665760405162461bcd60e51b81526004016108959061288c565b6015805460ff19811660ff90911615179055565b600a546001600160a01b03163314610ea45760405162461bcd60e51b81526004016108959061288c565b601255565b600a546001600160a01b03163314610ed35760405162461bcd60e51b81526004016108959061288c565b60405133904780156108fc02916000818181858888f19350505050158015610eff573d6000803e3d6000fd5b50565b610b52838383604051806020016040528060008152506116ac565b6000610f2860085490565b8210610f8b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610895565b60088281548110610f9e57610f9e612975565b90600052602060002001549050919050565b600a546001600160a01b03163314610fda5760405162461bcd60e51b81526004016108959061288c565b8051610bc390600c906020840190612458565b6000818152600260205260408120546001600160a01b0316806108655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610895565b60006001600160a01b0382166110cf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610895565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111155760405162461bcd60e51b81526004016108959061288c565b61111f6000611d21565b565b601554610100900460ff161561116a5760405162461bcd60e51b815260206004820152600e60248201526d1499595b9d1c985b9d0818d85b1b60921b6044820152606401610895565b6015805461010061ff00199091161790556040516bffffffffffffffffffffffff1930606090811b8216602084015233901b16603482015283908390839060019060480160408051601f198184030181529082905280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000091830191909152603c820152605c0160408051601f198184030181528282528051602091820120600084529083018083525260ff861690820152606081018490526080810183905260a0016020604051602081039080840390855afa158015611255573d6000803e3d6000fd5b505050602060405103516001600160a01b031661127a600a546001600160a01b031690565b6001600160a01b0316146112c25760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b6044820152606401610895565b60006112cd60085490565b60145433600090815260166020526040902054919250906112ee908a6128d7565b106113325760405162461bcd60e51b8152602060048201526014602482015273115e18d959591cc81dd85b1b195d081b1a5b5a5d60621b6044820152606401610895565b60125461133f89836128d7565b1061135c5760405162461bcd60e51b8152600401610895906128ef565b8760115461136a91906129dc565b3410156113b55760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610895565b876113bf8161291f565b9850600190505b8881101561140f573360009081526016602052604081208054916113e98361291f565b909155506113fd9050336108fd83856128d7565b806114078161291f565b9150506113c6565b50506015805461ff001916905550505050505050565b600a546001600160a01b0316331461144f5760405162461bcd60e51b81526004016108959061288c565b601055565b600a546001600160a01b0316331461147e5760405162461bcd60e51b81526004016108959061288c565b8051610bc390600d906020840190612458565b6060600180546109299061293a565b600d8054610c459061293a565b601554610100900460ff16156114f65760405162461bcd60e51b815260206004820152600e60248201526d1499595b9d1c985b9d0818d85b1b60921b6044820152606401610895565b6015805461ff001916610100179055600061151060085490565b60155490915060ff166115535760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b6044820152606401610895565b6013543360009081526016602052604090205461157090846128d7565b106115b45760405162461bcd60e51b8152602060048201526014602482015273115e18d959591cc81dd85b1b195d081b1a5b5a5d60621b6044820152606401610895565b6012546115c183836128d7565b106115de5760405162461bcd60e51b8152600401610895906128ef565b816010546115ec91906129dc565b3410156116375760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610895565b816116418161291f565b9250600190505b828110156116915733600090815260166020526040812080549161166b8361291f565b9091555061167f9050336108fd83856128d7565b806116898161291f565b915050611648565b50506015805461ff001916905550565b610bc3338383611d73565b6116b63383611a7f565b6116d25760405162461bcd60e51b81526004016108959061298b565b61091484848484611e42565b600a546001600160a01b031633146117085760405162461bcd60e51b81526004016108959061288c565b601155565b6000818152600260205260409020546060906001600160a01b031661178c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610895565b6000611796611e75565b905060008151116117b657604051806020016040528060008152506117e1565b806117c084611e84565b6040516020016117d19291906129fb565b6040516020818303038152906040525b9392505050565b6060600d80546109299061293a565b600a546001600160a01b031633146118215760405162461bcd60e51b81526004016108959061288c565b600f54156118715760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610895565b600061187c60085490565b43600e81905590915061189190829040612a40565b600f55600e5460ff906118a49043612a54565b11156118c557806118b6600143612a54565b6118c1919040612a40565b600f555b600f54610eff57600f546118da9060016128d7565b600f5550565b600a546001600160a01b0316331461190a5760405162461bcd60e51b81526004016108959061288c565b601355565b600a546001600160a01b031633146119395760405162461bcd60e51b81526004016108959061288c565b6001600160a01b03811661199e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610895565b610eff81611d21565b60006001600160e01b031982166380ac58cd60e01b14806119d857506001600160e01b03198216635b5e139f60e01b145b8061086557506301ffc9a760e01b6001600160e01b0319831614610865565b610bc3828260405180602001604052806000815250611f82565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a4682610fed565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611af85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610895565b6000611b0383610fed565b9050806001600160a01b0316846001600160a01b03161480611b3e5750836001600160a01b0316611b33846109ac565b6001600160a01b0316145b80611b6e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b8982610fed565b6001600160a01b031614611bf15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610895565b6001600160a01b038216611c535760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610895565b611c5e838383611fb5565b611c69600082611a11565b6001600160a01b0383166000908152600360205260408120805460019290611c92908490612a54565b90915550506001600160a01b0382166000908152600360205260408120805460019290611cc09084906128d7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611dd55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610895565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e4d848484611b76565b611e598484848461206d565b6109145760405162461bcd60e51b815260040161089590612a6b565b6060600c80546109299061293a565b606081611ea85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ed25780611ebc8161291f565b9150611ecb9050600a83612abd565b9150611eac565b60008167ffffffffffffffff811115611eed57611eed6125ee565b6040519080825280601f01601f191660200182016040528015611f17576020820181803683370190505b5090505b8415611b6e57611f2c600183612a54565b9150611f39600a86612a40565b611f449060306128d7565b60f81b818381518110611f5957611f59612975565b60200101906001600160f81b031916908160001a905350611f7b600a86612abd565b9450611f1b565b611f8c838361217a565b611f99600084848461206d565b610b525760405162461bcd60e51b815260040161089590612a6b565b6001600160a01b0383166120105761200b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612033565b816001600160a01b0316836001600160a01b0316146120335761203383826122c8565b6001600160a01b03821661204a57610b5281612365565b826001600160a01b0316826001600160a01b031614610b5257610b528282612414565b60006001600160a01b0384163b1561216f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120b1903390899088908890600401612ad1565b602060405180830381600087803b1580156120cb57600080fd5b505af19250505080156120fb575060408051601f3d908101601f191682019092526120f891810190612b0e565b60015b612155573d808015612129576040519150601f19603f3d011682016040523d82523d6000602084013e61212e565b606091505b50805161214d5760405162461bcd60e51b815260040161089590612a6b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b6e565b506001949350505050565b6001600160a01b0382166121d05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610895565b6000818152600260205260409020546001600160a01b0316156122355760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610895565b61224160008383611fb5565b6001600160a01b038216600090815260036020526040812080546001929061226a9084906128d7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016122d584611064565b6122df9190612a54565b600083815260076020526040902054909150808214612332576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061237790600190612a54565b6000838152600960205260408120546008805493945090928490811061239f5761239f612975565b9060005260206000200154905080600883815481106123c0576123c0612975565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806123f8576123f8612b2b565b6001900381819060005260206000200160009055905550505050565b600061241f83611064565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546124649061293a565b90600052602060002090601f01602090048101928261248657600085556124cc565b82601f1061249f57805160ff19168380011785556124cc565b828001600101855582156124cc579182015b828111156124cc5782518255916020019190600101906124b1565b506124d89291506124dc565b5090565b5b808211156124d857600081556001016124dd565b6001600160e01b031981168114610eff57600080fd5b60006020828403121561251957600080fd5b81356117e1816124f1565b80356001600160a01b038116811461253b57600080fd5b919050565b6000806040838503121561255357600080fd5b61255c83612524565b946020939093013593505050565b60005b8381101561258557818101518382015260200161256d565b838111156109145750506000910152565b600081518084526125ae81602086016020860161256a565b601f01601f19169290920160200192915050565b6020815260006117e16020830184612596565b6000602082840312156125e757600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561261f5761261f6125ee565b604051601f8501601f19908116603f01168101908282118183101715612647576126476125ee565b8160405280935085815286868601111561266057600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561268c57600080fd5b813567ffffffffffffffff8111156126a357600080fd5b8201601f810184136126b457600080fd5b611b6e84823560208401612604565b6000602082840312156126d557600080fd5b6117e182612524565b6020808252825182820181905260009190848201906040850190845b81811015612716578351835292840192918401916001016126fa565b50909695505050505050565b60008060006060848603121561273757600080fd5b61274084612524565b925061274e60208501612524565b9150604084013590509250925092565b6000806000806080858703121561277457600080fd5b84359350602085013560ff8116811461278c57600080fd5b93969395505050506040820135916060013590565b600080604083850312156127b457600080fd5b6127bd83612524565b9150602083013580151581146127d257600080fd5b809150509250929050565b600080600080608085870312156127f357600080fd5b6127fc85612524565b935061280a60208601612524565b925060408501359150606085013567ffffffffffffffff81111561282d57600080fd5b8501601f8101871361283e57600080fd5b61284d87823560208401612604565b91505092959194509250565b6000806040838503121561286c57600080fd5b61287583612524565b915061288360208401612524565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156128ea576128ea6128c1565b500190565b60208082526016908201527545786365656473206d6178204e465420737570706c7960501b604082015260600190565b6000600019821415612933576129336128c1565b5060010190565b600181811c9082168061294e57607f821691505b6020821081141561296f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008160001904831182151516156129f6576129f66128c1565b500290565b60008351612a0d81846020880161256a565b835190830190612a2181836020880161256a565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b600082612a4f57612a4f612a2a565b500690565b600082821015612a6657612a666128c1565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612acc57612acc612a2a565b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b0490830184612596565b9695505050505050565b600060208284031215612b2057600080fd5b81516117e1816124f1565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220667d81e5bbb7a6d5aa5fe5426cef86e36ad238a5d435a40984a67c996b625b0d64736f6c63430008090033

Deployed Bytecode Sourcemap

44614:8885:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38266:224;;;;;;;;;;-1:-1:-1;38266:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;38266:224:0;;;;;;;;51798:507;;;;;;;;;;-1:-1:-1;51798:507:0;;;;;:::i;:::-;;:::i;:::-;;25760:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27319:221::-;;;;;;;;;;-1:-1:-1;27319:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2129:32:1;;;2111:51;;2099:2;2084:18;27319:221:0;1965:203:1;26842:411:0;;;;;;;;;;-1:-1:-1;26842:411:0;;;;;:::i;:::-;;:::i;48040:124::-;;;;;;;;;;-1:-1:-1;48040:124:0;;;;;:::i;:::-;;:::i;53368:126::-;;;;;;;;;;-1:-1:-1;53368:126:0;;;;;:::i;:::-;;:::i;38906:113::-;;;;;;;;;;-1:-1:-1;38994:10:0;:17;38906:113;;;3544:25:1;;;3532:2;3517:18;38906:113:0;3398:177:1;48354:271:0;;;;;;;;;;-1:-1:-1;48354:271:0;;;;;:::i;:::-;;:::i;44677:33::-;;;;;;;;;;;;;:::i;48791:360::-;;;;;;;;;;-1:-1:-1;48791:360:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;44719:36::-;;;;;;;;;;;;;:::i;28069:339::-;;;;;;;;;;-1:-1:-1;28069:339:0;;;;;:::i;:::-;;:::i;38574:256::-;;;;;;;;;;-1:-1:-1;38574:256:0;;;;;:::i;:::-;;:::i;49226:89::-;;;;;;;;;;;;;:::i;45019:31::-;;;;;;;;;;;;;;;;47371:97;;;;;;;;;;-1:-1:-1;47371:97:0;;;;;:::i;:::-;;:::i;48172:107::-;;;;;;;;;;;;;:::i;28479:185::-;;;;;;;;;;-1:-1:-1;28479:185:0;;;;;:::i;:::-;;:::i;39096:233::-;;;;;;;;;;-1:-1:-1;39096:233:0;;;;;:::i;:::-;;:::i;45113:41::-;;;;;;;;;;;;;;;;44928:43;;;;;;;;;;;;;;;;47043:124;;;;;;;;;;-1:-1:-1;47043:124:0;;;;;:::i;:::-;;:::i;25454:239::-;;;;;;;;;;-1:-1:-1;25454:239:0;;;;;:::i;:::-;;:::i;25184:208::-;;;;;;;;;;-1:-1:-1;25184:208:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;45426:54::-;;;;;;;;;;-1:-1:-1;45426:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;49391:1173;;;;;;:::i;:::-;;:::i;44888:33::-;;;;;;;;;;;;;;;;4079:87;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;47523:92;;;;;;;;;;-1:-1:-1;47523:92:0;;;;;:::i;:::-;;:::i;47173:140::-;;;;;;;;;;-1:-1:-1;47173:140:0;;;;;:::i;:::-;;:::i;25929:104::-;;;;;;;;;;;;;:::i;44762:40::-;;;;;;;;;;;;;:::i;50607:1128::-;;;;;;:::i;:::-;;:::i;27612:155::-;;;;;;;;;;-1:-1:-1;27612:155:0;;;;;:::i;:::-;;:::i;28735:328::-;;;;;;;;;;-1:-1:-1;28735:328:0;;;;;:::i;:::-;;:::i;47670:111::-;;;;;;;;;;-1:-1:-1;47670:111:0;;;;;:::i;:::-;;:::i;44980:30::-;;;;;;;;;;;;;;;;26104:334;;;;;;;;;;-1:-1:-1;26104:334:0;;;;;:::i;:::-;;:::i;44851:28::-;;;;;;;;;;;;;;;;44811:33;;;;;;;;;;;;;;;;46803:106;;;;;;;;;;;;;:::i;27838:164::-;;;;;;;;;;-1:-1:-1;27838:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27959:25:0;;;27935:4;27959:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27838:164;52535:699;;;;;;;;;;;;;:::i;45219:32::-;;;;;;;;;;-1:-1:-1;45219:32:0;;;;;;;;47858:105;;;;;;;;;;-1:-1:-1;47858:105:0;;;;;:::i;:::-;;:::i;4988:201::-;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;38266:224::-;38368:4;-1:-1:-1;;;;;;38392:50:0;;-1:-1:-1;;;38392:50:0;;:90;;;38446:36;38470:11;38446:23;:36::i;:::-;38385:97;38266:224;-1:-1:-1;;38266:224:0:o;51798:507::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;51883:14:::1;51900:13;38994:10:::0;:17;;38906:113;51900:13:::1;51980:15;::::0;51883:30;;-1:-1:-1;51953:24:0::1;51962:15:::0;51883:30;51953:24:::1;:::i;:::-;:42;51945:77;;;;-1:-1:-1::0;;;51945:77:0::1;;;;;;;:::i;:::-;52070:17:::0;::::1;::::0;::::1;:::i;:::-;::::0;-1:-1:-1;52170:1:0::1;::::0;-1:-1:-1;52156:142:0::1;52177:15;52173:1;:19;52156:142;;;52260:26;52270:5:::0;52277:8:::1;52284:1:::0;52277:6;:8:::1;:::i;:::-;52260:9;:26::i;:::-;52194:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52156:142;;;;51872:433;51798:507:::0;;:::o;25760:100::-;25814:13;25847:5;25840:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25760:100;:::o;27319:221::-;27395:7;30662:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30662:16:0;27415:73;;;;-1:-1:-1;;;27415:73:0;;8213:2:1;27415:73:0;;;8195:21:1;8252:2;8232:18;;;8225:30;8291:34;8271:18;;;8264:62;-1:-1:-1;;;8342:18:1;;;8335:42;8394:19;;27415:73:0;8011:408:1;27415:73:0;-1:-1:-1;27508:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27508:24:0;;27319:221::o;26842:411::-;26923:13;26939:23;26954:7;26939:14;:23::i;:::-;26923:39;;26987:5;-1:-1:-1;;;;;26981:11:0;:2;-1:-1:-1;;;;;26981:11:0;;;26973:57;;;;-1:-1:-1;;;26973:57:0;;8626:2:1;26973:57:0;;;8608:21:1;8665:2;8645:18;;;8638:30;8704:34;8684:18;;;8677:62;-1:-1:-1;;;8755:18:1;;;8748:31;8796:19;;26973:57:0;8424:397:1;26973:57:0;2883:10;-1:-1:-1;;;;;27065:21:0;;;;:62;;-1:-1:-1;27090:37:0;27107:5;2883:10;27838:164;:::i;27090:37::-;27043:168;;;;-1:-1:-1;;;27043:168:0;;9028:2:1;27043:168:0;;;9010:21:1;9067:2;9047:18;;;9040:30;9106:34;9086:18;;;9079:62;9177:26;9157:18;;;9150:54;9221:19;;27043:168:0;8826:420:1;27043:168:0;27224:21;27233:2;27237:7;27224:8;:21::i;:::-;26912:341;26842:411;;:::o;48040:124::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48122:22:::1;:34:::0;48040:124::o;53368:126::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;53454:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53368:126:::0;:::o;48354:271::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48425:14:::1;48442:13;38994:10:::0;:17;;38906:113;48442:13:::1;48425:30:::0;-1:-1:-1;48466:16:0::1;48485:6;:4:::0;48490:1:::1;48485:6;:::i;:::-;48466:25:::0;-1:-1:-1;48517:1:0::1;48502:116;48524:8;48520:1;:12;48502:116;;;48575:31;48585:10;48597:8;48604:1:::0;48597:6;:8:::1;:::i;48575:31::-;48534:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48502:116;;44677:33:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48791:360::-;48854:16;48883:22;48908:17;48918:6;48908:9;:17::i;:::-;48883:42;;48936:25;48978:14;48964:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48964:29:0;;48936:57;;49011:9;49006:112;49026:14;49022:1;:18;49006:112;;;49076:30;49096:6;49104:1;49076:19;:30::i;:::-;49062:8;49071:1;49062:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;49042:3;;;;:::i;:::-;;;;49006:112;;;-1:-1:-1;49135:8:0;48791:360;-1:-1:-1;;;48791:360:0:o;44719:36::-;;;;;;;:::i;28069:339::-;28264:41;2883:10;28297:7;28264:18;:41::i;:::-;28256:103;;;;-1:-1:-1;;;28256:103:0;;;;;;;:::i;:::-;28372:28;28382:4;28388:2;28392:7;28372:9;:28::i;38574:256::-;38671:7;38707:23;38724:5;38707:16;:23::i;:::-;38699:5;:31;38691:87;;;;-1:-1:-1;;;38691:87:0;;10003:2:1;38691:87:0;;;9985:21:1;10042:2;10022:18;;;10015:30;10081:34;10061:18;;;10054:62;-1:-1:-1;;;10132:18:1;;;10125:41;10183:19;;38691:87:0;9801:407:1;38691:87:0;-1:-1:-1;;;;;;38796:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38574:256::o;49226:89::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49295:12:::1;::::0;;-1:-1:-1;;49279:28:0;::::1;49295:12;::::0;;::::1;49294:13;49279:28;::::0;;49226:89::o;47371:97::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;47434:15:::1;:26:::0;47371:97::o;48172:107::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48220:51:::1;::::0;48228:10:::1;::::0;48249:21:::1;48220:51:::0;::::1;;;::::0;::::1;::::0;;;48249:21;48228:10;48220:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48172:107::o:0;28479:185::-;28617:39;28634:4;28640:2;28644:7;28617:39;;;;;;;;;;;;:16;:39::i;39096:233::-;39171:7;39207:30;38994:10;:17;;38906:113;39207:30;39199:5;:38;39191:95;;;;-1:-1:-1;;;39191:95:0;;10415:2:1;39191:95:0;;;10397:21:1;10454:2;10434:18;;;10427:30;10493:34;10473:18;;;10466:62;-1:-1:-1;;;10544:18:1;;;10537:42;10596:19;;39191:95:0;10213:408:1;39191:95:0;39304:10;39315:5;39304:17;;;;;;;;:::i;:::-;;;;;;;;;39297:24;;39096:233;;;:::o;47043:124::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;47123:36;;::::1;::::0;:17:::1;::::0;:36:::1;::::0;::::1;::::0;::::1;:::i;25454:239::-:0;25526:7;25562:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25562:16:0;25597:19;25589:73;;;;-1:-1:-1;;;25589:73:0;;10828:2:1;25589:73:0;;;10810:21:1;10867:2;10847:18;;;10840:30;10906:34;10886:18;;;10879:62;-1:-1:-1;;;10957:18:1;;;10950:39;11006:19;;25589:73:0;10626:405:1;25184:208:0;25256:7;-1:-1:-1;;;;;25284:19:0;;25276:74;;;;-1:-1:-1;;;25276:74:0;;11238:2:1;25276:74:0;;;11220:21:1;11277:2;11257:18;;;11250:30;11316:34;11296:18;;;11289:62;-1:-1:-1;;;11367:18:1;;;11360:40;11417:19;;25276:74:0;11036:406:1;25276:74:0;-1:-1:-1;;;;;;25368:16:0;;;;;:9;:16;;;;;;;25184:208::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;49391:1173::-;46108:6;;;;;;;46107:7;46099:34;;;;-1:-1:-1;;;46099:34:0;;11649:2:1;46099:34:0;;;11631:21:1;11688:2;11668:18;;;11661:30;-1:-1:-1;;;11707:18:1;;;11700:44;11761:18;;46099:34:0;11447:338:1;46099:34:0;46144:6;:13;;;-1:-1:-1;;46144:13:0;;;;;;46507:43:::1;::::0;-1:-1:-1;;46532:4:0::1;12017:2:1::0;12013:15;;;12009:24;;46507:43:0::1;::::0;::::1;11997:37:1::0;46539:10:0::1;12068:15:1::0;;12064:24;12050:12;;;12043:46;49593:2:0;;49597;;49601;;-1:-1:-1;;12105:12:1;;46507:43:0::1;::::0;;-1:-1:-1;;46507:43:0;;::::1;::::0;;;;;;;46496:55;;46507:43:::1;46496:55:::0;;::::1;::::0;12370:66:1;46397:155:0;;::::1;12358:79:1::0;;;;12453:12;;;12446:28;12490:12;;46397:155:0::1;::::0;;-1:-1:-1;;46397:155:0;;::::1;::::0;;;;;;46386:167;;46397:155:::1;46386:167:::0;;::::1;::::0;46370:234:::1;::::0;;;;::::1;::::0;;;12740:25:1;12813:4;12801:17;;12781:18;;;12774:45;12835:18;;;12828:34;;;12878:18;;;12871:34;;;12712:19;;46370:234:0::1;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;-1:-1:-1::0;;;;;46359:245:0::1;:7;4152:6:::0;;-1:-1:-1;;;;;4152:6:0;;4079:87;46359:7:::1;-1:-1:-1::0;;;;;46359:245:0::1;;46350:292;;;::::0;-1:-1:-1;;;46350:292:0;;13118:2:1;46350:292:0::1;::::0;::::1;13100:21:1::0;13157:2;13137:18;;;13130:30;-1:-1:-1;;;13176:18:1;;;13169:45;13231:18;;46350:292:0::1;12916:339:1::0;46350:292:0::1;49618:14:::2;49635:13;38994:10:::0;:17;;38906:113;49635:13:::2;49751:22;::::0;49725:10:::2;49709:27;::::0;;;:15:::2;:27;::::0;;;;:38;49618:30;;-1:-1:-1;49751:22:0;49691:56:::2;::::0;:15;:56:::2;:::i;:::-;49690:83;49682:116;;;::::0;-1:-1:-1;;;49682:116:0;;13462:2:1;49682:116:0::2;::::0;::::2;13444:21:1::0;13501:2;13481:18;;;13474:30;-1:-1:-1;;;13520:18:1;;;13513:50;13580:18;;49682:116:0::2;13260:344:1::0;49682:116:0::2;50022:15;::::0;49995:24:::2;50004:15:::0;49995:6;:24:::2;:::i;:::-;:42;49987:77;;;;-1:-1:-1::0;;;49987:77:0::2;;;;;;;:::i;:::-;50151:15;50133;;:33;;;;:::i;:::-;50120:9;:46;;50112:84;;;::::0;-1:-1:-1;;;50112:84:0;;13984:2:1;50112:84:0::2;::::0;::::2;13966:21:1::0;14023:2;14003:18;;;13996:30;-1:-1:-1;;;14042:18:1;;;14035:55;14107:18;;50112:84:0::2;13782:349:1::0;50112:84:0::2;50217:17:::0;::::2;::::0;::::2;:::i;:::-;::::0;-1:-1:-1;50317:1:0::2;::::0;-1:-1:-1;50303:254:0::2;50324:15;50320:1;:19;50303:254;;;50423:10;50407:27;::::0;;;:15:::2;:27;::::0;;;;:40;;;::::2;::::0;::::2;:::i;:::-;::::0;;;-1:-1:-1;50514:31:0::2;::::0;-1:-1:-1;50524:10:0::2;50536:8;50543:1:::0;50536:6;:8:::2;:::i;50514:31::-;50341:3:::0;::::2;::::0;::::2;:::i;:::-;;;;50303:254;;;-1:-1:-1::0;;46180:6:0;:14;;-1:-1:-1;;46180:14:0;;;-1:-1:-1;;;;;;;49391:1173:0:o;47523:92::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;47590:5:::1;:17:::0;47523:92::o;47173:140::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;47261:44;;::::1;::::0;:21:::1;::::0;:44:::1;::::0;::::1;::::0;::::1;:::i;25929:104::-:0;25985:13;26018:7;26011:14;;;;;:::i;44762:40::-;;;;;;;:::i;50607:1128::-;46108:6;;;;;;;46107:7;46099:34;;;;-1:-1:-1;;;46099:34:0;;11649:2:1;46099:34:0;;;11631:21:1;11688:2;11668:18;;;11661:30;-1:-1:-1;;;11707:18:1;;;11700:44;11761:18;;46099:34:0;11447:338:1;46099:34:0;46144:6;:13;;-1:-1:-1;;46144:13:0;;;;;;50702::::1;38994:10:::0;:17;;38906:113;50702:13:::1;50757:12;::::0;50685:30;;-1:-1:-1;50757:12:0::1;;50749:36;;;::::0;-1:-1:-1;;;50749:36:0;;14338:2:1;50749:36:0::1;::::0;::::1;14320:21:1::0;14377:2;14357:18;;;14350:30;-1:-1:-1;;;14396:18:1;;;14389:41;14447:18;;50749:36:0::1;14136:335:1::0;50749:36:0::1;50865:12;::::0;50839:10:::1;50823:27;::::0;;;:15:::1;:27;::::0;;;;:38;50805:56:::1;::::0;:15;:56:::1;:::i;:::-;50804:73;50796:106;;;::::0;-1:-1:-1;;;50796:106:0;;13462:2:1;50796:106:0::1;::::0;::::1;13444:21:1::0;13501:2;13481:18;;;13474:30;-1:-1:-1;;;13520:18:1;;;13513:50;13580:18;;50796:106:0::1;13260:344:1::0;50796:106:0::1;50948:15;::::0;50921:24:::1;50930:15:::0;50921:6;:24:::1;:::i;:::-;:42;50913:77;;;;-1:-1:-1::0;;;50913:77:0::1;;;;;;;:::i;:::-;51065:15;51057:5;;:23;;;;:::i;:::-;51044:9;:36;;51036:74;;;::::0;-1:-1:-1;;;51036:74:0;;13984:2:1;51036:74:0::1;::::0;::::1;13966:21:1::0;14023:2;14003:18;;;13996:30;-1:-1:-1;;;14042:18:1;;;14035:55;14107:18;;51036:74:0::1;13782:349:1::0;51036:74:0::1;51131:17:::0;::::1;::::0;::::1;:::i;:::-;::::0;-1:-1:-1;51231:1:0::1;::::0;-1:-1:-1;51217:254:0::1;51238:15;51234:1;:19;51217:254;;;51337:10;51321:27;::::0;;;:15:::1;:27;::::0;;;;:40;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;51428:31:0::1;::::0;-1:-1:-1;51438:10:0::1;51450:8;51457:1:::0;51450:6;:8:::1;:::i;51428:31::-;51255:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51217:254;;;-1:-1:-1::0;;46180:6:0;:14;;-1:-1:-1;;46180:14:0;;;-1:-1:-1;50607:1128:0:o;27612:155::-;27707:52;2883:10;27740:8;27750;27707:18;:52::i;28735:328::-;28910:41;2883:10;28943:7;28910:18;:41::i;:::-;28902:103;;;;-1:-1:-1;;;28902:103:0;;;;;;;:::i;:::-;29016:39;29030:4;29036:2;29040:7;29049:5;29016:13;:39::i;47670:111::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;47746:15:::1;:27:::0;47670:111::o;26104:334::-;30638:4;30662:16;;;:7;:16;;;;;;26177:13;;-1:-1:-1;;;;;30662:16:0;26203:76;;;;-1:-1:-1;;;26203:76:0;;14678:2:1;26203:76:0;;;14660:21:1;14717:2;14697:18;;;14690:30;14756:34;14736:18;;;14729:62;-1:-1:-1;;;14807:18:1;;;14800:45;14862:19;;26203:76:0;14476:411:1;26203:76:0;26292:21;26316:10;:8;:10::i;:::-;26292:34;;26368:1;26350:7;26344:21;:25;:86;;;;;;;;;;;;;;;;;26396:7;26405:18;:7;:16;:18::i;:::-;26379:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26344:86;26337:93;26104:334;-1:-1:-1;;;26104:334:0:o;46803:106::-;46847:13;46880:21;46873:28;;;;;:::i;52535:699::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;52599:13:::1;::::0;:18;52591:60:::1;;;::::0;-1:-1:-1;;;52591:60:0;;15569:2:1;52591:60:0::1;::::0;::::1;15551:21:1::0;15608:2;15588:18;;;15581:30;15647:31;15627:18;;;15620:59;15696:18;;52591:60:0::1;15367:353:1::0;52591:60:0::1;52662:14;52679:13;38994:10:::0;:17;;38906:113;52679:13:::1;52747:12;52726:18;:33:::0;;;52662:30;;-1:-1:-1;52788:47:0::1;::::0;52662:30;;52796:29:::1;52788:47;:::i;:::-;52772:13;:63:::0;52984:18:::1;::::0;53005:3:::1;::::0;52971:31:::1;::::0;:12:::1;:31;:::i;:::-;:37;52967:131;;;53080:6:::0;53059:16:::1;53074:1;53059:12;:16;:::i;:::-;53041:45;::::0;;53049:27:::1;53041:45;:::i;:::-;53025:13;:61:::0;52967:131:::1;53149:13;::::0;53145:82:::1;;53200:13;::::0;:15:::1;::::0;53214:1:::1;53200:15;:::i;:::-;53184:13;:31:::0;52580:654:::1;52535:699::o:0;47858:105::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;47931:12:::1;:24:::0;47858:105::o;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;16306:2:1;5069:73:0::1;::::0;::::1;16288:21:1::0;16345:2;16325:18;;;16318:30;16384:34;16364:18;;;16357:62;-1:-1:-1;;;16435:18:1;;;16428:36;16481:19;;5069:73:0::1;16104:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;24815:305::-:0;24917:4;-1:-1:-1;;;;;;24954:40:0;;-1:-1:-1;;;24954:40:0;;:105;;-1:-1:-1;;;;;;;25011:48:0;;-1:-1:-1;;;25011:48:0;24954:105;:158;;;-1:-1:-1;;;;;;;;;;16620:40:0;;;25076:36;16511:157;31557:110;31633:26;31643:2;31647:7;31633:26;;;;;;;;;;;;:9;:26::i;34555:174::-;34630:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34630:29:0;-1:-1:-1;;;;;34630:29:0;;;;;;;;:24;;34684:23;34630:24;34684:14;:23::i;:::-;-1:-1:-1;;;;;34675:46:0;;;;;;;;;;;34555:174;;:::o;30867:348::-;30960:4;30662:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30662:16:0;30977:73;;;;-1:-1:-1;;;30977:73:0;;16713:2:1;30977:73:0;;;16695:21:1;16752:2;16732:18;;;16725:30;16791:34;16771:18;;;16764:62;-1:-1:-1;;;16842:18:1;;;16835:42;16894:19;;30977:73:0;16511:408:1;30977:73:0;31061:13;31077:23;31092:7;31077:14;:23::i;:::-;31061:39;;31130:5;-1:-1:-1;;;;;31119:16:0;:7;-1:-1:-1;;;;;31119:16:0;;:51;;;;31163:7;-1:-1:-1;;;;;31139:31:0;:20;31151:7;31139:11;:20::i;:::-;-1:-1:-1;;;;;31139:31:0;;31119:51;:87;;;-1:-1:-1;;;;;;27959:25:0;;;27935:4;27959:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31174:32;31111:96;30867:348;-1:-1:-1;;;;30867:348:0:o;33859:578::-;34018:4;-1:-1:-1;;;;;33991:31:0;:23;34006:7;33991:14;:23::i;:::-;-1:-1:-1;;;;;33991:31:0;;33983:85;;;;-1:-1:-1;;;33983:85:0;;17126:2:1;33983:85:0;;;17108:21:1;17165:2;17145:18;;;17138:30;17204:34;17184:18;;;17177:62;-1:-1:-1;;;17255:18:1;;;17248:39;17304:19;;33983:85:0;16924:405:1;33983:85:0;-1:-1:-1;;;;;34087:16:0;;34079:65;;;;-1:-1:-1;;;34079:65:0;;17536:2:1;34079:65:0;;;17518:21:1;17575:2;17555:18;;;17548:30;17614:34;17594:18;;;17587:62;-1:-1:-1;;;17665:18:1;;;17658:34;17709:19;;34079:65:0;17334:400:1;34079:65:0;34157:39;34178:4;34184:2;34188:7;34157:20;:39::i;:::-;34261:29;34278:1;34282:7;34261:8;:29::i;:::-;-1:-1:-1;;;;;34303:15:0;;;;;;:9;:15;;;;;:20;;34322:1;;34303:15;:20;;34322:1;;34303:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34334:13:0;;;;;;:9;:13;;;;;:18;;34351:1;;34334:13;:18;;34351:1;;34334:18;:::i;:::-;;;;-1:-1:-1;;34363:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34363:21:0;-1:-1:-1;;;;;34363:21:0;;;;;;;;;34402:27;;34363:16;;34402:27;;;;;;;33859:578;;;:::o;5349:191::-;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;34871:315::-;35026:8;-1:-1:-1;;;;;35017:17:0;:5;-1:-1:-1;;;;;35017:17:0;;;35009:55;;;;-1:-1:-1;;;35009:55:0;;17941:2:1;35009:55:0;;;17923:21:1;17980:2;17960:18;;;17953:30;18019:27;17999:18;;;17992:55;18064:18;;35009:55:0;17739:349:1;35009:55:0;-1:-1:-1;;;;;35075:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35075:46:0;;;;;;;;;;35137:41;;540::1;;;35137::0;;513:18:1;35137:41:0;;;;;;;34871:315;;;:::o;29945:::-;30102:28;30112:4;30118:2;30122:7;30102:9;:28::i;:::-;30149:48;30172:4;30178:2;30182:7;30191:5;30149:22;:48::i;:::-;30141:111;;;;-1:-1:-1;;;30141:111:0;;;;;;;:::i;46917:118::-;46977:13;47010:17;47003:24;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;31894:321;32024:18;32030:2;32034:7;32024:5;:18::i;:::-;32075:54;32106:1;32110:2;32114:7;32123:5;32075:22;:54::i;:::-;32053:154;;;;-1:-1:-1;;;32053:154:0;;;;;;;:::i;39942:589::-;-1:-1:-1;;;;;40148:18:0;;40144:187;;40183:40;40215:7;41358:10;:17;;41331:24;;;;:15;:24;;;;;:44;;;41386:24;;;;;;;;;;;;41254:164;40183:40;40144:187;;;40253:2;-1:-1:-1;;;;;40245:10:0;:4;-1:-1:-1;;;;;40245:10:0;;40241:90;;40272:47;40305:4;40311:7;40272:32;:47::i;:::-;-1:-1:-1;;;;;40345:16:0;;40341:183;;40378:45;40415:7;40378:36;:45::i;40341:183::-;40451:4;-1:-1:-1;;;;;40445:10:0;:2;-1:-1:-1;;;;;40445:10:0;;40441:83;;40472:40;40500:2;40504:7;40472:27;:40::i;35751:799::-;35906:4;-1:-1:-1;;;;;35927:13:0;;6690:20;6738:8;35923:620;;35963:72;;-1:-1:-1;;;35963:72:0;;-1:-1:-1;;;;;35963:36:0;;;;;:72;;2883:10;;36014:4;;36020:7;;36029:5;;35963:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35963:72:0;;;;;;;;-1:-1:-1;;35963:72:0;;;;;;;;;;;;:::i;:::-;;;35959:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36205:13:0;;36201:272;;36248:60;;-1:-1:-1;;;36248:60:0;;;;;;;:::i;36201:272::-;36423:6;36417:13;36408:6;36404:2;36400:15;36393:38;35959:529;-1:-1:-1;;;;;;36086:51:0;-1:-1:-1;;;36086:51:0;;-1:-1:-1;36079:58:0;;35923:620;-1:-1:-1;36527:4:0;35751:799;;;;;;:::o;32551:382::-;-1:-1:-1;;;;;32631:16:0;;32623:61;;;;-1:-1:-1;;;32623:61:0;;19587:2:1;32623:61:0;;;19569:21:1;;;19606:18;;;19599:30;19665:34;19645:18;;;19638:62;19717:18;;32623:61:0;19385:356:1;32623:61:0;30638:4;30662:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30662:16:0;:30;32695:58;;;;-1:-1:-1;;;32695:58:0;;19948:2:1;32695:58:0;;;19930:21:1;19987:2;19967:18;;;19960:30;20026;20006:18;;;19999:58;20074:18;;32695:58:0;19746:352:1;32695:58:0;32766:45;32795:1;32799:2;32803:7;32766:20;:45::i;:::-;-1:-1:-1;;;;;32824:13:0;;;;;;:9;:13;;;;;:18;;32841:1;;32824:13;:18;;32841:1;;32824:18;:::i;:::-;;;;-1:-1:-1;;32853:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32853:21:0;-1:-1:-1;;;;;32853:21:0;;;;;;;;32892:33;;32853:16;;;32892:33;;32853:16;;32892:33;32551:382;;:::o;42045:988::-;42311:22;42361:1;42336:22;42353:4;42336:16;:22::i;:::-;:26;;;;:::i;:::-;42373:18;42394:26;;;:17;:26;;;;;;42311:51;;-1:-1:-1;42527:28:0;;;42523:328;;-1:-1:-1;;;;;42594:18:0;;42572:19;42594:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42645:30;;;;;;:44;;;42762:30;;:17;:30;;;;;:43;;;42523:328;-1:-1:-1;42947:26:0;;;;:17;:26;;;;;;;;42940:33;;;-1:-1:-1;;;;;42991:18:0;;;;;:12;:18;;;;;:34;;;;;;;42984:41;42045:988::o;43328:1079::-;43606:10;:17;43581:22;;43606:21;;43626:1;;43606:21;:::i;:::-;43638:18;43659:24;;;:15;:24;;;;;;44032:10;:26;;43581:46;;-1:-1:-1;43659:24:0;;43581:46;;44032:26;;;;;;:::i;:::-;;;;;;;;;44010:48;;44096:11;44071:10;44082;44071:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44176:28;;;:15;:28;;;;;;;:41;;;44348:24;;;;;44341:31;44383:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43399:1008;;;43328:1079;:::o;40832:221::-;40917:14;40934:20;40951:2;40934:16;:20::i;:::-;-1:-1:-1;;;;;40965:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41010:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40832:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:254::-;838:6;846;899:2;887:9;878:7;874:23;870:32;867:52;;;915:1;912;905:12;867:52;938:29;957:9;938:29;:::i;:::-;928:39;1014:2;999:18;;;;986:32;;-1:-1:-1;;;770:254:1:o;1029:258::-;1101:1;1111:113;1125:6;1122:1;1119:13;1111:113;;;1201:11;;;1195:18;1182:11;;;1175:39;1147:2;1140:10;1111:113;;;1242:6;1239:1;1236:13;1233:48;;;-1:-1:-1;;1277:1:1;1259:16;;1252:27;1029:258::o;1292:::-;1334:3;1372:5;1366:12;1399:6;1394:3;1387:19;1415:63;1471:6;1464:4;1459:3;1455:14;1448:4;1441:5;1437:16;1415:63;:::i;:::-;1532:2;1511:15;-1:-1:-1;;1507:29:1;1498:39;;;;1539:4;1494:50;;1292:258;-1:-1:-1;;1292:258:1:o;1555:220::-;1704:2;1693:9;1686:21;1667:4;1724:45;1765:2;1754:9;1750:18;1742:6;1724:45;:::i;1780:180::-;1839:6;1892:2;1880:9;1871:7;1867:23;1863:32;1860:52;;;1908:1;1905;1898:12;1860:52;-1:-1:-1;1931:23:1;;1780:180;-1:-1:-1;1780:180:1:o;2173:127::-;2234:10;2229:3;2225:20;2222:1;2215:31;2265:4;2262:1;2255:15;2289:4;2286:1;2279:15;2305:632;2370:5;2400:18;2441:2;2433:6;2430:14;2427:40;;;2447:18;;:::i;:::-;2522:2;2516:9;2490:2;2576:15;;-1:-1:-1;;2572:24:1;;;2598:2;2568:33;2564:42;2552:55;;;2622:18;;;2642:22;;;2619:46;2616:72;;;2668:18;;:::i;:::-;2708:10;2704:2;2697:22;2737:6;2728:15;;2767:6;2759;2752:22;2807:3;2798:6;2793:3;2789:16;2786:25;2783:45;;;2824:1;2821;2814:12;2783:45;2874:6;2869:3;2862:4;2854:6;2850:17;2837:44;2929:1;2922:4;2913:6;2905;2901:19;2897:30;2890:41;;;;2305:632;;;;;:::o;2942:451::-;3011:6;3064:2;3052:9;3043:7;3039:23;3035:32;3032:52;;;3080:1;3077;3070:12;3032:52;3120:9;3107:23;3153:18;3145:6;3142:30;3139:50;;;3185:1;3182;3175:12;3139:50;3208:22;;3261:4;3253:13;;3249:27;-1:-1:-1;3239:55:1;;3290:1;3287;3280:12;3239:55;3313:74;3379:7;3374:2;3361:16;3356:2;3352;3348:11;3313:74;:::i;3580:186::-;3639:6;3692:2;3680:9;3671:7;3667:23;3663:32;3660:52;;;3708:1;3705;3698:12;3660:52;3731:29;3750:9;3731:29;:::i;3771:632::-;3942:2;3994:21;;;4064:13;;3967:18;;;4086:22;;;3913:4;;3942:2;4165:15;;;;4139:2;4124:18;;;3913:4;4208:169;4222:6;4219:1;4216:13;4208:169;;;4283:13;;4271:26;;4352:15;;;;4317:12;;;;4244:1;4237:9;4208:169;;;-1:-1:-1;4394:3:1;;3771:632;-1:-1:-1;;;;;;3771:632:1:o;4408:328::-;4485:6;4493;4501;4554:2;4542:9;4533:7;4529:23;4525:32;4522:52;;;4570:1;4567;4560:12;4522:52;4593:29;4612:9;4593:29;:::i;:::-;4583:39;;4641:38;4675:2;4664:9;4660:18;4641:38;:::i;:::-;4631:48;;4726:2;4715:9;4711:18;4698:32;4688:42;;4408:328;;;;;:::o;4741:474::-;4825:6;4833;4841;4849;4902:3;4890:9;4881:7;4877:23;4873:33;4870:53;;;4919:1;4916;4909:12;4870:53;4955:9;4942:23;4932:33;;5015:2;5004:9;5000:18;4987:32;5059:4;5052:5;5048:16;5041:5;5038:27;5028:55;;5079:1;5076;5069:12;5028:55;4741:474;;5102:5;;-1:-1:-1;;;;5154:2:1;5139:18;;5126:32;;5205:2;5190:18;5177:32;;4741:474::o;5220:347::-;5285:6;5293;5346:2;5334:9;5325:7;5321:23;5317:32;5314:52;;;5362:1;5359;5352:12;5314:52;5385:29;5404:9;5385:29;:::i;:::-;5375:39;;5464:2;5453:9;5449:18;5436:32;5511:5;5504:13;5497:21;5490:5;5487:32;5477:60;;5533:1;5530;5523:12;5477:60;5556:5;5546:15;;;5220:347;;;;;:::o;5572:667::-;5667:6;5675;5683;5691;5744:3;5732:9;5723:7;5719:23;5715:33;5712:53;;;5761:1;5758;5751:12;5712:53;5784:29;5803:9;5784:29;:::i;:::-;5774:39;;5832:38;5866:2;5855:9;5851:18;5832:38;:::i;:::-;5822:48;;5917:2;5906:9;5902:18;5889:32;5879:42;;5972:2;5961:9;5957:18;5944:32;5999:18;5991:6;5988:30;5985:50;;;6031:1;6028;6021:12;5985:50;6054:22;;6107:4;6099:13;;6095:27;-1:-1:-1;6085:55:1;;6136:1;6133;6126:12;6085:55;6159:74;6225:7;6220:2;6207:16;6202:2;6198;6194:11;6159:74;:::i;:::-;6149:84;;;5572:667;;;;;;;:::o;6244:260::-;6312:6;6320;6373:2;6361:9;6352:7;6348:23;6344:32;6341:52;;;6389:1;6386;6379:12;6341:52;6412:29;6431:9;6412:29;:::i;:::-;6402:39;;6460:38;6494:2;6483:9;6479:18;6460:38;:::i;:::-;6450:48;;6244:260;;;;;:::o;6509:356::-;6711:2;6693:21;;;6730:18;;;6723:30;6789:34;6784:2;6769:18;;6762:62;6856:2;6841:18;;6509:356::o;6870:127::-;6931:10;6926:3;6922:20;6919:1;6912:31;6962:4;6959:1;6952:15;6986:4;6983:1;6976:15;7002:128;7042:3;7073:1;7069:6;7066:1;7063:13;7060:39;;;7079:18;;:::i;:::-;-1:-1:-1;7115:9:1;;7002:128::o;7135:346::-;7337:2;7319:21;;;7376:2;7356:18;;;7349:30;-1:-1:-1;;;7410:2:1;7395:18;;7388:52;7472:2;7457:18;;7135:346::o;7486:135::-;7525:3;-1:-1:-1;;7546:17:1;;7543:43;;;7566:18;;:::i;:::-;-1:-1:-1;7613:1:1;7602:13;;7486:135::o;7626:380::-;7705:1;7701:12;;;;7748;;;7769:61;;7823:4;7815:6;7811:17;7801:27;;7769:61;7876:2;7868:6;7865:14;7845:18;7842:38;7839:161;;;7922:10;7917:3;7913:20;7910:1;7903:31;7957:4;7954:1;7947:15;7985:4;7982:1;7975:15;7839:161;;7626:380;;;:::o;9251:127::-;9312:10;9307:3;9303:20;9300:1;9293:31;9343:4;9340:1;9333:15;9367:4;9364:1;9357:15;9383:413;9585:2;9567:21;;;9624:2;9604:18;;;9597:30;9663:34;9658:2;9643:18;;9636:62;-1:-1:-1;;;9729:2:1;9714:18;;9707:47;9786:3;9771:19;;9383:413::o;13609:168::-;13649:7;13715:1;13711;13707:6;13703:14;13700:1;13697:21;13692:1;13685:9;13678:17;13674:45;13671:71;;;13722:18;;:::i;:::-;-1:-1:-1;13762:9:1;;13609:168::o;14892:470::-;15071:3;15109:6;15103:13;15125:53;15171:6;15166:3;15159:4;15151:6;15147:17;15125:53;:::i;:::-;15241:13;;15200:16;;;;15263:57;15241:13;15200:16;15297:4;15285:17;;15263:57;:::i;:::-;15336:20;;14892:470;-1:-1:-1;;;;14892:470:1:o;15725:127::-;15786:10;15781:3;15777:20;15774:1;15767:31;15817:4;15814:1;15807:15;15841:4;15838:1;15831:15;15857:112;15889:1;15915;15905:35;;15920:18;;:::i;:::-;-1:-1:-1;15954:9:1;;15857:112::o;15974:125::-;16014:4;16042:1;16039;16036:8;16033:34;;;16047:18;;:::i;:::-;-1:-1:-1;16084:9:1;;15974:125::o;18093:414::-;18295:2;18277:21;;;18334:2;18314:18;;;18307:30;18373:34;18368:2;18353:18;;18346:62;-1:-1:-1;;;18439:2:1;18424:18;;18417:48;18497:3;18482:19;;18093:414::o;18512:120::-;18552:1;18578;18568:35;;18583:18;;:::i;:::-;-1:-1:-1;18617:9:1;;18512:120::o;18637:489::-;-1:-1:-1;;;;;18906:15:1;;;18888:34;;18958:15;;18953:2;18938:18;;18931:43;19005:2;18990:18;;18983:34;;;19053:3;19048:2;19033:18;;19026:31;;;18831:4;;19074:46;;19100:19;;19092:6;19074:46;:::i;:::-;19066:54;18637:489;-1:-1:-1;;;;;;18637:489:1:o;19131:249::-;19200:6;19253:2;19241:9;19232:7;19228:23;19224:32;19221:52;;;19269:1;19266;19259:12;19221:52;19301:9;19295:16;19320:30;19344:5;19320:30;:::i;20103:127::-;20164:10;20159:3;20155:20;20152:1;20145:31;20195:4;20192:1;20185:15;20219:4;20216:1;20209:15

Swarm Source

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