ETH Price: $3,249.49 (+2.09%)
Gas: 2 Gwei

Token

EthermonAvatar (EAVA)
 

Overview

Max Total Supply

602 EAVA

Holders

161

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 EAVA
0x86bf6f44ab961d376da24bdbc58eebd38567d220
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:
EthermonAvatar

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-12
*/

/**
 *Submitted for verification at polygonscan.com on 2022-01-11
 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account)
        external
        view
        returns (bool);

    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    function grantRole(bytes32 role, address account) external;

    function revokeRole(bytes32 role, address account) external;

    function renounceRole(bytes32 role, address account) external;
}

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(
        bytes32 indexed role,
        bytes32 indexed previousAdminRole,
        bytes32 indexed newAdminRole
    );

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account)
        public
        view
        override
        returns (bool)
    {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account)
        public
        virtual
        override
        onlyRole(getRoleAdmin(role))
    {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account)
        public
        virtual
        override
        onlyRole(getRoleAdmin(role))
    {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account)
        public
        virtual
        override
    {
        require(
            account == _msgSender(),
            "AccessControl: can only renounce roles for self"
        );

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. 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 {
        //unchecked {
        counter._value += 1;
        //}
    }

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

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

contract EthermonAvatar is ERC721Enumerable, AccessControl {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    string _baseTokenURI = "https://avatar.ethermon.io/api/v1/token/";

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");

    address public upgradedToAddress = address(0);
    uint256 internal _cap = 10000;

    constructor() ERC721("EthermonAvatar", "EAVA") {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(MINTER_ROLE, _msgSender());
    }

    function upgrade(address _upgradedToAddress) public {
        require(
            hasRole(DEFAULT_ADMIN_ROLE, _msgSender()),
            "Caller is not a admin"
        );

        upgradedToAddress = _upgradedToAddress;
    }

    function getCurrentTokenId() public view returns (uint256) {
        return _tokenIds.current();
    }

    function cap() external view returns (uint256) {
        return _cap;
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721Enumerable, AccessControl)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

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

    function setBaseURI(string memory baseURI) public {
        require(
            hasRole(DEFAULT_ADMIN_ROLE, _msgSender()),
            "Caller is not a admin"
        );
        _baseTokenURI = baseURI;
    }

    function mintNextToken(address _mintTo) external returns (bool) {
        _tokenIds.increment();

        return mint(_mintTo, _tokenIds.current());
    }

    function mint(address _mintTo, uint256 _tokenId) public returns (bool) {
        require(
            address(0) == upgradedToAddress,
            "Contract has been upgraded to a new address"
        );
        require(hasRole(MINTER_ROLE, _msgSender()), "Caller is not a minter");
        require(_mintTo != address(0), "ERC721: mint to the zero address");
        require(!_exists(_tokenId), "ERC721: token already minted");

        require(_tokenId <= _cap, "Cap reached, maximum 10000 mints possible");

        _safeMint(_mintTo, _tokenId);

        return true;
    }
}

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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_mintTo","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_mintTo","type":"address"}],"name":"mintNextToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"_upgradedToAddress","type":"address"}],"name":"upgrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"upgradedToAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60e06040526028608081815290620026bb60a03980516200002991600c91602090910190620001d1565b50600d80546001600160a01b0319169055612710600e553480156200004d57600080fd5b50604080518082018252600e81526d22ba3432b936b7b720bb30ba30b960911b6020808301918252835180850190945260048452634541564160e01b908401528151919291620000a091600091620001d1565b508051620000b6906001906020840190620001d1565b50620000d1915060009050620000cb62000106565b6200010a565b620001007f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620000cb62000106565b620002b4565b3390565b6200011682826200011a565b5050565b620001268282620001a6565b62000116576000828152600a602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200016262000106565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000918252600a602090815260408084206001600160a01b0393909316845291905290205460ff1690565b828054620001df9062000277565b90600052602060002090601f0160209004810192826200020357600085556200024e565b82601f106200021e57805160ff19168380011785556200024e565b828001600101855582156200024e579182015b828111156200024e57825182559160200191906001019062000231565b506200025c92915062000260565b5090565b5b808211156200025c576000815560010162000261565b6002810460018216806200028c57607f821691505b60208210811415620002ae57634e487b7160e01b600052602260045260246000fd5b50919050565b6123f780620002c46000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806355f804b311610104578063a217fddf116100a2578063c87b56dd11610071578063c87b56dd146103bf578063d5391393146103d2578063d547741f146103da578063e985e9c5146103ed576101da565b8063a217fddf14610389578063a22cb46514610391578063b88d4fde146103a4578063c1244e8d146103b7576101da565b806370a08231116100de57806370a08231146103485780637b0067741461035b57806391d148541461036e57806395d89b4114610381576101da565b806355f804b31461031a578063561892361461032d5780636352211e14610335576101da565b8063248a9ca31161017c57806336568abe1161014b57806336568abe146102ce57806340c10f19146102e157806342842e0e146102f45780634f6ccce714610307576101da565b8063248a9ca31461028d5780632f2ff15d146102a05780632f745c59146102b3578063355274ea146102c6576101da565b80630900f010116101b85780630900f0101461023d578063095ea7b31461025257806318160ddd1461026557806323b872dd1461027a576101da565b806301ffc9a7146101df57806306fdde0314610208578063081812fc1461021d575b600080fd5b6101f26101ed366004611a98565b610400565b6040516101ff9190611c37565b60405180910390f35b610210610413565b6040516101ff9190611c4b565b61023061022b366004611a5e565b6104a5565b6040516101ff9190611be6565b61025061024b3660046118fb565b6104f1565b005b610250610260366004611a35565b61053c565b61026d6105d4565b6040516101ff9190611c42565b610250610288366004611947565b6105da565b61026d61029b366004611a5e565b610612565b6102506102ae366004611a76565b610627565b61026d6102c1366004611a35565b61064b565b61026d61069d565b6102506102dc366004611a76565b6106a3565b6101f26102ef366004611a35565b6106e9565b610250610302366004611947565b6107de565b61026d610315366004611a5e565b6107f9565b610250610328366004611ad0565b610854565b61026d610890565b610230610343366004611a5e565b6108a1565b61026d6103563660046118fb565b6108d6565b6101f26103693660046118fb565b61091a565b6101f261037c366004611a76565b610934565b61021061095f565b61026d61096e565b61025061039f3660046119fb565b610973565b6102506103b2366004611982565b610a41565b610230610a80565b6102106103cd366004611a5e565b610a8f565b61026d610b12565b6102506103e8366004611a76565b610b36565b6101f26103fb366004611915565b610b55565b600061040b82610b83565b90505b919050565b606060008054610422906122fc565b80601f016020809104026020016040519081016040528092919081815260200182805461044e906122fc565b801561049b5780601f106104705761010080835404028352916020019161049b565b820191906000526020600020905b81548152906001019060200180831161047e57829003601f168201915b5050505050905090565b60006104b082610ba8565b6104d55760405162461bcd60e51b81526004016104cc90611ffd565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6104fe600061037c610bc5565b61051a5760405162461bcd60e51b81526004016104cc90611c5e565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610547826108a1565b9050806001600160a01b0316836001600160a01b0316141561057b5760405162461bcd60e51b81526004016104cc9061212a565b806001600160a01b031661058d610bc5565b6001600160a01b031614806105a957506105a9816103fb610bc5565b6105c55760405162461bcd60e51b81526004016104cc90611ea8565b6105cf8383610bc9565b505050565b60085490565b6105eb6105e5610bc5565b82610c37565b6106075760405162461bcd60e51b81526004016104cc9061216b565b6105cf838383610cbc565b6000908152600a602052604090206001015490565b61063082610612565b6106418161063c610bc5565b610de9565b6105cf8383610e4d565b6000610656836108d6565b82106106745760405162461bcd60e51b81526004016104cc90611cc2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600e5490565b6106ab610bc5565b6001600160a01b0316816001600160a01b0316146106db5760405162461bcd60e51b81526004016104cc90612208565b6106e58282610ed4565b5050565b600d546000906001600160a01b0316156107155760405162461bcd60e51b81526004016104cc90611e5d565b6107417f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661037c610bc5565b61075d5760405162461bcd60e51b81526004016104cc90611f05565b6001600160a01b0383166107835760405162461bcd60e51b81526004016104cc90611fc8565b61078c82610ba8565b156107a95760405162461bcd60e51b81526004016104cc90611d5f565b600e548211156107cb5760405162461bcd60e51b81526004016104cc90612092565b6107d58383610f59565b50600192915050565b6105cf83838360405180602001604052806000815250610a41565b60006108036105d4565b82106108215760405162461bcd60e51b81526004016104cc906121bc565b6008828154811061084257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610861600061037c610bc5565b61087d5760405162461bcd60e51b81526004016104cc90611c5e565b80516106e590600c9060208401906117db565b600061089c600b610f73565b905090565b6000818152600260205260408120546001600160a01b03168061040b5760405162461bcd60e51b81526004016104cc90611f7f565b60006001600160a01b0382166108fe5760405162461bcd60e51b81526004016104cc90611f35565b506001600160a01b031660009081526003602052604090205490565b6000610926600b610f77565b61040b826102ef600b610f73565b6000918252600a602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060018054610422906122fc565b600081565b61097b610bc5565b6001600160a01b0316826001600160a01b031614156109ac5760405162461bcd60e51b81526004016104cc90611dda565b80600560006109b9610bc5565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556109fd610bc5565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610a359190611c37565b60405180910390a35050565b610a52610a4c610bc5565b83610c37565b610a6e5760405162461bcd60e51b81526004016104cc9061216b565b610a7a84848484610f94565b50505050565b600d546001600160a01b031681565b6060610a9a82610ba8565b610ab65760405162461bcd60e51b81526004016104cc906120db565b6000610ac0610fc7565b90506000815111610ae05760405180602001604052806000815250610b0b565b80610aea84610fd6565b604051602001610afb929190611b42565b6040516020818303038152906040525b9392505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610b3f82610612565b610b4b8161063c610bc5565b6105cf8383610ed4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b03198216637965db0b60e01b148061040b575061040b826110f1565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610bfe826108a1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610c4282610ba8565b610c5e5760405162461bcd60e51b81526004016104cc90611e11565b6000610c69836108a1565b9050806001600160a01b0316846001600160a01b03161480610ca45750836001600160a01b0316610c99846104a5565b6001600160a01b0316145b80610cb45750610cb48185610b55565b949350505050565b826001600160a01b0316610ccf826108a1565b6001600160a01b031614610cf55760405162461bcd60e51b81526004016104cc90612049565b6001600160a01b038216610d1b5760405162461bcd60e51b81526004016104cc90611d96565b610d26838383611116565b610d31600082610bc9565b6001600160a01b0383166000908152600360205260408120805460019290610d5a9084906122a2565b90915550506001600160a01b0382166000908152600360205260408120805460019290610d88908490612257565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610df38282610934565b6106e557610e0b816001600160a01b0316601461119f565b610e1683602061119f565b604051602001610e27929190611b71565b60408051601f198184030181529082905262461bcd60e51b82526104cc91600401611c4b565b610e578282610934565b6106e5576000828152600a602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610e90610bc5565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610ede8282610934565b156106e5576000828152600a602090815260408083206001600160a01b03851684529091529020805460ff19169055610f15610bc5565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6106e5828260405180602001604052806000815250611351565b5490565b6001816000016000828254610f8c9190612257565b909155505050565b610f9f848484610cbc565b610fab84848484611384565b610a7a5760405162461bcd60e51b81526004016104cc90611d0d565b6060600c8054610422906122fc565b606081610ffb57506040805180820190915260018152600360fc1b602082015261040e565b8160005b8115611025578061100f81612337565b915061101e9050600a8361226f565b9150610fff565b60008167ffffffffffffffff81111561104e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611078576020820181803683370190505b5090505b8415610cb45761108d6001836122a2565b915061109a600a86612352565b6110a5906030612257565b60f81b8183815181106110c857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506110ea600a8661226f565b945061107c565b60006001600160e01b0319821663780e9d6360e01b148061040b575061040b8261149f565b6111218383836105cf565b6001600160a01b03831661113d57611138816114df565b611160565b816001600160a01b0316836001600160a01b031614611160576111608382611523565b6001600160a01b03821661117c57611177816115c0565b6105cf565b826001600160a01b0316826001600160a01b0316146105cf576105cf8282611699565b606060006111ae836002612283565b6111b9906002612257565b67ffffffffffffffff8111156111df57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611209576020820181803683370190505b509050600360fc1b8160008151811061123257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061126f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611293846002612283565b61129e906001612257565b90505b6001811115611332576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106112e057634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061130457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9361132b816122e5565b90506112a1565b508315610b0b5760405162461bcd60e51b81526004016104cc90611c8d565b61135b83836116dd565b6113686000848484611384565b6105cf5760405162461bcd60e51b81526004016104cc90611d0d565b6000611398846001600160a01b03166117bc565b1561149457836001600160a01b031663150b7a026113b4610bc5565b8786866040518563ffffffff1660e01b81526004016113d69493929190611bfa565b602060405180830381600087803b1580156113f057600080fd5b505af1925050508015611420575060408051601f3d908101601f1916820190925261141d91810190611ab4565b60015b61147a573d80801561144e576040519150601f19603f3d011682016040523d82523d6000602084013e611453565b606091505b5080516114725760405162461bcd60e51b81526004016104cc90611d0d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610cb4565b506001949350505050565b60006001600160e01b031982166380ac58cd60e01b14806114d057506001600160e01b03198216635b5e139f60e01b145b8061040b575061040b826117c2565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611530846108d6565b61153a91906122a2565b60008381526007602052604090205490915080821461158d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906115d2906001906122a2565b6000838152600960205260408120546008805493945090928490811061160857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061163757634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061167d57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006116a4836108d6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166117035760405162461bcd60e51b81526004016104cc90611fc8565b61170c81610ba8565b156117295760405162461bcd60e51b81526004016104cc90611d5f565b61173560008383611116565b6001600160a01b038216600090815260036020526040812080546001929061175e908490612257565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b6001600160e01b031981166301ffc9a760e01b14919050565b8280546117e7906122fc565b90600052602060002090601f016020900481019282611809576000855561184f565b82601f1061182257805160ff191683800117855561184f565b8280016001018555821561184f579182015b8281111561184f578251825591602001919060010190611834565b5061185b92915061185f565b5090565b5b8082111561185b5760008155600101611860565b600067ffffffffffffffff8084111561188f5761188f612392565b604051601f8501601f1916810160200182811182821017156118b3576118b3612392565b6040528481529150818385018610156118cb57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461040e57600080fd5b60006020828403121561190c578081fd5b610b0b826118e4565b60008060408385031215611927578081fd5b611930836118e4565b915061193e602084016118e4565b90509250929050565b60008060006060848603121561195b578081fd5b611964846118e4565b9250611972602085016118e4565b9150604084013590509250925092565b60008060008060808587031215611997578081fd5b6119a0856118e4565b93506119ae602086016118e4565b925060408501359150606085013567ffffffffffffffff8111156119d0578182fd5b8501601f810187136119e0578182fd5b6119ef87823560208401611874565b91505092959194509250565b60008060408385031215611a0d578182fd5b611a16836118e4565b915060208301358015158114611a2a578182fd5b809150509250929050565b60008060408385031215611a47578182fd5b611a50836118e4565b946020939093013593505050565b600060208284031215611a6f578081fd5b5035919050565b60008060408385031215611a88578182fd5b8235915061193e602084016118e4565b600060208284031215611aa9578081fd5b8135610b0b816123a8565b600060208284031215611ac5578081fd5b8151610b0b816123a8565b600060208284031215611ae1578081fd5b813567ffffffffffffffff811115611af7578182fd5b8201601f81018413611b07578182fd5b610cb484823560208401611874565b60008151808452611b2e8160208601602086016122b9565b601f01601f19169290920160200192915050565b60008351611b548184602088016122b9565b835190830190611b688183602088016122b9565b01949350505050565b60007f416363657373436f6e74726f6c3a206163636f756e742000000000000000000082528351611ba98160178501602088016122b9565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611bda8160288401602088016122b9565b01602801949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c2d90830184611b16565b9695505050505050565b901515815260200190565b90815260200190565b600060208252610b0b6020830184611b16565b60208082526015908201527421b0b63632b91034b9903737ba10309030b236b4b760591b604082015260600190565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602b908201527f436f6e747261637420686173206265656e20757067726164656420746f20612060408201526a6e6577206164647265737360a81b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526016908201527521b0b63632b91034b9903737ba10309036b4b73a32b960511b604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526029908201527f43617020726561636865642c206d6178696d756d203130303030206d696e747360408201526820706f737369626c6560b81b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6000821982111561226a5761226a612366565b500190565b60008261227e5761227e61237c565b500490565b600081600019048311821515161561229d5761229d612366565b500290565b6000828210156122b4576122b4612366565b500390565b60005b838110156122d45781810151838201526020016122bc565b83811115610a7a5750506000910152565b6000816122f4576122f4612366565b506000190190565b60028104600182168061231057607f821691505b6020821081141561233157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561234b5761234b612366565b5060010190565b6000826123615761236161237c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146123be57600080fd5b5056fea2646970667358221220894de5bfd433117d211ed8cfa56051cec1eeee8342537027a10a68f8b973a3dc64736f6c6343000800003368747470733a2f2f6176617461722e65746865726d6f6e2e696f2f6170692f76312f746f6b656e2f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806355f804b311610104578063a217fddf116100a2578063c87b56dd11610071578063c87b56dd146103bf578063d5391393146103d2578063d547741f146103da578063e985e9c5146103ed576101da565b8063a217fddf14610389578063a22cb46514610391578063b88d4fde146103a4578063c1244e8d146103b7576101da565b806370a08231116100de57806370a08231146103485780637b0067741461035b57806391d148541461036e57806395d89b4114610381576101da565b806355f804b31461031a578063561892361461032d5780636352211e14610335576101da565b8063248a9ca31161017c57806336568abe1161014b57806336568abe146102ce57806340c10f19146102e157806342842e0e146102f45780634f6ccce714610307576101da565b8063248a9ca31461028d5780632f2ff15d146102a05780632f745c59146102b3578063355274ea146102c6576101da565b80630900f010116101b85780630900f0101461023d578063095ea7b31461025257806318160ddd1461026557806323b872dd1461027a576101da565b806301ffc9a7146101df57806306fdde0314610208578063081812fc1461021d575b600080fd5b6101f26101ed366004611a98565b610400565b6040516101ff9190611c37565b60405180910390f35b610210610413565b6040516101ff9190611c4b565b61023061022b366004611a5e565b6104a5565b6040516101ff9190611be6565b61025061024b3660046118fb565b6104f1565b005b610250610260366004611a35565b61053c565b61026d6105d4565b6040516101ff9190611c42565b610250610288366004611947565b6105da565b61026d61029b366004611a5e565b610612565b6102506102ae366004611a76565b610627565b61026d6102c1366004611a35565b61064b565b61026d61069d565b6102506102dc366004611a76565b6106a3565b6101f26102ef366004611a35565b6106e9565b610250610302366004611947565b6107de565b61026d610315366004611a5e565b6107f9565b610250610328366004611ad0565b610854565b61026d610890565b610230610343366004611a5e565b6108a1565b61026d6103563660046118fb565b6108d6565b6101f26103693660046118fb565b61091a565b6101f261037c366004611a76565b610934565b61021061095f565b61026d61096e565b61025061039f3660046119fb565b610973565b6102506103b2366004611982565b610a41565b610230610a80565b6102106103cd366004611a5e565b610a8f565b61026d610b12565b6102506103e8366004611a76565b610b36565b6101f26103fb366004611915565b610b55565b600061040b82610b83565b90505b919050565b606060008054610422906122fc565b80601f016020809104026020016040519081016040528092919081815260200182805461044e906122fc565b801561049b5780601f106104705761010080835404028352916020019161049b565b820191906000526020600020905b81548152906001019060200180831161047e57829003601f168201915b5050505050905090565b60006104b082610ba8565b6104d55760405162461bcd60e51b81526004016104cc90611ffd565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6104fe600061037c610bc5565b61051a5760405162461bcd60e51b81526004016104cc90611c5e565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610547826108a1565b9050806001600160a01b0316836001600160a01b0316141561057b5760405162461bcd60e51b81526004016104cc9061212a565b806001600160a01b031661058d610bc5565b6001600160a01b031614806105a957506105a9816103fb610bc5565b6105c55760405162461bcd60e51b81526004016104cc90611ea8565b6105cf8383610bc9565b505050565b60085490565b6105eb6105e5610bc5565b82610c37565b6106075760405162461bcd60e51b81526004016104cc9061216b565b6105cf838383610cbc565b6000908152600a602052604090206001015490565b61063082610612565b6106418161063c610bc5565b610de9565b6105cf8383610e4d565b6000610656836108d6565b82106106745760405162461bcd60e51b81526004016104cc90611cc2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600e5490565b6106ab610bc5565b6001600160a01b0316816001600160a01b0316146106db5760405162461bcd60e51b81526004016104cc90612208565b6106e58282610ed4565b5050565b600d546000906001600160a01b0316156107155760405162461bcd60e51b81526004016104cc90611e5d565b6107417f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661037c610bc5565b61075d5760405162461bcd60e51b81526004016104cc90611f05565b6001600160a01b0383166107835760405162461bcd60e51b81526004016104cc90611fc8565b61078c82610ba8565b156107a95760405162461bcd60e51b81526004016104cc90611d5f565b600e548211156107cb5760405162461bcd60e51b81526004016104cc90612092565b6107d58383610f59565b50600192915050565b6105cf83838360405180602001604052806000815250610a41565b60006108036105d4565b82106108215760405162461bcd60e51b81526004016104cc906121bc565b6008828154811061084257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610861600061037c610bc5565b61087d5760405162461bcd60e51b81526004016104cc90611c5e565b80516106e590600c9060208401906117db565b600061089c600b610f73565b905090565b6000818152600260205260408120546001600160a01b03168061040b5760405162461bcd60e51b81526004016104cc90611f7f565b60006001600160a01b0382166108fe5760405162461bcd60e51b81526004016104cc90611f35565b506001600160a01b031660009081526003602052604090205490565b6000610926600b610f77565b61040b826102ef600b610f73565b6000918252600a602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060018054610422906122fc565b600081565b61097b610bc5565b6001600160a01b0316826001600160a01b031614156109ac5760405162461bcd60e51b81526004016104cc90611dda565b80600560006109b9610bc5565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556109fd610bc5565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610a359190611c37565b60405180910390a35050565b610a52610a4c610bc5565b83610c37565b610a6e5760405162461bcd60e51b81526004016104cc9061216b565b610a7a84848484610f94565b50505050565b600d546001600160a01b031681565b6060610a9a82610ba8565b610ab65760405162461bcd60e51b81526004016104cc906120db565b6000610ac0610fc7565b90506000815111610ae05760405180602001604052806000815250610b0b565b80610aea84610fd6565b604051602001610afb929190611b42565b6040516020818303038152906040525b9392505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610b3f82610612565b610b4b8161063c610bc5565b6105cf8383610ed4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b03198216637965db0b60e01b148061040b575061040b826110f1565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610bfe826108a1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610c4282610ba8565b610c5e5760405162461bcd60e51b81526004016104cc90611e11565b6000610c69836108a1565b9050806001600160a01b0316846001600160a01b03161480610ca45750836001600160a01b0316610c99846104a5565b6001600160a01b0316145b80610cb45750610cb48185610b55565b949350505050565b826001600160a01b0316610ccf826108a1565b6001600160a01b031614610cf55760405162461bcd60e51b81526004016104cc90612049565b6001600160a01b038216610d1b5760405162461bcd60e51b81526004016104cc90611d96565b610d26838383611116565b610d31600082610bc9565b6001600160a01b0383166000908152600360205260408120805460019290610d5a9084906122a2565b90915550506001600160a01b0382166000908152600360205260408120805460019290610d88908490612257565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610df38282610934565b6106e557610e0b816001600160a01b0316601461119f565b610e1683602061119f565b604051602001610e27929190611b71565b60408051601f198184030181529082905262461bcd60e51b82526104cc91600401611c4b565b610e578282610934565b6106e5576000828152600a602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610e90610bc5565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610ede8282610934565b156106e5576000828152600a602090815260408083206001600160a01b03851684529091529020805460ff19169055610f15610bc5565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6106e5828260405180602001604052806000815250611351565b5490565b6001816000016000828254610f8c9190612257565b909155505050565b610f9f848484610cbc565b610fab84848484611384565b610a7a5760405162461bcd60e51b81526004016104cc90611d0d565b6060600c8054610422906122fc565b606081610ffb57506040805180820190915260018152600360fc1b602082015261040e565b8160005b8115611025578061100f81612337565b915061101e9050600a8361226f565b9150610fff565b60008167ffffffffffffffff81111561104e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611078576020820181803683370190505b5090505b8415610cb45761108d6001836122a2565b915061109a600a86612352565b6110a5906030612257565b60f81b8183815181106110c857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506110ea600a8661226f565b945061107c565b60006001600160e01b0319821663780e9d6360e01b148061040b575061040b8261149f565b6111218383836105cf565b6001600160a01b03831661113d57611138816114df565b611160565b816001600160a01b0316836001600160a01b031614611160576111608382611523565b6001600160a01b03821661117c57611177816115c0565b6105cf565b826001600160a01b0316826001600160a01b0316146105cf576105cf8282611699565b606060006111ae836002612283565b6111b9906002612257565b67ffffffffffffffff8111156111df57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611209576020820181803683370190505b509050600360fc1b8160008151811061123257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061126f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611293846002612283565b61129e906001612257565b90505b6001811115611332576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106112e057634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061130457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9361132b816122e5565b90506112a1565b508315610b0b5760405162461bcd60e51b81526004016104cc90611c8d565b61135b83836116dd565b6113686000848484611384565b6105cf5760405162461bcd60e51b81526004016104cc90611d0d565b6000611398846001600160a01b03166117bc565b1561149457836001600160a01b031663150b7a026113b4610bc5565b8786866040518563ffffffff1660e01b81526004016113d69493929190611bfa565b602060405180830381600087803b1580156113f057600080fd5b505af1925050508015611420575060408051601f3d908101601f1916820190925261141d91810190611ab4565b60015b61147a573d80801561144e576040519150601f19603f3d011682016040523d82523d6000602084013e611453565b606091505b5080516114725760405162461bcd60e51b81526004016104cc90611d0d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610cb4565b506001949350505050565b60006001600160e01b031982166380ac58cd60e01b14806114d057506001600160e01b03198216635b5e139f60e01b145b8061040b575061040b826117c2565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611530846108d6565b61153a91906122a2565b60008381526007602052604090205490915080821461158d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906115d2906001906122a2565b6000838152600960205260408120546008805493945090928490811061160857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061163757634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061167d57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006116a4836108d6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166117035760405162461bcd60e51b81526004016104cc90611fc8565b61170c81610ba8565b156117295760405162461bcd60e51b81526004016104cc90611d5f565b61173560008383611116565b6001600160a01b038216600090815260036020526040812080546001929061175e908490612257565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b6001600160e01b031981166301ffc9a760e01b14919050565b8280546117e7906122fc565b90600052602060002090601f016020900481019282611809576000855561184f565b82601f1061182257805160ff191683800117855561184f565b8280016001018555821561184f579182015b8281111561184f578251825591602001919060010190611834565b5061185b92915061185f565b5090565b5b8082111561185b5760008155600101611860565b600067ffffffffffffffff8084111561188f5761188f612392565b604051601f8501601f1916810160200182811182821017156118b3576118b3612392565b6040528481529150818385018610156118cb57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461040e57600080fd5b60006020828403121561190c578081fd5b610b0b826118e4565b60008060408385031215611927578081fd5b611930836118e4565b915061193e602084016118e4565b90509250929050565b60008060006060848603121561195b578081fd5b611964846118e4565b9250611972602085016118e4565b9150604084013590509250925092565b60008060008060808587031215611997578081fd5b6119a0856118e4565b93506119ae602086016118e4565b925060408501359150606085013567ffffffffffffffff8111156119d0578182fd5b8501601f810187136119e0578182fd5b6119ef87823560208401611874565b91505092959194509250565b60008060408385031215611a0d578182fd5b611a16836118e4565b915060208301358015158114611a2a578182fd5b809150509250929050565b60008060408385031215611a47578182fd5b611a50836118e4565b946020939093013593505050565b600060208284031215611a6f578081fd5b5035919050565b60008060408385031215611a88578182fd5b8235915061193e602084016118e4565b600060208284031215611aa9578081fd5b8135610b0b816123a8565b600060208284031215611ac5578081fd5b8151610b0b816123a8565b600060208284031215611ae1578081fd5b813567ffffffffffffffff811115611af7578182fd5b8201601f81018413611b07578182fd5b610cb484823560208401611874565b60008151808452611b2e8160208601602086016122b9565b601f01601f19169290920160200192915050565b60008351611b548184602088016122b9565b835190830190611b688183602088016122b9565b01949350505050565b60007f416363657373436f6e74726f6c3a206163636f756e742000000000000000000082528351611ba98160178501602088016122b9565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611bda8160288401602088016122b9565b01602801949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c2d90830184611b16565b9695505050505050565b901515815260200190565b90815260200190565b600060208252610b0b6020830184611b16565b60208082526015908201527421b0b63632b91034b9903737ba10309030b236b4b760591b604082015260600190565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602b908201527f436f6e747261637420686173206265656e20757067726164656420746f20612060408201526a6e6577206164647265737360a81b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526016908201527521b0b63632b91034b9903737ba10309036b4b73a32b960511b604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526029908201527f43617020726561636865642c206d6178696d756d203130303030206d696e747360408201526820706f737369626c6560b81b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6000821982111561226a5761226a612366565b500190565b60008261227e5761227e61237c565b500490565b600081600019048311821515161561229d5761229d612366565b500290565b6000828210156122b4576122b4612366565b500390565b60005b838110156122d45781810151838201526020016122bc565b83811115610a7a5750506000910152565b6000816122f4576122f4612366565b506000190190565b60028104600182168061231057607f821691505b6020821081141561233157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561234b5761234b612366565b5060010190565b6000826123615761236161237c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146123be57600080fd5b5056fea2646970667358221220894de5bfd433117d211ed8cfa56051cec1eeee8342537027a10a68f8b973a3dc64736f6c63430008000033

Deployed Bytecode Sourcemap

51924:2338:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52915:236;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21572:100;;;:::i;:::-;;;;;;;:::i;23265:308::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;52476:234::-;;;;;;:::i;:::-;;:::i;:::-;;22788:411;;;;;;:::i;:::-;;:::i;36010:113::-;;;:::i;:::-;;;;;;;:::i;24324:376::-;;;;;;:::i;:::-;;:::i;47294:123::-;;;;;;:::i;:::-;;:::i;47679:188::-;;;;;;:::i;:::-;;:::i;35591:343::-;;;;;;:::i;:::-;;:::i;52830:77::-;;;:::i;48809:287::-;;;;;;:::i;:::-;;:::i;53670:589::-;;;;;;:::i;:::-;;:::i;24771:185::-;;;;;;:::i;:::-;;:::i;36200:320::-;;;;;;:::i;:::-;;:::i;53281:215::-;;;;;;:::i;:::-;;:::i;52718:104::-;;;:::i;21179:326::-;;;;;;:::i;:::-;;:::i;20822:295::-;;;;;;:::i;:::-;;:::i;53504:158::-;;;;;;:::i;:::-;;:::i;46138:180::-;;;;;;:::i;:::-;;:::i;21741:104::-;;;:::i;43938:49::-;;;:::i;23645:327::-;;;;;;:::i;:::-;;:::i;25027:365::-;;;;;;:::i;:::-;;:::i;52220:45::-;;;:::i;21916:468::-;;;;;;:::i;:::-;;:::i;52149:62::-;;;:::i;48112:190::-;;;;;;:::i;:::-;;:::i;24043:214::-;;;;;;:::i;:::-;;:::i;52915:236::-;53078:4;53107:36;53131:11;53107:23;:36::i;:::-;53100:43;;52915:236;;;;:::o;21572:100::-;21626:13;21659:5;21652:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21572:100;:::o;23265:308::-;23386:7;23433:16;23441:7;23433;:16::i;:::-;23411:110;;;;-1:-1:-1;;;23411:110:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;23541:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23541:24:0;;23265:308::o;52476:234::-;52561:41;43983:4;52589:12;:10;:12::i;52561:41::-;52539:112;;;;-1:-1:-1;;;52539:112:0;;;;;;;:::i;:::-;52664:17;:38;;-1:-1:-1;;;;;;52664:38:0;-1:-1:-1;;;;;52664:38:0;;;;;;;;;;52476:234::o;22788:411::-;22869:13;22885:23;22900:7;22885:14;:23::i;:::-;22869:39;;22933:5;-1:-1:-1;;;;;22927:11:0;:2;-1:-1:-1;;;;;22927:11:0;;;22919:57;;;;-1:-1:-1;;;22919:57:0;;;;;;;:::i;:::-;23027:5;-1:-1:-1;;;;;23011:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;23011:21:0;;:62;;;;23036:37;23053:5;23060:12;:10;:12::i;23036:37::-;22989:168;;;;-1:-1:-1;;;22989:168:0;;;;;;;:::i;:::-;23170:21;23179:2;23183:7;23170:8;:21::i;:::-;22788:411;;;:::o;36010:113::-;36098:10;:17;36010:113;:::o;24324:376::-;24533:41;24552:12;:10;:12::i;:::-;24566:7;24533:18;:41::i;:::-;24511:140;;;;-1:-1:-1;;;24511:140:0;;;;;;;:::i;:::-;24664:28;24674:4;24680:2;24684:7;24664:9;:28::i;47294:123::-;47360:7;47387:12;;;:6;:12;;;;;:22;;;;47294:123::o;47679:188::-;47798:18;47811:4;47798:12;:18::i;:::-;45644:30;45655:4;45661:12;:10;:12::i;:::-;45644:10;:30::i;:::-;47834:25:::1;47845:4;47851:7;47834:10;:25::i;35591:343::-:0;35733:7;35788:23;35805:5;35788:16;:23::i;:::-;35780:5;:31;35758:124;;;;-1:-1:-1;;;35758:124:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;35900:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35591:343::o;52830:77::-;52895:4;;52830:77;:::o;48809:287::-;48962:12;:10;:12::i;:::-;-1:-1:-1;;;;;48951:23:0;:7;-1:-1:-1;;;;;48951:23:0;;48929:120;;;;-1:-1:-1;;;48929:120:0;;;;;;;:::i;:::-;49062:26;49074:4;49080:7;49062:11;:26::i;:::-;48809:287;;:::o;53670:589::-;53788:17;;53735:4;;-1:-1:-1;;;;;53788:17:0;53774:31;53752:124;;;;-1:-1:-1;;;53752:124:0;;;;;;;:::i;:::-;53895:34;52187:24;53916:12;:10;:12::i;53895:34::-;53887:69;;;;-1:-1:-1;;;53887:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;53975:21:0;;53967:66;;;;-1:-1:-1;;;53967:66:0;;;;;;;:::i;:::-;54053:17;54061:8;54053:7;:17::i;:::-;54052:18;54044:59;;;;-1:-1:-1;;;54044:59:0;;;;;;;:::i;:::-;54136:4;;54124:8;:16;;54116:70;;;;-1:-1:-1;;;54116:70:0;;;;;;;:::i;:::-;54199:28;54209:7;54218:8;54199:9;:28::i;:::-;-1:-1:-1;54247:4:0;53670:589;;;;:::o;24771:185::-;24909:39;24926:4;24932:2;24936:7;24909:39;;;;;;;;;;;;:16;:39::i;36200:320::-;36320:7;36375:30;:28;:30::i;:::-;36367:5;:38;36345:132;;;;-1:-1:-1;;;36345:132:0;;;;;;;:::i;:::-;36495:10;36506:5;36495:17;;;;;;-1:-1:-1;;;36495:17:0;;;;;;;;;;;;;;;;;36488:24;;36200:320;;;:::o;53281:215::-;53364:41;43983:4;53392:12;:10;:12::i;53364:41::-;53342:112;;;;-1:-1:-1;;;53342:112:0;;;;;;;:::i;:::-;53465:23;;;;:13;;:23;;;;;:::i;52718:104::-;52768:7;52795:19;:9;:17;:19::i;:::-;52788:26;;52718:104;:::o;21179:326::-;21296:7;21337:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21337:16:0;21386:19;21364:110;;;;-1:-1:-1;;;21364:110:0;;;;;;;:::i;20822:295::-;20939:7;-1:-1:-1;;;;;20986:19:0;;20964:111;;;;-1:-1:-1;;;20964:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;21093:16:0;;;;;:9;:16;;;;;;;20822:295::o;53504:158::-;53562:4;53579:21;:9;:19;:21::i;:::-;53620:34;53625:7;53634:19;:9;:17;:19::i;46138:180::-;46252:4;46281:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;46281:29:0;;;;;;;;;;;;;;;46138:180::o;21741:104::-;21797:13;21830:7;21823:14;;;;;:::i;43938:49::-;43983:4;43938:49;:::o;23645:327::-;23792:12;:10;:12::i;:::-;-1:-1:-1;;;;;23780:24:0;:8;-1:-1:-1;;;;;23780:24:0;;;23772:62;;;;-1:-1:-1;;;23772:62:0;;;;;;;:::i;:::-;23892:8;23847:18;:32;23866:12;:10;:12::i;:::-;-1:-1:-1;;;;;23847:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23847:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23847:53:0;;;;;;;;;;;23931:12;:10;:12::i;:::-;-1:-1:-1;;;;;23916:48:0;;23955:8;23916:48;;;;;;:::i;:::-;;;;;;;;23645:327;;:::o;25027:365::-;25216:41;25235:12;:10;:12::i;:::-;25249:7;25216:18;:41::i;:::-;25194:140;;;;-1:-1:-1;;;25194:140:0;;;;;;;:::i;:::-;25345:39;25359:4;25365:2;25369:7;25378:5;25345:13;:39::i;:::-;25027:365;;;;:::o;52220:45::-;;;-1:-1:-1;;;;;52220:45:0;;:::o;21916:468::-;22034:13;22087:16;22095:7;22087;:16::i;:::-;22065:113;;;;-1:-1:-1;;;22065:113:0;;;;;;;:::i;:::-;22191:21;22215:10;:8;:10::i;:::-;22191:34;;22280:1;22262:7;22256:21;:25;:120;;;;;;;;;;;;;;;;;22325:7;22334:18;:7;:16;:18::i;:::-;22308:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22256:120;22236:140;21916:468;-1:-1:-1;;;21916:468:0:o;52149:62::-;52187:24;52149:62;:::o;48112:190::-;48232:18;48245:4;48232:12;:18::i;:::-;45644:30;45655:4;45661:12;:10;:12::i;45644:30::-;48268:26:::1;48280:4;48286:7;48268:11;:26::i;24043:214::-:0;-1:-1:-1;;;;;24214:25:0;;;24185:4;24214:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24043:214::o;45766:280::-;45896:4;-1:-1:-1;;;;;;45938:47:0;;-1:-1:-1;;;45938:47:0;;:100;;;46002:36;46026:11;46002:23;:36::i;26939:127::-;27004:4;27028:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27028:16:0;:30;;;26939:127::o;16033:98::-;16113:10;16033:98;:::o;31062:174::-;31137:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31137:29:0;-1:-1:-1;;;;;31137:29:0;;;;;;;;:24;;31191:23;31137:24;31191:14;:23::i;:::-;-1:-1:-1;;;;;31182:46:0;;;;;;;;;;;31062:174;;:::o;27233:452::-;27362:4;27406:16;27414:7;27406;:16::i;:::-;27384:110;;;;-1:-1:-1;;;27384:110:0;;;;;;;:::i;:::-;27505:13;27521:23;27536:7;27521:14;:23::i;:::-;27505:39;;27574:5;-1:-1:-1;;;;;27563:16:0;:7;-1:-1:-1;;;;;27563:16:0;;:64;;;;27620:7;-1:-1:-1;;;;;27596:31:0;:20;27608:7;27596:11;:20::i;:::-;-1:-1:-1;;;;;27596:31:0;;27563:64;:113;;;;27644:32;27661:5;27668:7;27644:16;:32::i;:::-;27555:122;27233:452;-1:-1:-1;;;;27233:452:0:o;30329:615::-;30502:4;-1:-1:-1;;;;;30475:31:0;:23;30490:7;30475:14;:23::i;:::-;-1:-1:-1;;;;;30475:31:0;;30453:122;;;;-1:-1:-1;;;30453:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30594:16:0;;30586:65;;;;-1:-1:-1;;;30586:65:0;;;;;;;:::i;:::-;30664:39;30685:4;30691:2;30695:7;30664:20;:39::i;:::-;30768:29;30785:1;30789:7;30768:8;:29::i;:::-;-1:-1:-1;;;;;30810:15:0;;;;;;:9;:15;;;;;:20;;30829:1;;30810:15;:20;;30829:1;;30810:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30841:13:0;;;;;;:9;:13;;;;;:18;;30858:1;;30841:13;:18;;30858:1;;30841:18;:::i;:::-;;;;-1:-1:-1;;30870:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30870:21:0;-1:-1:-1;;;;;30870:21:0;;;;;;;;;30909:27;;30870:16;;30909:27;;;;;;;30329:615;;;:::o;46608:497::-;46689:22;46697:4;46703:7;46689;:22::i;:::-;46684:414;;46877:41;46905:7;-1:-1:-1;;;;;46877:41:0;46915:2;46877:19;:41::i;:::-;46991:38;47019:4;47026:2;46991:19;:38::i;:::-;46782:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;46782:270:0;;;;;;;;;;-1:-1:-1;;;46728:358:0;;;;;;;:::i;50126:229::-;50201:22;50209:4;50215:7;50201;:22::i;:::-;50196:152;;50240:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;50240:29:0;;;;;;;;;:36;;-1:-1:-1;;50240:36:0;50272:4;50240:36;;;50323:12;:10;:12::i;:::-;-1:-1:-1;;;;;50296:40:0;50314:7;-1:-1:-1;;;;;50296:40:0;50308:4;50296:40;;;;;;;;;;50126:229;;:::o;50363:230::-;50438:22;50446:4;50452:7;50438;:22::i;:::-;50434:152;;;50509:5;50477:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;50477:29:0;;;;;;;;;:37;;-1:-1:-1;;50477:37:0;;;50561:12;:10;:12::i;:::-;-1:-1:-1;;;;;50534:40:0;50552:7;-1:-1:-1;;;;;50534:40:0;50546:4;50534:40;;;;;;;;;;50363:230;;:::o;28027:110::-;28103:26;28113:2;28117:7;28103:26;;;;;;;;;;;;:9;:26::i;51331:114::-;51423:14;;51331:114::o;51453:127::-;51558:1;51540:7;:14;;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;;51453:127:0:o;26274:352::-;26431:28;26441:4;26447:2;26451:7;26431:9;:28::i;:::-;26492:48;26515:4;26521:2;26525:7;26534:5;26492:22;:48::i;:::-;26470:148;;;;-1:-1:-1;;;26470:148:0;;;;;;;:::i;53159:114::-;53219:13;53252;53245:20;;;;;:::i;16473:723::-;16529:13;16750:10;16746:53;;-1:-1:-1;16777:10:0;;;;;;;;;;;;-1:-1:-1;;;16777:10:0;;;;;;16746:53;16824:5;16809:12;16865:78;16872:9;;16865:78;;16898:8;;;;:::i;:::-;;-1:-1:-1;16921:10:0;;-1:-1:-1;16929:2:0;16921:10;;:::i;:::-;;;16865:78;;;16953:19;16985:6;16975:17;;;;;;-1:-1:-1;;;16975:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16975:17:0;;16953:39;;17003:154;17010:10;;17003:154;;17037:11;17047:1;17037:11;;:::i;:::-;;-1:-1:-1;17106:10:0;17114:2;17106:5;:10;:::i;:::-;17093:24;;:2;:24;:::i;:::-;17080:39;;17063:6;17070;17063:14;;;;;;-1:-1:-1;;;17063:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17063:56:0;;;;;;;;-1:-1:-1;17134:11:0;17143:2;17134:11;;:::i;:::-;;;17003:154;;35207:300;35354:4;-1:-1:-1;;;;;;35396:50:0;;-1:-1:-1;;;35396:50:0;;:103;;;35463:36;35487:11;35463:23;:36::i;37133:589::-;37277:45;37304:4;37310:2;37314:7;37277:26;:45::i;:::-;-1:-1:-1;;;;;37339:18:0;;37335:187;;37374:40;37406:7;37374:31;:40::i;:::-;37335:187;;;37444:2;-1:-1:-1;;;;;37436:10:0;:4;-1:-1:-1;;;;;37436:10:0;;37432:90;;37463:47;37496:4;37502:7;37463:32;:47::i;:::-;-1:-1:-1;;;;;37536:16:0;;37532:183;;37569:45;37606:7;37569:36;:45::i;:::-;37532:183;;;37642:4;-1:-1:-1;;;;;37636:10:0;:2;-1:-1:-1;;;;;37636:10:0;;37632:83;;37663:40;37691:2;37695:7;37663:27;:40::i;17774:483::-;17876:13;17907:19;17939:10;17943:6;17939:1;:10;:::i;:::-;:14;;17952:1;17939:14;:::i;:::-;17929:25;;;;;;-1:-1:-1;;;17929:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17929:25:0;;17907:47;;-1:-1:-1;;;17965:6:0;17972:1;17965:9;;;;;;-1:-1:-1;;;17965:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;17965:15:0;;;;;;;;;-1:-1:-1;;;17991:6:0;17998:1;17991:9;;;;;;-1:-1:-1;;;17991:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;17991:15:0;;;;;;;;-1:-1:-1;18022:9:0;18034:10;18038:6;18034:1;:10;:::i;:::-;:14;;18047:1;18034:14;:::i;:::-;18022:26;;18017:135;18054:1;18050;:5;18017:135;;;-1:-1:-1;;;18102:5:0;18110:3;18102:11;18089:25;;;;;-1:-1:-1;;;18089:25:0;;;;;;;;;;;;18077:6;18084:1;18077:9;;;;;;-1:-1:-1;;;18077:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;18077:37:0;;;;;;;;-1:-1:-1;18139:1:0;18129:11;;;;;18057:3;;;:::i;:::-;;;18017:135;;;-1:-1:-1;18170:10:0;;18162:55;;;;-1:-1:-1;;;18162:55:0;;;;;;;:::i;28364:321::-;28494:18;28500:2;28504:7;28494:5;:18::i;:::-;28545:54;28576:1;28580:2;28584:7;28593:5;28545:22;:54::i;:::-;28523:154;;;;-1:-1:-1;;;28523:154:0;;;;;;;:::i;31801:984::-;31956:4;31977:15;:2;-1:-1:-1;;;;;31977:13:0;;:15::i;:::-;31973:805;;;32046:2;-1:-1:-1;;;;;32030:36:0;;32089:12;:10;:12::i;:::-;32124:4;32151:7;32181:5;32030:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32030:175:0;;;;;;;;-1:-1:-1;;32030:175:0;;;;;;;;;;;;:::i;:::-;;;32009:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32392:13:0;;32388:320;;32435:108;;-1:-1:-1;;;32435:108:0;;;;;;;:::i;32388:320::-;32658:6;32652:13;32643:6;32639:2;32635:15;32628:38;32009:714;-1:-1:-1;;;;;;32269:55:0;-1:-1:-1;;;32269:55:0;;-1:-1:-1;32262:62:0;;31973:805;-1:-1:-1;32762:4:0;31801:984;;;;;;:::o;20403:355::-;20550:4;-1:-1:-1;;;;;;20592:40:0;;-1:-1:-1;;;20592:40:0;;:105;;-1:-1:-1;;;;;;;20649:48:0;;-1:-1:-1;;;20649:48:0;20592:105;:158;;;;20714:36;20738:11;20714:23;:36::i;38445:164::-;38549:10;:17;;38522:24;;;;:15;:24;;;;;:44;;;38577:24;;;;;;;;;;;;38445:164::o;39236:1002::-;39516:22;39566:1;39541:22;39558:4;39541:16;:22::i;:::-;:26;;;;:::i;:::-;39578:18;39599:26;;;:17;:26;;;;;;39516:51;;-1:-1:-1;39732:28:0;;;39728:328;;-1:-1:-1;;;;;39799:18:0;;39777:19;39799:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39850:30;;;;;;:44;;;39967:30;;:17;:30;;;;;:43;;;39728:328;-1:-1:-1;40152:26:0;;;;:17;:26;;;;;;;;40145:33;;;-1:-1:-1;;;;;40196:18:0;;;;;:12;:18;;;;;:34;;;;;;;40189:41;39236:1002::o;40533:1079::-;40811:10;:17;40786:22;;40811:21;;40831:1;;40811:21;:::i;:::-;40843:18;40864:24;;;:15;:24;;;;;;41237:10;:26;;40786:46;;-1:-1:-1;40864:24:0;;40786:46;;41237:26;;;;-1:-1:-1;;;41237:26:0;;;;;;;;;;;;;;;;;41215:48;;41301:11;41276:10;41287;41276:22;;;;;;-1:-1:-1;;;41276:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;41381:28;;;:15;:28;;;;;;;:41;;;41553:24;;;;;41546:31;41588:10;:16;;;;;-1:-1:-1;;;41588:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;40533:1079;;;;:::o;38023:221::-;38108:14;38125:20;38142:2;38125:16;:20::i;:::-;-1:-1:-1;;;;;38156:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38201:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38023:221:0:o;29021:382::-;-1:-1:-1;;;;;29101:16:0;;29093:61;;;;-1:-1:-1;;;29093:61:0;;;;;;;:::i;:::-;29174:16;29182:7;29174;:16::i;:::-;29173:17;29165:58;;;;-1:-1:-1;;;29165:58:0;;;;;;;:::i;:::-;29236:45;29265:1;29269:2;29273:7;29236:20;:45::i;:::-;-1:-1:-1;;;;;29294:13:0;;;;;;:9;:13;;;;;:18;;29311:1;;29294:13;:18;;29311:1;;29294:18;:::i;:::-;;;;-1:-1:-1;;29323:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29323:21:0;-1:-1:-1;;;;;29323:21:0;;;;;;;;29362:33;;29323:16;;;29362:33;;29323:16;;29362:33;29021:382;;:::o;7913:387::-;8236:20;8284:8;;;7913:387::o;18962:207::-;-1:-1:-1;;;;;;19121:40:0;;-1:-1:-1;;;19121:40:0;18962:207;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:190::-;;3099:2;3087:9;3078:7;3074:23;3070:32;3067:2;;;3120:6;3112;3105:22;3067:2;-1:-1:-1;3148:23:1;;3057:120;-1:-1:-1;3057:120:1:o;3182:266::-;;;3311:2;3299:9;3290:7;3286:23;3282:32;3279:2;;;3332:6;3324;3317:22;3279:2;3373:9;3360:23;3350:33;;3402:40;3438:2;3427:9;3423:18;3402:40;:::i;3453:257::-;;3564:2;3552:9;3543:7;3539:23;3535:32;3532:2;;;3585:6;3577;3570:22;3532:2;3629:9;3616:23;3648:32;3674:5;3648:32;:::i;3715:261::-;;3837:2;3825:9;3816:7;3812:23;3808:32;3805:2;;;3858:6;3850;3843:22;3805:2;3895:9;3889:16;3914:32;3940:5;3914:32;:::i;3981:482::-;;4103:2;4091:9;4082:7;4078:23;4074:32;4071:2;;;4124:6;4116;4109:22;4071:2;4169:9;4156:23;4202:18;4194:6;4191:30;4188:2;;;4239:6;4231;4224:22;4188:2;4267:22;;4320:4;4312:13;;4308:27;-1:-1:-1;4298:2:1;;4354:6;4346;4339:22;4298:2;4382:75;4449:7;4444:2;4431:16;4426:2;4422;4418:11;4382:75;:::i;4663:259::-;;4744:5;4738:12;4771:6;4766:3;4759:19;4787:63;4843:6;4836:4;4831:3;4827:14;4820:4;4813:5;4809:16;4787:63;:::i;:::-;4904:2;4883:15;-1:-1:-1;;4879:29:1;4870:39;;;;4911:4;4866:50;;4714:208;-1:-1:-1;;4714:208:1:o;4927:470::-;;5144:6;5138:13;5160:53;5206:6;5201:3;5194:4;5186:6;5182:17;5160:53;:::i;:::-;5276:13;;5235:16;;;;5298:57;5276:13;5235:16;5332:4;5320:17;;5298:57;:::i;:::-;5371:20;;5114:283;-1:-1:-1;;;;5114:283:1:o;5402:786::-;;5813:25;5808:3;5801:38;5868:6;5862:13;5884:62;5939:6;5934:2;5929:3;5925:12;5918:4;5910:6;5906:17;5884:62;:::i;:::-;-1:-1:-1;;;6005:2:1;5965:16;;;5997:11;;;5990:40;6055:13;;6077:63;6055:13;6126:2;6118:11;;6111:4;6099:17;;6077:63;:::i;:::-;6160:17;6179:2;6156:26;;5791:397;-1:-1:-1;;;;5791:397:1:o;6193:203::-;-1:-1:-1;;;;;6357:32:1;;;;6339:51;;6327:2;6312:18;;6294:102::o;6401:490::-;-1:-1:-1;;;;;6670:15:1;;;6652:34;;6722:15;;6717:2;6702:18;;6695:43;6769:2;6754:18;;6747:34;;;6817:3;6812:2;6797:18;;6790:31;;;6401:490;;6838:47;;6865:19;;6857:6;6838:47;:::i;:::-;6830:55;6604:287;-1:-1:-1;;;;;;6604:287:1:o;6896:187::-;7061:14;;7054:22;7036:41;;7024:2;7009:18;;6991:92::o;7088:177::-;7234:25;;;7222:2;7207:18;;7189:76::o;7270:221::-;;7419:2;7408:9;7401:21;7439:46;7481:2;7470:9;7466:18;7458:6;7439:46;:::i;7496:345::-;7698:2;7680:21;;;7737:2;7717:18;;;7710:30;-1:-1:-1;;;7771:2:1;7756:18;;7749:51;7832:2;7817:18;;7670:171::o;7846:356::-;8048:2;8030:21;;;8067:18;;;8060:30;8126:34;8121:2;8106:18;;8099:62;8193:2;8178:18;;8020:182::o;8207:407::-;8409:2;8391:21;;;8448:2;8428:18;;;8421:30;8487:34;8482:2;8467:18;;8460:62;-1:-1:-1;;;8553:2:1;8538:18;;8531:41;8604:3;8589:19;;8381:233::o;8619:414::-;8821:2;8803:21;;;8860:2;8840:18;;;8833:30;8899:34;8894:2;8879:18;;8872:62;-1:-1:-1;;;8965:2:1;8950:18;;8943:48;9023:3;9008:19;;8793:240::o;9038:352::-;9240:2;9222:21;;;9279:2;9259:18;;;9252:30;9318;9313:2;9298:18;;9291:58;9381:2;9366:18;;9212:178::o;9395:400::-;9597:2;9579:21;;;9636:2;9616:18;;;9609:30;9675:34;9670:2;9655:18;;9648:62;-1:-1:-1;;;9741:2:1;9726:18;;9719:34;9785:3;9770:19;;9569:226::o;9800:349::-;10002:2;9984:21;;;10041:2;10021:18;;;10014:30;10080:27;10075:2;10060:18;;10053:55;10140:2;10125:18;;9974:175::o;10154:408::-;10356:2;10338:21;;;10395:2;10375:18;;;10368:30;10434:34;10429:2;10414:18;;10407:62;-1:-1:-1;;;10500:2:1;10485:18;;10478:42;10552:3;10537:19;;10328:234::o;10567:407::-;10769:2;10751:21;;;10808:2;10788:18;;;10781:30;10847:34;10842:2;10827:18;;10820:62;-1:-1:-1;;;10913:2:1;10898:18;;10891:41;10964:3;10949:19;;10741:233::o;10979:420::-;11181:2;11163:21;;;11220:2;11200:18;;;11193:30;11259:34;11254:2;11239:18;;11232:62;11330:26;11325:2;11310:18;;11303:54;11389:3;11374:19;;11153:246::o;11404:346::-;11606:2;11588:21;;;11645:2;11625:18;;;11618:30;-1:-1:-1;;;11679:2:1;11664:18;;11657:52;11741:2;11726:18;;11578:172::o;11755:406::-;11957:2;11939:21;;;11996:2;11976:18;;;11969:30;12035:34;12030:2;12015:18;;12008:62;-1:-1:-1;;;12101:2:1;12086:18;;12079:40;12151:3;12136:19;;11929:232::o;12166:405::-;12368:2;12350:21;;;12407:2;12387:18;;;12380:30;12446:34;12441:2;12426:18;;12419:62;-1:-1:-1;;;12512:2:1;12497:18;;12490:39;12561:3;12546:19;;12340:231::o;12576:356::-;12778:2;12760:21;;;12797:18;;;12790:30;12856:34;12851:2;12836:18;;12829:62;12923:2;12908:18;;12750:182::o;12937:408::-;13139:2;13121:21;;;13178:2;13158:18;;;13151:30;13217:34;13212:2;13197:18;;13190:62;-1:-1:-1;;;13283:2:1;13268:18;;13261:42;13335:3;13320:19;;13111:234::o;13350:405::-;13552:2;13534:21;;;13591:2;13571:18;;;13564:30;13630:34;13625:2;13610:18;;13603:62;-1:-1:-1;;;13696:2:1;13681:18;;13674:39;13745:3;13730:19;;13524:231::o;13760:405::-;13962:2;13944:21;;;14001:2;13981:18;;;13974:30;14040:34;14035:2;14020:18;;14013:62;-1:-1:-1;;;14106:2:1;14091:18;;14084:39;14155:3;14140:19;;13934:231::o;14170:411::-;14372:2;14354:21;;;14411:2;14391:18;;;14384:30;14450:34;14445:2;14430:18;;14423:62;-1:-1:-1;;;14516:2:1;14501:18;;14494:45;14571:3;14556:19;;14344:237::o;14586:397::-;14788:2;14770:21;;;14827:2;14807:18;;;14800:30;14866:34;14861:2;14846:18;;14839:62;-1:-1:-1;;;14932:2:1;14917:18;;14910:31;14973:3;14958:19;;14760:223::o;14988:413::-;15190:2;15172:21;;;15229:2;15209:18;;;15202:30;15268:34;15263:2;15248:18;;15241:62;-1:-1:-1;;;15334:2:1;15319:18;;15312:47;15391:3;15376:19;;15162:239::o;15406:408::-;15608:2;15590:21;;;15647:2;15627:18;;;15620:30;15686:34;15681:2;15666:18;;15659:62;-1:-1:-1;;;15752:2:1;15737:18;;15730:42;15804:3;15789:19;;15580:234::o;15819:411::-;16021:2;16003:21;;;16060:2;16040:18;;;16033:30;16099:34;16094:2;16079:18;;16072:62;-1:-1:-1;;;16165:2:1;16150:18;;16143:45;16220:3;16205:19;;15993:237::o;16417:128::-;;16488:1;16484:6;16481:1;16478:13;16475:2;;;16494:18;;:::i;:::-;-1:-1:-1;16530:9:1;;16465:80::o;16550:120::-;;16616:1;16606:2;;16621:18;;:::i;:::-;-1:-1:-1;16655:9:1;;16596:74::o;16675:168::-;;16781:1;16777;16773:6;16769:14;16766:1;16763:21;16758:1;16751:9;16744:17;16740:45;16737:2;;;16788:18;;:::i;:::-;-1:-1:-1;16828:9:1;;16727:116::o;16848:125::-;;16916:1;16913;16910:8;16907:2;;;16921:18;;:::i;:::-;-1:-1:-1;16958:9:1;;16897:76::o;16978:258::-;17050:1;17060:113;17074:6;17071:1;17068:13;17060:113;;;17150:11;;;17144:18;17131:11;;;17124:39;17096:2;17089:10;17060:113;;;17191:6;17188:1;17185:13;17182:2;;;-1:-1:-1;;17226:1:1;17208:16;;17201:27;17031:205::o;17241:136::-;;17308:5;17298:2;;17317:18;;:::i;:::-;-1:-1:-1;;;17353:18:1;;17288:89::o;17382:380::-;17467:1;17457:12;;17514:1;17504:12;;;17525:2;;17579:4;17571:6;17567:17;17557:27;;17525:2;17632;17624:6;17621:14;17601:18;17598:38;17595:2;;;17678:10;17673:3;17669:20;17666:1;17659:31;17713:4;17710:1;17703:15;17741:4;17738:1;17731:15;17595:2;;17437:325;;;:::o;17767:135::-;;-1:-1:-1;;17827:17:1;;17824:2;;;17847:18;;:::i;:::-;-1:-1:-1;17894:1:1;17883:13;;17814:88::o;17907:112::-;;17965:1;17955:2;;17970:18;;:::i;:::-;-1:-1:-1;18004:9:1;;17945:74::o;18024:127::-;18085:10;18080:3;18076:20;18073:1;18066:31;18116:4;18113:1;18106:15;18140:4;18137:1;18130:15;18156:127;18217:10;18212:3;18208:20;18205:1;18198:31;18248:4;18245:1;18238:15;18272:4;18269:1;18262:15;18288:127;18349:10;18344:3;18340:20;18337:1;18330:31;18380:4;18377:1;18370:15;18404:4;18401:1;18394:15;18420:133;-1:-1:-1;;;;;;18496:32:1;;18486:43;;18476:2;;18543:1;18540;18533:12;18476:2;18466:87;:::o

Swarm Source

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