ETH Price: $3,350.26 (-3.75%)

Token

Poniez Union (PONIEZ)
 

Overview

Max Total Supply

153 PONIEZ

Holders

47

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
OpenSea: OPENSTORE Token
Balance
1 PONIEZ
0x495f947276749ce646f68ac8c248420045cb7b5e
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:
PoniezUnion

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-02
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\IERC721.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\IERC721Receiver.sol

pragma solidity ^0.8.0;

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

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\extensions\IERC721Metadata.sol

pragma solidity ^0.8.0;

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

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

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

// File: node_modules\openzeppelin-solidity\contracts\utils\Address.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: node_modules\openzeppelin-solidity\contracts\utils\Context.sol

pragma solidity ^0.8.0;

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

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

// File: node_modules\openzeppelin-solidity\contracts\utils\Strings.sol

pragma solidity ^0.8.0;

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

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

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

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

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

// File: node_modules\openzeppelin-solidity\contracts\utils\introspection\ERC165.sol

pragma solidity ^0.8.0;

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

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\ERC721.sol

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\extensions\IERC721Enumerable.sol

pragma solidity ^0.8.0;

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

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

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

// File: openzeppelin-solidity\contracts\access\Ownable.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

// File: openzeppelin-solidity\contracts\token\ERC721\extensions\ERC721Enumerable.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts\lib\Counters.sol

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        {
            counter._value = value - 1;
        }
    }
}

pragma solidity ^0.8.0;

contract PoniezUnion is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    address payable private _PaymentAddress =
        payable(0x7C0798BD4aCaF174DF9C4b5a8353a55c109252F6);
    address payable private _DevAddress;

    uint256 public constant PONIEZ_MAX = 10000;
    uint256 public PURCHASE_LIMIT = 10;
    uint256 public PRICE = 32_500_000_000_000_000; // 0.0325 ETH

    uint256 private _activeDateTime = 1632510000; // September 24, 2021 7:00:00 PM GNT
    string private _contractURI = "";
    string private _tokenBaseURI1 = "";
    string private _tokenBaseURI2 = "";
    string private _tokenBaseURI3 = "";
    string private _tokenBaseURI4 = "";
    string private _tokenBaseURI5 = "";
    string private _tokenBaseURI6 = "";

    Counters.Counter private _publicPONIEZ;

    constructor() ERC721("Poniez Union", "PONIEZ") {
        _DevAddress = payable(msg.sender);
    }

    function setPaymentAddress(address paymentAddress) external onlyOwner {
        _PaymentAddress = payable(paymentAddress);
    }

    function setActiveDateTime(uint256 activeDateTime) external onlyOwner {
        _activeDateTime = activeDateTime;
    }

    function setContractURI(string memory URI) external onlyOwner {
        _contractURI = URI;
    }

    function setBaseURI(
        string memory URI1,
        string memory URI2,
        string memory URI3,
        string memory URI4,
        string memory URI5,
        string memory URI6
    ) external onlyOwner {
        if (bytes(URI1).length != 0) _tokenBaseURI1 = URI1;
        if (bytes(URI2).length != 0) _tokenBaseURI2 = URI2;
        if (bytes(URI3).length != 0) _tokenBaseURI3 = URI3;
        if (bytes(URI4).length != 0) _tokenBaseURI4 = URI4;
        if (bytes(URI5).length != 0) _tokenBaseURI5 = URI5;
        if (bytes(URI6).length != 0) _tokenBaseURI6 = URI6;
    }

    function setMintPrice(uint256 mintPrice) external onlyOwner {
        PRICE = mintPrice;
    }

    function setPurchaseLimit(uint256 purchaseLimit) external onlyOwner {
        PURCHASE_LIMIT = purchaseLimit;
    }

    function gift(address to, uint256 numberOfTokens) external onlyOwner {
        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = _publicPONIEZ.current();

            if (_publicPONIEZ.current() < PONIEZ_MAX) {
                _publicPONIEZ.increment();
                _safeMint(to, tokenId);
            }
        }
    }

    function purchase(uint256 numberOfTokens) external payable {
        require(
            numberOfTokens <= PURCHASE_LIMIT,
            "Can only mint up to purchase limit"
        );

        require(
            _publicPONIEZ.current() < PONIEZ_MAX,
            "Purchase would exceed PONIEZ_MAX"
        );

        if (msg.sender != owner()) {
            require(
                block.timestamp > _activeDateTime,
                "Contract is not active"
            );
            require(
                PRICE * numberOfTokens <= msg.value,
                "ETH amount is not sufficient"
            );

            uint256 feeAmount = (msg.value * 5) / 100;
            _DevAddress.transfer(feeAmount);
            _PaymentAddress.transfer(msg.value - feeAmount);
        }

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = _publicPONIEZ.current();

            if (_publicPONIEZ.current() < PONIEZ_MAX) {
                _publicPONIEZ.increment();
                _safeMint(msg.sender, tokenId);
            }
        }
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        require(_exists(tokenId), "Token does not exist");

        if (tokenId >= 0 && tokenId < 5000) {
            return string(abi.encodePacked(_tokenBaseURI1, tokenId.toString()));
        } else if (tokenId >= 5000 && tokenId < 10000) {
            return string(abi.encodePacked(_tokenBaseURI2, tokenId.toString()));
        } else if (tokenId >= 10000 && tokenId < 15000) {
            return string(abi.encodePacked(_tokenBaseURI3, tokenId.toString()));
        } else if (tokenId >= 15000 && tokenId < 20000) {
            return string(abi.encodePacked(_tokenBaseURI4, tokenId.toString()));
        } else if (tokenId >= 20000 && tokenId < 25000) {
            return string(abi.encodePacked(_tokenBaseURI5, tokenId.toString()));
        } else if (tokenId >= 25000 && tokenId < 30000) {
            return string(abi.encodePacked(_tokenBaseURI6, tokenId.toString()));
        }

        return "";
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;

        payable(msg.sender).transfer(balance);
    }
}

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":"PONIEZ_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","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":"contractURI","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":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"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":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"activeDateTime","type":"uint256"}],"name":"setActiveDateTime","outputs":[],"stateMutability":"nonpayable","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":"URI1","type":"string"},{"internalType":"string","name":"URI2","type":"string"},{"internalType":"string","name":"URI3","type":"string"},{"internalType":"string","name":"URI4","type":"string"},{"internalType":"string","name":"URI5","type":"string"},{"internalType":"string","name":"URI6","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"paymentAddress","type":"address"}],"name":"setPaymentAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"purchaseLimit","type":"uint256"}],"name":"setPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600c80546001600160a01b031916737c0798bd4acaf174df9c4b5a8353a55c109252f6179055600a600e5566737693eb334000600f5563614e203060105560a0604081905260006080819052620000599160119162000221565b506040805160208101918290526000908190526200007a9160129162000221565b506040805160208101918290526000908190526200009b9160139162000221565b50604080516020810191829052600090819052620000bc9160149162000221565b50604080516020810191829052600090819052620000dd9160159162000221565b50604080516020810191829052600090819052620000fe9160169162000221565b506040805160208101918290526000908190526200011f9160179162000221565b503480156200012d57600080fd5b50604080518082018252600c81526b2837b734b2bd102ab734b7b760a11b6020808301918252835180850190945260068452652827a724a2ad60d11b908401528151919291620001809160009162000221565b5080516200019690600190602084019062000221565b5050506000620001ab6200021d60201b60201c565b600a80546001600160a01b0383166001600160a01b03199182168117909255600b805490911682179055604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600d80546001600160a01b0319163317905562000304565b3390565b8280546200022f90620002c7565b90600052602060002090601f0160209004810192826200025357600085556200029e565b82601f106200026e57805160ff19168380011785556200029e565b828001600101855582156200029e579182015b828111156200029e57825182559160200191906001019062000281565b50620002ac929150620002b0565b5090565b5b80821115620002ac5760008155600101620002b1565b600181811c90821680620002dc57607f821691505b60208210811415620002fe57634e487b7160e01b600052602260045260246000fd5b50919050565b61263780620003146000396000f3fe6080604052600436106101e35760003560e01c80638d859f3e11610102578063cbce4c9711610095578063e985e9c511610064578063e985e9c51461054c578063efef39a114610595578063f2fde38b146105a8578063f4a0a528146105c857600080fd5b8063cbce4c97146104e1578063d75e611014610501578063e622077014610517578063e8a3d4851461053757600080fd5b8063a22cb465116100d1578063a22cb46514610461578063ae8e582014610481578063b88d4fde146104a1578063c87b56dd146104c157600080fd5b80638d859f3e146103f85780638da5cb5b1461040e578063938e3d7b1461042c57806395d89b411461044c57600080fd5b806342842e0e1161017a57806366074e151161014957806366074e151461038d5780636edc4388146103a357806370a08231146103c3578063715018a6146103e357600080fd5b806342842e0e1461030d5780634f6ccce71461032d5780635e1e10041461034d5780636352211e1461036d57600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102b85780632f745c59146102d85780633ccfd60b146102f857600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b506102086102033660046120ee565b6105e8565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610613565b6040516102149190612397565b34801561024b57600080fd5b5061025f61025a366004612252565b6106a5565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b506102976102923660046120c4565b61073f565b005b3480156102a557600080fd5b506008545b604051908152602001610214565b3480156102c457600080fd5b506102976102d3366004611fd0565b610855565b3480156102e457600080fd5b506102aa6102f33660046120c4565b610886565b34801561030457600080fd5b5061029761091c565b34801561031957600080fd5b50610297610328366004611fd0565b61098e565b34801561033957600080fd5b506102aa610348366004612252565b6109a9565b34801561035957600080fd5b50610297610368366004611f82565b610a3c565b34801561037957600080fd5b5061025f610388366004612252565b610a9d565b34801561039957600080fd5b506102aa61271081565b3480156103af57600080fd5b506102976103be366004612252565b610b14565b3480156103cf57600080fd5b506102aa6103de366004611f82565b610b58565b3480156103ef57600080fd5b50610297610bdf565b34801561040457600080fd5b506102aa600f5481565b34801561041a57600080fd5b50600a546001600160a01b031661025f565b34801561043857600080fd5b50610297610447366004612128565b610c68565b34801561045857600080fd5b50610232610cba565b34801561046d57600080fd5b5061029761047c366004612088565b610cc9565b34801561048d57600080fd5b5061029761049c36600461215d565b610d8e565b3480156104ad57600080fd5b506102976104bc36600461200c565b610e7d565b3480156104cd57600080fd5b506102326104dc366004612252565b610eb5565b3480156104ed57600080fd5b506102976104fc3660046120c4565b611012565b34801561050d57600080fd5b506102aa600e5481565b34801561052357600080fd5b50610297610532366004612252565b6110a2565b34801561054357600080fd5b506102326110e6565b34801561055857600080fd5b50610208610567366004611f9d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102976105a3366004612252565b6110f5565b3480156105b457600080fd5b506102976105c3366004611f82565b61134e565b3480156105d457600080fd5b506102976105e3366004612252565b61144e565b60006001600160e01b0319821663780e9d6360e01b148061060d575061060d82611492565b92915050565b60606000805461062290612510565b80601f016020809104026020016040519081016040528092919081815260200182805461064e90612510565b801561069b5780601f106106705761010080835404028352916020019161069b565b820191906000526020600020905b81548152906001019060200180831161067e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107235760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061074a82610a9d565b9050806001600160a01b0316836001600160a01b031614156107b85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161071a565b336001600160a01b03821614806107d457506107d48133610567565b6108465760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161071a565b61085083836114e2565b505050565b61085f3382611550565b61087b5760405162461bcd60e51b815260040161071a90612431565b610850838383611647565b600061089183610b58565b82106108f35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161071a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633148061093f5750600b546001600160a01b031633145b61095b5760405162461bcd60e51b815260040161071a906123fc565b6040514790339082156108fc029083906000818181858888f1935050505015801561098a573d6000803e3d6000fd5b5050565b61085083838360405180602001604052806000815250610e7d565b60006109b460085490565b8210610a175760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161071a565b60088281548110610a2a57610a2a6125bc565b90600052602060002001549050919050565b600a546001600160a01b0316331480610a5f5750600b546001600160a01b031633145b610a7b5760405162461bcd60e51b815260040161071a906123fc565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b03168061060d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161071a565b600a546001600160a01b0316331480610b375750600b546001600160a01b031633145b610b535760405162461bcd60e51b815260040161071a906123fc565b600e55565b60006001600160a01b038216610bc35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161071a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610c025750600b546001600160a01b031633145b610c1e5760405162461bcd60e51b815260040161071a906123fc565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610c8b5750600b546001600160a01b031633145b610ca75760405162461bcd60e51b815260040161071a906123fc565b805161098a906011906020840190611e30565b60606001805461062290612510565b6001600160a01b038216331415610d225760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161071a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331480610db15750600b546001600160a01b031633145b610dcd5760405162461bcd60e51b815260040161071a906123fc565b855115610de9578551610de7906012906020890190611e30565b505b845115610e05578451610e03906013906020880190611e30565b505b835115610e21578351610e1f906014906020870190611e30565b505b825115610e3d578251610e3b906015906020860190611e30565b505b815115610e59578151610e57906016906020850190611e30565b505b805115610e75578051610e73906017906020840190611e30565b505b505050505050565b610e873383611550565b610ea35760405162461bcd60e51b815260040161071a90612431565b610eaf848484846117f2565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f135760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604482015260640161071a565b611388821015610f4f576012610f2883611825565b604051602001610f399291906122b3565b6040516020818303038152906040529050919050565b6113888210158015610f62575061271082105b15610f72576013610f2883611825565b6127108210158015610f855750613a9882105b15610f95576014610f2883611825565b613a988210158015610fa85750614e2082105b15610fb8576015610f2883611825565b614e208210158015610fcb57506161a882105b15610fdb576016610f2883611825565b6161a88210158015610fee575061753082105b15610ffe576017610f2883611825565b505060408051602081019091526000815290565b600a546001600160a01b03163314806110355750600b546001600160a01b031633145b6110515760405162461bcd60e51b815260040161071a906123fc565b60005b8181101561085057600061106760185490565b905061271061107560185490565b101561108f576110856018611923565b61108f8482611940565b508061109a8161254b565b915050611054565b600a546001600160a01b03163314806110c55750600b546001600160a01b031633145b6110e15760405162461bcd60e51b815260040161071a906123fc565b601055565b60606011805461062290612510565b600e548111156111525760405162461bcd60e51b815260206004820152602260248201527f43616e206f6e6c79206d696e7420757020746f207075726368617365206c696d6044820152611a5d60f21b606482015260840161071a565b61271061115e60185490565b106111ab5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c642065786365656420504f4e49455a5f4d4158604482015260640161071a565b600a546001600160a01b031633146112fd5760105442116112075760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b604482015260640161071a565b3481600f5461121691906124ae565b11156112645760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604482015260640161071a565b600060646112733460056124ae565b61127d919061249a565b600d546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050501580156112b8573d6000803e3d6000fd5b50600c546001600160a01b03166108fc6112d283346124cd565b6040518115909202916000818181858888f193505050501580156112fa573d6000803e3d6000fd5b50505b60005b8181101561098a57600061131360185490565b905061271061132160185490565b101561133b576113316018611923565b61133b3382611940565b50806113468161254b565b915050611300565b600a546001600160a01b03163314806113715750600b546001600160a01b031633145b61138d5760405162461bcd60e51b815260040161071a906123fc565b6001600160a01b0381166113f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161071a565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314806114715750600b546001600160a01b031633145b61148d5760405162461bcd60e51b815260040161071a906123fc565b600f55565b60006001600160e01b031982166380ac58cd60e01b14806114c357506001600160e01b03198216635b5e139f60e01b145b8061060d57506301ffc9a760e01b6001600160e01b031983161461060d565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061151782610a9d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115c95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161071a565b60006115d483610a9d565b9050806001600160a01b0316846001600160a01b0316148061160f5750836001600160a01b0316611604846106a5565b6001600160a01b0316145b8061163f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661165a82610a9d565b6001600160a01b0316146116c25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161071a565b6001600160a01b0382166117245760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161071a565b61172f83838361195a565b61173a6000826114e2565b6001600160a01b03831660009081526003602052604081208054600192906117639084906124cd565b90915550506001600160a01b0382166000908152600360205260408120805460019290611791908490612482565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6117fd848484611647565b61180984848484611a12565b610eaf5760405162461bcd60e51b815260040161071a906123aa565b6060816118495750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611873578061185d8161254b565b915061186c9050600a8361249a565b915061184d565b60008167ffffffffffffffff81111561188e5761188e6125d2565b6040519080825280601f01601f1916602001820160405280156118b8576020820181803683370190505b5090505b841561163f576118cd6001836124cd565b91506118da600a86612566565b6118e5906030612482565b60f81b8183815181106118fa576118fa6125bc565b60200101906001600160f81b031916908160001a90535061191c600a8661249a565b94506118bc565b60018160000160008282546119389190612482565b909155505050565b61098a828260405180602001604052806000815250611b1f565b6001600160a01b0383166119b5576119b081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119d8565b816001600160a01b0316836001600160a01b0316146119d8576119d88382611b52565b6001600160a01b0382166119ef5761085081611bef565b826001600160a01b0316826001600160a01b031614610850576108508282611c9e565b60006001600160a01b0384163b15611b1457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a5690339089908890889060040161235a565b602060405180830381600087803b158015611a7057600080fd5b505af1925050508015611aa0575060408051601f3d908101601f19168201909252611a9d9181019061210b565b60015b611afa573d808015611ace576040519150601f19603f3d011682016040523d82523d6000602084013e611ad3565b606091505b508051611af25760405162461bcd60e51b815260040161071a906123aa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061163f565b506001949350505050565b611b298383611ce2565b611b366000848484611a12565b6108505760405162461bcd60e51b815260040161071a906123aa565b60006001611b5f84610b58565b611b6991906124cd565b600083815260076020526040902054909150808214611bbc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c01906001906124cd565b60008381526009602052604081205460088054939450909284908110611c2957611c296125bc565b906000526020600020015490508060088381548110611c4a57611c4a6125bc565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c8257611c826125a6565b6001900381819060005260206000200160009055905550505050565b6000611ca983610b58565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611d385760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161071a565b6000818152600260205260409020546001600160a01b031615611d9d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161071a565b611da96000838361195a565b6001600160a01b0382166000908152600360205260408120805460019290611dd2908490612482565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e3c90612510565b90600052602060002090601f016020900481019282611e5e5760008555611ea4565b82601f10611e7757805160ff1916838001178555611ea4565b82800160010185558215611ea4579182015b82811115611ea4578251825591602001919060010190611e89565b50611eb0929150611eb4565b5090565b5b80821115611eb05760008155600101611eb5565b600067ffffffffffffffff80841115611ee457611ee46125d2565b604051601f8501601f19908116603f01168101908282118183101715611f0c57611f0c6125d2565b81604052809350858152868686011115611f2557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f5657600080fd5b919050565b600082601f830112611f6c57600080fd5b611f7b83833560208501611ec9565b9392505050565b600060208284031215611f9457600080fd5b611f7b82611f3f565b60008060408385031215611fb057600080fd5b611fb983611f3f565b9150611fc760208401611f3f565b90509250929050565b600080600060608486031215611fe557600080fd5b611fee84611f3f565b9250611ffc60208501611f3f565b9150604084013590509250925092565b6000806000806080858703121561202257600080fd5b61202b85611f3f565b935061203960208601611f3f565b925060408501359150606085013567ffffffffffffffff81111561205c57600080fd5b8501601f8101871361206d57600080fd5b61207c87823560208401611ec9565b91505092959194509250565b6000806040838503121561209b57600080fd5b6120a483611f3f565b9150602083013580151581146120b957600080fd5b809150509250929050565b600080604083850312156120d757600080fd5b6120e083611f3f565b946020939093013593505050565b60006020828403121561210057600080fd5b8135611f7b816125e8565b60006020828403121561211d57600080fd5b8151611f7b816125e8565b60006020828403121561213a57600080fd5b813567ffffffffffffffff81111561215157600080fd5b61163f84828501611f5b565b60008060008060008060c0878903121561217657600080fd5b863567ffffffffffffffff8082111561218e57600080fd5b61219a8a838b01611f5b565b975060208901359150808211156121b057600080fd5b6121bc8a838b01611f5b565b965060408901359150808211156121d257600080fd5b6121de8a838b01611f5b565b955060608901359150808211156121f457600080fd5b6122008a838b01611f5b565b9450608089013591508082111561221657600080fd5b6122228a838b01611f5b565b935060a089013591508082111561223857600080fd5b5061224589828a01611f5b565b9150509295509295509295565b60006020828403121561226457600080fd5b5035919050565b600081518084526122838160208601602086016124e4565b601f01601f19169290920160200192915050565b600081516122a98185602086016124e4565b9290920192915050565b600080845481600182811c9150808316806122cf57607f831692505b60208084108214156122ef57634e487b7160e01b86526022600452602486fd5b818015612303576001811461231457612341565b60ff19861689528489019650612341565b60008b81526020902060005b868110156123395781548b820152908501908301612320565b505084890196505b5050505050506123518185612297565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061238d9083018461226b565b9695505050505050565b602081526000611f7b602083018461226b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156124955761249561257a565b500190565b6000826124a9576124a9612590565b500490565b60008160001904831182151516156124c8576124c861257a565b500290565b6000828210156124df576124df61257a565b500390565b60005b838110156124ff5781810151838201526020016124e7565b83811115610eaf5750506000910152565b600181811c9082168061252457607f821691505b6020821081141561254557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561255f5761255f61257a565b5060010190565b60008261257557612575612590565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146125fe57600080fd5b5056fea2646970667358221220c86d430ae0a4683eeac906aec5b54f1c50813b8fb2178a91aa303660289441f664736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80638d859f3e11610102578063cbce4c9711610095578063e985e9c511610064578063e985e9c51461054c578063efef39a114610595578063f2fde38b146105a8578063f4a0a528146105c857600080fd5b8063cbce4c97146104e1578063d75e611014610501578063e622077014610517578063e8a3d4851461053757600080fd5b8063a22cb465116100d1578063a22cb46514610461578063ae8e582014610481578063b88d4fde146104a1578063c87b56dd146104c157600080fd5b80638d859f3e146103f85780638da5cb5b1461040e578063938e3d7b1461042c57806395d89b411461044c57600080fd5b806342842e0e1161017a57806366074e151161014957806366074e151461038d5780636edc4388146103a357806370a08231146103c3578063715018a6146103e357600080fd5b806342842e0e1461030d5780634f6ccce71461032d5780635e1e10041461034d5780636352211e1461036d57600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102b85780632f745c59146102d85780633ccfd60b146102f857600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b506102086102033660046120ee565b6105e8565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610613565b6040516102149190612397565b34801561024b57600080fd5b5061025f61025a366004612252565b6106a5565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b506102976102923660046120c4565b61073f565b005b3480156102a557600080fd5b506008545b604051908152602001610214565b3480156102c457600080fd5b506102976102d3366004611fd0565b610855565b3480156102e457600080fd5b506102aa6102f33660046120c4565b610886565b34801561030457600080fd5b5061029761091c565b34801561031957600080fd5b50610297610328366004611fd0565b61098e565b34801561033957600080fd5b506102aa610348366004612252565b6109a9565b34801561035957600080fd5b50610297610368366004611f82565b610a3c565b34801561037957600080fd5b5061025f610388366004612252565b610a9d565b34801561039957600080fd5b506102aa61271081565b3480156103af57600080fd5b506102976103be366004612252565b610b14565b3480156103cf57600080fd5b506102aa6103de366004611f82565b610b58565b3480156103ef57600080fd5b50610297610bdf565b34801561040457600080fd5b506102aa600f5481565b34801561041a57600080fd5b50600a546001600160a01b031661025f565b34801561043857600080fd5b50610297610447366004612128565b610c68565b34801561045857600080fd5b50610232610cba565b34801561046d57600080fd5b5061029761047c366004612088565b610cc9565b34801561048d57600080fd5b5061029761049c36600461215d565b610d8e565b3480156104ad57600080fd5b506102976104bc36600461200c565b610e7d565b3480156104cd57600080fd5b506102326104dc366004612252565b610eb5565b3480156104ed57600080fd5b506102976104fc3660046120c4565b611012565b34801561050d57600080fd5b506102aa600e5481565b34801561052357600080fd5b50610297610532366004612252565b6110a2565b34801561054357600080fd5b506102326110e6565b34801561055857600080fd5b50610208610567366004611f9d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102976105a3366004612252565b6110f5565b3480156105b457600080fd5b506102976105c3366004611f82565b61134e565b3480156105d457600080fd5b506102976105e3366004612252565b61144e565b60006001600160e01b0319821663780e9d6360e01b148061060d575061060d82611492565b92915050565b60606000805461062290612510565b80601f016020809104026020016040519081016040528092919081815260200182805461064e90612510565b801561069b5780601f106106705761010080835404028352916020019161069b565b820191906000526020600020905b81548152906001019060200180831161067e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107235760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061074a82610a9d565b9050806001600160a01b0316836001600160a01b031614156107b85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161071a565b336001600160a01b03821614806107d457506107d48133610567565b6108465760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161071a565b61085083836114e2565b505050565b61085f3382611550565b61087b5760405162461bcd60e51b815260040161071a90612431565b610850838383611647565b600061089183610b58565b82106108f35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161071a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633148061093f5750600b546001600160a01b031633145b61095b5760405162461bcd60e51b815260040161071a906123fc565b6040514790339082156108fc029083906000818181858888f1935050505015801561098a573d6000803e3d6000fd5b5050565b61085083838360405180602001604052806000815250610e7d565b60006109b460085490565b8210610a175760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161071a565b60088281548110610a2a57610a2a6125bc565b90600052602060002001549050919050565b600a546001600160a01b0316331480610a5f5750600b546001600160a01b031633145b610a7b5760405162461bcd60e51b815260040161071a906123fc565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b03168061060d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161071a565b600a546001600160a01b0316331480610b375750600b546001600160a01b031633145b610b535760405162461bcd60e51b815260040161071a906123fc565b600e55565b60006001600160a01b038216610bc35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161071a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610c025750600b546001600160a01b031633145b610c1e5760405162461bcd60e51b815260040161071a906123fc565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610c8b5750600b546001600160a01b031633145b610ca75760405162461bcd60e51b815260040161071a906123fc565b805161098a906011906020840190611e30565b60606001805461062290612510565b6001600160a01b038216331415610d225760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161071a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331480610db15750600b546001600160a01b031633145b610dcd5760405162461bcd60e51b815260040161071a906123fc565b855115610de9578551610de7906012906020890190611e30565b505b845115610e05578451610e03906013906020880190611e30565b505b835115610e21578351610e1f906014906020870190611e30565b505b825115610e3d578251610e3b906015906020860190611e30565b505b815115610e59578151610e57906016906020850190611e30565b505b805115610e75578051610e73906017906020840190611e30565b505b505050505050565b610e873383611550565b610ea35760405162461bcd60e51b815260040161071a90612431565b610eaf848484846117f2565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f135760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604482015260640161071a565b611388821015610f4f576012610f2883611825565b604051602001610f399291906122b3565b6040516020818303038152906040529050919050565b6113888210158015610f62575061271082105b15610f72576013610f2883611825565b6127108210158015610f855750613a9882105b15610f95576014610f2883611825565b613a988210158015610fa85750614e2082105b15610fb8576015610f2883611825565b614e208210158015610fcb57506161a882105b15610fdb576016610f2883611825565b6161a88210158015610fee575061753082105b15610ffe576017610f2883611825565b505060408051602081019091526000815290565b600a546001600160a01b03163314806110355750600b546001600160a01b031633145b6110515760405162461bcd60e51b815260040161071a906123fc565b60005b8181101561085057600061106760185490565b905061271061107560185490565b101561108f576110856018611923565b61108f8482611940565b508061109a8161254b565b915050611054565b600a546001600160a01b03163314806110c55750600b546001600160a01b031633145b6110e15760405162461bcd60e51b815260040161071a906123fc565b601055565b60606011805461062290612510565b600e548111156111525760405162461bcd60e51b815260206004820152602260248201527f43616e206f6e6c79206d696e7420757020746f207075726368617365206c696d6044820152611a5d60f21b606482015260840161071a565b61271061115e60185490565b106111ab5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c642065786365656420504f4e49455a5f4d4158604482015260640161071a565b600a546001600160a01b031633146112fd5760105442116112075760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b604482015260640161071a565b3481600f5461121691906124ae565b11156112645760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604482015260640161071a565b600060646112733460056124ae565b61127d919061249a565b600d546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050501580156112b8573d6000803e3d6000fd5b50600c546001600160a01b03166108fc6112d283346124cd565b6040518115909202916000818181858888f193505050501580156112fa573d6000803e3d6000fd5b50505b60005b8181101561098a57600061131360185490565b905061271061132160185490565b101561133b576113316018611923565b61133b3382611940565b50806113468161254b565b915050611300565b600a546001600160a01b03163314806113715750600b546001600160a01b031633145b61138d5760405162461bcd60e51b815260040161071a906123fc565b6001600160a01b0381166113f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161071a565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314806114715750600b546001600160a01b031633145b61148d5760405162461bcd60e51b815260040161071a906123fc565b600f55565b60006001600160e01b031982166380ac58cd60e01b14806114c357506001600160e01b03198216635b5e139f60e01b145b8061060d57506301ffc9a760e01b6001600160e01b031983161461060d565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061151782610a9d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115c95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161071a565b60006115d483610a9d565b9050806001600160a01b0316846001600160a01b0316148061160f5750836001600160a01b0316611604846106a5565b6001600160a01b0316145b8061163f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661165a82610a9d565b6001600160a01b0316146116c25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161071a565b6001600160a01b0382166117245760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161071a565b61172f83838361195a565b61173a6000826114e2565b6001600160a01b03831660009081526003602052604081208054600192906117639084906124cd565b90915550506001600160a01b0382166000908152600360205260408120805460019290611791908490612482565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6117fd848484611647565b61180984848484611a12565b610eaf5760405162461bcd60e51b815260040161071a906123aa565b6060816118495750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611873578061185d8161254b565b915061186c9050600a8361249a565b915061184d565b60008167ffffffffffffffff81111561188e5761188e6125d2565b6040519080825280601f01601f1916602001820160405280156118b8576020820181803683370190505b5090505b841561163f576118cd6001836124cd565b91506118da600a86612566565b6118e5906030612482565b60f81b8183815181106118fa576118fa6125bc565b60200101906001600160f81b031916908160001a90535061191c600a8661249a565b94506118bc565b60018160000160008282546119389190612482565b909155505050565b61098a828260405180602001604052806000815250611b1f565b6001600160a01b0383166119b5576119b081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119d8565b816001600160a01b0316836001600160a01b0316146119d8576119d88382611b52565b6001600160a01b0382166119ef5761085081611bef565b826001600160a01b0316826001600160a01b031614610850576108508282611c9e565b60006001600160a01b0384163b15611b1457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a5690339089908890889060040161235a565b602060405180830381600087803b158015611a7057600080fd5b505af1925050508015611aa0575060408051601f3d908101601f19168201909252611a9d9181019061210b565b60015b611afa573d808015611ace576040519150601f19603f3d011682016040523d82523d6000602084013e611ad3565b606091505b508051611af25760405162461bcd60e51b815260040161071a906123aa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061163f565b506001949350505050565b611b298383611ce2565b611b366000848484611a12565b6108505760405162461bcd60e51b815260040161071a906123aa565b60006001611b5f84610b58565b611b6991906124cd565b600083815260076020526040902054909150808214611bbc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c01906001906124cd565b60008381526009602052604081205460088054939450909284908110611c2957611c296125bc565b906000526020600020015490508060088381548110611c4a57611c4a6125bc565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c8257611c826125a6565b6001900381819060005260206000200160009055905550505050565b6000611ca983610b58565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611d385760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161071a565b6000818152600260205260409020546001600160a01b031615611d9d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161071a565b611da96000838361195a565b6001600160a01b0382166000908152600360205260408120805460019290611dd2908490612482565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e3c90612510565b90600052602060002090601f016020900481019282611e5e5760008555611ea4565b82601f10611e7757805160ff1916838001178555611ea4565b82800160010185558215611ea4579182015b82811115611ea4578251825591602001919060010190611e89565b50611eb0929150611eb4565b5090565b5b80821115611eb05760008155600101611eb5565b600067ffffffffffffffff80841115611ee457611ee46125d2565b604051601f8501601f19908116603f01168101908282118183101715611f0c57611f0c6125d2565b81604052809350858152868686011115611f2557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f5657600080fd5b919050565b600082601f830112611f6c57600080fd5b611f7b83833560208501611ec9565b9392505050565b600060208284031215611f9457600080fd5b611f7b82611f3f565b60008060408385031215611fb057600080fd5b611fb983611f3f565b9150611fc760208401611f3f565b90509250929050565b600080600060608486031215611fe557600080fd5b611fee84611f3f565b9250611ffc60208501611f3f565b9150604084013590509250925092565b6000806000806080858703121561202257600080fd5b61202b85611f3f565b935061203960208601611f3f565b925060408501359150606085013567ffffffffffffffff81111561205c57600080fd5b8501601f8101871361206d57600080fd5b61207c87823560208401611ec9565b91505092959194509250565b6000806040838503121561209b57600080fd5b6120a483611f3f565b9150602083013580151581146120b957600080fd5b809150509250929050565b600080604083850312156120d757600080fd5b6120e083611f3f565b946020939093013593505050565b60006020828403121561210057600080fd5b8135611f7b816125e8565b60006020828403121561211d57600080fd5b8151611f7b816125e8565b60006020828403121561213a57600080fd5b813567ffffffffffffffff81111561215157600080fd5b61163f84828501611f5b565b60008060008060008060c0878903121561217657600080fd5b863567ffffffffffffffff8082111561218e57600080fd5b61219a8a838b01611f5b565b975060208901359150808211156121b057600080fd5b6121bc8a838b01611f5b565b965060408901359150808211156121d257600080fd5b6121de8a838b01611f5b565b955060608901359150808211156121f457600080fd5b6122008a838b01611f5b565b9450608089013591508082111561221657600080fd5b6122228a838b01611f5b565b935060a089013591508082111561223857600080fd5b5061224589828a01611f5b565b9150509295509295509295565b60006020828403121561226457600080fd5b5035919050565b600081518084526122838160208601602086016124e4565b601f01601f19169290920160200192915050565b600081516122a98185602086016124e4565b9290920192915050565b600080845481600182811c9150808316806122cf57607f831692505b60208084108214156122ef57634e487b7160e01b86526022600452602486fd5b818015612303576001811461231457612341565b60ff19861689528489019650612341565b60008b81526020902060005b868110156123395781548b820152908501908301612320565b505084890196505b5050505050506123518185612297565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061238d9083018461226b565b9695505050505050565b602081526000611f7b602083018461226b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156124955761249561257a565b500190565b6000826124a9576124a9612590565b500490565b60008160001904831182151516156124c8576124c861257a565b500290565b6000828210156124df576124df61257a565b500390565b60005b838110156124ff5781810151838201526020016124e7565b83811115610eaf5750506000910152565b600181811c9082168061252457607f821691505b6020821081141561254557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561255f5761255f61257a565b5060010190565b60008261257557612575612590565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146125fe57600080fd5b5056fea2646970667358221220c86d430ae0a4683eeac906aec5b54f1c50813b8fb2178a91aa303660289441f664736f6c63430008070033

Deployed Bytecode Sourcemap

46971:4987:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39256:300;;;;;;;;;;-1:-1:-1;39256:300:0;;;;;:::i;:::-;;:::i;:::-;;;7989:14:1;;7982:22;7964:41;;7952:2;7937:18;39256:300:0;;;;;;;;22885:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24467:308::-;;;;;;;;;;-1:-1:-1;24467:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7287:32:1;;;7269:51;;7257:2;7242:18;24467:308:0;7123:203:1;23990:411:0;;;;;;;;;;-1:-1:-1;23990:411:0;;;;;:::i;:::-;;:::i;:::-;;40059:113;;;;;;;;;;-1:-1:-1;40147:10:0;:17;40059:113;;;16998:25:1;;;16986:2;16971:18;40059:113:0;16852:177:1;25526:376:0;;;;;;;;;;-1:-1:-1;25526:376:0;;;;;:::i;:::-;;:::i;39640:343::-;;;;;;;;;;-1:-1:-1;39640:343:0;;;;;:::i;:::-;;:::i;51808:147::-;;;;;;;;;;;;;:::i;25973:185::-;;;;;;;;;;-1:-1:-1;25973:185:0;;;;;:::i;:::-;;:::i;40249:320::-;;;;;;;;;;-1:-1:-1;40249:320:0;;;;;:::i;:::-;;:::i;47944:130::-;;;;;;;;;;-1:-1:-1;47944:130:0;;;;;:::i;:::-;;:::i;22492:326::-;;;;;;;;;;-1:-1:-1;22492:326:0;;;;;:::i;:::-;;:::i;47257:42::-;;;;;;;;;;;;47294:5;47257:42;;49024:117;;;;;;;;;;-1:-1:-1;49024:117:0;;;;;:::i;:::-;;:::i;22135:295::-;;;;;;;;;;-1:-1:-1;22135:295:0;;;;;:::i;:::-;;:::i;37735:148::-;;;;;;;;;;;;;:::i;47347:45::-;;;;;;;;;;;;;;;;37019:87;;;;;;;;;;-1:-1:-1;37092:6:0;;-1:-1:-1;;;;;37092:6:0;37019:87;;48211:99;;;;;;;;;;-1:-1:-1;48211:99:0;;;;;:::i;:::-;;:::i;23054:104::-;;;;;;;;;;;;;:::i;24847:327::-;;;;;;;;;;-1:-1:-1;24847:327:0;;;;;:::i;:::-;;:::i;48318:594::-;;;;;;;;;;-1:-1:-1;48318:594:0;;;;;:::i;:::-;;:::i;26229:365::-;;;;;;;;;;-1:-1:-1;26229:365:0;;;;;:::i;:::-;;:::i;50735:1065::-;;;;;;;;;;-1:-1:-1;50735:1065:0;;;;;:::i;:::-;;:::i;49149:359::-;;;;;;;;;;-1:-1:-1;49149:359:0;;;;;:::i;:::-;;:::i;47306:34::-;;;;;;;;;;;;;;;;48082:121;;;;;;;;;;-1:-1:-1;48082:121:0;;;;;:::i;:::-;;:::i;50630:97::-;;;;;;;;;;;;;:::i;25245:214::-;;;;;;;;;;-1:-1:-1;25245:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;25416:25:0;;;25387:4;25416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25245:214;49516:1106;;;;;;:::i;:::-;;:::i;38038:281::-;;;;;;;;;;-1:-1:-1;38038:281:0;;;;;:::i;:::-;;:::i;48920:96::-;;;;;;;;;;-1:-1:-1;48920:96:0;;;;;:::i;:::-;;:::i;39256:300::-;39403:4;-1:-1:-1;;;;;;39445:50:0;;-1:-1:-1;;;39445:50:0;;:103;;;39512:36;39536:11;39512:23;:36::i;:::-;39425:123;39256:300;-1:-1:-1;;39256:300:0:o;22885:100::-;22939:13;22972:5;22965:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22885:100;:::o;24467:308::-;24588:7;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;24613:110;;;;-1:-1:-1;;;24613:110:0;;14234:2:1;24613:110:0;;;14216:21:1;14273:2;14253:18;;;14246:30;14312:34;14292:18;;;14285:62;-1:-1:-1;;;14363:18:1;;;14356:42;14415:19;;24613:110:0;;;;;;;;;-1:-1:-1;24743:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24743:24:0;;24467:308::o;23990:411::-;24071:13;24087:23;24102:7;24087:14;:23::i;:::-;24071:39;;24135:5;-1:-1:-1;;;;;24129:11:0;:2;-1:-1:-1;;;;;24129:11:0;;;24121:57;;;;-1:-1:-1;;;24121:57:0;;15821:2:1;24121:57:0;;;15803:21:1;15860:2;15840:18;;;15833:30;15899:34;15879:18;;;15872:62;-1:-1:-1;;;15950:18:1;;;15943:31;15991:19;;24121:57:0;15619:397:1;24121:57:0;16975:10;-1:-1:-1;;;;;24213:21:0;;;;:62;;-1:-1:-1;24238:37:0;24255:5;16975:10;25245:214;:::i;24238:37::-;24191:168;;;;-1:-1:-1;;;24191:168:0;;12276:2:1;24191:168:0;;;12258:21:1;12315:2;12295:18;;;12288:30;12354:34;12334:18;;;12327:62;12425:26;12405:18;;;12398:54;12469:19;;24191:168:0;12074:420:1;24191:168:0;24372:21;24381:2;24385:7;24372:8;:21::i;:::-;24060:341;23990:411;;:::o;25526:376::-;25735:41;16975:10;25768:7;25735:18;:41::i;:::-;25713:140;;;;-1:-1:-1;;;25713:140:0;;;;;;;:::i;:::-;25866:28;25876:4;25882:2;25886:7;25866:9;:28::i;39640:343::-;39782:7;39837:23;39854:5;39837:16;:23::i;:::-;39829:5;:31;39807:124;;;;-1:-1:-1;;;39807:124:0;;8442:2:1;39807:124:0;;;8424:21:1;8481:2;8461:18;;;8454:30;8520:34;8500:18;;;8493:62;-1:-1:-1;;;8571:18:1;;;8564:41;8622:19;;39807:124:0;8240:407:1;39807:124:0;-1:-1:-1;;;;;;39949:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39640:343::o;51808:147::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;51910:37:::1;::::0;51876:21:::1;::::0;51918:10:::1;::::0;51910:37;::::1;;;::::0;51876:21;;51858:15:::1;51910:37:::0;51858:15;51910:37;51876:21;51918:10;51910:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51847:108;51808:147::o:0;25973:185::-;26111:39;26128:4;26134:2;26138:7;26111:39;;;;;;;;;;;;:16;:39::i;40249:320::-;40369:7;40424:30;40147:10;:17;;40059:113;40424:30;40416:5;:38;40394:132;;;;-1:-1:-1;;;40394:132:0;;16641:2:1;40394:132:0;;;16623:21:1;16680:2;16660:18;;;16653:30;16719:34;16699:18;;;16692:62;-1:-1:-1;;;16770:18:1;;;16763:42;16822:19;;40394:132:0;16439:408:1;40394:132:0;40544:10;40555:5;40544:17;;;;;;;;:::i;:::-;;;;;;;;;40537:24;;40249:320;;;:::o;47944:130::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48025:15:::1;:41:::0;;-1:-1:-1;;;;;;48025:41:0::1;-1:-1:-1::0;;;;;48025:41:0;;;::::1;::::0;;;::::1;::::0;;47944:130::o;22492:326::-;22609:7;22650:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22650:16:0;22699:19;22677:110;;;;-1:-1:-1;;;22677:110:0;;13112:2:1;22677:110:0;;;13094:21:1;13151:2;13131:18;;;13124:30;13190:34;13170:18;;;13163:62;-1:-1:-1;;;13241:18:1;;;13234:39;13290:19;;22677:110:0;12910:405:1;49024:117:0;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49103:14:::1;:30:::0;49024:117::o;22135:295::-;22252:7;-1:-1:-1;;;;;22299:19:0;;22277:111;;;;-1:-1:-1;;;22277:111:0;;12701:2:1;22277:111:0;;;12683:21:1;12740:2;12720:18;;;12713:30;12779:34;12759:18;;;12752:62;-1:-1:-1;;;12830:18:1;;;12823:40;12880:19;;22277:111:0;12499:406:1;22277:111:0;-1:-1:-1;;;;;;22406:16:0;;;;;:9;:16;;;;;;;22135:295::o;37735:148::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;37826:6:::1;::::0;37805:40:::1;::::0;37842:1:::1;::::0;-1:-1:-1;;;;;37826:6:0::1;::::0;37805:40:::1;::::0;37842:1;;37805:40:::1;37856:6;:19:::0;;-1:-1:-1;;;;;;37856:19:0::1;::::0;;37735:148::o;48211:99::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48284:18;;::::1;::::0;:12:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;23054:104::-:0;23110:13;23143:7;23136:14;;;;;:::i;24847:327::-;-1:-1:-1;;;;;24982:24:0;;16975:10;24982:24;;24974:62;;;;-1:-1:-1;;;24974:62:0;;10442:2:1;24974:62:0;;;10424:21:1;10481:2;10461:18;;;10454:30;10520:27;10500:18;;;10493:55;10565:18;;24974:62:0;10240:349:1;24974:62:0;16975:10;25049:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25049:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25049:53:0;;;;;;;;;;25118:48;;7964:41:1;;;25049:42:0;;16975:10;25118:48;;7937:18:1;25118:48:0;;;;;;;24847:327;;:::o;48318:594::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48553:18;;:23;48549:50:::1;;48578:21:::0;;::::1;::::0;:14:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48549:50;48614:18:::0;;:23;48610:50:::1;;48639:21:::0;;::::1;::::0;:14:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48610:50;48675:18:::0;;:23;48671:50:::1;;48700:21:::0;;::::1;::::0;:14:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48671:50;48736:18:::0;;:23;48732:50:::1;;48761:21:::0;;::::1;::::0;:14:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48732:50;48797:18:::0;;:23;48793:50:::1;;48822:21:::0;;::::1;::::0;:14:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48793:50;48858:18:::0;;:23;48854:50:::1;;48883:21:::0;;::::1;::::0;:14:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48854:50;48318:594:::0;;;;;;:::o;26229:365::-;26418:41;16975:10;26451:7;26418:18;:41::i;:::-;26396:140;;;;-1:-1:-1;;;26396:140:0;;;;;;;:::i;:::-;26547:39;26561:4;26567:2;26571:7;26580:5;26547:13;:39::i;:::-;26229:365;;;;:::o;50735:1065::-;28206:4;28230:16;;;:7;:16;;;;;;50844:13;;-1:-1:-1;;;;;28230:16:0;50875:49;;;;-1:-1:-1;;;50875:49:0;;11157:2:1;50875:49:0;;;11139:21:1;11196:2;11176:18;;;11169:30;-1:-1:-1;;;11215:18:1;;;11208:50;11275:18;;50875:49:0;10955:344:1;50875:49:0;50967:4;50957:7;:14;50937:834;;;51019:14;51035:18;:7;:16;:18::i;:::-;51002:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50988:67;;50735:1065;;;:::o;50937:834::-;51088:4;51077:7;:15;;:34;;;;;51106:5;51096:7;:15;51077:34;51073:698;;;51159:14;51175:18;:7;:16;:18::i;51073:698::-;51228:5;51217:7;:16;;:35;;;;;51247:5;51237:7;:15;51217:35;51213:558;;;51300:14;51316:18;:7;:16;:18::i;51213:558::-;51369:5;51358:7;:16;;:35;;;;;51388:5;51378:7;:15;51358:35;51354:417;;;51441:14;51457:18;:7;:16;:18::i;51354:417::-;51510:5;51499:7;:16;;:35;;;;;51529:5;51519:7;:15;51499:35;51495:276;;;51582:14;51598:18;:7;:16;:18::i;51495:276::-;51651:5;51640:7;:16;;:35;;;;;51670:5;51660:7;:15;51640:35;51636:135;;;51723:14;51739:18;:7;:16;:18::i;51636:135::-;-1:-1:-1;;51783:9:0;;;;;;;;;-1:-1:-1;51783:9:0;;;50735:1065::o;49149:359::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49234:9:::1;49229:272;49253:14;49249:1;:18;49229:272;;;49289:15;49307:23;:13;46557:14:::0;;46465:114;49307:23:::1;49289:41;;47294:5;49351:23;:13;46557:14:::0;;46465:114;49351:23:::1;:36;49347:143;;;49408:25;:13;:23;:25::i;:::-;49452:22;49462:2;49466:7;49452:9;:22::i;:::-;-1:-1:-1::0;49269:3:0;::::1;::::0;::::1;:::i;:::-;;;;49229:272;;48082:121:::0;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48163:15:::1;:32:::0;48082:121::o;50630:97::-;50674:13;50707:12;50700:19;;;;;:::i;49516:1106::-;49626:14;;49608;:32;;49586:116;;;;-1:-1:-1;;;49586:116:0;;15418:2:1;49586:116:0;;;15400:21:1;15457:2;15437:18;;;15430:30;15496:34;15476:18;;;15469:62;-1:-1:-1;;;15547:18:1;;;15540:32;15589:19;;49586:116:0;15216:398:1;49586:116:0;47294:5;49737:23;:13;46557:14;;46465:114;49737:23;:36;49715:118;;;;-1:-1:-1;;;49715:118:0;;10796:2:1;49715:118:0;;;10778:21:1;;;10815:18;;;10808:30;10874:34;10854:18;;;10847:62;10926:18;;49715:118:0;10594:356:1;49715:118:0;37092:6;;-1:-1:-1;;;;;37092:6:0;49850:10;:21;49846:477;;49932:15;;49914;:33;49888:117;;;;-1:-1:-1;;;49888:117:0;;13883:2:1;49888:117:0;;;13865:21:1;13922:2;13902:18;;;13895:30;-1:-1:-1;;;13941:18:1;;;13934:52;14003:18;;49888:117:0;13681:346:1;49888:117:0;50072:9;50054:14;50046:5;;:22;;;;:::i;:::-;:35;;50020:125;;;;-1:-1:-1;;;50020:125:0;;11506:2:1;50020:125:0;;;11488:21:1;11545:2;11525:18;;;11518:30;11584;11564:18;;;11557:58;11632:18;;50020:125:0;11304:352:1;50020:125:0;50162:17;50200:3;50183:13;:9;50195:1;50183:13;:::i;:::-;50182:21;;;;:::i;:::-;50218:11;;:31;;50162:41;;-1:-1:-1;;;;;;50218:11:0;;:31;;;;;50162:41;;50218:11;:31;:11;:31;50162:41;50218:11;:31;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50264:15:0;;-1:-1:-1;;;;;50264:15:0;:47;50289:21;50301:9;50289;:21;:::i;:::-;50264:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49873:450;49846:477;50340:9;50335:280;50359:14;50355:1;:18;50335:280;;;50395:15;50413:23;:13;46557:14;;46465:114;50413:23;50395:41;;47294:5;50457:23;:13;46557:14;;46465:114;50457:23;:36;50453:151;;;50514:25;:13;:23;:25::i;:::-;50558:30;50568:10;50580:7;50558:9;:30::i;:::-;-1:-1:-1;50375:3:0;;;;:::i;:::-;;;;50335:280;;38038:281;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38141:22:0;::::1;38119:110;;;::::0;-1:-1:-1;;;38119:110:0;;9273:2:1;38119:110:0::1;::::0;::::1;9255:21:1::0;9312:2;9292:18;;;9285:30;9351:34;9331:18;;;9324:62;-1:-1:-1;;;9402:18:1;;;9395:36;9448:19;;38119:110:0::1;9071:402:1::0;38119:110:0::1;38266:6;::::0;38245:38:::1;::::0;-1:-1:-1;;;;;38245:38:0;;::::1;::::0;38266:6:::1;::::0;38245:38:::1;::::0;38266:6:::1;::::0;38245:38:::1;38294:6;:17:::0;;-1:-1:-1;;;;;;38294:17:0::1;-1:-1:-1::0;;;;;38294:17:0;;;::::1;::::0;;;::::1;::::0;;38038:281::o;48920:96::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48991:5:::1;:17:::0;48920:96::o;21716:355::-;21863:4;-1:-1:-1;;;;;;21905:40:0;;-1:-1:-1;;;21905:40:0;;:105;;-1:-1:-1;;;;;;;21962:48:0;;-1:-1:-1;;;21962:48:0;21905:105;:158;;;-1:-1:-1;;;;;;;;;;20326:40:0;;;22027:36;20167:207;32264:174;32339:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32339:29:0;-1:-1:-1;;;;;32339:29:0;;;;;;;;:24;;32393:23;32339:24;32393:14;:23::i;:::-;-1:-1:-1;;;;;32384:46:0;;;;;;;;;;;32264:174;;:::o;28435:452::-;28564:4;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;28586:110;;;;-1:-1:-1;;;28586:110:0;;11863:2:1;28586:110:0;;;11845:21:1;11902:2;11882:18;;;11875:30;11941:34;11921:18;;;11914:62;-1:-1:-1;;;11992:18:1;;;11985:42;12044:19;;28586:110:0;11661:408:1;28586:110:0;28707:13;28723:23;28738:7;28723:14;:23::i;:::-;28707:39;;28776:5;-1:-1:-1;;;;;28765:16:0;:7;-1:-1:-1;;;;;28765:16:0;;:64;;;;28822:7;-1:-1:-1;;;;;28798:31:0;:20;28810:7;28798:11;:20::i;:::-;-1:-1:-1;;;;;28798:31:0;;28765:64;:113;;;-1:-1:-1;;;;;;25416:25:0;;;25387:4;25416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28846:32;28757:122;28435:452;-1:-1:-1;;;;28435:452:0:o;31531:615::-;31704:4;-1:-1:-1;;;;;31677:31:0;:23;31692:7;31677:14;:23::i;:::-;-1:-1:-1;;;;;31677:31:0;;31655:122;;;;-1:-1:-1;;;31655:122:0;;15008:2:1;31655:122:0;;;14990:21:1;15047:2;15027:18;;;15020:30;15086:34;15066:18;;;15059:62;-1:-1:-1;;;15137:18:1;;;15130:39;15186:19;;31655:122:0;14806:405:1;31655:122:0;-1:-1:-1;;;;;31796:16:0;;31788:65;;;;-1:-1:-1;;;31788:65:0;;10037:2:1;31788:65:0;;;10019:21:1;10076:2;10056:18;;;10049:30;10115:34;10095:18;;;10088:62;-1:-1:-1;;;10166:18:1;;;10159:34;10210:19;;31788:65:0;9835:400:1;31788:65:0;31866:39;31887:4;31893:2;31897:7;31866:20;:39::i;:::-;31970:29;31987:1;31991:7;31970:8;:29::i;:::-;-1:-1:-1;;;;;32012:15:0;;;;;;:9;:15;;;;;:20;;32031:1;;32012:15;:20;;32031:1;;32012:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32043:13:0;;;;;;:9;:13;;;;;:18;;32060:1;;32043:13;:18;;32060:1;;32043:18;:::i;:::-;;;;-1:-1:-1;;32072:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32072:21:0;-1:-1:-1;;;;;32072:21:0;;;;;;;;;32111:27;;32072:16;;32111:27;;;;;;;31531:615;;;:::o;27476:352::-;27633:28;27643:4;27649:2;27653:7;27633:9;:28::i;:::-;27694:48;27717:4;27723:2;27727:7;27736:5;27694:22;:48::i;:::-;27672:148;;;;-1:-1:-1;;;27672:148:0;;;;;;;:::i;17567:723::-;17623:13;17844:10;17840:53;;-1:-1:-1;;17871:10:0;;;;;;;;;;;;-1:-1:-1;;;17871:10:0;;;;;17567:723::o;17840:53::-;17918:5;17903:12;17959:78;17966:9;;17959:78;;17992:8;;;;:::i;:::-;;-1:-1:-1;18015:10:0;;-1:-1:-1;18023:2:0;18015:10;;:::i;:::-;;;17959:78;;;18047:19;18079:6;18069:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18069:17:0;;18047:39;;18097:154;18104:10;;18097:154;;18131:11;18141:1;18131:11;;:::i;:::-;;-1:-1:-1;18200:10:0;18208:2;18200:5;:10;:::i;:::-;18187:24;;:2;:24;:::i;:::-;18174:39;;18157:6;18164;18157:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18157:56:0;;;;;;;;-1:-1:-1;18228:11:0;18237:2;18228:11;;:::i;:::-;;;18097:154;;46587:117;46684:1;46666:7;:14;;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;;46587:117:0:o;29229:110::-;29305:26;29315:2;29319:7;29305:26;;;;;;;;;;;;:9;:26::i;41182:589::-;-1:-1:-1;;;;;41388:18:0;;41384:187;;41423:40;41455:7;42598:10;:17;;42571:24;;;;:15;:24;;;;;:44;;;42626:24;;;;;;;;;;;;42494:164;41423:40;41384:187;;;41493:2;-1:-1:-1;;;;;41485:10:0;:4;-1:-1:-1;;;;;41485:10:0;;41481:90;;41512:47;41545:4;41551:7;41512:32;:47::i;:::-;-1:-1:-1;;;;;41585:16:0;;41581:183;;41618:45;41655:7;41618:36;:45::i;41581:183::-;41691:4;-1:-1:-1;;;;;41685:10:0;:2;-1:-1:-1;;;;;41685:10:0;;41681:83;;41712:40;41740:2;41744:7;41712:27;:40::i;33003:1053::-;33158:4;-1:-1:-1;;;;;33179:13:0;;8674:20;8722:8;33175:874;;33232:175;;-1:-1:-1;;;33232:175:0;;-1:-1:-1;;;;;33232:36:0;;;;;:175;;16975:10;;33326:4;;33353:7;;33383:5;;33232:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33232:175:0;;;;;;;;-1:-1:-1;;33232:175:0;;;;;;;;;;;;:::i;:::-;;;33211:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33594:13:0;;33590:389;;33637:108;;-1:-1:-1;;;33637:108:0;;;;;;;:::i;33590:389::-;33929:6;33923:13;33914:6;33910:2;33906:15;33899:38;33211:783;-1:-1:-1;;;;;;33471:55:0;-1:-1:-1;;;33471:55:0;;-1:-1:-1;33464:62:0;;33175:874;-1:-1:-1;34033:4:0;33003:1053;;;;;;:::o;29566:321::-;29696:18;29702:2;29706:7;29696:5;:18::i;:::-;29747:54;29778:1;29782:2;29786:7;29795:5;29747:22;:54::i;:::-;29725:154;;;;-1:-1:-1;;;29725:154:0;;;;;;;:::i;43285:1002::-;43565:22;43615:1;43590:22;43607:4;43590:16;:22::i;:::-;:26;;;;:::i;:::-;43627:18;43648:26;;;:17;:26;;;;;;43565:51;;-1:-1:-1;43781:28:0;;;43777:328;;-1:-1:-1;;;;;43848:18:0;;43826:19;43848:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43899:30;;;;;;:44;;;44016:30;;:17;:30;;;;;:43;;;43777:328;-1:-1:-1;44201:26:0;;;;:17;:26;;;;;;;;44194:33;;;-1:-1:-1;;;;;44245:18:0;;;;;:12;:18;;;;;:34;;;;;;;44238:41;43285:1002::o;44582:1079::-;44860:10;:17;44835:22;;44860:21;;44880:1;;44860:21;:::i;:::-;44892:18;44913:24;;;:15;:24;;;;;;45286:10;:26;;44835:46;;-1:-1:-1;44913:24:0;;44835:46;;45286:26;;;;;;:::i;:::-;;;;;;;;;45264:48;;45350:11;45325:10;45336;45325:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45430:28;;;:15;:28;;;;;;;:41;;;45602:24;;;;;45595:31;45637:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44653:1008;;;44582:1079;:::o;42072:221::-;42157:14;42174:20;42191:2;42174:16;:20::i;:::-;-1:-1:-1;;;;;42205:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42250:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42072:221:0:o;30223:382::-;-1:-1:-1;;;;;30303:16:0;;30295:61;;;;-1:-1:-1;;;30295:61:0;;13522:2:1;30295:61:0;;;13504:21:1;;;13541:18;;;13534:30;13600:34;13580:18;;;13573:62;13652:18;;30295:61:0;13320:356:1;30295:61:0;28206:4;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;:30;30367:58;;;;-1:-1:-1;;;30367:58:0;;9680:2:1;30367:58:0;;;9662:21:1;9719:2;9699:18;;;9692:30;9758;9738:18;;;9731:58;9806:18;;30367:58:0;9478:352:1;30367:58:0;30438:45;30467:1;30471:2;30475:7;30438:20;:45::i;:::-;-1:-1:-1;;;;;30496:13:0;;;;;;:9;:13;;;;;:18;;30513:1;;30496:13;:18;;30513:1;;30496:18;:::i;:::-;;;;-1:-1:-1;;30525:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30525:21:0;-1:-1:-1;;;;;30525:21:0;;;;;;;;30564:33;;30525:16;;;30564:33;;30525:16;;30564:33;30223: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:221::-;871:5;924:3;917:4;909:6;905:17;901:27;891:55;;942:1;939;932:12;891:55;964:79;1039:3;1030:6;1017:20;1010:4;1002:6;998:17;964:79;:::i;:::-;955:88;828:221;-1:-1:-1;;;828:221:1:o;1054:186::-;1113:6;1166:2;1154:9;1145:7;1141:23;1137:32;1134:52;;;1182:1;1179;1172:12;1134:52;1205:29;1224:9;1205:29;:::i;1245:260::-;1313:6;1321;1374:2;1362:9;1353:7;1349:23;1345:32;1342:52;;;1390:1;1387;1380:12;1342:52;1413:29;1432:9;1413:29;:::i;:::-;1403:39;;1461:38;1495:2;1484:9;1480:18;1461:38;:::i;:::-;1451:48;;1245:260;;;;;:::o;1510:328::-;1587:6;1595;1603;1656:2;1644:9;1635:7;1631:23;1627:32;1624:52;;;1672:1;1669;1662:12;1624:52;1695:29;1714:9;1695:29;:::i;:::-;1685:39;;1743:38;1777:2;1766:9;1762:18;1743:38;:::i;:::-;1733:48;;1828:2;1817:9;1813:18;1800:32;1790:42;;1510:328;;;;;:::o;1843:666::-;1938:6;1946;1954;1962;2015:3;2003:9;1994:7;1990:23;1986:33;1983:53;;;2032:1;2029;2022:12;1983:53;2055:29;2074:9;2055:29;:::i;:::-;2045:39;;2103:38;2137:2;2126:9;2122:18;2103:38;:::i;:::-;2093:48;;2188:2;2177:9;2173:18;2160:32;2150:42;;2243:2;2232:9;2228:18;2215:32;2270:18;2262:6;2259:30;2256:50;;;2302:1;2299;2292:12;2256:50;2325:22;;2378:4;2370:13;;2366:27;-1:-1:-1;2356:55:1;;2407:1;2404;2397:12;2356:55;2430:73;2495:7;2490:2;2477:16;2472:2;2468;2464:11;2430:73;:::i;:::-;2420:83;;;1843:666;;;;;;;:::o;2514:347::-;2579:6;2587;2640:2;2628:9;2619:7;2615:23;2611:32;2608:52;;;2656:1;2653;2646:12;2608:52;2679:29;2698:9;2679:29;:::i;:::-;2669:39;;2758:2;2747:9;2743:18;2730:32;2805:5;2798:13;2791:21;2784:5;2781:32;2771:60;;2827:1;2824;2817:12;2771:60;2850:5;2840:15;;;2514:347;;;;;:::o;2866:254::-;2934:6;2942;2995:2;2983:9;2974:7;2970:23;2966:32;2963:52;;;3011:1;3008;3001:12;2963:52;3034:29;3053:9;3034:29;:::i;:::-;3024:39;3110:2;3095:18;;;;3082:32;;-1:-1:-1;;;2866:254:1:o;3125:245::-;3183:6;3236:2;3224:9;3215:7;3211:23;3207:32;3204:52;;;3252:1;3249;3242:12;3204:52;3291:9;3278:23;3310:30;3334:5;3310:30;:::i;3375:249::-;3444:6;3497:2;3485:9;3476:7;3472:23;3468:32;3465:52;;;3513:1;3510;3503:12;3465:52;3545:9;3539:16;3564:30;3588:5;3564:30;:::i;3629:322::-;3698:6;3751:2;3739:9;3730:7;3726:23;3722:32;3719:52;;;3767:1;3764;3757:12;3719:52;3807:9;3794:23;3840:18;3832:6;3829:30;3826:50;;;3872:1;3869;3862:12;3826:50;3895;3937:7;3928:6;3917:9;3913:22;3895:50;:::i;3956:1346::-;4120:6;4128;4136;4144;4152;4160;4213:3;4201:9;4192:7;4188:23;4184:33;4181:53;;;4230:1;4227;4220:12;4181:53;4270:9;4257:23;4299:18;4340:2;4332:6;4329:14;4326:34;;;4356:1;4353;4346:12;4326:34;4379:50;4421:7;4412:6;4401:9;4397:22;4379:50;:::i;:::-;4369:60;;4482:2;4471:9;4467:18;4454:32;4438:48;;4511:2;4501:8;4498:16;4495:36;;;4527:1;4524;4517:12;4495:36;4550:52;4594:7;4583:8;4572:9;4568:24;4550:52;:::i;:::-;4540:62;;4655:2;4644:9;4640:18;4627:32;4611:48;;4684:2;4674:8;4671:16;4668:36;;;4700:1;4697;4690:12;4668:36;4723:52;4767:7;4756:8;4745:9;4741:24;4723:52;:::i;:::-;4713:62;;4828:2;4817:9;4813:18;4800:32;4784:48;;4857:2;4847:8;4844:16;4841:36;;;4873:1;4870;4863:12;4841:36;4896:52;4940:7;4929:8;4918:9;4914:24;4896:52;:::i;:::-;4886:62;;5001:3;4990:9;4986:19;4973:33;4957:49;;5031:2;5021:8;5018:16;5015:36;;;5047:1;5044;5037:12;5015:36;5070:52;5114:7;5103:8;5092:9;5088:24;5070:52;:::i;:::-;5060:62;;5175:3;5164:9;5160:19;5147:33;5131:49;;5205:2;5195:8;5192:16;5189:36;;;5221:1;5218;5211:12;5189:36;;5244:52;5288:7;5277:8;5266:9;5262:24;5244:52;:::i;:::-;5234:62;;;3956:1346;;;;;;;;:::o;5307:180::-;5366:6;5419:2;5407:9;5398:7;5394:23;5390:32;5387:52;;;5435:1;5432;5425:12;5387:52;-1:-1:-1;5458:23:1;;5307:180;-1:-1:-1;5307:180:1:o;5492:257::-;5533:3;5571:5;5565:12;5598:6;5593:3;5586:19;5614:63;5670:6;5663:4;5658:3;5654:14;5647:4;5640:5;5636:16;5614:63;:::i;:::-;5731:2;5710:15;-1:-1:-1;;5706:29:1;5697:39;;;;5738:4;5693:50;;5492:257;-1:-1:-1;;5492:257:1:o;5754:185::-;5796:3;5834:5;5828:12;5849:52;5894:6;5889:3;5882:4;5875:5;5871:16;5849:52;:::i;:::-;5917:16;;;;;5754:185;-1:-1:-1;;5754:185:1:o;5944:1174::-;6120:3;6149:1;6182:6;6176:13;6212:3;6234:1;6262:9;6258:2;6254:18;6244:28;;6322:2;6311:9;6307:18;6344;6334:61;;6388:4;6380:6;6376:17;6366:27;;6334:61;6414:2;6462;6454:6;6451:14;6431:18;6428:38;6425:165;;;-1:-1:-1;;;6489:33:1;;6545:4;6542:1;6535:15;6575:4;6496:3;6563:17;6425:165;6606:18;6633:104;;;;6751:1;6746:320;;;;6599:467;;6633:104;-1:-1:-1;;6666:24:1;;6654:37;;6711:16;;;;-1:-1:-1;6633:104:1;;6746:320;17107:1;17100:14;;;17144:4;17131:18;;6841:1;6855:165;6869:6;6866:1;6863:13;6855:165;;;6947:14;;6934:11;;;6927:35;6990:16;;;;6884:10;;6855:165;;;6859:3;;7049:6;7044:3;7040:16;7033:23;;6599:467;;;;;;;7082:30;7108:3;7100:6;7082:30;:::i;:::-;7075:37;5944:1174;-1:-1:-1;;;;;5944:1174:1:o;7331:488::-;-1:-1:-1;;;;;7600:15:1;;;7582:34;;7652:15;;7647:2;7632:18;;7625:43;7699:2;7684:18;;7677:34;;;7747:3;7742:2;7727:18;;7720:31;;;7525:4;;7768:45;;7793:19;;7785:6;7768:45;:::i;:::-;7760:53;7331:488;-1:-1:-1;;;;;;7331:488:1:o;8016:219::-;8165:2;8154:9;8147:21;8128:4;8185:44;8225:2;8214:9;8210:18;8202:6;8185:44;:::i;8652:414::-;8854:2;8836:21;;;8893:2;8873:18;;;8866:30;8932:34;8927:2;8912:18;;8905:62;-1:-1:-1;;;8998:2:1;8983:18;;8976:48;9056:3;9041:19;;8652:414::o;14445:356::-;14647:2;14629:21;;;14666:18;;;14659:30;14725:34;14720:2;14705:18;;14698:62;14792:2;14777:18;;14445:356::o;16021:413::-;16223:2;16205:21;;;16262:2;16242:18;;;16235:30;16301:34;16296:2;16281:18;;16274:62;-1:-1:-1;;;16367:2:1;16352:18;;16345:47;16424:3;16409:19;;16021:413::o;17160:128::-;17200:3;17231:1;17227:6;17224:1;17221:13;17218:39;;;17237:18;;:::i;:::-;-1:-1:-1;17273:9:1;;17160:128::o;17293:120::-;17333:1;17359;17349:35;;17364:18;;:::i;:::-;-1:-1:-1;17398:9:1;;17293:120::o;17418:168::-;17458:7;17524:1;17520;17516:6;17512:14;17509:1;17506:21;17501:1;17494:9;17487:17;17483:45;17480:71;;;17531:18;;:::i;:::-;-1:-1:-1;17571:9:1;;17418:168::o;17591:125::-;17631:4;17659:1;17656;17653:8;17650:34;;;17664:18;;:::i;:::-;-1:-1:-1;17701:9:1;;17591:125::o;17721:258::-;17793:1;17803:113;17817:6;17814:1;17811:13;17803:113;;;17893:11;;;17887:18;17874:11;;;17867:39;17839:2;17832:10;17803:113;;;17934:6;17931:1;17928:13;17925:48;;;-1:-1:-1;;17969:1:1;17951:16;;17944:27;17721:258::o;17984:380::-;18063:1;18059:12;;;;18106;;;18127:61;;18181:4;18173:6;18169:17;18159:27;;18127:61;18234:2;18226:6;18223:14;18203:18;18200:38;18197:161;;;18280:10;18275:3;18271:20;18268:1;18261:31;18315:4;18312:1;18305:15;18343:4;18340:1;18333:15;18197:161;;17984:380;;;:::o;18369:135::-;18408:3;-1:-1:-1;;18429:17:1;;18426:43;;;18449:18;;:::i;:::-;-1:-1:-1;18496:1:1;18485:13;;18369:135::o;18509:112::-;18541:1;18567;18557:35;;18572:18;;:::i;:::-;-1:-1:-1;18606:9:1;;18509:112::o;18626:127::-;18687:10;18682:3;18678:20;18675:1;18668:31;18718:4;18715:1;18708:15;18742:4;18739:1;18732:15;18758:127;18819:10;18814:3;18810:20;18807:1;18800:31;18850:4;18847:1;18840:15;18874:4;18871:1;18864:15;18890:127;18951:10;18946:3;18942:20;18939:1;18932:31;18982:4;18979:1;18972:15;19006:4;19003:1;18996:15;19022:127;19083:10;19078:3;19074:20;19071:1;19064:31;19114:4;19111:1;19104:15;19138:4;19135:1;19128:15;19154:127;19215:10;19210:3;19206:20;19203:1;19196:31;19246:4;19243:1;19236:15;19270:4;19267:1;19260:15;19286:131;-1:-1:-1;;;;;;19360:32:1;;19350:43;;19340:71;;19407:1;19404;19397:12;19340:71;19286:131;:::o

Swarm Source

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