ETH Price: $2,541.51 (-0.11%)

Token

Phrocks (PHR)
 

Overview

Max Total Supply

100 PHR

Holders

19

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PHR
0x024e8b74a7502a075dd70fa2ef9f9b4bf22d246a
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:
Phrocks

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-19
*/

// Sources flattened with hardhat v2.6.0 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

 

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

 

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

 

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

 

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

 

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

 

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/utils/[email protected]

 

pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]

 

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

 

pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

 

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

 

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

 

pragma solidity ^0.8.0;


/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}


// File @openzeppelin/contracts/access/[email protected]

 

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

 

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/security/[email protected]

 

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


// File contracts/Phrocks.sol

 

pragma solidity ^0.8.0;





contract Phrocks is Ownable, ERC721Enumerable, ERC721Burnable, ReentrancyGuard {
  event List(uint256 indexed tokenId, uint256 value);
  event Delist(uint256 indexed tokenId);
  
  using Counters for Counters.Counter;
  Counters.Counter private _tokenIdTracker;

  uint256 public constant MAX_ROCKS = 100;
  uint256 public constant MINT_FEE = 3 * 10**16;
  string private _baseTokenURI = "https://etherphrock.com/phrock/";

  mapping (uint256 => uint256) public listings; // id to price

  constructor() ERC721("Phrocks", "PHR") {
  }

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

  function setBaseURI(string memory baseURI) public onlyOwner {
    _baseTokenURI = baseURI;
  }

  function mint() public virtual payable {
    uint256 nextId = _tokenIdTracker.current();
    require(nextId < MAX_ROCKS, "No more supply");
    require(msg.value >= MINT_FEE, "Price not met");

    _safeMint(msg.sender, nextId);
    _tokenIdTracker.increment();
  }

  function withdraw() public onlyOwner {
    (bool success, ) = owner().call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

  function _beforeTokenTransfer(
    address from,
    address to,
    uint256 tokenId
  ) internal virtual override(ERC721, ERC721Enumerable) {
    super._beforeTokenTransfer(from, to, tokenId);
  }

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

  function listPhrock(uint256 tokenId, uint256 price) public {
    require(msg.sender == ownerOf(tokenId), "Must own phrock to sell");
    require(price > 0);

    listings[tokenId] = price;
    emit List(tokenId, price);
  }

  function delistPhrock(uint256 tokenId) public {
    require(msg.sender == ownerOf(tokenId), "Must own phrock to delist");

    listings[tokenId] = 0;
    emit Delist(tokenId);
  }

  function buyPhrock(uint256 tokenId) public payable nonReentrant {
    require(listings[tokenId] > 0, "Phrock must be for sale to buy");
    require(msg.value >= listings[tokenId], "Must pay enough for phrock");

    address oldOwner = ownerOf(tokenId);
    _transfer(oldOwner, msg.sender, tokenId);
    listings[tokenId] = 0;

    (bool success, ) = oldOwner.call{value: msg.value}("");
    require(success);
  }
}

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":"uint256","name":"tokenId","type":"uint256"}],"name":"Delist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"List","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_ROCKS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"buyPhrock","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"delistPhrock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"name":"listPhrock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"listings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052601f60808190527f68747470733a2f2f65746865727068726f636b2e636f6d2f7068726f636b2f0060a09081526200004091600d919062000132565b503480156200004e57600080fd5b50604051806040016040528060078152602001665068726f636b7360c81b8152506040518060400160405280600381526020016228242960e91b815250620000a56200009f620000de60201b60201c565b620000e2565b8151620000ba90600190602085019062000132565b508051620000d090600290602084019062000132565b50506001600b555062000215565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200014090620001d8565b90600052602060002090601f016020900481019282620001645760008555620001af565b82601f106200017f57805160ff1916838001178555620001af565b82800160010185558215620001af579182015b82811115620001af57825182559160200191906001019062000192565b50620001bd929150620001c1565b5090565b5b80821115620001bd5760008155600101620001c2565b600181811c90821680620001ed57607f821691505b602082108114156200020f57634e487b7160e01b600052602260045260246000fd5b50919050565b61235c80620002256000396000f3fe6080604052600436106101c25760003560e01c80636352211e116100f7578063b88d4fde11610095578063e15db46411610064578063e15db464146104cc578063e4adaa38146104ec578063e985e9c51461050c578063f2fde38b1461055557600080fd5b8063b88d4fde14610444578063c87b56dd14610464578063d7bf81a314610484578063de74e57b1461049f57600080fd5b8063715018a6116100d1578063715018a6146103dc5780638da5cb5b146103f157806395d89b411461040f578063a22cb4651461042457600080fd5b80636352211e146103875780636cf8a341146103a757806370a08231146103bc57600080fd5b8063270b154a1161016457806342842e0e1161013e57806342842e0e1461030757806342966c68146103275780634f6ccce71461034757806355f804b31461036757600080fd5b8063270b154a146102bf5780632f745c59146102d25780633ccfd60b146102f257600080fd5b8063095ea7b3116101a0578063095ea7b3146102565780631249c58b1461027857806318160ddd1461028057806323b872dd1461029f57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611fbb565b610575565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610586565b6040516101f3919061210a565b34801561022a57600080fd5b5061023e610239366004612039565b610618565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611f92565b6106b2565b005b6102766107c8565b34801561028c57600080fd5b506009545b6040519081526020016101f3565b3480156102ab57600080fd5b506102766102ba366004611ea4565b610878565b6102766102cd366004612039565b6108aa565b3480156102de57600080fd5b506102916102ed366004611f92565b610a48565b3480156102fe57600080fd5b50610276610ade565b34801561031357600080fd5b50610276610322366004611ea4565b610b9e565b34801561033357600080fd5b50610276610342366004612039565b610bb9565b34801561035357600080fd5b50610291610362366004612039565b610c30565b34801561037357600080fd5b50610276610382366004611ff3565b610cd1565b34801561039357600080fd5b5061023e6103a2366004612039565b610d12565b3480156103b357600080fd5b50610291606481565b3480156103c857600080fd5b506102916103d7366004611e58565b610d89565b3480156103e857600080fd5b50610276610e10565b3480156103fd57600080fd5b506000546001600160a01b031661023e565b34801561041b57600080fd5b50610211610e46565b34801561043057600080fd5b5061027661043f366004611f58565b610e55565b34801561045057600080fd5b5061027661045f366004611edf565b610f1a565b34801561047057600080fd5b5061021161047f366004612039565b610f52565b34801561049057600080fd5b50610291666a94d74f43000081565b3480156104ab57600080fd5b506102916104ba366004612039565b600e6020526000908152604090205481565b3480156104d857600080fd5b506102766104e7366004612051565b61102d565b3480156104f857600080fd5b50610276610507366004612039565b6110f4565b34801561051857600080fd5b506101e7610527366004611e72565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561056157600080fd5b50610276610570366004611e58565b611198565b600061058082611230565b92915050565b60606001805461059590612264565b80601f01602080910402602001604051908101604052809291908181526020018280546105c190612264565b801561060e5780601f106105e35761010080835404028352916020019161060e565b820191906000526020600020905b8154815290600101906020018083116105f157829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166106965760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106bd82610d12565b9050806001600160a01b0316836001600160a01b0316141561072b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161068d565b336001600160a01b038216148061074757506107478133610527565b6107b95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161068d565b6107c38383611255565b505050565b60006107d3600c5490565b9050606481106108165760405162461bcd60e51b815260206004820152600e60248201526d4e6f206d6f726520737570706c7960901b604482015260640161068d565b666a94d74f43000034101561085d5760405162461bcd60e51b815260206004820152600d60248201526c141c9a58d9481b9bdd081b595d609a1b604482015260640161068d565b61086733826112c3565b610875600c80546001019055565b50565b610883335b826112dd565b61089f5760405162461bcd60e51b815260040161068d906121a4565b6107c38383836113d4565b6002600b5414156108fd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161068d565b6002600b556000818152600e602052604090205461095d5760405162461bcd60e51b815260206004820152601e60248201527f5068726f636b206d75737420626520666f722073616c6520746f206275790000604482015260640161068d565b6000818152600e60205260409020543410156109bb5760405162461bcd60e51b815260206004820152601a60248201527f4d7573742070617920656e6f75676820666f72207068726f636b000000000000604482015260640161068d565b60006109c682610d12565b90506109d38133846113d4565b6000828152600e6020526040808220829055516001600160a01b0383169034908381818185875af1925050503d8060008114610a2b576040519150601f19603f3d011682016040523d82523d6000602084013e610a30565b606091505b5050905080610a3e57600080fd5b50506001600b5550565b6000610a5383610d89565b8210610ab55760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161068d565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610b085760405162461bcd60e51b815260040161068d9061216f565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610b55576040519150601f19603f3d011682016040523d82523d6000602084013e610b5a565b606091505b50509050806108755760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161068d565b6107c383838360405180602001604052806000815250610f1a565b610bc23361087d565b610c275760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161068d565b6108758161157f565b6000610c3b60095490565b8210610c9e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161068d565b60098281548110610cbf57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000546001600160a01b03163314610cfb5760405162461bcd60e51b815260040161068d9061216f565b8051610d0e90600d906020840190611d2d565b5050565b6000818152600360205260408120546001600160a01b0316806105805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161068d565b60006001600160a01b038216610df45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161068d565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610e3a5760405162461bcd60e51b815260040161068d9061216f565b610e446000611626565b565b60606002805461059590612264565b6001600160a01b038216331415610eae5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161068d565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f2433836112dd565b610f405760405162461bcd60e51b815260040161068d906121a4565b610f4c84848484611676565b50505050565b6000818152600360205260409020546060906001600160a01b0316610fd15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161068d565b6000610fdb6116a9565b90506000815111610ffb5760405180602001604052806000815250611026565b80611005846116b8565b60405160200161101692919061209e565b6040516020818303038152906040525b9392505050565b61103682610d12565b6001600160a01b0316336001600160a01b0316146110965760405162461bcd60e51b815260206004820152601760248201527f4d757374206f776e207068726f636b20746f2073656c6c000000000000000000604482015260640161068d565b600081116110a357600080fd5b6000828152600e6020526040908190208290555182907fc38e7832a23e5e13678e20a3184751ed5c3a1a74483e4f70f5e172e3b4ce5ac3906110e89084815260200190565b60405180910390a25050565b6110fd81610d12565b6001600160a01b0316336001600160a01b03161461115d5760405162461bcd60e51b815260206004820152601960248201527f4d757374206f776e207068726f636b20746f2064656c69737400000000000000604482015260640161068d565b6000818152600e60205260408082208290555182917f2c525dc2c086b9a2f3b902d229853b5b838fcedc22933c40ed7ebe4890a53a8291a250565b6000546001600160a01b031633146111c25760405162461bcd60e51b815260040161068d9061216f565b6001600160a01b0381166112275760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068d565b61087581611626565b60006001600160e01b0319821663780e9d6360e01b14806105805750610580826117d2565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061128a82610d12565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610d0e828260405180602001604052806000815250611822565b6000818152600360205260408120546001600160a01b03166113565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161068d565b600061136183610d12565b9050806001600160a01b0316846001600160a01b0316148061139c5750836001600160a01b031661139184610618565b6001600160a01b0316145b806113cc57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113e782610d12565b6001600160a01b03161461144f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161068d565b6001600160a01b0382166114b15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161068d565b6114bc838383611855565b6114c7600082611255565b6001600160a01b03831660009081526004602052604081208054600192906114f0908490612221565b90915550506001600160a01b038216600090815260046020526040812080546001929061151e9084906121f5565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061158a82610d12565b905061159881600084611855565b6115a3600083611255565b6001600160a01b03811660009081526004602052604081208054600192906115cc908490612221565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6116818484846113d4565b61168d84848484611860565b610f4c5760405162461bcd60e51b815260040161068d9061211d565b6060600d805461059590612264565b6060816116dc5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561170657806116f08161229f565b91506116ff9050600a8361220d565b91506116e0565b60008167ffffffffffffffff81111561172f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611759576020820181803683370190505b5090505b84156113cc5761176e600183612221565b915061177b600a866122ba565b6117869060306121f5565b60f81b8183815181106117a957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117cb600a8661220d565b945061175d565b60006001600160e01b031982166380ac58cd60e01b148061180357506001600160e01b03198216635b5e139f60e01b145b8061058057506301ffc9a760e01b6001600160e01b0319831614610580565b61182c838361196d565b6118396000848484611860565b6107c35760405162461bcd60e51b815260040161068d9061211d565b6107c3838383611abb565b60006001600160a01b0384163b1561196257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118a49033908990889088906004016120cd565b602060405180830381600087803b1580156118be57600080fd5b505af19250505080156118ee575060408051601f3d908101601f191682019092526118eb91810190611fd7565b60015b611948573d80801561191c576040519150601f19603f3d011682016040523d82523d6000602084013e611921565b606091505b5080516119405760405162461bcd60e51b815260040161068d9061211d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113cc565b506001949350505050565b6001600160a01b0382166119c35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161068d565b6000818152600360205260409020546001600160a01b031615611a285760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161068d565b611a3460008383611855565b6001600160a01b0382166000908152600460205260408120805460019290611a5d9084906121f5565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b038316611b1657611b1181600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611b39565b816001600160a01b0316836001600160a01b031614611b3957611b398382611b73565b6001600160a01b038216611b50576107c381611c10565b826001600160a01b0316826001600160a01b0316146107c3576107c38282611ce9565b60006001611b8084610d89565b611b8a9190612221565b600083815260086020526040902054909150808214611bdd576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611c2290600190612221565b6000838152600a602052604081205460098054939450909284908110611c5857634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060098381548110611c8757634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611ccd57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611cf483610d89565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b828054611d3990612264565b90600052602060002090601f016020900481019282611d5b5760008555611da1565b82601f10611d7457805160ff1916838001178555611da1565b82800160010185558215611da1579182015b82811115611da1578251825591602001919060010190611d86565b50611dad929150611db1565b5090565b5b80821115611dad5760008155600101611db2565b600067ffffffffffffffff80841115611de157611de16122fa565b604051601f8501601f19908116603f01168101908282118183101715611e0957611e096122fa565b81604052809350858152868686011115611e2257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e5357600080fd5b919050565b600060208284031215611e69578081fd5b61102682611e3c565b60008060408385031215611e84578081fd5b611e8d83611e3c565b9150611e9b60208401611e3c565b90509250929050565b600080600060608486031215611eb8578081fd5b611ec184611e3c565b9250611ecf60208501611e3c565b9150604084013590509250925092565b60008060008060808587031215611ef4578081fd5b611efd85611e3c565b9350611f0b60208601611e3c565b925060408501359150606085013567ffffffffffffffff811115611f2d578182fd5b8501601f81018713611f3d578182fd5b611f4c87823560208401611dc6565b91505092959194509250565b60008060408385031215611f6a578182fd5b611f7383611e3c565b915060208301358015158114611f87578182fd5b809150509250929050565b60008060408385031215611fa4578182fd5b611fad83611e3c565b946020939093013593505050565b600060208284031215611fcc578081fd5b813561102681612310565b600060208284031215611fe8578081fd5b815161102681612310565b600060208284031215612004578081fd5b813567ffffffffffffffff81111561201a578182fd5b8201601f8101841361202a578182fd5b6113cc84823560208401611dc6565b60006020828403121561204a578081fd5b5035919050565b60008060408385031215612063578182fd5b50508035926020909101359150565b6000815180845261208a816020860160208601612238565b601f01601f19169290920160200192915050565b600083516120b0818460208801612238565b8351908301906120c4818360208801612238565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061210090830184612072565b9695505050505050565b6020815260006110266020830184612072565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612208576122086122ce565b500190565b60008261221c5761221c6122e4565b500490565b600082821015612233576122336122ce565b500390565b60005b8381101561225357818101518382015260200161223b565b83811115610f4c5750506000910152565b600181811c9082168061227857607f821691505b6020821081141561229957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122b3576122b36122ce565b5060010190565b6000826122c9576122c96122e4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461087557600080fdfea26469706673582212204e713d1b4916096b1900ac942760ceaf4c51737608c58f2c44c08ac10357fb5a64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636352211e116100f7578063b88d4fde11610095578063e15db46411610064578063e15db464146104cc578063e4adaa38146104ec578063e985e9c51461050c578063f2fde38b1461055557600080fd5b8063b88d4fde14610444578063c87b56dd14610464578063d7bf81a314610484578063de74e57b1461049f57600080fd5b8063715018a6116100d1578063715018a6146103dc5780638da5cb5b146103f157806395d89b411461040f578063a22cb4651461042457600080fd5b80636352211e146103875780636cf8a341146103a757806370a08231146103bc57600080fd5b8063270b154a1161016457806342842e0e1161013e57806342842e0e1461030757806342966c68146103275780634f6ccce71461034757806355f804b31461036757600080fd5b8063270b154a146102bf5780632f745c59146102d25780633ccfd60b146102f257600080fd5b8063095ea7b3116101a0578063095ea7b3146102565780631249c58b1461027857806318160ddd1461028057806323b872dd1461029f57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611fbb565b610575565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610586565b6040516101f3919061210a565b34801561022a57600080fd5b5061023e610239366004612039565b610618565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611f92565b6106b2565b005b6102766107c8565b34801561028c57600080fd5b506009545b6040519081526020016101f3565b3480156102ab57600080fd5b506102766102ba366004611ea4565b610878565b6102766102cd366004612039565b6108aa565b3480156102de57600080fd5b506102916102ed366004611f92565b610a48565b3480156102fe57600080fd5b50610276610ade565b34801561031357600080fd5b50610276610322366004611ea4565b610b9e565b34801561033357600080fd5b50610276610342366004612039565b610bb9565b34801561035357600080fd5b50610291610362366004612039565b610c30565b34801561037357600080fd5b50610276610382366004611ff3565b610cd1565b34801561039357600080fd5b5061023e6103a2366004612039565b610d12565b3480156103b357600080fd5b50610291606481565b3480156103c857600080fd5b506102916103d7366004611e58565b610d89565b3480156103e857600080fd5b50610276610e10565b3480156103fd57600080fd5b506000546001600160a01b031661023e565b34801561041b57600080fd5b50610211610e46565b34801561043057600080fd5b5061027661043f366004611f58565b610e55565b34801561045057600080fd5b5061027661045f366004611edf565b610f1a565b34801561047057600080fd5b5061021161047f366004612039565b610f52565b34801561049057600080fd5b50610291666a94d74f43000081565b3480156104ab57600080fd5b506102916104ba366004612039565b600e6020526000908152604090205481565b3480156104d857600080fd5b506102766104e7366004612051565b61102d565b3480156104f857600080fd5b50610276610507366004612039565b6110f4565b34801561051857600080fd5b506101e7610527366004611e72565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561056157600080fd5b50610276610570366004611e58565b611198565b600061058082611230565b92915050565b60606001805461059590612264565b80601f01602080910402602001604051908101604052809291908181526020018280546105c190612264565b801561060e5780601f106105e35761010080835404028352916020019161060e565b820191906000526020600020905b8154815290600101906020018083116105f157829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166106965760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106bd82610d12565b9050806001600160a01b0316836001600160a01b0316141561072b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161068d565b336001600160a01b038216148061074757506107478133610527565b6107b95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161068d565b6107c38383611255565b505050565b60006107d3600c5490565b9050606481106108165760405162461bcd60e51b815260206004820152600e60248201526d4e6f206d6f726520737570706c7960901b604482015260640161068d565b666a94d74f43000034101561085d5760405162461bcd60e51b815260206004820152600d60248201526c141c9a58d9481b9bdd081b595d609a1b604482015260640161068d565b61086733826112c3565b610875600c80546001019055565b50565b610883335b826112dd565b61089f5760405162461bcd60e51b815260040161068d906121a4565b6107c38383836113d4565b6002600b5414156108fd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161068d565b6002600b556000818152600e602052604090205461095d5760405162461bcd60e51b815260206004820152601e60248201527f5068726f636b206d75737420626520666f722073616c6520746f206275790000604482015260640161068d565b6000818152600e60205260409020543410156109bb5760405162461bcd60e51b815260206004820152601a60248201527f4d7573742070617920656e6f75676820666f72207068726f636b000000000000604482015260640161068d565b60006109c682610d12565b90506109d38133846113d4565b6000828152600e6020526040808220829055516001600160a01b0383169034908381818185875af1925050503d8060008114610a2b576040519150601f19603f3d011682016040523d82523d6000602084013e610a30565b606091505b5050905080610a3e57600080fd5b50506001600b5550565b6000610a5383610d89565b8210610ab55760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161068d565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610b085760405162461bcd60e51b815260040161068d9061216f565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610b55576040519150601f19603f3d011682016040523d82523d6000602084013e610b5a565b606091505b50509050806108755760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161068d565b6107c383838360405180602001604052806000815250610f1a565b610bc23361087d565b610c275760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161068d565b6108758161157f565b6000610c3b60095490565b8210610c9e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161068d565b60098281548110610cbf57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000546001600160a01b03163314610cfb5760405162461bcd60e51b815260040161068d9061216f565b8051610d0e90600d906020840190611d2d565b5050565b6000818152600360205260408120546001600160a01b0316806105805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161068d565b60006001600160a01b038216610df45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161068d565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610e3a5760405162461bcd60e51b815260040161068d9061216f565b610e446000611626565b565b60606002805461059590612264565b6001600160a01b038216331415610eae5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161068d565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f2433836112dd565b610f405760405162461bcd60e51b815260040161068d906121a4565b610f4c84848484611676565b50505050565b6000818152600360205260409020546060906001600160a01b0316610fd15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161068d565b6000610fdb6116a9565b90506000815111610ffb5760405180602001604052806000815250611026565b80611005846116b8565b60405160200161101692919061209e565b6040516020818303038152906040525b9392505050565b61103682610d12565b6001600160a01b0316336001600160a01b0316146110965760405162461bcd60e51b815260206004820152601760248201527f4d757374206f776e207068726f636b20746f2073656c6c000000000000000000604482015260640161068d565b600081116110a357600080fd5b6000828152600e6020526040908190208290555182907fc38e7832a23e5e13678e20a3184751ed5c3a1a74483e4f70f5e172e3b4ce5ac3906110e89084815260200190565b60405180910390a25050565b6110fd81610d12565b6001600160a01b0316336001600160a01b03161461115d5760405162461bcd60e51b815260206004820152601960248201527f4d757374206f776e207068726f636b20746f2064656c69737400000000000000604482015260640161068d565b6000818152600e60205260408082208290555182917f2c525dc2c086b9a2f3b902d229853b5b838fcedc22933c40ed7ebe4890a53a8291a250565b6000546001600160a01b031633146111c25760405162461bcd60e51b815260040161068d9061216f565b6001600160a01b0381166112275760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068d565b61087581611626565b60006001600160e01b0319821663780e9d6360e01b14806105805750610580826117d2565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061128a82610d12565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610d0e828260405180602001604052806000815250611822565b6000818152600360205260408120546001600160a01b03166113565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161068d565b600061136183610d12565b9050806001600160a01b0316846001600160a01b0316148061139c5750836001600160a01b031661139184610618565b6001600160a01b0316145b806113cc57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113e782610d12565b6001600160a01b03161461144f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161068d565b6001600160a01b0382166114b15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161068d565b6114bc838383611855565b6114c7600082611255565b6001600160a01b03831660009081526004602052604081208054600192906114f0908490612221565b90915550506001600160a01b038216600090815260046020526040812080546001929061151e9084906121f5565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061158a82610d12565b905061159881600084611855565b6115a3600083611255565b6001600160a01b03811660009081526004602052604081208054600192906115cc908490612221565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6116818484846113d4565b61168d84848484611860565b610f4c5760405162461bcd60e51b815260040161068d9061211d565b6060600d805461059590612264565b6060816116dc5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561170657806116f08161229f565b91506116ff9050600a8361220d565b91506116e0565b60008167ffffffffffffffff81111561172f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611759576020820181803683370190505b5090505b84156113cc5761176e600183612221565b915061177b600a866122ba565b6117869060306121f5565b60f81b8183815181106117a957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117cb600a8661220d565b945061175d565b60006001600160e01b031982166380ac58cd60e01b148061180357506001600160e01b03198216635b5e139f60e01b145b8061058057506301ffc9a760e01b6001600160e01b0319831614610580565b61182c838361196d565b6118396000848484611860565b6107c35760405162461bcd60e51b815260040161068d9061211d565b6107c3838383611abb565b60006001600160a01b0384163b1561196257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118a49033908990889088906004016120cd565b602060405180830381600087803b1580156118be57600080fd5b505af19250505080156118ee575060408051601f3d908101601f191682019092526118eb91810190611fd7565b60015b611948573d80801561191c576040519150601f19603f3d011682016040523d82523d6000602084013e611921565b606091505b5080516119405760405162461bcd60e51b815260040161068d9061211d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113cc565b506001949350505050565b6001600160a01b0382166119c35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161068d565b6000818152600360205260409020546001600160a01b031615611a285760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161068d565b611a3460008383611855565b6001600160a01b0382166000908152600460205260408120805460019290611a5d9084906121f5565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b038316611b1657611b1181600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611b39565b816001600160a01b0316836001600160a01b031614611b3957611b398382611b73565b6001600160a01b038216611b50576107c381611c10565b826001600160a01b0316826001600160a01b0316146107c3576107c38282611ce9565b60006001611b8084610d89565b611b8a9190612221565b600083815260086020526040902054909150808214611bdd576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611c2290600190612221565b6000838152600a602052604081205460098054939450909284908110611c5857634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060098381548110611c8757634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611ccd57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611cf483610d89565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b828054611d3990612264565b90600052602060002090601f016020900481019282611d5b5760008555611da1565b82601f10611d7457805160ff1916838001178555611da1565b82800160010185558215611da1579182015b82811115611da1578251825591602001919060010190611d86565b50611dad929150611db1565b5090565b5b80821115611dad5760008155600101611db2565b600067ffffffffffffffff80841115611de157611de16122fa565b604051601f8501601f19908116603f01168101908282118183101715611e0957611e096122fa565b81604052809350858152868686011115611e2257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e5357600080fd5b919050565b600060208284031215611e69578081fd5b61102682611e3c565b60008060408385031215611e84578081fd5b611e8d83611e3c565b9150611e9b60208401611e3c565b90509250929050565b600080600060608486031215611eb8578081fd5b611ec184611e3c565b9250611ecf60208501611e3c565b9150604084013590509250925092565b60008060008060808587031215611ef4578081fd5b611efd85611e3c565b9350611f0b60208601611e3c565b925060408501359150606085013567ffffffffffffffff811115611f2d578182fd5b8501601f81018713611f3d578182fd5b611f4c87823560208401611dc6565b91505092959194509250565b60008060408385031215611f6a578182fd5b611f7383611e3c565b915060208301358015158114611f87578182fd5b809150509250929050565b60008060408385031215611fa4578182fd5b611fad83611e3c565b946020939093013593505050565b600060208284031215611fcc578081fd5b813561102681612310565b600060208284031215611fe8578081fd5b815161102681612310565b600060208284031215612004578081fd5b813567ffffffffffffffff81111561201a578182fd5b8201601f8101841361202a578182fd5b6113cc84823560208401611dc6565b60006020828403121561204a578081fd5b5035919050565b60008060408385031215612063578182fd5b50508035926020909101359150565b6000815180845261208a816020860160208601612238565b601f01601f19169290920160200192915050565b600083516120b0818460208801612238565b8351908301906120c4818360208801612238565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061210090830184612072565b9695505050505050565b6020815260006110266020830184612072565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612208576122086122ce565b500190565b60008261221c5761221c6122e4565b500490565b600082821015612233576122336122ce565b500390565b60005b8381101561225357818101518382015260200161223b565b83811115610f4c5750506000910152565b600181811c9082168061227857607f821691505b6020821081141561229957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122b3576122b36122ce565b5060010190565b6000826122c9576122c96122e4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461087557600080fdfea26469706673582212204e713d1b4916096b1900ac942760ceaf4c51737608c58f2c44c08ac10357fb5a64736f6c63430008040033

Deployed Bytecode Sourcemap

48182:2450:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49603:173;;;;;;;;;;-1:-1:-1;49603:173:0;;;;;:::i;:::-;;:::i;:::-;;;6269:14:1;;6262:22;6244:41;;6232:2;6217:18;49603:173:0;;;;;;;;21725:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23284:221::-;;;;;;;;;;-1:-1:-1;23284:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5567:32:1;;;5549:51;;5537:2;5522:18;23284:221:0;5504:102:1;22807:411:0;;;;;;;;;;-1:-1:-1;22807:411:0;;;;;:::i;:::-;;:::i;:::-;;48952:272;;;:::i;35478:113::-;;;;;;;;;;-1:-1:-1;35566:10:0;:17;35478:113;;;17100:25:1;;;17088:2;17073:18;35478:113:0;17055:76:1;24174:339:0;;;;;;;;;;-1:-1:-1;24174:339:0;;;;;:::i;:::-;;:::i;50207:422::-;;;;;;:::i;:::-;;:::i;35146:256::-;;;;;;;;;;-1:-1:-1;35146:256:0;;;;;:::i;:::-;;:::i;49230:158::-;;;;;;;;;;;;;:::i;24584:185::-;;;;;;;;;;-1:-1:-1;24584:185:0;;;;;:::i;:::-;;:::i;41450:245::-;;;;;;;;;;-1:-1:-1;41450:245:0;;;;;:::i;:::-;;:::i;35668:233::-;;;;;;;;;;-1:-1:-1;35668:233:0;;;;;:::i;:::-;;:::i;48850:96::-;;;;;;;;;;-1:-1:-1;48850:96:0;;;;;:::i;:::-;;:::i;21419:239::-;;;;;;;;;;-1:-1:-1;21419:239:0;;;;;:::i;:::-;;:::i;48454:39::-;;;;;;;;;;;;48490:3;48454:39;;21149:208;;;;;;;;;;-1:-1:-1;21149:208:0;;;;;:::i;:::-;;:::i;43358:94::-;;;;;;;;;;;;;:::i;42707:87::-;;;;;;;;;;-1:-1:-1;42753:7:0;42780:6;-1:-1:-1;;;;;42780:6:0;42707:87;;21894:104;;;;;;;;;;;;;:::i;23577:295::-;;;;;;;;;;-1:-1:-1;23577:295:0;;;;;:::i;:::-;;:::i;24840:328::-;;;;;;;;;;-1:-1:-1;24840:328:0;;;;;:::i;:::-;;:::i;22069:334::-;;;;;;;;;;-1:-1:-1;22069:334:0;;;;;:::i;:::-;;:::i;48498:45::-;;;;;;;;;;;;48533:10;48498:45;;48619:44;;;;;;;;;;-1:-1:-1;48619:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;49782:229;;;;;;;;;;-1:-1:-1;49782:229:0;;;;;:::i;:::-;;:::i;50017:184::-;;;;;;;;;;-1:-1:-1;50017:184:0;;;;;:::i;:::-;;:::i;23943:164::-;;;;;;;;;;-1:-1:-1;23943:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24064:25:0;;;24040:4;24064:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23943:164;43607:192;;;;;;;;;;-1:-1:-1;43607:192:0;;;;;:::i;:::-;;:::i;49603:173::-;49714:4;49734:36;49758:11;49734:23;:36::i;:::-;49727:43;49603:173;-1:-1:-1;;49603:173:0:o;21725:100::-;21779:13;21812:5;21805:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21725:100;:::o;23284:221::-;23360:7;26767:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26767:16:0;23380:73;;;;-1:-1:-1;;;23380:73:0;;11810:2:1;23380:73:0;;;11792:21:1;11849:2;11829:18;;;11822:30;11888:34;11868:18;;;11861:62;-1:-1:-1;;;11939:18:1;;;11932:42;11991:19;;23380:73:0;;;;;;;;;-1:-1:-1;23473:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23473:24:0;;23284:221::o;22807:411::-;22888:13;22904:23;22919:7;22904:14;:23::i;:::-;22888:39;;22952:5;-1:-1:-1;;;;;22946:11:0;:2;-1:-1:-1;;;;;22946:11:0;;;22938:57;;;;-1:-1:-1;;;22938:57:0;;14104:2:1;22938:57:0;;;14086:21:1;14143:2;14123:18;;;14116:30;14182:34;14162:18;;;14155:62;-1:-1:-1;;;14233:18:1;;;14226:31;14274:19;;22938:57:0;14076:223:1;22938:57:0;16259:10;-1:-1:-1;;;;;23030:21:0;;;;:62;;-1:-1:-1;23055:37:0;23072:5;16259:10;23943:164;:::i;23055:37::-;23008:168;;;;-1:-1:-1;;;23008:168:0;;10203:2:1;23008:168:0;;;10185:21:1;10242:2;10222:18;;;10215:30;10281:34;10261:18;;;10254:62;10352:26;10332:18;;;10325:54;10396:19;;23008:168:0;10175:246:1;23008:168:0;23189:21;23198:2;23202:7;23189:8;:21::i;:::-;22807:411;;;:::o;48952:272::-;48998:14;49015:25;:15;44905:14;;44813:114;49015:25;48998:42;;48490:3;49055:6;:18;49047:45;;;;-1:-1:-1;;;49047:45:0;;15682:2:1;49047:45:0;;;15664:21:1;15721:2;15701:18;;;15694:30;-1:-1:-1;;;15740:18:1;;;15733:44;15794:18;;49047:45:0;15654:164:1;49047:45:0;48533:10;49107:9;:21;;49099:47;;;;-1:-1:-1;;;49099:47:0;;12584:2:1;49099:47:0;;;12566:21:1;12623:2;12603:18;;;12596:30;-1:-1:-1;;;12642:18:1;;;12635:43;12695:18;;49099:47:0;12556:163:1;49099:47:0;49155:29;49165:10;49177:6;49155:9;:29::i;:::-;49191:27;:15;45024:19;;45042:1;45024:19;;;44935:127;49191:27;48952:272;:::o;24174:339::-;24369:41;16259:10;24388:12;24402:7;24369:18;:41::i;:::-;24361:103;;;;-1:-1:-1;;;24361:103:0;;;;;;;:::i;:::-;24477:28;24487:4;24493:2;24497:7;24477:9;:28::i;50207:422::-;47162:1;47758:7;;:19;;47750:63;;;;-1:-1:-1;;;47750:63:0;;16025:2:1;47750:63:0;;;16007:21:1;16064:2;16044:18;;;16037:30;16103:33;16083:18;;;16076:61;16154:18;;47750:63:0;15997:181:1;47750:63:0;47162:1;47891:7;:18;50306:1:::1;50286:17:::0;;;:8:::1;:17;::::0;;;;;50278:64:::1;;;::::0;-1:-1:-1;;;50278:64:0;;7134:2:1;50278:64:0::1;::::0;::::1;7116:21:1::0;7173:2;7153:18;;;7146:30;7212:32;7192:18;;;7185:60;7262:18;;50278:64:0::1;7106:180:1::0;50278:64:0::1;50370:17;::::0;;;:8:::1;:17;::::0;;;;;50357:9:::1;:30;;50349:69;;;::::0;-1:-1:-1;;;50349:69:0;;8676:2:1;50349:69:0::1;::::0;::::1;8658:21:1::0;8715:2;8695:18;;;8688:30;8754:28;8734:18;;;8727:56;8800:18;;50349:69:0::1;8648:176:1::0;50349:69:0::1;50427:16;50446;50454:7;50446;:16::i;:::-;50427:35;;50469:40;50479:8;50489:10;50501:7;50469:9;:40::i;:::-;50536:1;50516:17:::0;;;:8:::1;:17;::::0;;;;;:21;;;50565:35;-1:-1:-1;;;;;50565:13:0;::::1;::::0;50586:9:::1;::::0;50536:1;50565:35;50536:1;50565:35;50586:9;50565:13;:35:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50546:54;;;50615:7;50607:16;;;::::0;::::1;;-1:-1:-1::0;;47118:1:0;48070:7;:22;-1:-1:-1;50207:422:0:o;35146:256::-;35243:7;35279:23;35296:5;35279:16;:23::i;:::-;35271:5;:31;35263:87;;;;-1:-1:-1;;;35263:87:0;;6722:2:1;35263:87:0;;;6704:21:1;6761:2;6741:18;;;6734:30;6800:34;6780:18;;;6773:62;-1:-1:-1;;;6851:18:1;;;6844:41;6902:19;;35263:87:0;6694:233:1;35263:87:0;-1:-1:-1;;;;;;35368:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35146:256::o;49230:158::-;42753:7;42780:6;-1:-1:-1;;;;;42780:6:0;16259:10;42927:23;42919:68;;;;-1:-1:-1;;;42919:68:0;;;;;;;:::i;:::-;49275:12:::1;42780:6:::0;;49293:46:::1;::::0;-1:-1:-1;;;;;42780:6:0;;;;49313:21:::1;::::0;49275:12;49293:46;49275:12;49293:46;49313:21;42780:6;49293:46:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49274:65;;;49354:7;49346:36;;;::::0;-1:-1:-1;;;49346:36:0;;14506:2:1;49346:36:0::1;::::0;::::1;14488:21:1::0;14545:2;14525:18;;;14518:30;-1:-1:-1;;;14564:18:1;;;14557:46;14620:18;;49346:36:0::1;14478:166:1::0;24584:185:0;24722:39;24739:4;24745:2;24749:7;24722:39;;;;;;;;;;;;:16;:39::i;41450:245::-;41568:41;16259:10;41587:12;16179:98;41568:41;41560:102;;;;-1:-1:-1;;;41560:102:0;;16385:2:1;41560:102:0;;;16367:21:1;16424:2;16404:18;;;16397:30;16463:34;16443:18;;;16436:62;-1:-1:-1;;;16514:18:1;;;16507:46;16570:19;;41560:102:0;16357:238:1;41560:102:0;41673:14;41679:7;41673:5;:14::i;35668:233::-;35743:7;35779:30;35566:10;:17;;35478:113;35779:30;35771:5;:38;35763:95;;;;-1:-1:-1;;;35763:95:0;;15269:2:1;35763:95:0;;;15251:21:1;15308:2;15288:18;;;15281:30;15347:34;15327:18;;;15320:62;-1:-1:-1;;;15398:18:1;;;15391:42;15450:19;;35763:95:0;15241:234:1;35763:95:0;35876:10;35887:5;35876:17;;;;;;-1:-1:-1;;;35876:17:0;;;;;;;;;;;;;;;;;35869:24;;35668:233;;;:::o;48850:96::-;42753:7;42780:6;-1:-1:-1;;;;;42780:6:0;16259:10;42927:23;42919:68;;;;-1:-1:-1;;;42919:68:0;;;;;;;:::i;:::-;48917:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48850:96:::0;:::o;21419:239::-;21491:7;21527:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21527:16:0;21562:19;21554:73;;;;-1:-1:-1;;;21554:73:0;;11039:2:1;21554:73:0;;;11021:21:1;11078:2;11058:18;;;11051:30;11117:34;11097:18;;;11090:62;-1:-1:-1;;;11168:18:1;;;11161:39;11217:19;;21554:73:0;11011:231:1;21149:208:0;21221:7;-1:-1:-1;;;;;21249:19:0;;21241:74;;;;-1:-1:-1;;;21241:74:0;;10628:2:1;21241:74:0;;;10610:21:1;10667:2;10647:18;;;10640:30;10706:34;10686:18;;;10679:62;-1:-1:-1;;;10757:18:1;;;10750:40;10807:19;;21241:74:0;10600:232:1;21241:74:0;-1:-1:-1;;;;;;21333:16:0;;;;;:9;:16;;;;;;;21149:208::o;43358:94::-;42753:7;42780:6;-1:-1:-1;;;;;42780:6:0;16259:10;42927:23;42919:68;;;;-1:-1:-1;;;42919:68:0;;;;;;;:::i;:::-;43423:21:::1;43441:1;43423:9;:21::i;:::-;43358:94::o:0;21894:104::-;21950:13;21983:7;21976:14;;;;;:::i;23577:295::-;-1:-1:-1;;;;;23680:24:0;;16259:10;23680:24;;23672:62;;;;-1:-1:-1;;;23672:62:0;;9436:2:1;23672:62:0;;;9418:21:1;9475:2;9455:18;;;9448:30;9514:27;9494:18;;;9487:55;9559:18;;23672:62:0;9408:175:1;23672:62:0;16259:10;23747:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23747:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23747:53:0;;;;;;;;;;23816:48;;6244:41:1;;;23747:42:0;;16259:10;23816:48;;6217:18:1;23816:48:0;;;;;;;23577:295;;:::o;24840:328::-;25015:41;16259:10;25048:7;25015:18;:41::i;:::-;25007:103;;;;-1:-1:-1;;;25007:103:0;;;;;;;:::i;:::-;25121:39;25135:4;25141:2;25145:7;25154:5;25121:13;:39::i;:::-;24840:328;;;;:::o;22069:334::-;26743:4;26767:16;;;:7;:16;;;;;;22142:13;;-1:-1:-1;;;;;26767:16:0;22168:76;;;;-1:-1:-1;;;22168:76:0;;13336:2:1;22168:76:0;;;13318:21:1;13375:2;13355:18;;;13348:30;13414:34;13394:18;;;13387:62;-1:-1:-1;;;13465:18:1;;;13458:45;13520:19;;22168:76:0;13308:237:1;22168:76:0;22257:21;22281:10;:8;:10::i;:::-;22257:34;;22333:1;22315:7;22309:21;:25;:86;;;;;;;;;;;;;;;;;22361:7;22370:18;:7;:16;:18::i;:::-;22344:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22309:86;22302:93;22069:334;-1:-1:-1;;;22069:334:0:o;49782:229::-;49870:16;49878:7;49870;:16::i;:::-;-1:-1:-1;;;;;49856:30:0;:10;-1:-1:-1;;;;;49856:30:0;;49848:66;;;;-1:-1:-1;;;49848:66:0;;13752:2:1;49848:66:0;;;13734:21:1;13791:2;13771:18;;;13764:30;13830:25;13810:18;;;13803:53;13873:18;;49848:66:0;13724:173:1;49848:66:0;49937:1;49929:5;:9;49921:18;;;;;;49948:17;;;;:8;:17;;;;;;;:25;;;49985:20;49957:7;;49985:20;;;;49968:5;17100:25:1;;17088:2;17073:18;;17055:76;49985:20:0;;;;;;;;49782:229;;:::o;50017:184::-;50092:16;50100:7;50092;:16::i;:::-;-1:-1:-1;;;;;50078:30:0;:10;-1:-1:-1;;;;;50078:30:0;;50070:68;;;;-1:-1:-1;;;50070:68:0;;16802:2:1;50070:68:0;;;16784:21:1;16841:2;16821:18;;;16814:30;16880:27;16860:18;;;16853:55;16925:18;;50070:68:0;16774:175:1;50070:68:0;50167:1;50147:17;;;:8;:17;;;;;;:21;;;50180:15;50156:7;;50180:15;;;50017:184;:::o;43607:192::-;42753:7;42780:6;-1:-1:-1;;;;;42780:6:0;16259:10;42927:23;42919:68;;;;-1:-1:-1;;;42919:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43696:22:0;::::1;43688:73;;;::::0;-1:-1:-1;;;43688:73:0;;7912:2:1;43688:73:0::1;::::0;::::1;7894:21:1::0;7951:2;7931:18;;;7924:30;7990:34;7970:18;;;7963:62;-1:-1:-1;;;8041:18:1;;;8034:36;8087:19;;43688:73:0::1;7884:228:1::0;43688:73:0::1;43772:19;43782:8;43772:9;:19::i;34838:224::-:0;34940:4;-1:-1:-1;;;;;;34964:50:0;;-1:-1:-1;;;34964:50:0;;:90;;;35018:36;35042:11;35018:23;:36::i;30660:174::-;30735:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30735:29:0;-1:-1:-1;;;;;30735:29:0;;;;;;;;:24;;30789:23;30735:24;30789:14;:23::i;:::-;-1:-1:-1;;;;;30780:46:0;;;;;;;;;;;30660:174;;:::o;27662:110::-;27738:26;27748:2;27752:7;27738:26;;;;;;;;;;;;:9;:26::i;26972:348::-;27065:4;26767:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26767:16:0;27082:73;;;;-1:-1:-1;;;27082:73:0;;9790:2:1;27082:73:0;;;9772:21:1;9829:2;9809:18;;;9802:30;9868:34;9848:18;;;9841:62;-1:-1:-1;;;9919:18:1;;;9912:42;9971:19;;27082:73:0;9762:234:1;27082:73:0;27166:13;27182:23;27197:7;27182:14;:23::i;:::-;27166:39;;27235:5;-1:-1:-1;;;;;27224:16:0;:7;-1:-1:-1;;;;;27224:16:0;;:51;;;;27268:7;-1:-1:-1;;;;;27244:31:0;:20;27256:7;27244:11;:20::i;:::-;-1:-1:-1;;;;;27244:31:0;;27224:51;:87;;;-1:-1:-1;;;;;;24064:25:0;;;24040:4;24064:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27279:32;27216:96;26972:348;-1:-1:-1;;;;26972:348:0:o;29964:578::-;30123:4;-1:-1:-1;;;;;30096:31:0;:23;30111:7;30096:14;:23::i;:::-;-1:-1:-1;;;;;30096:31:0;;30088:85;;;;-1:-1:-1;;;30088:85:0;;12926:2:1;30088:85:0;;;12908:21:1;12965:2;12945:18;;;12938:30;13004:34;12984:18;;;12977:62;-1:-1:-1;;;13055:18:1;;;13048:39;13104:19;;30088:85:0;12898:231:1;30088:85:0;-1:-1:-1;;;;;30192:16:0;;30184:65;;;;-1:-1:-1;;;30184:65:0;;9031:2:1;30184:65:0;;;9013:21:1;9070:2;9050:18;;;9043:30;9109:34;9089:18;;;9082:62;-1:-1:-1;;;9160:18:1;;;9153:34;9204:19;;30184:65:0;9003:226:1;30184:65:0;30262:39;30283:4;30289:2;30293:7;30262:20;:39::i;:::-;30366:29;30383:1;30387:7;30366:8;:29::i;:::-;-1:-1:-1;;;;;30408:15:0;;;;;;:9;:15;;;;;:20;;30427:1;;30408:15;:20;;30427:1;;30408:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30439:13:0;;;;;;:9;:13;;;;;:18;;30456:1;;30439:13;:18;;30456:1;;30439:18;:::i;:::-;;;;-1:-1:-1;;30468:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30468:21:0;-1:-1:-1;;;;;30468:21:0;;;;;;;;;30507:27;;30468:16;;30507:27;;;;;;;29964:578;;;:::o;29267:360::-;29327:13;29343:23;29358:7;29343:14;:23::i;:::-;29327:39;;29379:48;29400:5;29415:1;29419:7;29379:20;:48::i;:::-;29468:29;29485:1;29489:7;29468:8;:29::i;:::-;-1:-1:-1;;;;;29510:16:0;;;;;;:9;:16;;;;;:21;;29530:1;;29510:16;:21;;29530:1;;29510:21;:::i;:::-;;;;-1:-1:-1;;29549:16:0;;;;:7;:16;;;;;;29542:23;;-1:-1:-1;;;;;;29542:23:0;;;29583:36;29557:7;;29549:16;-1:-1:-1;;;;;29583:36:0;;;;;29549:16;;29583:36;29267:360;;:::o;43807:173::-;43863:16;43882:6;;-1:-1:-1;;;;;43899:17:0;;;-1:-1:-1;;;;;;43899:17:0;;;;;;43932:40;;43882:6;;;;;;;43932:40;;43863:16;43932:40;43807:173;;:::o;26050:315::-;26207:28;26217:4;26223:2;26227:7;26207:9;:28::i;:::-;26254:48;26277:4;26283:2;26287:7;26296:5;26254:22;:48::i;:::-;26246:111;;;;-1:-1:-1;;;26246:111:0;;;;;;;:::i;48736:108::-;48796:13;48825;48818:20;;;;;:::i;16713:723::-;16769:13;16990:10;16986:53;;-1:-1:-1;;17017:10:0;;;;;;;;;;;;-1:-1:-1;;;17017:10:0;;;;;16713:723::o;16986:53::-;17064:5;17049:12;17105:78;17112:9;;17105:78;;17138:8;;;;:::i;:::-;;-1:-1:-1;17161:10:0;;-1:-1:-1;17169:2:0;17161:10;;:::i;:::-;;;17105:78;;;17193:19;17225:6;17215:17;;;;;;-1:-1:-1;;;17215:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17215:17:0;;17193:39;;17243:154;17250:10;;17243:154;;17277:11;17287:1;17277:11;;:::i;:::-;;-1:-1:-1;17346:10:0;17354:2;17346:5;:10;:::i;:::-;17333:24;;:2;:24;:::i;:::-;17320:39;;17303:6;17310;17303:14;;;;;;-1:-1:-1;;;17303:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17303:56:0;;;;;;;;-1:-1:-1;17374:11:0;17383:2;17374:11;;:::i;:::-;;;17243:154;;20780:305;20882:4;-1:-1:-1;;;;;;20919:40:0;;-1:-1:-1;;;20919:40:0;;:105;;-1:-1:-1;;;;;;;20976:48:0;;-1:-1:-1;;;20976:48:0;20919:105;:158;;;-1:-1:-1;;;;;;;;;;19386:40:0;;;21041:36;19277:157;27999:321;28129:18;28135:2;28139:7;28129:5;:18::i;:::-;28180:54;28211:1;28215:2;28219:7;28228:5;28180:22;:54::i;:::-;28158:154;;;;-1:-1:-1;;;28158:154:0;;;;;;;:::i;49394:203::-;49546:45;49573:4;49579:2;49583:7;49546:26;:45::i;31399:799::-;31554:4;-1:-1:-1;;;;;31575:13:0;;8537:20;8585:8;31571:620;;31611:72;;-1:-1:-1;;;31611:72:0;;-1:-1:-1;;;;;31611:36:0;;;;;:72;;16259:10;;31662:4;;31668:7;;31677:5;;31611:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31611:72:0;;;;;;;;-1:-1:-1;;31611:72:0;;;;;;;;;;;;:::i;:::-;;;31607:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31853:13:0;;31849:272;;31896:60;;-1:-1:-1;;;31896:60:0;;;;;;;:::i;31849:272::-;32071:6;32065:13;32056:6;32052:2;32048:15;32041:38;31607:529;-1:-1:-1;;;;;;31734:51:0;-1:-1:-1;;;31734:51:0;;-1:-1:-1;31727:58:0;;31571:620;-1:-1:-1;32175:4:0;31399:799;;;;;;:::o;28656:382::-;-1:-1:-1;;;;;28736:16:0;;28728:61;;;;-1:-1:-1;;;28728:61:0;;11449:2:1;28728:61:0;;;11431:21:1;;;11468:18;;;11461:30;11527:34;11507:18;;;11500:62;11579:18;;28728:61:0;11421:182:1;28728:61:0;26743:4;26767:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26767:16:0;:30;28800:58;;;;-1:-1:-1;;;28800:58:0;;8319:2:1;28800:58:0;;;8301:21:1;8358:2;8338:18;;;8331:30;8397;8377:18;;;8370:58;8445:18;;28800:58:0;8291:178:1;28800:58:0;28871:45;28900:1;28904:2;28908:7;28871:20;:45::i;:::-;-1:-1:-1;;;;;28929:13:0;;;;;;:9;:13;;;;;:18;;28946:1;;28929:13;:18;;28946:1;;28929:18;:::i;:::-;;;;-1:-1:-1;;28958:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28958:21:0;-1:-1:-1;;;;;28958:21:0;;;;;;;;28997:33;;28958:16;;;28997:33;;28958:16;;28997:33;28656:382;;:::o;36514:589::-;-1:-1:-1;;;;;36720:18:0;;36716:187;;36755:40;36787:7;37930:10;:17;;37903:24;;;;:15;:24;;;;;:44;;;37958:24;;;;;;;;;;;;37826:164;36755:40;36716:187;;;36825:2;-1:-1:-1;;;;;36817:10:0;:4;-1:-1:-1;;;;;36817:10:0;;36813:90;;36844:47;36877:4;36883:7;36844:32;:47::i;:::-;-1:-1:-1;;;;;36917:16:0;;36913:183;;36950:45;36987:7;36950:36;:45::i;36913:183::-;37023:4;-1:-1:-1;;;;;37017:10:0;:2;-1:-1:-1;;;;;37017:10:0;;37013:83;;37044:40;37072:2;37076:7;37044:27;:40::i;38617:988::-;38883:22;38933:1;38908:22;38925:4;38908:16;:22::i;:::-;:26;;;;:::i;:::-;38945:18;38966:26;;;:17;:26;;;;;;38883:51;;-1:-1:-1;39099:28:0;;;39095:328;;-1:-1:-1;;;;;39166:18:0;;39144:19;39166:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39217:30;;;;;;:44;;;39334:30;;:17;:30;;;;;:43;;;39095:328;-1:-1:-1;39519:26:0;;;;:17;:26;;;;;;;;39512:33;;;-1:-1:-1;;;;;39563:18:0;;;;;:12;:18;;;;;:34;;;;;;;39556:41;38617:988::o;39900:1079::-;40178:10;:17;40153:22;;40178:21;;40198:1;;40178:21;:::i;:::-;40210:18;40231:24;;;:15;:24;;;;;;40604:10;:26;;40153:46;;-1:-1:-1;40231:24:0;;40153:46;;40604:26;;;;-1:-1:-1;;;40604:26:0;;;;;;;;;;;;;;;;;40582:48;;40668:11;40643:10;40654;40643:22;;;;;;-1:-1:-1;;;40643:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40748:28;;;:15;:28;;;;;;;:41;;;40920:24;;;;;40913:31;40955:10;:16;;;;;-1:-1:-1;;;40955:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39900:1079;;;;:::o;37404:221::-;37489:14;37506:20;37523:2;37506:16;:20::i;:::-;-1:-1:-1;;;;;37537:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37582:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37404:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;3582:6;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;4057:6;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:1;;4068:120;-1:-1:-1;4068:120:1:o;4193:258::-;4261:6;4269;4322:2;4310:9;4301:7;4297:23;4293:32;4290:2;;;4343:6;4335;4328:22;4290:2;-1:-1:-1;;4371:23:1;;;4441:2;4426:18;;;4413:32;;-1:-1:-1;4280:171:1:o;4456:257::-;4497:3;4535:5;4529:12;4562:6;4557:3;4550:19;4578:63;4634:6;4627:4;4622:3;4618:14;4611:4;4604:5;4600:16;4578:63;:::i;:::-;4695:2;4674:15;-1:-1:-1;;4670:29:1;4661:39;;;;4702:4;4657:50;;4505:208;-1:-1:-1;;4505:208:1:o;4718:470::-;4897:3;4935:6;4929:13;4951:53;4997:6;4992:3;4985:4;4977:6;4973:17;4951:53;:::i;:::-;5067:13;;5026:16;;;;5089:57;5067:13;5026:16;5123:4;5111:17;;5089:57;:::i;:::-;5162:20;;4905:283;-1:-1:-1;;;;4905:283:1:o;5611:488::-;-1:-1:-1;;;;;5880:15:1;;;5862:34;;5932:15;;5927:2;5912:18;;5905:43;5979:2;5964:18;;5957:34;;;6027:3;6022:2;6007:18;;6000:31;;;5805:4;;6048:45;;6073:19;;6065:6;6048:45;:::i;:::-;6040:53;5814:285;-1:-1:-1;;;;;;5814:285:1:o;6296:219::-;6445:2;6434:9;6427:21;6408:4;6465:44;6505:2;6494:9;6490:18;6482:6;6465:44;:::i;7291:414::-;7493:2;7475:21;;;7532:2;7512:18;;;7505:30;7571:34;7566:2;7551:18;;7544:62;-1:-1:-1;;;7637:2:1;7622:18;;7615:48;7695:3;7680:19;;7465:240::o;12021:356::-;12223:2;12205:21;;;12242:18;;;12235:30;12301:34;12296:2;12281:18;;12274:62;12368:2;12353:18;;12195:182::o;14649:413::-;14851:2;14833:21;;;14890:2;14870:18;;;14863:30;14929:34;14924:2;14909:18;;14902:62;-1:-1:-1;;;14995:2:1;14980:18;;14973:47;15052:3;15037:19;;14823:239::o;17136:128::-;17176:3;17207:1;17203:6;17200:1;17197:13;17194:2;;;17213:18;;:::i;:::-;-1:-1:-1;17249:9:1;;17184:80::o;17269:120::-;17309:1;17335;17325:2;;17340:18;;:::i;:::-;-1:-1:-1;17374:9:1;;17315:74::o;17394:125::-;17434:4;17462:1;17459;17456:8;17453:2;;;17467:18;;:::i;:::-;-1:-1:-1;17504:9:1;;17443:76::o;17524:258::-;17596:1;17606:113;17620:6;17617:1;17614:13;17606:113;;;17696:11;;;17690:18;17677:11;;;17670:39;17642:2;17635:10;17606:113;;;17737:6;17734:1;17731:13;17728:2;;;-1:-1:-1;;17772:1:1;17754:16;;17747:27;17577:205::o;17787:380::-;17866:1;17862:12;;;;17909;;;17930:2;;17984:4;17976:6;17972:17;17962:27;;17930:2;18037;18029:6;18026:14;18006:18;18003:38;18000:2;;;18083:10;18078:3;18074:20;18071:1;18064:31;18118:4;18115:1;18108:15;18146:4;18143:1;18136:15;18000:2;;17842:325;;;:::o;18172:135::-;18211:3;-1:-1:-1;;18232:17:1;;18229:2;;;18252:18;;:::i;:::-;-1:-1:-1;18299:1:1;18288:13;;18219:88::o;18312:112::-;18344:1;18370;18360:2;;18375:18;;:::i;:::-;-1:-1:-1;18409:9:1;;18350:74::o;18429:127::-;18490:10;18485:3;18481:20;18478:1;18471:31;18521:4;18518:1;18511:15;18545:4;18542:1;18535:15;18561:127;18622:10;18617:3;18613:20;18610:1;18603:31;18653:4;18650:1;18643:15;18677:4;18674:1;18667:15;18693:127;18754:10;18749:3;18745:20;18742:1;18735:31;18785:4;18782:1;18775:15;18809:4;18806:1;18799:15;18825:131;-1:-1:-1;;;;;;18899:32:1;;18889:43;;18879:2;;18946:1;18943;18936:12

Swarm Source

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