ETH Price: $2,642.32 (+1.43%)
Gas: 8.27 Gwei

Token

Meeples Gang (MPLSG)
 

Overview

Max Total Supply

787 MPLSG

Holders

352

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 MPLSG
0xea3b47474f12d12425cb5f101bcdfa6ecf746b3c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Meeples

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

/**
 * @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;
}

/**
 * @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);
}

/**
 * @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);
}

/**
 * @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);
            }
        }
    }
}

/**
 * @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;
    }
}

/**
 * @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);
    }
}

/**
 * @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;
    }
}

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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 {}
}

/**
 * @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);
}

/**
 * @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();
    }
}

/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// SPDX-License-Identifier: MIT
//   __  __                 _            ____
//  |  \/  | ___  ___ _ __ | | ___  ___ / ___| __ _ _ __   __ _
//  | |\/| |/ _ \/ _ \ '_ \| |/ _ \/ __| |  _ / _` | '_ \ / _` |
//  | |  | |  __/  __/ |_) | |  __/\__ \ |_| | (_| | | | | (_| |
//  |_|  |_|\___|\___| .__/|_|\___||___/\____|\__,_|_| |_|\__, |
//                   |_|                                  |___/
contract Meeples is ERC721Enumerable, Ownable
{
    // Constants
    uint256 public constant MEEPLE_PRICE = 0.06 ether;
    uint256 public constant TOTAL_MEEPLES = 10000;
    uint public constant MAX_MINTS_PER_TRANSACTION = 10;

    uint256 public meepleReserve = 100; // Reserve 100 Meeples for the team - Giveaways/Prizes etc
    bool public saleIsActive = false;

    // Metadata
    string public baseURI;          // Base URI for metadata
    string public provenanceHash;   // Fills in before minting to ensure that medatata was not modified.
    
    // Presale
    mapping(address => uint) private presaleAccessList;     // Addresses that can participate in the presale
    mapping(address => uint) private presaleTokensClaimed;  // Balance of presale tokens by address
    
    constructor() ERC721("Meeples Gang", "MPLSG")
    {
    }

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

    function setBaseURI(string memory newBaseURI) external onlyOwner
    {
        baseURI = newBaseURI;
    }

    function setProvenanceHash(string memory hash) external onlyOwner
    {
        provenanceHash = hash;
    }
    
    function reserveMeeples(address _to, uint256 _amount) public onlyOwner
    {
        require(!saleIsActive, "Sale must not be active to reserve Meeples");
        require(0 < _amount && _amount < meepleReserve + 1, "Wrong amount");
        require(totalSupply() + _amount <= TOTAL_MEEPLES, "Requested amount exceedes max supply of Meeples");
        uint supply = totalSupply();
        for (uint i = 0; i < _amount; i++)
        {
            _safeMint(_to, supply + i);
        }
        meepleReserve -= _amount;
    }

    function _mintTokens(uint numberOfTokens) private
    {
        for (uint i = 0; i < numberOfTokens; i++)
        {
            _safeMint(msg.sender, totalSupply());
        }
    }
    
    function mintMeeple(uint amount) public payable
    {
        require(saleIsActive, "Sale must be active to mint Meeples");
        require(amount > 0 && amount <= MAX_MINTS_PER_TRANSACTION, "Exceeded the mint limit for one transaction");
        require(totalSupply() + amount <= TOTAL_MEEPLES, "Purchase would exceed max supply of Meeples");
        require(msg.value >= MEEPLE_PRICE * amount, "Ether value sent is not correct");
        
        _mintTokens(amount);
    }

    function withdraw() public payable onlyOwner
    {
        uint256 balance = address(this).balance;
        require(balance > 0, "There's nothing to withdraw.");
        payable(msg.sender).transfer(balance);
    }

    function toggleSaleState() public onlyOwner
    {
        saleIsActive = !saleIsActive;
    }
    
    function tokensOfOwner(address _owner) external view returns(uint256[] memory )
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0)
        {
            return new uint256[](0); // Return an empty array
        }
        else
        {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++)
            {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    // PRESALE

    // Manage addresses eligible for presale minting.
    // Even if we remove and re-add specific address multiple times, it will not change value in 'presaleTokensClaimed'
    // thus that specific address can mint only four tokens max.
    function setPresaleAddresses(uint numberOfTokens, address[] calldata addresses) external onlyOwner
    {
        require(numberOfTokens <= 4, "One presale address can only mint up to three tokens");
        for (uint256 i = 0; i < addresses.length; i++)
        {
            if (addresses[i] != address(0)) // Safety check
            {
                presaleAccessList[addresses[i]] = numberOfTokens;
            }
        }
    }

    function mintMeeplePresale(uint numberOfTokens) public
    {
        require(!saleIsActive, "Presale is available only if sale is not active");
        require(numberOfTokens <= presaleTokensForAddress(msg.sender), "Trying to mint too many tokens");
        require(numberOfTokens > 0, "Number of tokens cannot be lower than, or equal to 0");
        require(totalSupply() + numberOfTokens <= TOTAL_MEEPLES, "Minting would exceed total number of available tokens");

        _mintTokens(numberOfTokens);
        presaleTokensClaimed[msg.sender] += numberOfTokens;
    }

    // Returns the number of available presale tokens for a specific address.
    function presaleTokensForAddress(address _address) public view returns (uint)
    {
        return (presaleTokensClaimed[_address] < presaleAccessList[_address]) ? (presaleAccessList[_address] - presaleTokensClaimed[_address]) : 0;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MEEPLE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_MEEPLES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"meepleReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintMeeple","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintMeeplePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"presaleTokensForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"reserveMeeples","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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setPresaleAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"hash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleState","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526064600b55600c805460ff191690553480156200002057600080fd5b50604080518082018252600c81526b4d6565706c65732047616e6760a01b6020808301918252835180850190945260058452644d504c534760d81b908401528151919291620000729160009162000101565b5080516200008890600190602084019062000101565b505050620000a56200009f620000ab60201b60201c565b620000af565b620001e4565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010f90620001a7565b90600052602060002090601f0160209004810192826200013357600085556200017e565b82601f106200014e57805160ff19168380011785556200017e565b828001600101855582156200017e579182015b828111156200017e57825182559160200191906001019062000161565b506200018c92915062000190565b5090565b5b808211156200018c576000815560010162000191565b600181811c90821680620001bc57607f821691505b60208210811415620001de57634e487b7160e01b600052602260045260246000fd5b50919050565b6128de80620001f46000396000f3fe60806040526004361061020f5760003560e01c806370a0823111610118578063c6ab67a3116100a0578063e93ceff21161006f578063e93ceff2146105bd578063e985e9c5146105d3578063eb8d24441461061c578063f160ad6d14610636578063f2fde38b1461065657600080fd5b8063c6ab67a314610553578063c87b56dd14610568578063daaeec8614610588578063e2e3255c1461059d57600080fd5b806395d89b41116100e757806395d89b41146104c9578063a22cb465146104de578063a48b34c9146104fe578063b76a4a0614610513578063b88d4fde1461053357600080fd5b806370a0823114610449578063715018a6146104695780638462151c1461047e5780638da5cb5b146104ab57600080fd5b80633b90bb501161019b57806355f804b31161016a57806355f804b3146103b95780635ab8da83146103d95780635f71f3fe146103f45780636352211e146104145780636c0360eb1461043457600080fd5b80633b90bb501461035e5780633ccfd60b1461037157806342842e0e146103795780634f6ccce71461039957600080fd5b80630c929fa7116101e25780630c929fa7146102c557806310969523146102e957806318160ddd1461030957806323b872dd1461031e5780632f745c591461033e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004612450565b610676565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106a1565b6040516102409190612647565b34801561027757600080fd5b5061028b6102863660046124d3565b610733565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612426565b6107cd565b005b3480156102d157600080fd5b506102db600b5481565b604051908152602001610240565b3480156102f557600080fd5b506102c361030436600461248a565b6108e3565b34801561031557600080fd5b506008546102db565b34801561032a57600080fd5b506102c3610339366004612332565b610924565b34801561034a57600080fd5b506102db610359366004612426565b610955565b6102c361036c3660046124d3565b6109eb565b6102c3610b9f565b34801561038557600080fd5b506102c3610394366004612332565b610c44565b3480156103a557600080fd5b506102db6103b43660046124d3565b610c5f565b3480156103c557600080fd5b506102c36103d436600461248a565b610cf2565b3480156103e557600080fd5b506102db66d529ae9e86000081565b34801561040057600080fd5b506102db61040f3660046122e4565b610d2f565b34801561042057600080fd5b5061028b61042f3660046124d3565b610d8e565b34801561044057600080fd5b5061025e610e05565b34801561045557600080fd5b506102db6104643660046122e4565b610e93565b34801561047557600080fd5b506102c3610f1a565b34801561048a57600080fd5b5061049e6104993660046122e4565b610f50565b6040516102409190612603565b3480156104b757600080fd5b50600a546001600160a01b031661028b565b3480156104d557600080fd5b5061025e61100f565b3480156104ea57600080fd5b506102c36104f93660046123ea565b61101e565b34801561050a57600080fd5b506102db600a81565b34801561051f57600080fd5b506102c361052e3660046124ec565b6110e3565b34801561053f57600080fd5b506102c361054e36600461236e565b61121c565b34801561055f57600080fd5b5061025e61124e565b34801561057457600080fd5b5061025e6105833660046124d3565b61125b565b34801561059457600080fd5b506102c3611336565b3480156105a957600080fd5b506102c36105b8366004612426565b611374565b3480156105c957600080fd5b506102db61271081565b3480156105df57600080fd5b506102346105ee3660046122ff565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561062857600080fd5b50600c546102349060ff1681565b34801561064257600080fd5b506102c36106513660046124d3565b611532565b34801561066257600080fd5b506102c36106713660046122e4565b611715565b60006001600160e01b0319821663780e9d6360e01b148061069b575061069b826117ad565b92915050565b6060600080546106b0906127c0565b80601f01602080910402602001604051908101604052809291908181526020018280546106dc906127c0565b80156107295780601f106106fe57610100808354040283529160200191610729565b820191906000526020600020905b81548152906001019060200180831161070c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107b15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107d882610d8e565b9050806001600160a01b0316836001600160a01b031614156108465760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107a8565b336001600160a01b0382161480610862575061086281336105ee565b6108d45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107a8565b6108de83836117fd565b505050565b600a546001600160a01b0316331461090d5760405162461bcd60e51b81526004016107a8906126ac565b805161092090600e9060208401906121b9565b5050565b61092e338261186b565b61094a5760405162461bcd60e51b81526004016107a8906126e1565b6108de838383611962565b600061096083610e93565b82106109c25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107a8565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600c5460ff16610a495760405162461bcd60e51b815260206004820152602360248201527f53616c65206d7573742062652061637469766520746f206d696e74204d6565706044820152626c657360e81b60648201526084016107a8565b600081118015610a5a5750600a8111155b610aba5760405162461bcd60e51b815260206004820152602b60248201527f457863656564656420746865206d696e74206c696d697420666f72206f6e652060448201526a3a3930b739b0b1ba34b7b760a91b60648201526084016107a8565b61271081610ac760085490565b610ad19190612732565b1115610b335760405162461bcd60e51b815260206004820152602b60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526a206f66204d6565706c657360a81b60648201526084016107a8565b610b448166d529ae9e86000061275e565b341015610b935760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107a8565b610b9c81611b0d565b50565b600a546001600160a01b03163314610bc95760405162461bcd60e51b81526004016107a8906126ac565b4780610c175760405162461bcd60e51b815260206004820152601c60248201527f54686572652773206e6f7468696e6720746f2077697468647261772e0000000060448201526064016107a8565b604051339082156108fc029083906000818181858888f19350505050158015610920573d6000803e3d6000fd5b6108de8383836040518060200160405280600081525061121c565b6000610c6a60085490565b8210610ccd5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107a8565b60088281548110610ce057610ce0612866565b90600052602060002001549050919050565b600a546001600160a01b03163314610d1c5760405162461bcd60e51b81526004016107a8906126ac565b805161092090600d9060208401906121b9565b6001600160a01b0381166000908152600f6020908152604080832054601090925282205410610d5f57600061069b565b6001600160a01b038216600090815260106020908152604080832054600f9092529091205461069b919061277d565b6000818152600260205260408120546001600160a01b03168061069b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107a8565b600d8054610e12906127c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3e906127c0565b8015610e8b5780601f10610e6057610100808354040283529160200191610e8b565b820191906000526020600020905b815481529060010190602001808311610e6e57829003601f168201915b505050505081565b60006001600160a01b038216610efe5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107a8565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f445760405162461bcd60e51b81526004016107a8906126ac565b610f4e6000611b37565b565b60606000610f5d83610e93565b905080610f7e5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610f9957610f9961287c565b604051908082528060200260200182016040528015610fc2578160200160208202803683370190505b50905060005b82811015610f7657610fda8582610955565b828281518110610fec57610fec612866565b602090810291909101015280611001816127f5565b915050610fc8565b50919050565b6060600180546106b0906127c0565b6001600160a01b0382163314156110775760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107a8565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461110d5760405162461bcd60e51b81526004016107a8906126ac565b600483111561117b5760405162461bcd60e51b815260206004820152603460248201527f4f6e652070726573616c6520616464726573732063616e206f6e6c79206d696e6044820152737420757020746f20746872656520746f6b656e7360601b60648201526084016107a8565b60005b8181101561121657600083838381811061119a5761119a612866565b90506020020160208101906111af91906122e4565b6001600160a01b0316146112045783600f60008585858181106111d4576111d4612866565b90506020020160208101906111e991906122e4565b6001600160a01b031681526020810191909152604001600020555b8061120e816127f5565b91505061117e565b50505050565b611226338361186b565b6112425760405162461bcd60e51b81526004016107a8906126e1565b61121684848484611b89565b600e8054610e12906127c0565b6000818152600260205260409020546060906001600160a01b03166112da5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107a8565b60006112e4611bbc565b90506000815111611304576040518060200160405280600081525061132f565b8061130e84611bcb565b60405160200161131f929190612597565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146113605760405162461bcd60e51b81526004016107a8906126ac565b600c805460ff19811660ff90911615179055565b600a546001600160a01b0316331461139e5760405162461bcd60e51b81526004016107a8906126ac565b600c5460ff16156114045760405162461bcd60e51b815260206004820152602a60248201527f53616c65206d757374206e6f742062652061637469766520746f2072657365726044820152697665204d6565706c657360b01b60648201526084016107a8565b8060001080156114205750600b5461141d906001612732565b81105b61145b5760405162461bcd60e51b815260206004820152600c60248201526b15dc9bdb99c8185b5bdd5b9d60a21b60448201526064016107a8565b6127108161146860085490565b6114729190612732565b11156114d85760405162461bcd60e51b815260206004820152602f60248201527f52657175657374656420616d6f756e74206578636565646573206d617820737560448201526e70706c79206f66204d6565706c657360881b60648201526084016107a8565b60006114e360085490565b905060005b8281101561151557611503846114fe8385612732565b611cc9565b8061150d816127f5565b9150506114e8565b5081600b6000828254611528919061277d565b9091555050505050565b600c5460ff161561159d5760405162461bcd60e51b815260206004820152602f60248201527f50726573616c6520697320617661696c61626c65206f6e6c792069662073616c60448201526e65206973206e6f742061637469766560881b60648201526084016107a8565b6115a633610d2f565b8111156115f55760405162461bcd60e51b815260206004820152601e60248201527f547279696e6720746f206d696e7420746f6f206d616e7920746f6b656e73000060448201526064016107a8565b600081116116625760405162461bcd60e51b815260206004820152603460248201527f4e756d626572206f6620746f6b656e732063616e6e6f74206265206c6f7765726044820152730207468616e2c206f7220657175616c20746f20360641b60648201526084016107a8565b6127108161166f60085490565b6116799190612732565b11156116e55760405162461bcd60e51b815260206004820152603560248201527f4d696e74696e6720776f756c642065786365656420746f74616c206e756d626560448201527472206f6620617661696c61626c6520746f6b656e7360581b60648201526084016107a8565b6116ee81611b0d565b336000908152601060205260408120805483929061170d908490612732565b909155505050565b600a546001600160a01b0316331461173f5760405162461bcd60e51b81526004016107a8906126ac565b6001600160a01b0381166117a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a8565b610b9c81611b37565b60006001600160e01b031982166380ac58cd60e01b14806117de57506001600160e01b03198216635b5e139f60e01b145b8061069b57506301ffc9a760e01b6001600160e01b031983161461069b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061183282610d8e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118e45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107a8565b60006118ef83610d8e565b9050806001600160a01b0316846001600160a01b0316148061192a5750836001600160a01b031661191f84610733565b6001600160a01b0316145b8061195a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661197582610d8e565b6001600160a01b0316146119dd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107a8565b6001600160a01b038216611a3f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107a8565b611a4a838383611ce3565b611a556000826117fd565b6001600160a01b0383166000908152600360205260408120805460019290611a7e90849061277d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611aac908490612732565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b8181101561092057611b25336114fe60085490565b80611b2f816127f5565b915050611b10565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b94848484611962565b611ba084848484611d9b565b6112165760405162461bcd60e51b81526004016107a89061265a565b6060600d80546106b0906127c0565b606081611bef5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c195780611c03816127f5565b9150611c129050600a8361274a565b9150611bf3565b60008167ffffffffffffffff811115611c3457611c3461287c565b6040519080825280601f01601f191660200182016040528015611c5e576020820181803683370190505b5090505b841561195a57611c7360018361277d565b9150611c80600a86612810565b611c8b906030612732565b60f81b818381518110611ca057611ca0612866565b60200101906001600160f81b031916908160001a905350611cc2600a8661274a565b9450611c62565b610920828260405180602001604052806000815250611ea8565b6001600160a01b038316611d3e57611d3981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d61565b816001600160a01b0316836001600160a01b031614611d6157611d618382611edb565b6001600160a01b038216611d78576108de81611f78565b826001600160a01b0316826001600160a01b0316146108de576108de8282612027565b60006001600160a01b0384163b15611e9d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ddf9033908990889088906004016125c6565b602060405180830381600087803b158015611df957600080fd5b505af1925050508015611e29575060408051601f3d908101601f19168201909252611e269181019061246d565b60015b611e83573d808015611e57576040519150601f19603f3d011682016040523d82523d6000602084013e611e5c565b606091505b508051611e7b5760405162461bcd60e51b81526004016107a89061265a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061195a565b506001949350505050565b611eb2838361206b565b611ebf6000848484611d9b565b6108de5760405162461bcd60e51b81526004016107a89061265a565b60006001611ee884610e93565b611ef2919061277d565b600083815260076020526040902054909150808214611f45576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f8a9060019061277d565b60008381526009602052604081205460088054939450909284908110611fb257611fb2612866565b906000526020600020015490508060088381548110611fd357611fd3612866565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061200b5761200b612850565b6001900381819060005260206000200160009055905550505050565b600061203283610e93565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120c15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107a8565b6000818152600260205260409020546001600160a01b0316156121265760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107a8565b61213260008383611ce3565b6001600160a01b038216600090815260036020526040812080546001929061215b908490612732565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121c5906127c0565b90600052602060002090601f0160209004810192826121e7576000855561222d565b82601f1061220057805160ff191683800117855561222d565b8280016001018555821561222d579182015b8281111561222d578251825591602001919060010190612212565b5061223992915061223d565b5090565b5b80821115612239576000815560010161223e565b600067ffffffffffffffff8084111561226d5761226d61287c565b604051601f8501601f19908116603f011681019082821181831017156122955761229561287c565b816040528093508581528686860111156122ae57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146122df57600080fd5b919050565b6000602082840312156122f657600080fd5b61132f826122c8565b6000806040838503121561231257600080fd5b61231b836122c8565b9150612329602084016122c8565b90509250929050565b60008060006060848603121561234757600080fd5b612350846122c8565b925061235e602085016122c8565b9150604084013590509250925092565b6000806000806080858703121561238457600080fd5b61238d856122c8565b935061239b602086016122c8565b925060408501359150606085013567ffffffffffffffff8111156123be57600080fd5b8501601f810187136123cf57600080fd5b6123de87823560208401612252565b91505092959194509250565b600080604083850312156123fd57600080fd5b612406836122c8565b91506020830135801515811461241b57600080fd5b809150509250929050565b6000806040838503121561243957600080fd5b612442836122c8565b946020939093013593505050565b60006020828403121561246257600080fd5b813561132f81612892565b60006020828403121561247f57600080fd5b815161132f81612892565b60006020828403121561249c57600080fd5b813567ffffffffffffffff8111156124b357600080fd5b8201601f810184136124c457600080fd5b61195a84823560208401612252565b6000602082840312156124e557600080fd5b5035919050565b60008060006040848603121561250157600080fd5b83359250602084013567ffffffffffffffff8082111561252057600080fd5b818601915086601f83011261253457600080fd5b81358181111561254357600080fd5b8760208260051b850101111561255857600080fd5b6020830194508093505050509250925092565b60008151808452612583816020860160208601612794565b601f01601f19169290920160200192915050565b600083516125a9818460208801612794565b8351908301906125bd818360208801612794565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125f99083018461256b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561263b5783518352928401929184019160010161261f565b50909695505050505050565b60208152600061132f602083018461256b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561274557612745612824565b500190565b6000826127595761275961283a565b500490565b600081600019048311821515161561277857612778612824565b500290565b60008282101561278f5761278f612824565b500390565b60005b838110156127af578181015183820152602001612797565b838111156112165750506000910152565b600181811c908216806127d457607f821691505b6020821081141561100957634e487b7160e01b600052602260045260246000fd5b600060001982141561280957612809612824565b5060010190565b60008261281f5761281f61283a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b9c57600080fdfea2646970667358221220057498508c1dfcdb3b91d8fdd2a0235fa7c4b7c82b1b6c04b715865e315121fe64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806370a0823111610118578063c6ab67a3116100a0578063e93ceff21161006f578063e93ceff2146105bd578063e985e9c5146105d3578063eb8d24441461061c578063f160ad6d14610636578063f2fde38b1461065657600080fd5b8063c6ab67a314610553578063c87b56dd14610568578063daaeec8614610588578063e2e3255c1461059d57600080fd5b806395d89b41116100e757806395d89b41146104c9578063a22cb465146104de578063a48b34c9146104fe578063b76a4a0614610513578063b88d4fde1461053357600080fd5b806370a0823114610449578063715018a6146104695780638462151c1461047e5780638da5cb5b146104ab57600080fd5b80633b90bb501161019b57806355f804b31161016a57806355f804b3146103b95780635ab8da83146103d95780635f71f3fe146103f45780636352211e146104145780636c0360eb1461043457600080fd5b80633b90bb501461035e5780633ccfd60b1461037157806342842e0e146103795780634f6ccce71461039957600080fd5b80630c929fa7116101e25780630c929fa7146102c557806310969523146102e957806318160ddd1461030957806323b872dd1461031e5780632f745c591461033e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004612450565b610676565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106a1565b6040516102409190612647565b34801561027757600080fd5b5061028b6102863660046124d3565b610733565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612426565b6107cd565b005b3480156102d157600080fd5b506102db600b5481565b604051908152602001610240565b3480156102f557600080fd5b506102c361030436600461248a565b6108e3565b34801561031557600080fd5b506008546102db565b34801561032a57600080fd5b506102c3610339366004612332565b610924565b34801561034a57600080fd5b506102db610359366004612426565b610955565b6102c361036c3660046124d3565b6109eb565b6102c3610b9f565b34801561038557600080fd5b506102c3610394366004612332565b610c44565b3480156103a557600080fd5b506102db6103b43660046124d3565b610c5f565b3480156103c557600080fd5b506102c36103d436600461248a565b610cf2565b3480156103e557600080fd5b506102db66d529ae9e86000081565b34801561040057600080fd5b506102db61040f3660046122e4565b610d2f565b34801561042057600080fd5b5061028b61042f3660046124d3565b610d8e565b34801561044057600080fd5b5061025e610e05565b34801561045557600080fd5b506102db6104643660046122e4565b610e93565b34801561047557600080fd5b506102c3610f1a565b34801561048a57600080fd5b5061049e6104993660046122e4565b610f50565b6040516102409190612603565b3480156104b757600080fd5b50600a546001600160a01b031661028b565b3480156104d557600080fd5b5061025e61100f565b3480156104ea57600080fd5b506102c36104f93660046123ea565b61101e565b34801561050a57600080fd5b506102db600a81565b34801561051f57600080fd5b506102c361052e3660046124ec565b6110e3565b34801561053f57600080fd5b506102c361054e36600461236e565b61121c565b34801561055f57600080fd5b5061025e61124e565b34801561057457600080fd5b5061025e6105833660046124d3565b61125b565b34801561059457600080fd5b506102c3611336565b3480156105a957600080fd5b506102c36105b8366004612426565b611374565b3480156105c957600080fd5b506102db61271081565b3480156105df57600080fd5b506102346105ee3660046122ff565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561062857600080fd5b50600c546102349060ff1681565b34801561064257600080fd5b506102c36106513660046124d3565b611532565b34801561066257600080fd5b506102c36106713660046122e4565b611715565b60006001600160e01b0319821663780e9d6360e01b148061069b575061069b826117ad565b92915050565b6060600080546106b0906127c0565b80601f01602080910402602001604051908101604052809291908181526020018280546106dc906127c0565b80156107295780601f106106fe57610100808354040283529160200191610729565b820191906000526020600020905b81548152906001019060200180831161070c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107b15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107d882610d8e565b9050806001600160a01b0316836001600160a01b031614156108465760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107a8565b336001600160a01b0382161480610862575061086281336105ee565b6108d45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107a8565b6108de83836117fd565b505050565b600a546001600160a01b0316331461090d5760405162461bcd60e51b81526004016107a8906126ac565b805161092090600e9060208401906121b9565b5050565b61092e338261186b565b61094a5760405162461bcd60e51b81526004016107a8906126e1565b6108de838383611962565b600061096083610e93565b82106109c25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107a8565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600c5460ff16610a495760405162461bcd60e51b815260206004820152602360248201527f53616c65206d7573742062652061637469766520746f206d696e74204d6565706044820152626c657360e81b60648201526084016107a8565b600081118015610a5a5750600a8111155b610aba5760405162461bcd60e51b815260206004820152602b60248201527f457863656564656420746865206d696e74206c696d697420666f72206f6e652060448201526a3a3930b739b0b1ba34b7b760a91b60648201526084016107a8565b61271081610ac760085490565b610ad19190612732565b1115610b335760405162461bcd60e51b815260206004820152602b60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526a206f66204d6565706c657360a81b60648201526084016107a8565b610b448166d529ae9e86000061275e565b341015610b935760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107a8565b610b9c81611b0d565b50565b600a546001600160a01b03163314610bc95760405162461bcd60e51b81526004016107a8906126ac565b4780610c175760405162461bcd60e51b815260206004820152601c60248201527f54686572652773206e6f7468696e6720746f2077697468647261772e0000000060448201526064016107a8565b604051339082156108fc029083906000818181858888f19350505050158015610920573d6000803e3d6000fd5b6108de8383836040518060200160405280600081525061121c565b6000610c6a60085490565b8210610ccd5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107a8565b60088281548110610ce057610ce0612866565b90600052602060002001549050919050565b600a546001600160a01b03163314610d1c5760405162461bcd60e51b81526004016107a8906126ac565b805161092090600d9060208401906121b9565b6001600160a01b0381166000908152600f6020908152604080832054601090925282205410610d5f57600061069b565b6001600160a01b038216600090815260106020908152604080832054600f9092529091205461069b919061277d565b6000818152600260205260408120546001600160a01b03168061069b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107a8565b600d8054610e12906127c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3e906127c0565b8015610e8b5780601f10610e6057610100808354040283529160200191610e8b565b820191906000526020600020905b815481529060010190602001808311610e6e57829003601f168201915b505050505081565b60006001600160a01b038216610efe5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107a8565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f445760405162461bcd60e51b81526004016107a8906126ac565b610f4e6000611b37565b565b60606000610f5d83610e93565b905080610f7e5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610f9957610f9961287c565b604051908082528060200260200182016040528015610fc2578160200160208202803683370190505b50905060005b82811015610f7657610fda8582610955565b828281518110610fec57610fec612866565b602090810291909101015280611001816127f5565b915050610fc8565b50919050565b6060600180546106b0906127c0565b6001600160a01b0382163314156110775760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107a8565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461110d5760405162461bcd60e51b81526004016107a8906126ac565b600483111561117b5760405162461bcd60e51b815260206004820152603460248201527f4f6e652070726573616c6520616464726573732063616e206f6e6c79206d696e6044820152737420757020746f20746872656520746f6b656e7360601b60648201526084016107a8565b60005b8181101561121657600083838381811061119a5761119a612866565b90506020020160208101906111af91906122e4565b6001600160a01b0316146112045783600f60008585858181106111d4576111d4612866565b90506020020160208101906111e991906122e4565b6001600160a01b031681526020810191909152604001600020555b8061120e816127f5565b91505061117e565b50505050565b611226338361186b565b6112425760405162461bcd60e51b81526004016107a8906126e1565b61121684848484611b89565b600e8054610e12906127c0565b6000818152600260205260409020546060906001600160a01b03166112da5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107a8565b60006112e4611bbc565b90506000815111611304576040518060200160405280600081525061132f565b8061130e84611bcb565b60405160200161131f929190612597565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146113605760405162461bcd60e51b81526004016107a8906126ac565b600c805460ff19811660ff90911615179055565b600a546001600160a01b0316331461139e5760405162461bcd60e51b81526004016107a8906126ac565b600c5460ff16156114045760405162461bcd60e51b815260206004820152602a60248201527f53616c65206d757374206e6f742062652061637469766520746f2072657365726044820152697665204d6565706c657360b01b60648201526084016107a8565b8060001080156114205750600b5461141d906001612732565b81105b61145b5760405162461bcd60e51b815260206004820152600c60248201526b15dc9bdb99c8185b5bdd5b9d60a21b60448201526064016107a8565b6127108161146860085490565b6114729190612732565b11156114d85760405162461bcd60e51b815260206004820152602f60248201527f52657175657374656420616d6f756e74206578636565646573206d617820737560448201526e70706c79206f66204d6565706c657360881b60648201526084016107a8565b60006114e360085490565b905060005b8281101561151557611503846114fe8385612732565b611cc9565b8061150d816127f5565b9150506114e8565b5081600b6000828254611528919061277d565b9091555050505050565b600c5460ff161561159d5760405162461bcd60e51b815260206004820152602f60248201527f50726573616c6520697320617661696c61626c65206f6e6c792069662073616c60448201526e65206973206e6f742061637469766560881b60648201526084016107a8565b6115a633610d2f565b8111156115f55760405162461bcd60e51b815260206004820152601e60248201527f547279696e6720746f206d696e7420746f6f206d616e7920746f6b656e73000060448201526064016107a8565b600081116116625760405162461bcd60e51b815260206004820152603460248201527f4e756d626572206f6620746f6b656e732063616e6e6f74206265206c6f7765726044820152730207468616e2c206f7220657175616c20746f20360641b60648201526084016107a8565b6127108161166f60085490565b6116799190612732565b11156116e55760405162461bcd60e51b815260206004820152603560248201527f4d696e74696e6720776f756c642065786365656420746f74616c206e756d626560448201527472206f6620617661696c61626c6520746f6b656e7360581b60648201526084016107a8565b6116ee81611b0d565b336000908152601060205260408120805483929061170d908490612732565b909155505050565b600a546001600160a01b0316331461173f5760405162461bcd60e51b81526004016107a8906126ac565b6001600160a01b0381166117a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a8565b610b9c81611b37565b60006001600160e01b031982166380ac58cd60e01b14806117de57506001600160e01b03198216635b5e139f60e01b145b8061069b57506301ffc9a760e01b6001600160e01b031983161461069b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061183282610d8e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118e45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107a8565b60006118ef83610d8e565b9050806001600160a01b0316846001600160a01b0316148061192a5750836001600160a01b031661191f84610733565b6001600160a01b0316145b8061195a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661197582610d8e565b6001600160a01b0316146119dd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107a8565b6001600160a01b038216611a3f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107a8565b611a4a838383611ce3565b611a556000826117fd565b6001600160a01b0383166000908152600360205260408120805460019290611a7e90849061277d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611aac908490612732565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b8181101561092057611b25336114fe60085490565b80611b2f816127f5565b915050611b10565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b94848484611962565b611ba084848484611d9b565b6112165760405162461bcd60e51b81526004016107a89061265a565b6060600d80546106b0906127c0565b606081611bef5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c195780611c03816127f5565b9150611c129050600a8361274a565b9150611bf3565b60008167ffffffffffffffff811115611c3457611c3461287c565b6040519080825280601f01601f191660200182016040528015611c5e576020820181803683370190505b5090505b841561195a57611c7360018361277d565b9150611c80600a86612810565b611c8b906030612732565b60f81b818381518110611ca057611ca0612866565b60200101906001600160f81b031916908160001a905350611cc2600a8661274a565b9450611c62565b610920828260405180602001604052806000815250611ea8565b6001600160a01b038316611d3e57611d3981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d61565b816001600160a01b0316836001600160a01b031614611d6157611d618382611edb565b6001600160a01b038216611d78576108de81611f78565b826001600160a01b0316826001600160a01b0316146108de576108de8282612027565b60006001600160a01b0384163b15611e9d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ddf9033908990889088906004016125c6565b602060405180830381600087803b158015611df957600080fd5b505af1925050508015611e29575060408051601f3d908101601f19168201909252611e269181019061246d565b60015b611e83573d808015611e57576040519150601f19603f3d011682016040523d82523d6000602084013e611e5c565b606091505b508051611e7b5760405162461bcd60e51b81526004016107a89061265a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061195a565b506001949350505050565b611eb2838361206b565b611ebf6000848484611d9b565b6108de5760405162461bcd60e51b81526004016107a89061265a565b60006001611ee884610e93565b611ef2919061277d565b600083815260076020526040902054909150808214611f45576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f8a9060019061277d565b60008381526009602052604081205460088054939450909284908110611fb257611fb2612866565b906000526020600020015490508060088381548110611fd357611fd3612866565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061200b5761200b612850565b6001900381819060005260206000200160009055905550505050565b600061203283610e93565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120c15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107a8565b6000818152600260205260409020546001600160a01b0316156121265760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107a8565b61213260008383611ce3565b6001600160a01b038216600090815260036020526040812080546001929061215b908490612732565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121c5906127c0565b90600052602060002090601f0160209004810192826121e7576000855561222d565b82601f1061220057805160ff191683800117855561222d565b8280016001018555821561222d579182015b8281111561222d578251825591602001919060010190612212565b5061223992915061223d565b5090565b5b80821115612239576000815560010161223e565b600067ffffffffffffffff8084111561226d5761226d61287c565b604051601f8501601f19908116603f011681019082821181831017156122955761229561287c565b816040528093508581528686860111156122ae57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146122df57600080fd5b919050565b6000602082840312156122f657600080fd5b61132f826122c8565b6000806040838503121561231257600080fd5b61231b836122c8565b9150612329602084016122c8565b90509250929050565b60008060006060848603121561234757600080fd5b612350846122c8565b925061235e602085016122c8565b9150604084013590509250925092565b6000806000806080858703121561238457600080fd5b61238d856122c8565b935061239b602086016122c8565b925060408501359150606085013567ffffffffffffffff8111156123be57600080fd5b8501601f810187136123cf57600080fd5b6123de87823560208401612252565b91505092959194509250565b600080604083850312156123fd57600080fd5b612406836122c8565b91506020830135801515811461241b57600080fd5b809150509250929050565b6000806040838503121561243957600080fd5b612442836122c8565b946020939093013593505050565b60006020828403121561246257600080fd5b813561132f81612892565b60006020828403121561247f57600080fd5b815161132f81612892565b60006020828403121561249c57600080fd5b813567ffffffffffffffff8111156124b357600080fd5b8201601f810184136124c457600080fd5b61195a84823560208401612252565b6000602082840312156124e557600080fd5b5035919050565b60008060006040848603121561250157600080fd5b83359250602084013567ffffffffffffffff8082111561252057600080fd5b818601915086601f83011261253457600080fd5b81358181111561254357600080fd5b8760208260051b850101111561255857600080fd5b6020830194508093505050509250925092565b60008151808452612583816020860160208601612794565b601f01601f19169290920160200192915050565b600083516125a9818460208801612794565b8351908301906125bd818360208801612794565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125f99083018461256b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561263b5783518352928401929184019160010161261f565b50909695505050505050565b60208152600061132f602083018461256b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561274557612745612824565b500190565b6000826127595761275961283a565b500490565b600081600019048311821515161561277857612778612824565b500290565b60008282101561278f5761278f612824565b500390565b60005b838110156127af578181015183820152602001612797565b838111156112165750506000910152565b600181811c908216806127d457607f821691505b6020821081141561100957634e487b7160e01b600052602260045260246000fd5b600060001982141561280957612809612824565b5060010190565b60008261281f5761281f61283a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b9c57600080fdfea2646970667358221220057498508c1dfcdb3b91d8fdd2a0235fa7c4b7c82b1b6c04b715865e315121fe64736f6c63430008070033

Deployed Bytecode Sourcemap

42367:4989:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33621:224;;;;;;;;;;-1:-1:-1;33621:224:0;;;;;:::i;:::-;;:::i;:::-;;;6971:14:1;;6964:22;6946:41;;6934:2;6919:18;33621:224:0;;;;;;;;20753:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22312:221::-;;;;;;;;;;-1:-1:-1;22312:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5632:32:1;;;5614:51;;5602:2;5587:18;22312:221:0;5468:203:1;21835:411:0;;;;;;;;;;-1:-1:-1;21835:411:0;;;;;:::i;:::-;;:::i;:::-;;42607:34;;;;;;;;;;;;;;;;;;;19727:25:1;;;19715:2;19700:18;42607:34:0;19581:177:1;43469:111:0;;;;;;;;;;-1:-1:-1;43469:111:0;;;;;:::i;:::-;;:::i;34261:113::-;;;;;;;;;;-1:-1:-1;34349:10:0;:17;34261:113;;23202:339;;;;;;;;;;-1:-1:-1;23202:339:0;;;;;:::i;:::-;;:::i;33929:256::-;;;;;;;;;;-1:-1:-1;33929:256:0;;;;;:::i;:::-;;:::i;44331:483::-;;;;;;:::i;:::-;;:::i;44822:219::-;;;:::i;23612:185::-;;;;;;;;;;-1:-1:-1;23612:185:0;;;;;:::i;:::-;;:::i;34451:233::-;;;;;;;;;;-1:-1:-1;34451:233:0;;;;;:::i;:::-;;:::i;43352:109::-;;;;;;;;;;-1:-1:-1;43352:109:0;;;;;:::i;:::-;;:::i;42439:49::-;;;;;;;;;;;;42478:10;42439:49;;47113:240;;;;;;;;;;-1:-1:-1;47113:240:0;;;;;:::i;:::-;;:::i;20447:239::-;;;;;;;;;;-1:-1:-1;20447:239:0;;;;;:::i;:::-;;:::i;42765:21::-;;;;;;;;;;;;;:::i;20177:208::-;;;;;;;;;;-1:-1:-1;20177:208:0;;;;;:::i;:::-;;:::i;41330:94::-;;;;;;;;;;;;;:::i;45157:572::-;;;;;;;;;;-1:-1:-1;45157:572:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40679:87::-;;;;;;;;;;-1:-1:-1;40752:6:0;;-1:-1:-1;;;;;40752:6:0;40679:87;;20922:104;;;;;;;;;;;;;:::i;22605:295::-;;;;;;;;;;-1:-1:-1;22605:295:0;;;;;:::i;:::-;;:::i;42547:51::-;;;;;;;;;;;;42596:2;42547:51;;45997:443;;;;;;;;;;-1:-1:-1;45997:443:0;;;;;:::i;:::-;;:::i;23868:328::-;;;;;;;;;;-1:-1:-1;23868:328:0;;;;;:::i;:::-;;:::i;42827:28::-;;;;;;;;;;;;;:::i;21097:334::-;;;;;;;;;;-1:-1:-1;21097:334:0;;;;;:::i;:::-;;:::i;45049:96::-;;;;;;;;;;;;;:::i;43592:532::-;;;;;;;;;;-1:-1:-1;43592:532:0;;;;;:::i;:::-;;:::i;42495:45::-;;;;;;;;;;;;42535:5;42495:45;;22971:164;;;;;;;;;;-1:-1:-1;22971:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23092:25:0;;;23068:4;23092:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22971:164;42707:32;;;;;;;;;;-1:-1:-1;42707:32:0;;;;;;;;46448:578;;;;;;;;;;-1:-1:-1;46448:578:0;;;;;:::i;:::-;;:::i;41579:192::-;;;;;;;;;;-1:-1:-1;41579:192:0;;;;;:::i;:::-;;:::i;33621:224::-;33723:4;-1:-1:-1;;;;;;33747:50:0;;-1:-1:-1;;;33747:50:0;;:90;;;33801:36;33825:11;33801:23;:36::i;:::-;33740:97;33621:224;-1:-1:-1;;33621:224:0:o;20753:100::-;20807:13;20840:5;20833:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20753:100;:::o;22312:221::-;22388:7;25795:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25795:16:0;22408:73;;;;-1:-1:-1;;;22408:73:0;;14577:2:1;22408:73:0;;;14559:21:1;14616:2;14596:18;;;14589:30;14655:34;14635:18;;;14628:62;-1:-1:-1;;;14706:18:1;;;14699:42;14758:19;;22408:73:0;;;;;;;;;-1:-1:-1;22501:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22501:24:0;;22312:221::o;21835:411::-;21916:13;21932:23;21947:7;21932:14;:23::i;:::-;21916:39;;21980:5;-1:-1:-1;;;;;21974:11:0;:2;-1:-1:-1;;;;;21974:11:0;;;21966:57;;;;-1:-1:-1;;;21966:57:0;;16177:2:1;21966:57:0;;;16159:21:1;16216:2;16196:18;;;16189:30;16255:34;16235:18;;;16228:62;-1:-1:-1;;;16306:18:1;;;16299:31;16347:19;;21966:57:0;15975:397:1;21966:57:0;15600:10;-1:-1:-1;;;;;22058:21:0;;;;:62;;-1:-1:-1;22083:37:0;22100:5;15600:10;22971:164;:::i;22083:37::-;22036:168;;;;-1:-1:-1;;;22036:168:0;;11778:2:1;22036:168:0;;;11760:21:1;11817:2;11797:18;;;11790:30;11856:34;11836:18;;;11829:62;11927:26;11907:18;;;11900:54;11971:19;;22036:168:0;11576:420:1;22036:168:0;22217:21;22226:2;22230:7;22217:8;:21::i;:::-;21905:341;21835:411;;:::o;43469:111::-;40752:6;;-1:-1:-1;;;;;40752:6:0;15600:10;40899:23;40891:68;;;;-1:-1:-1;;;40891:68:0;;;;;;;:::i;:::-;43551:21;;::::1;::::0;:14:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43469:111:::0;:::o;23202:339::-;23397:41;15600:10;23430:7;23397:18;:41::i;:::-;23389:103;;;;-1:-1:-1;;;23389:103:0;;;;;;;:::i;:::-;23505:28;23515:4;23521:2;23525:7;23505:9;:28::i;33929:256::-;34026:7;34062:23;34079:5;34062:16;:23::i;:::-;34054:5;:31;34046:87;;;;-1:-1:-1;;;34046:87:0;;7836:2:1;34046:87:0;;;7818:21:1;7875:2;7855:18;;;7848:30;7914:34;7894:18;;;7887:62;-1:-1:-1;;;7965:18:1;;;7958:41;8016:19;;34046:87:0;7634:407:1;34046:87:0;-1:-1:-1;;;;;;34151:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;33929:256::o;44331:483::-;44403:12;;;;44395:60;;;;-1:-1:-1;;;44395:60:0;;9431:2:1;44395:60:0;;;9413:21:1;9470:2;9450:18;;;9443:30;9509:34;9489:18;;;9482:62;-1:-1:-1;;;9560:18:1;;;9553:33;9603:19;;44395:60:0;9229:399:1;44395:60:0;44483:1;44474:6;:10;:49;;;;;42596:2;44488:6;:35;;44474:49;44466:105;;;;-1:-1:-1;;;44466:105:0;;7424:2:1;44466:105:0;;;7406:21:1;7463:2;7443:18;;;7436:30;7502:34;7482:18;;;7475:62;-1:-1:-1;;;7553:18:1;;;7546:41;7604:19;;44466:105:0;7222:407:1;44466:105:0;42535:5;44606:6;44590:13;34349:10;:17;;34261:113;44590:13;:22;;;;:::i;:::-;:39;;44582:95;;;;-1:-1:-1;;;44582:95:0;;13383:2:1;44582:95:0;;;13365:21:1;13422:2;13402:18;;;13395:30;13461:34;13441:18;;;13434:62;-1:-1:-1;;;13512:18:1;;;13505:41;13563:19;;44582:95:0;13181:407:1;44582:95:0;44709:21;44724:6;42478:10;44709:21;:::i;:::-;44696:9;:34;;44688:78;;;;-1:-1:-1;;;44688:78:0;;11005:2:1;44688:78:0;;;10987:21:1;11044:2;11024:18;;;11017:30;11083:33;11063:18;;;11056:61;11134:18;;44688:78:0;10803:355:1;44688:78:0;44787:19;44799:6;44787:11;:19::i;:::-;44331:483;:::o;44822:219::-;40752:6;;-1:-1:-1;;;;;40752:6:0;15600:10;40899:23;40891:68;;;;-1:-1:-1;;;40891:68:0;;;;;;;:::i;:::-;44901:21:::1;44941:11:::0;44933:52:::1;;;::::0;-1:-1:-1;;;44933:52:0;;18247:2:1;44933:52:0::1;::::0;::::1;18229:21:1::0;18286:2;18266:18;;;18259:30;18325;18305:18;;;18298:58;18373:18;;44933:52:0::1;18045:352:1::0;44933:52:0::1;44996:37;::::0;45004:10:::1;::::0;44996:37;::::1;;;::::0;45025:7;;44996:37:::1;::::0;;;45025:7;45004:10;44996:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;23612:185:::0;23750:39;23767:4;23773:2;23777:7;23750:39;;;;;;;;;;;;:16;:39::i;34451:233::-;34526:7;34562:30;34349:10;:17;;34261:113;34562:30;34554:5;:38;34546:95;;;;-1:-1:-1;;;34546:95:0;;17418:2:1;34546:95:0;;;17400:21:1;17457:2;17437:18;;;17430:30;17496:34;17476:18;;;17469:62;-1:-1:-1;;;17547:18:1;;;17540:42;17599:19;;34546:95:0;17216:408:1;34546:95:0;34659:10;34670:5;34659:17;;;;;;;;:::i;:::-;;;;;;;;;34652:24;;34451:233;;;:::o;43352:109::-;40752:6;;-1:-1:-1;;;;;40752:6:0;15600:10;40899:23;40891:68;;;;-1:-1:-1;;;40891:68:0;;;;;;;:::i;:::-;43433:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;47113:240::-:0;-1:-1:-1;;;;;47248:27:0;;47185:4;47248:27;;;:17;:27;;;;;;;;;47215:20;:30;;;;;;:60;47214:131;;47344:1;47214:131;;;-1:-1:-1;;;;;47310:30:0;;;;;;:20;:30;;;;;;;;;47280:17;:27;;;;;;;:60;;47310:30;47280:60;:::i;20447:239::-;20519:7;20555:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20555:16:0;20590:19;20582:73;;;;-1:-1:-1;;;20582:73:0;;12614:2:1;20582:73:0;;;12596:21:1;12653:2;12633:18;;;12626:30;12692:34;12672:18;;;12665:62;-1:-1:-1;;;12743:18:1;;;12736:39;12792:19;;20582:73:0;12412:405:1;42765:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20177:208::-;20249:7;-1:-1:-1;;;;;20277:19:0;;20269:74;;;;-1:-1:-1;;;20269:74:0;;12203:2:1;20269:74:0;;;12185:21:1;12242:2;12222:18;;;12215:30;12281:34;12261:18;;;12254:62;-1:-1:-1;;;12332:18:1;;;12325:40;12382:19;;20269:74:0;12001:406:1;20269:74:0;-1:-1:-1;;;;;;20361:16:0;;;;;:9;:16;;;;;;;20177:208::o;41330:94::-;40752:6;;-1:-1:-1;;;;;40752:6:0;15600:10;40899:23;40891:68;;;;-1:-1:-1;;;40891:68:0;;;;;;;:::i;:::-;41395:21:::1;41413:1;41395:9;:21::i;:::-;41330:94::o:0;45157:572::-;45218:16;45253:18;45274:17;45284:6;45274:9;:17::i;:::-;45253:38;-1:-1:-1;45306:15:0;45302:420;;45354:16;;;45368:1;45354:16;;;;;;;;;;;-1:-1:-1;45347:23:0;45157:572;-1:-1:-1;;;45157:572:0:o;45302:420::-;45446:23;45486:10;45472:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45472:25:0;;45446:51;;45512:13;45540:143;45564:10;45556:5;:18;45540:143;;;45633:34;45653:6;45661:5;45633:19;:34::i;:::-;45617:6;45624:5;45617:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;45576:7;;;;:::i;:::-;;;;45540:143;;45302:420;45242:487;45157:572;;;:::o;20922:104::-;20978:13;21011:7;21004:14;;;;;:::i;22605:295::-;-1:-1:-1;;;;;22708:24:0;;15600:10;22708:24;;22700:62;;;;-1:-1:-1;;;22700:62:0;;10651:2:1;22700:62:0;;;10633:21:1;10690:2;10670:18;;;10663:30;10729:27;10709:18;;;10702:55;10774:18;;22700:62:0;10449:349:1;22700:62:0;15600:10;22775:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;22775:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;22775:53:0;;;;;;;;;;22844:48;;6946:41:1;;;22775:42:0;;15600:10;22844:48;;6919:18:1;22844:48:0;;;;;;;22605:295;;:::o;45997:443::-;40752:6;;-1:-1:-1;;;;;40752:6:0;15600:10;40899:23;40891:68;;;;-1:-1:-1;;;40891:68:0;;;;;;;:::i;:::-;46138:1:::1;46120:14;:19;;46112:84;;;::::0;-1:-1:-1;;;46112:84:0;;14156:2:1;46112:84:0::1;::::0;::::1;14138:21:1::0;14195:2;14175:18;;;14168:30;14234:34;14214:18;;;14207:62;-1:-1:-1;;;14285:18:1;;;14278:50;14345:19;;46112:84:0::1;13954:416:1::0;46112:84:0::1;46212:9;46207:226;46227:20:::0;;::::1;46207:226;;;46306:1;46282:9:::0;;46292:1;46282:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46282:26:0::1;;46278:144;;46392:14;46358:17;:31;46376:9;;46386:1;46376:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46358:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;46358:31:0;:48;46278:144:::1;46249:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46207:226;;;;45997:443:::0;;;:::o;23868:328::-;24043:41;15600:10;24076:7;24043:18;:41::i;:::-;24035:103;;;;-1:-1:-1;;;24035:103:0;;;;;;;:::i;:::-;24149:39;24163:4;24169:2;24173:7;24182:5;24149:13;:39::i;42827:28::-;;;;;;;:::i;21097:334::-;25771:4;25795:16;;;:7;:16;;;;;;21170:13;;-1:-1:-1;;;;;25795:16:0;21196:76;;;;-1:-1:-1;;;21196:76:0;;15761:2:1;21196:76:0;;;15743:21:1;15800:2;15780:18;;;15773:30;15839:34;15819:18;;;15812:62;-1:-1:-1;;;15890:18:1;;;15883:45;15945:19;;21196:76:0;15559:411:1;21196:76:0;21285:21;21309:10;:8;:10::i;:::-;21285:34;;21361:1;21343:7;21337:21;:25;:86;;;;;;;;;;;;;;;;;21389:7;21398:18;:7;:16;:18::i;:::-;21372:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21337:86;21330:93;21097:334;-1:-1:-1;;;21097:334:0:o;45049:96::-;40752:6;;-1:-1:-1;;;;;40752:6:0;15600:10;40899:23;40891:68;;;;-1:-1:-1;;;40891:68:0;;;;;;;:::i;:::-;45125:12:::1;::::0;;-1:-1:-1;;45109:28:0;::::1;45125:12;::::0;;::::1;45124:13;45109:28;::::0;;45049:96::o;43592:532::-;40752:6;;-1:-1:-1;;;;;40752:6:0;15600:10;40899:23;40891:68;;;;-1:-1:-1;;;40891:68:0;;;;;;;:::i;:::-;43688:12:::1;::::0;::::1;;43687:13;43679:68;;;::::0;-1:-1:-1;;;43679:68:0;;9835:2:1;43679:68:0::1;::::0;::::1;9817:21:1::0;9874:2;9854:18;;;9847:30;9913:34;9893:18;;;9886:62;-1:-1:-1;;;9964:18:1;;;9957:40;10014:19;;43679:68:0::1;9633:406:1::0;43679:68:0::1;43770:7;43766:1;:11;:42;;;;-1:-1:-1::0;43791:13:0::1;::::0;:17:::1;::::0;43807:1:::1;43791:17;:::i;:::-;43781:7;:27;43766:42;43758:67;;;::::0;-1:-1:-1;;;43758:67:0;;19442:2:1;43758:67:0::1;::::0;::::1;19424:21:1::0;19481:2;19461:18;;;19454:30;-1:-1:-1;;;19500:18:1;;;19493:42;19552:18;;43758:67:0::1;19240:336:1::0;43758:67:0::1;42535:5;43860:7;43844:13;34349:10:::0;:17;;34261:113;43844:13:::1;:23;;;;:::i;:::-;:40;;43836:100;;;::::0;-1:-1:-1;;;43836:100:0;;19026:2:1;43836:100:0::1;::::0;::::1;19008:21:1::0;19065:2;19045:18;;;19038:30;19104:34;19084:18;;;19077:62;-1:-1:-1;;;19155:18:1;;;19148:45;19210:19;;43836:100:0::1;18824:411:1::0;43836:100:0::1;43947:11;43961:13;34349:10:::0;:17;;34261:113;43961:13:::1;43947:27;;43990:6;43985:97;44006:7;44002:1;:11;43985:97;;;44044:26;44054:3:::0;44059:10:::1;44068:1:::0;44059:6;:10:::1;:::i;:::-;44044:9;:26::i;:::-;44015:3:::0;::::1;::::0;::::1;:::i;:::-;;;;43985:97;;;;44109:7;44092:13;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;43592:532:0:o;46448:578::-;46528:12;;;;46527:13;46519:73;;;;-1:-1:-1;;;46519:73:0;;17831:2:1;46519:73:0;;;17813:21:1;17870:2;17850:18;;;17843:30;17909:34;17889:18;;;17882:62;-1:-1:-1;;;17960:18:1;;;17953:45;18015:19;;46519:73:0;17629:411:1;46519:73:0;46629:35;46653:10;46629:23;:35::i;:::-;46611:14;:53;;46603:96;;;;-1:-1:-1;;;46603:96:0;;13024:2:1;46603:96:0;;;13006:21:1;13063:2;13043:18;;;13036:30;13102:32;13082:18;;;13075:60;13152:18;;46603:96:0;12822:354:1;46603:96:0;46735:1;46718:14;:18;46710:83;;;;-1:-1:-1;;;46710:83:0;;16579:2:1;46710:83:0;;;16561:21:1;16618:2;16598:18;;;16591:30;16657:34;16637:18;;;16630:62;-1:-1:-1;;;16708:18:1;;;16701:50;16768:19;;46710:83:0;16377:416:1;46710:83:0;42535:5;46828:14;46812:13;34349:10;:17;;34261:113;46812:13;:30;;;;:::i;:::-;:47;;46804:113;;;;-1:-1:-1;;;46804:113:0;;18604:2:1;46804:113:0;;;18586:21:1;18643:2;18623:18;;;18616:30;18682:34;18662:18;;;18655:62;-1:-1:-1;;;18733:18:1;;;18726:51;18794:19;;46804:113:0;18402:417:1;46804:113:0;46930:27;46942:14;46930:11;:27::i;:::-;46989:10;46968:32;;;;:20;:32;;;;;:50;;47004:14;;46968:32;:50;;47004:14;;46968:50;:::i;:::-;;;;-1:-1:-1;;;46448:578:0:o;41579:192::-;40752:6;;-1:-1:-1;;;;;40752:6:0;15600:10;40899:23;40891:68;;;;-1:-1:-1;;;40891:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41668:22:0;::::1;41660:73;;;::::0;-1:-1:-1;;;41660:73:0;;8667:2:1;41660:73:0::1;::::0;::::1;8649:21:1::0;8706:2;8686:18;;;8679:30;8745:34;8725:18;;;8718:62;-1:-1:-1;;;8796:18:1;;;8789:36;8842:19;;41660:73:0::1;8465:402:1::0;41660:73:0::1;41744:19;41754:8;41744:9;:19::i;19808:305::-:0;19910:4;-1:-1:-1;;;;;;19947:40:0;;-1:-1:-1;;;19947:40:0;;:105;;-1:-1:-1;;;;;;;20004:48:0;;-1:-1:-1;;;20004:48:0;19947:105;:158;;;-1:-1:-1;;;;;;;;;;18526:40:0;;;20069:36;18417:157;29688:174;29763:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;29763:29:0;-1:-1:-1;;;;;29763:29:0;;;;;;;;:24;;29817:23;29763:24;29817:14;:23::i;:::-;-1:-1:-1;;;;;29808:46:0;;;;;;;;;;;29688:174;;:::o;26000:348::-;26093:4;25795:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25795:16:0;26110:73;;;;-1:-1:-1;;;26110:73:0;;11365:2:1;26110:73:0;;;11347:21:1;11404:2;11384:18;;;11377:30;11443:34;11423:18;;;11416:62;-1:-1:-1;;;11494:18:1;;;11487:42;11546:19;;26110:73:0;11163:408:1;26110:73:0;26194:13;26210:23;26225:7;26210:14;:23::i;:::-;26194:39;;26263:5;-1:-1:-1;;;;;26252:16:0;:7;-1:-1:-1;;;;;26252:16:0;;:51;;;;26296:7;-1:-1:-1;;;;;26272:31:0;:20;26284:7;26272:11;:20::i;:::-;-1:-1:-1;;;;;26272:31:0;;26252:51;:87;;;-1:-1:-1;;;;;;23092:25:0;;;23068:4;23092:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26307:32;26244:96;26000:348;-1:-1:-1;;;;26000:348:0:o;28992:578::-;29151:4;-1:-1:-1;;;;;29124:31:0;:23;29139:7;29124:14;:23::i;:::-;-1:-1:-1;;;;;29124:31:0;;29116:85;;;;-1:-1:-1;;;29116:85:0;;15351:2:1;29116:85:0;;;15333:21:1;15390:2;15370:18;;;15363:30;15429:34;15409:18;;;15402:62;-1:-1:-1;;;15480:18:1;;;15473:39;15529:19;;29116:85:0;15149:405:1;29116:85:0;-1:-1:-1;;;;;29220:16:0;;29212:65;;;;-1:-1:-1;;;29212:65:0;;10246:2:1;29212:65:0;;;10228:21:1;10285:2;10265:18;;;10258:30;10324:34;10304:18;;;10297:62;-1:-1:-1;;;10375:18:1;;;10368:34;10419:19;;29212:65:0;10044:400:1;29212:65:0;29290:39;29311:4;29317:2;29321:7;29290:20;:39::i;:::-;29394:29;29411:1;29415:7;29394:8;:29::i;:::-;-1:-1:-1;;;;;29436:15:0;;;;;;:9;:15;;;;;:20;;29455:1;;29436:15;:20;;29455:1;;29436:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29467:13:0;;;;;;:9;:13;;;;;:18;;29484:1;;29467:13;:18;;29484:1;;29467:18;:::i;:::-;;;;-1:-1:-1;;29496:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29496:21:0;-1:-1:-1;;;;;29496:21:0;;;;;;;;;29535:27;;29496:16;;29535:27;;;;;;;28992:578;;;:::o;44132:187::-;44203:6;44198:114;44219:14;44215:1;:18;44198:114;;;44264:36;44274:10;44286:13;34349:10;:17;;34261:113;44264:36;44235:3;;;;:::i;:::-;;;;44198:114;;41779:173;41854:6;;;-1:-1:-1;;;;;41871:17:0;;;-1:-1:-1;;;;;;41871:17:0;;;;;;;41904:40;;41854:6;;;41871:17;41854:6;;41904:40;;41835:16;;41904:40;41824:128;41779:173;:::o;25078:315::-;25235:28;25245:4;25251:2;25255:7;25235:9;:28::i;:::-;25282:48;25305:4;25311:2;25315:7;25324:5;25282:22;:48::i;:::-;25274:111;;;;-1:-1:-1;;;25274:111:0;;;;;;;:::i;43239:105::-;43291:13;43329:7;43322:14;;;;;:::i;15960:723::-;16016:13;16237:10;16233:53;;-1:-1:-1;;16264:10:0;;;;;;;;;;;;-1:-1:-1;;;16264:10:0;;;;;15960:723::o;16233:53::-;16311:5;16296:12;16352:78;16359:9;;16352:78;;16385:8;;;;:::i;:::-;;-1:-1:-1;16408:10:0;;-1:-1:-1;16416:2:0;16408:10;;:::i;:::-;;;16352:78;;;16440:19;16472:6;16462:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16462:17:0;;16440:39;;16490:154;16497:10;;16490:154;;16524:11;16534:1;16524:11;;:::i;:::-;;-1:-1:-1;16593:10:0;16601:2;16593:5;:10;:::i;:::-;16580:24;;:2;:24;:::i;:::-;16567:39;;16550:6;16557;16550:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;16550:56:0;;;;;;;;-1:-1:-1;16621:11:0;16630:2;16621:11;;:::i;:::-;;;16490:154;;26690:110;26766:26;26776:2;26780:7;26766:26;;;;;;;;;;;;:9;:26::i;35297:589::-;-1:-1:-1;;;;;35503:18:0;;35499:187;;35538:40;35570:7;36713:10;:17;;36686:24;;;;:15;:24;;;;;:44;;;36741:24;;;;;;;;;;;;36609:164;35538:40;35499:187;;;35608:2;-1:-1:-1;;;;;35600:10:0;:4;-1:-1:-1;;;;;35600:10:0;;35596:90;;35627:47;35660:4;35666:7;35627:32;:47::i;:::-;-1:-1:-1;;;;;35700:16:0;;35696:183;;35733:45;35770:7;35733:36;:45::i;35696:183::-;35806:4;-1:-1:-1;;;;;35800:10:0;:2;-1:-1:-1;;;;;35800:10:0;;35796:83;;35827:40;35855:2;35859:7;35827:27;:40::i;30427:799::-;30582:4;-1:-1:-1;;;;;30603:13:0;;7972:20;8020:8;30599:620;;30639:72;;-1:-1:-1;;;30639:72:0;;-1:-1:-1;;;;;30639:36:0;;;;;:72;;15600:10;;30690:4;;30696:7;;30705:5;;30639:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30639:72:0;;;;;;;;-1:-1:-1;;30639:72:0;;;;;;;;;;;;:::i;:::-;;;30635:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30881:13:0;;30877:272;;30924:60;;-1:-1:-1;;;30924:60:0;;;;;;;:::i;30877:272::-;31099:6;31093:13;31084:6;31080:2;31076:15;31069:38;30635:529;-1:-1:-1;;;;;;30762:51:0;-1:-1:-1;;;30762:51:0;;-1:-1:-1;30755:58:0;;30599:620;-1:-1:-1;31203:4:0;30427:799;;;;;;:::o;27027:321::-;27157:18;27163:2;27167:7;27157:5;:18::i;:::-;27208:54;27239:1;27243:2;27247:7;27256:5;27208:22;:54::i;:::-;27186:154;;;;-1:-1:-1;;;27186:154:0;;;;;;;:::i;37400:988::-;37666:22;37716:1;37691:22;37708:4;37691:16;:22::i;:::-;:26;;;;:::i;:::-;37728:18;37749:26;;;:17;:26;;;;;;37666:51;;-1:-1:-1;37882:28:0;;;37878:328;;-1:-1:-1;;;;;37949:18:0;;37927:19;37949:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38000:30;;;;;;:44;;;38117:30;;:17;:30;;;;;:43;;;37878:328;-1:-1:-1;38302:26:0;;;;:17;:26;;;;;;;;38295:33;;;-1:-1:-1;;;;;38346:18:0;;;;;:12;:18;;;;;:34;;;;;;;38339:41;37400:988::o;38683:1079::-;38961:10;:17;38936:22;;38961:21;;38981:1;;38961:21;:::i;:::-;38993:18;39014:24;;;:15;:24;;;;;;39387:10;:26;;38936:46;;-1:-1:-1;39014:24:0;;38936:46;;39387:26;;;;;;:::i;:::-;;;;;;;;;39365:48;;39451:11;39426:10;39437;39426:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;39531:28;;;:15;:28;;;;;;;:41;;;39703:24;;;;;39696:31;39738:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;38754:1008;;;38683:1079;:::o;36187:221::-;36272:14;36289:20;36306:2;36289:16;:20::i;:::-;-1:-1:-1;;;;;36320:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;36365:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36187:221:0:o;27684:382::-;-1:-1:-1;;;;;27764:16:0;;27756:61;;;;-1:-1:-1;;;27756:61:0;;13795:2:1;27756:61:0;;;13777:21:1;;;13814:18;;;13807:30;13873:34;13853:18;;;13846:62;13925:18;;27756:61:0;13593:356:1;27756:61:0;25771:4;25795:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25795:16:0;:30;27828:58;;;;-1:-1:-1;;;27828:58:0;;9074:2:1;27828:58:0;;;9056:21:1;9113:2;9093:18;;;9086:30;9152;9132:18;;;9125:58;9200:18;;27828:58:0;8872:352:1;27828:58:0;27899:45;27928:1;27932:2;27936:7;27899:20;:45::i;:::-;-1:-1:-1;;;;;27957:13:0;;;;;;:9;:13;;;;;:18;;27974:1;;27957:13;:18;;27974:1;;27957:18;:::i;:::-;;;;-1:-1:-1;;27986:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;27986:21:0;-1:-1:-1;;;;;27986:21:0;;;;;;;;28025:33;;27986:16;;;28025:33;;27986:16;;28025:33;27684:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:683::-;4138:6;4146;4154;4207:2;4195:9;4186:7;4182:23;4178:32;4175:52;;;4223:1;4220;4213:12;4175:52;4259:9;4246:23;4236:33;;4320:2;4309:9;4305:18;4292:32;4343:18;4384:2;4376:6;4373:14;4370:34;;;4400:1;4397;4390:12;4370:34;4438:6;4427:9;4423:22;4413:32;;4483:7;4476:4;4472:2;4468:13;4464:27;4454:55;;4505:1;4502;4495:12;4454:55;4545:2;4532:16;4571:2;4563:6;4560:14;4557:34;;;4587:1;4584;4577:12;4557:34;4640:7;4635:2;4625:6;4622:1;4618:14;4614:2;4610:23;4606:32;4603:45;4600:65;;;4661:1;4658;4651:12;4600:65;4692:2;4688;4684:11;4674:21;;4714:6;4704:16;;;;;4043:683;;;;;:::o;4731:257::-;4772:3;4810:5;4804:12;4837:6;4832:3;4825:19;4853:63;4909:6;4902:4;4897:3;4893:14;4886:4;4879:5;4875:16;4853:63;:::i;:::-;4970:2;4949:15;-1:-1:-1;;4945:29:1;4936:39;;;;4977:4;4932:50;;4731:257;-1:-1:-1;;4731:257:1:o;4993:470::-;5172:3;5210:6;5204:13;5226:53;5272:6;5267:3;5260:4;5252:6;5248:17;5226:53;:::i;:::-;5342:13;;5301:16;;;;5364:57;5342:13;5301:16;5398:4;5386:17;;5364:57;:::i;:::-;5437:20;;4993:470;-1:-1:-1;;;;4993:470:1:o;5676:488::-;-1:-1:-1;;;;;5945:15:1;;;5927:34;;5997:15;;5992:2;5977:18;;5970:43;6044:2;6029:18;;6022:34;;;6092:3;6087:2;6072:18;;6065:31;;;5870:4;;6113:45;;6138:19;;6130:6;6113:45;:::i;:::-;6105:53;5676:488;-1:-1:-1;;;;;;5676:488:1:o;6169:632::-;6340:2;6392:21;;;6462:13;;6365:18;;;6484:22;;;6311:4;;6340:2;6563:15;;;;6537:2;6522:18;;;6311:4;6606:169;6620:6;6617:1;6614:13;6606:169;;;6681:13;;6669:26;;6750:15;;;;6715:12;;;;6642:1;6635:9;6606:169;;;-1:-1:-1;6792:3:1;;6169:632;-1:-1:-1;;;;;;6169:632:1:o;6998:219::-;7147:2;7136:9;7129:21;7110:4;7167:44;7207:2;7196:9;7192:18;7184:6;7167:44;:::i;8046:414::-;8248:2;8230:21;;;8287:2;8267:18;;;8260:30;8326:34;8321:2;8306:18;;8299:62;-1:-1:-1;;;8392:2:1;8377:18;;8370:48;8450:3;8435:19;;8046:414::o;14788:356::-;14990:2;14972:21;;;15009:18;;;15002:30;15068:34;15063:2;15048:18;;15041:62;15135:2;15120:18;;14788:356::o;16798:413::-;17000:2;16982:21;;;17039:2;17019:18;;;17012:30;17078:34;17073:2;17058:18;;17051:62;-1:-1:-1;;;17144:2:1;17129:18;;17122:47;17201:3;17186:19;;16798:413::o;19763:128::-;19803:3;19834:1;19830:6;19827:1;19824:13;19821:39;;;19840:18;;:::i;:::-;-1:-1:-1;19876:9:1;;19763:128::o;19896:120::-;19936:1;19962;19952:35;;19967:18;;:::i;:::-;-1:-1:-1;20001:9:1;;19896:120::o;20021:168::-;20061:7;20127:1;20123;20119:6;20115:14;20112:1;20109:21;20104:1;20097:9;20090:17;20086:45;20083:71;;;20134:18;;:::i;:::-;-1:-1:-1;20174:9:1;;20021:168::o;20194:125::-;20234:4;20262:1;20259;20256:8;20253:34;;;20267:18;;:::i;:::-;-1:-1:-1;20304:9:1;;20194:125::o;20324:258::-;20396:1;20406:113;20420:6;20417:1;20414:13;20406:113;;;20496:11;;;20490:18;20477:11;;;20470:39;20442:2;20435:10;20406:113;;;20537:6;20534:1;20531:13;20528:48;;;-1:-1:-1;;20572:1:1;20554:16;;20547:27;20324:258::o;20587:380::-;20666:1;20662:12;;;;20709;;;20730:61;;20784:4;20776:6;20772:17;20762:27;;20730:61;20837:2;20829:6;20826:14;20806:18;20803:38;20800:161;;;20883:10;20878:3;20874:20;20871:1;20864:31;20918:4;20915:1;20908:15;20946:4;20943:1;20936:15;20972:135;21011:3;-1:-1:-1;;21032:17:1;;21029:43;;;21052:18;;:::i;:::-;-1:-1:-1;21099:1:1;21088:13;;20972:135::o;21112:112::-;21144:1;21170;21160:35;;21175:18;;:::i;:::-;-1:-1:-1;21209:9:1;;21112:112::o;21229:127::-;21290:10;21285:3;21281:20;21278:1;21271:31;21321:4;21318:1;21311:15;21345:4;21342:1;21335:15;21361:127;21422:10;21417:3;21413:20;21410:1;21403:31;21453:4;21450:1;21443:15;21477:4;21474:1;21467:15;21493:127;21554:10;21549:3;21545:20;21542:1;21535:31;21585:4;21582:1;21575:15;21609:4;21606:1;21599:15;21625:127;21686:10;21681:3;21677:20;21674:1;21667:31;21717:4;21714:1;21707:15;21741:4;21738:1;21731:15;21757:127;21818:10;21813:3;21809:20;21806:1;21799:31;21849:4;21846:1;21839:15;21873:4;21870:1;21863:15;21889:131;-1:-1:-1;;;;;;21963:32:1;;21953:43;;21943:71;;22010:1;22007;22000:12

Swarm Source

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