ETH Price: $3,446.03 (-1.00%)
Gas: 9 Gwei

Token

WrappedPhrocks (WPHR)
 

Overview

Max Total Supply

78 WPHR

Holders

59

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
fredvanvleet.eth
Balance
1 WPHR
0xc2cabb33ad896375cc6bd686dbc70030ebc5cf4d
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:
WrappedPhrocks

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-26
*/

// 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/token/ERC721/utils/[email protected]

 

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC721Receiver} interface.
 *
 * Accepts all token transfers.
 * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}.
 */
contract ERC721Holder is IERC721Receiver {
    /**
     * @dev See {IERC721Receiver-onERC721Received}.
     *
     * Always returns `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address,
        address,
        uint256,
        bytes memory
    ) public virtual override returns (bytes4) {
        return this.onERC721Received.selector;
    }
}


// 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/WrappedPhrocks.sol

 

pragma solidity ^0.8.0;






interface IOriginalPhrocks {
  function listings(uint256) external returns (uint256);
}

contract WrappedPhrocks is Ownable, ERC721Enumerable, ERC721Burnable, ERC721Holder, ReentrancyGuard {
  event List(uint256 indexed tokenId, uint256 value);
  event Delist(uint256 indexed tokenId);

  IOriginalPhrocks immutable originalPhrocks;

  uint256 public constant MAX_ROCKS = 100;
  string private _baseTokenURI = "https://etherphrock.com/phrock/";

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

  constructor(address originalPhrocksAddress) ERC721("WrappedPhrocks", "WPHR") {
    originalPhrocks = IOriginalPhrocks(originalPhrocksAddress);
  }

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

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

  function onERC721Received(address, address from, uint256 tokenId, bytes memory) public override returns (bytes4) {
    require(msg.sender == address(originalPhrocks), "Contract must be original Phrocks");
    require(originalPhrocks.listings(tokenId) == 0, "Original must not be listed");
    _safeMint(from, tokenId);
    return this.onERC721Received.selector;
  }

  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) {
    listings[tokenId] = 0;
    emit Delist(tokenId);
    super._beforeTokenTransfer(from, to, tokenId);
  }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"originalPhrocksAddress","type":"address"}],"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":[{"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","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"}]

60e0604052601f60a08190527f68747470733a2f2f65746865727068726f636b2e636f6d2f7068726f636b2f0060c09081526200004091600c91906200016c565b503480156200004e57600080fd5b506040516200272f3803806200272f833981016040819052620000719162000212565b6040518060400160405280600e81526020016d577261707065645068726f636b7360901b815250604051806040016040528060048152602001632ba8242960e11b815250620000cf620000c96200011860201b60201c565b6200011c565b8151620000e49060019060208501906200016c565b508051620000fa9060029060208401906200016c565b50506001600b555060601b6001600160601b0319166080526200027f565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200017a9062000242565b90600052602060002090601f0160209004810192826200019e5760008555620001e9565b82601f10620001b957805160ff1916838001178555620001e9565b82800160010185558215620001e9579182015b82811115620001e9578251825591602001919060010190620001cc565b50620001f7929150620001fb565b5090565b5b80821115620001f75760008155600101620001fc565b60006020828403121562000224578081fd5b81516001600160a01b03811681146200023b578182fd5b9392505050565b600181811c908216806200025757607f821691505b602082108114156200027957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c61248a620002a5600039600081816107e0015261086d015261248a6000f3fe6080604052600436106101b75760003560e01c80636352211e116100ec578063b88d4fde1161008a578063e15db46411610064578063e15db464146104d7578063e4adaa38146104f7578063e985e9c514610517578063f2fde38b1461056057600080fd5b8063b88d4fde1461046a578063c87b56dd1461048a578063de74e57b146104aa57600080fd5b8063715018a6116100c6578063715018a6146104025780638da5cb5b1461041757806395d89b4114610435578063a22cb4651461044a57600080fd5b80636352211e146103ad5780636cf8a341146103cd57806370a08231146103e257600080fd5b8063270b154a1161015957806342842e0e1161013357806342842e0e1461032d57806342966c681461034d5780634f6ccce71461036d57806355f804b31461038d57600080fd5b8063270b154a146102e55780632f745c59146102f85780633ccfd60b1461031857600080fd5b8063095ea7b311610195578063095ea7b31461024b578063150b7a021461026d57806318160ddd146102a657806323b872dd146102c557600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046120d1565b610580565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610591565b6040516101e89190612238565b34801561021f57600080fd5b5061023361022e36600461214f565b610623565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b6102663660046120a8565b6106bd565b005b34801561027957600080fd5b5061028d610288366004611ff5565b6107d3565b6040516001600160e01b031990911681526020016101e8565b3480156102b257600080fd5b506009545b6040519081526020016101e8565b3480156102d157600080fd5b5061026b6102e0366004611fba565b61095a565b61026b6102f336600461214f565b61098c565b34801561030457600080fd5b506102b76103133660046120a8565b610b2a565b34801561032457600080fd5b5061026b610bc0565b34801561033957600080fd5b5061026b610348366004611fba565b610c83565b34801561035957600080fd5b5061026b61036836600461214f565b610c9e565b34801561037957600080fd5b506102b761038836600461214f565b610d15565b34801561039957600080fd5b5061026b6103a8366004612109565b610db6565b3480156103b957600080fd5b506102336103c836600461214f565b610df7565b3480156103d957600080fd5b506102b7606481565b3480156103ee57600080fd5b506102b76103fd366004611f6e565b610e6e565b34801561040e57600080fd5b5061026b610ef5565b34801561042357600080fd5b506000546001600160a01b0316610233565b34801561044157600080fd5b50610206610f2b565b34801561045657600080fd5b5061026b61046536600461206e565b610f3a565b34801561047657600080fd5b5061026b610485366004611ff5565b610fff565b34801561049657600080fd5b506102066104a536600461214f565b611037565b3480156104b657600080fd5b506102b76104c536600461214f565b600d6020526000908152604090205481565b3480156104e357600080fd5b5061026b6104f236600461217f565b611112565b34801561050357600080fd5b5061026b61051236600461214f565b6111d9565b34801561052357600080fd5b506101dc610532366004611f88565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561056c57600080fd5b5061026b61057b366004611f6e565b61127d565b600061058b82611315565b92915050565b6060600180546105a090612392565b80601f01602080910402602001604051908101604052809291908181526020018280546105cc90612392565b80156106195780601f106105ee57610100808354040283529160200191610619565b820191906000526020600020905b8154815290600101906020018083116105fc57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166106a15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106c882610df7565b9050806001600160a01b0316836001600160a01b031614156107365760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610698565b336001600160a01b038216148061075257506107528133610532565b6107c45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610698565b6107ce838361133a565b505050565b6000336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146108575760405162461bcd60e51b815260206004820152602160248201527f436f6e7472616374206d757374206265206f726967696e616c205068726f636b6044820152607360f81b6064820152608401610698565b60405163de74e57b60e01b8152600481018490527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063de74e57b90602401602060405180830381600087803b1580156108b957600080fd5b505af11580156108cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f19190612167565b1561093e5760405162461bcd60e51b815260206004820152601b60248201527f4f726967696e616c206d757374206e6f74206265206c697374656400000000006044820152606401610698565b61094884846113a8565b50630a85bd0160e11b5b949350505050565b610965335b826113c2565b6109815760405162461bcd60e51b8152600401610698906122d2565b6107ce8383836114b5565b6002600b5414156109df5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610698565b6002600b556000818152600d6020526040902054610a3f5760405162461bcd60e51b815260206004820152601e60248201527f5068726f636b206d75737420626520666f722073616c6520746f2062757900006044820152606401610698565b6000818152600d6020526040902054341015610a9d5760405162461bcd60e51b815260206004820152601a60248201527f4d7573742070617920656e6f75676820666f72207068726f636b0000000000006044820152606401610698565b6000610aa882610df7565b9050610ab58133846114b5565b6000828152600d6020526040808220829055516001600160a01b0383169034908381818185875af1925050503d8060008114610b0d576040519150601f19603f3d011682016040523d82523d6000602084013e610b12565b606091505b5050905080610b2057600080fd5b50506001600b5550565b6000610b3583610e6e565b8210610b975760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610698565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610bea5760405162461bcd60e51b81526004016106989061229d565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610c37576040519150601f19603f3d011682016040523d82523d6000602084013e610c3c565b606091505b5050905080610c805760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610698565b50565b6107ce83838360405180602001604052806000815250610fff565b610ca73361095f565b610d0c5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610698565b610c8081611660565b6000610d2060095490565b8210610d835760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610698565b60098281548110610da457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000546001600160a01b03163314610de05760405162461bcd60e51b81526004016106989061229d565b8051610df390600c906020840190611e43565b5050565b6000818152600360205260408120546001600160a01b03168061058b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610698565b60006001600160a01b038216610ed95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610698565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610f1f5760405162461bcd60e51b81526004016106989061229d565b610f296000611707565b565b6060600280546105a090612392565b6001600160a01b038216331415610f935760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610698565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61100933836113c2565b6110255760405162461bcd60e51b8152600401610698906122d2565b61103184848484611757565b50505050565b6000818152600360205260409020546060906001600160a01b03166110b65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610698565b60006110c061178a565b905060008151116110e0576040518060200160405280600081525061110b565b806110ea84611799565b6040516020016110fb9291906121cc565b6040516020818303038152906040525b9392505050565b61111b82610df7565b6001600160a01b0316336001600160a01b03161461117b5760405162461bcd60e51b815260206004820152601760248201527f4d757374206f776e207068726f636b20746f2073656c6c0000000000000000006044820152606401610698565b6000811161118857600080fd5b6000828152600d6020526040908190208290555182907fc38e7832a23e5e13678e20a3184751ed5c3a1a74483e4f70f5e172e3b4ce5ac3906111cd9084815260200190565b60405180910390a25050565b6111e281610df7565b6001600160a01b0316336001600160a01b0316146112425760405162461bcd60e51b815260206004820152601960248201527f4d757374206f776e207068726f636b20746f2064656c697374000000000000006044820152606401610698565b6000818152600d60205260408082208290555182917f2c525dc2c086b9a2f3b902d229853b5b838fcedc22933c40ed7ebe4890a53a8291a250565b6000546001600160a01b031633146112a75760405162461bcd60e51b81526004016106989061229d565b6001600160a01b03811661130c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610698565b610c8081611707565b60006001600160e01b0319821663780e9d6360e01b148061058b575061058b826118b3565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061136f82610df7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610df3828260405180602001604052806000815250611903565b6000818152600360205260408120546001600160a01b031661143b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610698565b600061144683610df7565b9050806001600160a01b0316846001600160a01b031614806114815750836001600160a01b031661147684610623565b6001600160a01b0316145b8061095257506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff16610952565b826001600160a01b03166114c882610df7565b6001600160a01b0316146115305760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610698565b6001600160a01b0382166115925760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610698565b61159d838383611936565b6115a860008261133a565b6001600160a01b03831660009081526004602052604081208054600192906115d190849061234f565b90915550506001600160a01b03821660009081526004602052604081208054600192906115ff908490612323565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061166b82610df7565b905061167981600084611936565b61168460008361133a565b6001600160a01b03811660009081526004602052604081208054600192906116ad90849061234f565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6117628484846114b5565b61176e84848484611979565b6110315760405162461bcd60e51b81526004016106989061224b565b6060600c80546105a090612392565b6060816117bd5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117e757806117d1816123cd565b91506117e09050600a8361233b565b91506117c1565b60008167ffffffffffffffff81111561181057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561183a576020820181803683370190505b5090505b84156109525761184f60018361234f565b915061185c600a866123e8565b611867906030612323565b60f81b81838151811061188a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506118ac600a8661233b565b945061183e565b60006001600160e01b031982166380ac58cd60e01b14806118e457506001600160e01b03198216635b5e139f60e01b145b8061058b57506301ffc9a760e01b6001600160e01b031983161461058b565b61190d8383611a83565b61191a6000848484611979565b6107ce5760405162461bcd60e51b81526004016106989061224b565b6000818152600d60205260408082208290555182917f2c525dc2c086b9a2f3b902d229853b5b838fcedc22933c40ed7ebe4890a53a8291a26107ce838383611bd1565b60006001600160a01b0384163b15611a7b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119bd9033908990889088906004016121fb565b602060405180830381600087803b1580156119d757600080fd5b505af1925050508015611a07575060408051601f3d908101601f19168201909252611a04918101906120ed565b60015b611a61573d808015611a35576040519150601f19603f3d011682016040523d82523d6000602084013e611a3a565b606091505b508051611a595760405162461bcd60e51b81526004016106989061224b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610952565b506001610952565b6001600160a01b038216611ad95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610698565b6000818152600360205260409020546001600160a01b031615611b3e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610698565b611b4a60008383611936565b6001600160a01b0382166000908152600460205260408120805460019290611b73908490612323565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b038316611c2c57611c2781600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611c4f565b816001600160a01b0316836001600160a01b031614611c4f57611c4f8382611c89565b6001600160a01b038216611c66576107ce81611d26565b826001600160a01b0316826001600160a01b0316146107ce576107ce8282611dff565b60006001611c9684610e6e565b611ca0919061234f565b600083815260086020526040902054909150808214611cf3576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611d389060019061234f565b6000838152600a602052604081205460098054939450909284908110611d6e57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060098381548110611d9d57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611de357634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611e0a83610e6e565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b828054611e4f90612392565b90600052602060002090601f016020900481019282611e715760008555611eb7565b82601f10611e8a57805160ff1916838001178555611eb7565b82800160010185558215611eb7579182015b82811115611eb7578251825591602001919060010190611e9c565b50611ec3929150611ec7565b5090565b5b80821115611ec35760008155600101611ec8565b600067ffffffffffffffff80841115611ef757611ef7612428565b604051601f8501601f19908116603f01168101908282118183101715611f1f57611f1f612428565b81604052809350858152868686011115611f3857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f6957600080fd5b919050565b600060208284031215611f7f578081fd5b61110b82611f52565b60008060408385031215611f9a578081fd5b611fa383611f52565b9150611fb160208401611f52565b90509250929050565b600080600060608486031215611fce578081fd5b611fd784611f52565b9250611fe560208501611f52565b9150604084013590509250925092565b6000806000806080858703121561200a578081fd5b61201385611f52565b935061202160208601611f52565b925060408501359150606085013567ffffffffffffffff811115612043578182fd5b8501601f81018713612053578182fd5b61206287823560208401611edc565b91505092959194509250565b60008060408385031215612080578182fd5b61208983611f52565b91506020830135801515811461209d578182fd5b809150509250929050565b600080604083850312156120ba578182fd5b6120c383611f52565b946020939093013593505050565b6000602082840312156120e2578081fd5b813561110b8161243e565b6000602082840312156120fe578081fd5b815161110b8161243e565b60006020828403121561211a578081fd5b813567ffffffffffffffff811115612130578182fd5b8201601f81018413612140578182fd5b61095284823560208401611edc565b600060208284031215612160578081fd5b5035919050565b600060208284031215612178578081fd5b5051919050565b60008060408385031215612191578182fd5b50508035926020909101359150565b600081518084526121b8816020860160208601612366565b601f01601f19169290920160200192915050565b600083516121de818460208801612366565b8351908301906121f2818360208801612366565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061222e908301846121a0565b9695505050505050565b60208152600061110b60208301846121a0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612336576123366123fc565b500190565b60008261234a5761234a612412565b500490565b600082821015612361576123616123fc565b500390565b60005b83811015612381578181015183820152602001612369565b838111156110315750506000910152565b600181811c908216806123a657607f821691505b602082108114156123c757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123e1576123e16123fc565b5060010190565b6000826123f7576123f7612412565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c8057600080fdfea2646970667358221220a666d3a9559730c30c3121c60512bdfa13b9f851834d9c9fb635cabef2327b4064736f6c6343000804003300000000000000000000000023fc142a6ba57a37855d9d52702fda2ec4b4fd53

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636352211e116100ec578063b88d4fde1161008a578063e15db46411610064578063e15db464146104d7578063e4adaa38146104f7578063e985e9c514610517578063f2fde38b1461056057600080fd5b8063b88d4fde1461046a578063c87b56dd1461048a578063de74e57b146104aa57600080fd5b8063715018a6116100c6578063715018a6146104025780638da5cb5b1461041757806395d89b4114610435578063a22cb4651461044a57600080fd5b80636352211e146103ad5780636cf8a341146103cd57806370a08231146103e257600080fd5b8063270b154a1161015957806342842e0e1161013357806342842e0e1461032d57806342966c681461034d5780634f6ccce71461036d57806355f804b31461038d57600080fd5b8063270b154a146102e55780632f745c59146102f85780633ccfd60b1461031857600080fd5b8063095ea7b311610195578063095ea7b31461024b578063150b7a021461026d57806318160ddd146102a657806323b872dd146102c557600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046120d1565b610580565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610591565b6040516101e89190612238565b34801561021f57600080fd5b5061023361022e36600461214f565b610623565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b6102663660046120a8565b6106bd565b005b34801561027957600080fd5b5061028d610288366004611ff5565b6107d3565b6040516001600160e01b031990911681526020016101e8565b3480156102b257600080fd5b506009545b6040519081526020016101e8565b3480156102d157600080fd5b5061026b6102e0366004611fba565b61095a565b61026b6102f336600461214f565b61098c565b34801561030457600080fd5b506102b76103133660046120a8565b610b2a565b34801561032457600080fd5b5061026b610bc0565b34801561033957600080fd5b5061026b610348366004611fba565b610c83565b34801561035957600080fd5b5061026b61036836600461214f565b610c9e565b34801561037957600080fd5b506102b761038836600461214f565b610d15565b34801561039957600080fd5b5061026b6103a8366004612109565b610db6565b3480156103b957600080fd5b506102336103c836600461214f565b610df7565b3480156103d957600080fd5b506102b7606481565b3480156103ee57600080fd5b506102b76103fd366004611f6e565b610e6e565b34801561040e57600080fd5b5061026b610ef5565b34801561042357600080fd5b506000546001600160a01b0316610233565b34801561044157600080fd5b50610206610f2b565b34801561045657600080fd5b5061026b61046536600461206e565b610f3a565b34801561047657600080fd5b5061026b610485366004611ff5565b610fff565b34801561049657600080fd5b506102066104a536600461214f565b611037565b3480156104b657600080fd5b506102b76104c536600461214f565b600d6020526000908152604090205481565b3480156104e357600080fd5b5061026b6104f236600461217f565b611112565b34801561050357600080fd5b5061026b61051236600461214f565b6111d9565b34801561052357600080fd5b506101dc610532366004611f88565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561056c57600080fd5b5061026b61057b366004611f6e565b61127d565b600061058b82611315565b92915050565b6060600180546105a090612392565b80601f01602080910402602001604051908101604052809291908181526020018280546105cc90612392565b80156106195780601f106105ee57610100808354040283529160200191610619565b820191906000526020600020905b8154815290600101906020018083116105fc57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166106a15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106c882610df7565b9050806001600160a01b0316836001600160a01b031614156107365760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610698565b336001600160a01b038216148061075257506107528133610532565b6107c45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610698565b6107ce838361133a565b505050565b6000336001600160a01b037f00000000000000000000000023fc142a6ba57a37855d9d52702fda2ec4b4fd5316146108575760405162461bcd60e51b815260206004820152602160248201527f436f6e7472616374206d757374206265206f726967696e616c205068726f636b6044820152607360f81b6064820152608401610698565b60405163de74e57b60e01b8152600481018490527f00000000000000000000000023fc142a6ba57a37855d9d52702fda2ec4b4fd536001600160a01b03169063de74e57b90602401602060405180830381600087803b1580156108b957600080fd5b505af11580156108cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f19190612167565b1561093e5760405162461bcd60e51b815260206004820152601b60248201527f4f726967696e616c206d757374206e6f74206265206c697374656400000000006044820152606401610698565b61094884846113a8565b50630a85bd0160e11b5b949350505050565b610965335b826113c2565b6109815760405162461bcd60e51b8152600401610698906122d2565b6107ce8383836114b5565b6002600b5414156109df5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610698565b6002600b556000818152600d6020526040902054610a3f5760405162461bcd60e51b815260206004820152601e60248201527f5068726f636b206d75737420626520666f722073616c6520746f2062757900006044820152606401610698565b6000818152600d6020526040902054341015610a9d5760405162461bcd60e51b815260206004820152601a60248201527f4d7573742070617920656e6f75676820666f72207068726f636b0000000000006044820152606401610698565b6000610aa882610df7565b9050610ab58133846114b5565b6000828152600d6020526040808220829055516001600160a01b0383169034908381818185875af1925050503d8060008114610b0d576040519150601f19603f3d011682016040523d82523d6000602084013e610b12565b606091505b5050905080610b2057600080fd5b50506001600b5550565b6000610b3583610e6e565b8210610b975760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610698565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610bea5760405162461bcd60e51b81526004016106989061229d565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610c37576040519150601f19603f3d011682016040523d82523d6000602084013e610c3c565b606091505b5050905080610c805760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610698565b50565b6107ce83838360405180602001604052806000815250610fff565b610ca73361095f565b610d0c5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610698565b610c8081611660565b6000610d2060095490565b8210610d835760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610698565b60098281548110610da457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000546001600160a01b03163314610de05760405162461bcd60e51b81526004016106989061229d565b8051610df390600c906020840190611e43565b5050565b6000818152600360205260408120546001600160a01b03168061058b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610698565b60006001600160a01b038216610ed95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610698565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610f1f5760405162461bcd60e51b81526004016106989061229d565b610f296000611707565b565b6060600280546105a090612392565b6001600160a01b038216331415610f935760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610698565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61100933836113c2565b6110255760405162461bcd60e51b8152600401610698906122d2565b61103184848484611757565b50505050565b6000818152600360205260409020546060906001600160a01b03166110b65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610698565b60006110c061178a565b905060008151116110e0576040518060200160405280600081525061110b565b806110ea84611799565b6040516020016110fb9291906121cc565b6040516020818303038152906040525b9392505050565b61111b82610df7565b6001600160a01b0316336001600160a01b03161461117b5760405162461bcd60e51b815260206004820152601760248201527f4d757374206f776e207068726f636b20746f2073656c6c0000000000000000006044820152606401610698565b6000811161118857600080fd5b6000828152600d6020526040908190208290555182907fc38e7832a23e5e13678e20a3184751ed5c3a1a74483e4f70f5e172e3b4ce5ac3906111cd9084815260200190565b60405180910390a25050565b6111e281610df7565b6001600160a01b0316336001600160a01b0316146112425760405162461bcd60e51b815260206004820152601960248201527f4d757374206f776e207068726f636b20746f2064656c697374000000000000006044820152606401610698565b6000818152600d60205260408082208290555182917f2c525dc2c086b9a2f3b902d229853b5b838fcedc22933c40ed7ebe4890a53a8291a250565b6000546001600160a01b031633146112a75760405162461bcd60e51b81526004016106989061229d565b6001600160a01b03811661130c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610698565b610c8081611707565b60006001600160e01b0319821663780e9d6360e01b148061058b575061058b826118b3565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061136f82610df7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610df3828260405180602001604052806000815250611903565b6000818152600360205260408120546001600160a01b031661143b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610698565b600061144683610df7565b9050806001600160a01b0316846001600160a01b031614806114815750836001600160a01b031661147684610623565b6001600160a01b0316145b8061095257506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff16610952565b826001600160a01b03166114c882610df7565b6001600160a01b0316146115305760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610698565b6001600160a01b0382166115925760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610698565b61159d838383611936565b6115a860008261133a565b6001600160a01b03831660009081526004602052604081208054600192906115d190849061234f565b90915550506001600160a01b03821660009081526004602052604081208054600192906115ff908490612323565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061166b82610df7565b905061167981600084611936565b61168460008361133a565b6001600160a01b03811660009081526004602052604081208054600192906116ad90849061234f565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6117628484846114b5565b61176e84848484611979565b6110315760405162461bcd60e51b81526004016106989061224b565b6060600c80546105a090612392565b6060816117bd5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117e757806117d1816123cd565b91506117e09050600a8361233b565b91506117c1565b60008167ffffffffffffffff81111561181057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561183a576020820181803683370190505b5090505b84156109525761184f60018361234f565b915061185c600a866123e8565b611867906030612323565b60f81b81838151811061188a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506118ac600a8661233b565b945061183e565b60006001600160e01b031982166380ac58cd60e01b14806118e457506001600160e01b03198216635b5e139f60e01b145b8061058b57506301ffc9a760e01b6001600160e01b031983161461058b565b61190d8383611a83565b61191a6000848484611979565b6107ce5760405162461bcd60e51b81526004016106989061224b565b6000818152600d60205260408082208290555182917f2c525dc2c086b9a2f3b902d229853b5b838fcedc22933c40ed7ebe4890a53a8291a26107ce838383611bd1565b60006001600160a01b0384163b15611a7b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119bd9033908990889088906004016121fb565b602060405180830381600087803b1580156119d757600080fd5b505af1925050508015611a07575060408051601f3d908101601f19168201909252611a04918101906120ed565b60015b611a61573d808015611a35576040519150601f19603f3d011682016040523d82523d6000602084013e611a3a565b606091505b508051611a595760405162461bcd60e51b81526004016106989061224b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610952565b506001610952565b6001600160a01b038216611ad95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610698565b6000818152600360205260409020546001600160a01b031615611b3e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610698565b611b4a60008383611936565b6001600160a01b0382166000908152600460205260408120805460019290611b73908490612323565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b038316611c2c57611c2781600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611c4f565b816001600160a01b0316836001600160a01b031614611c4f57611c4f8382611c89565b6001600160a01b038216611c66576107ce81611d26565b826001600160a01b0316826001600160a01b0316146107ce576107ce8282611dff565b60006001611c9684610e6e565b611ca0919061234f565b600083815260086020526040902054909150808214611cf3576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611d389060019061234f565b6000838152600a602052604081205460098054939450909284908110611d6e57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060098381548110611d9d57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611de357634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611e0a83610e6e565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b828054611e4f90612392565b90600052602060002090601f016020900481019282611e715760008555611eb7565b82601f10611e8a57805160ff1916838001178555611eb7565b82800160010185558215611eb7579182015b82811115611eb7578251825591602001919060010190611e9c565b50611ec3929150611ec7565b5090565b5b80821115611ec35760008155600101611ec8565b600067ffffffffffffffff80841115611ef757611ef7612428565b604051601f8501601f19908116603f01168101908282118183101715611f1f57611f1f612428565b81604052809350858152868686011115611f3857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f6957600080fd5b919050565b600060208284031215611f7f578081fd5b61110b82611f52565b60008060408385031215611f9a578081fd5b611fa383611f52565b9150611fb160208401611f52565b90509250929050565b600080600060608486031215611fce578081fd5b611fd784611f52565b9250611fe560208501611f52565b9150604084013590509250925092565b6000806000806080858703121561200a578081fd5b61201385611f52565b935061202160208601611f52565b925060408501359150606085013567ffffffffffffffff811115612043578182fd5b8501601f81018713612053578182fd5b61206287823560208401611edc565b91505092959194509250565b60008060408385031215612080578182fd5b61208983611f52565b91506020830135801515811461209d578182fd5b809150509250929050565b600080604083850312156120ba578182fd5b6120c383611f52565b946020939093013593505050565b6000602082840312156120e2578081fd5b813561110b8161243e565b6000602082840312156120fe578081fd5b815161110b8161243e565b60006020828403121561211a578081fd5b813567ffffffffffffffff811115612130578182fd5b8201601f81018413612140578182fd5b61095284823560208401611edc565b600060208284031215612160578081fd5b5035919050565b600060208284031215612178578081fd5b5051919050565b60008060408385031215612191578182fd5b50508035926020909101359150565b600081518084526121b8816020860160208601612366565b601f01601f19169290920160200192915050565b600083516121de818460208801612366565b8351908301906121f2818360208801612366565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061222e908301846121a0565b9695505050505050565b60208152600061110b60208301846121a0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612336576123366123fc565b500190565b60008261234a5761234a612412565b500490565b600082821015612361576123616123fc565b500390565b60005b83811015612381578181015183820152602001612369565b838111156110315750506000910152565b600181811c908216806123a657607f821691505b602082108114156123c757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123e1576123e16123fc565b5060010190565b6000826123f7576123f7612412565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c8057600080fdfea2646970667358221220a666d3a9559730c30c3121c60512bdfa13b9f851834d9c9fb635cabef2327b4064736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000023fc142a6ba57a37855d9d52702fda2ec4b4fd53

-----Decoded View---------------
Arg [0] : originalPhrocksAddress (address): 0x23FC142A6bA57a37855D9D52702fDA2EC4B4Fd53

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000023fc142a6ba57a37855d9d52702fda2ec4b4fd53


Deployed Bytecode Sourcemap

49047:2637:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51508:173;;;;;;;;;;-1:-1:-1;51508:173:0;;;;;:::i;:::-;;:::i;:::-;;;6468:14:1;;6461:22;6443:41;;6431:2;6416:18;51508:173:0;;;;;;;;21725:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23284:221::-;;;;;;;;;;-1:-1:-1;23284:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5766:32:1;;;5748:51;;5736:2;5721:18;23284:221:0;5703:102:1;22807:411:0;;;;;;;;;;-1:-1:-1;22807:411:0;;;;;:::i;:::-;;:::i;:::-;;49851:370;;;;;;;;;;-1:-1:-1;49851:370:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;;6657:33:1;;;6639:52;;6627:2;6612:18;49851:370:0;6594:103:1;35478:113:0;;;;;;;;;;-1:-1:-1;35566:10:0;:17;35478:113;;;17579:25:1;;;17567:2;17552:18;35478:113:0;17534:76:1;24174:339:0;;;;;;;;;;-1:-1:-1;24174:339:0;;;;;:::i;:::-;;:::i;51080:422::-;;;;;;:::i;:::-;;:::i;35146:256::-;;;;;;;;;;-1:-1:-1;35146:256:0;;;;;:::i;:::-;;:::i;50227: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;49749:96::-;;;;;;;;;;-1:-1:-1;49749:96:0;;;;;:::i;:::-;;:::i;21419:239::-;;;;;;;;;;-1:-1:-1;21419:239:0;;;;;:::i;:::-;;:::i;49300:39::-;;;;;;;;;;;;49336:3;49300: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;49415:44::-;;;;;;;;;;-1:-1:-1;49415:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;50655:229;;;;;;;;;;-1:-1:-1;50655:229:0;;;;;:::i;:::-;;:::i;50890:184::-;;;;;;;;;;-1:-1:-1;50890: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;51508:173::-;51619:4;51639:36;51663:11;51639:23;:36::i;:::-;51632:43;51508:173;-1:-1:-1;;51508: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;;12974:2:1;23380:73:0;;;12956:21:1;13013:2;12993:18;;;12986:30;13052:34;13032:18;;;13025:62;-1:-1:-1;;;13103:18:1;;;13096:42;13155: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;;14926:2:1;22938:57:0;;;14908:21:1;14965:2;14945:18;;;14938:30;15004:34;14984:18;;;14977:62;-1:-1:-1;;;15055:18:1;;;15048:31;15096:19;;22938:57:0;14898: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;;11367:2:1;23008:168:0;;;11349:21:1;11406:2;11386:18;;;11379:30;11445:34;11425:18;;;11418:62;11516:26;11496:18;;;11489:54;11560:19;;23008:168:0;11339:246:1;23008:168:0;23189:21;23198:2;23202:7;23189:8;:21::i;:::-;22807:411;;;:::o;49851:370::-;49956:6;49979:10;-1:-1:-1;;;;;50001:15:0;49979:38;;49971:84;;;;-1:-1:-1;;;49971:84:0;;10965:2:1;49971:84:0;;;10947:21:1;11004:2;10984:18;;;10977:30;11043:34;11023:18;;;11016:62;-1:-1:-1;;;11094:18:1;;;11087:31;11135:19;;49971:84:0;10937:223:1;49971:84:0;50070:33;;-1:-1:-1;;;50070:33:0;;;;;17579:25:1;;;50070:15:0;-1:-1:-1;;;;;50070:24:0;;;;17552:18:1;;50070:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:38;50062:78;;;;-1:-1:-1;;;50062:78:0;;7128:2:1;50062:78:0;;;7110:21:1;7167:2;7147:18;;;7140:30;7206:29;7186:18;;;7179:57;7253:18;;50062:78:0;7100:177:1;50062:78:0;50147:24;50157:4;50163:7;50147:9;:24::i;:::-;-1:-1:-1;;;;49851:370:0;;;;;;;:::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;51080:422::-;47925:1;48521:7;;:19;;48513:63;;;;-1:-1:-1;;;48513:63:0;;16504:2:1;48513:63:0;;;16486:21:1;16543:2;16523:18;;;16516:30;16582:33;16562:18;;;16555:61;16633:18;;48513:63:0;16476:181:1;48513:63:0;47925:1;48654:7;:18;51179:1:::1;51159:17:::0;;;:8:::1;:17;::::0;;;;;51151:64:::1;;;::::0;-1:-1:-1;;;51151:64:0;;7896:2:1;51151:64:0::1;::::0;::::1;7878:21:1::0;7935:2;7915:18;;;7908:30;7974:32;7954:18;;;7947:60;8024:18;;51151:64:0::1;7868:180:1::0;51151:64:0::1;51243:17;::::0;;;:8:::1;:17;::::0;;;;;51230:9:::1;:30;;51222:69;;;::::0;-1:-1:-1;;;51222:69:0;;9438:2:1;51222:69:0::1;::::0;::::1;9420:21:1::0;9477:2;9457:18;;;9450:30;9516:28;9496:18;;;9489:56;9562:18;;51222:69:0::1;9410:176:1::0;51222:69:0::1;51300:16;51319;51327:7;51319;:16::i;:::-;51300:35;;51342:40;51352:8;51362:10;51374:7;51342:9;:40::i;:::-;51409:1;51389:17:::0;;;:8:::1;:17;::::0;;;;;:21;;;51438:35;-1:-1:-1;;;;;51438:13:0;::::1;::::0;51459:9:::1;::::0;51409:1;51438:35;51409:1;51438:35;51459:9;51438:13;:35:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51419:54;;;51488:7;51480:16;;;::::0;::::1;;-1:-1:-1::0;;47881:1:0;48833:7;:22;-1:-1:-1;51080: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;;7484:2:1;35263:87:0;;;7466:21:1;7523:2;7503:18;;;7496:30;7562:34;7542:18;;;7535:62;-1:-1:-1;;;7613:18:1;;;7606:41;7664:19;;35263:87:0;7456:233:1;35263:87:0;-1:-1:-1;;;;;;35368:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35146:256::o;50227:158::-;42753:7;42780:6;-1:-1:-1;;;;;42780:6:0;16259:10;42927:23;42919:68;;;;-1:-1:-1;;;42919:68:0;;;;;;;:::i;:::-;50272:12:::1;42780:6:::0;;50290:46:::1;::::0;-1:-1:-1;;;;;42780:6:0;;;;50310:21:::1;::::0;50272:12;50290:46;50272:12;50290:46;50310:21;42780:6;50290:46:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50271:65;;;50351:7;50343:36;;;::::0;-1:-1:-1;;;50343:36:0;;15328:2:1;50343:36:0::1;::::0;::::1;15310:21:1::0;15367:2;15347:18;;;15340:30;-1:-1:-1;;;15386:18:1;;;15379:46;15442:18;;50343:36:0::1;15300:166:1::0;50343:36:0::1;42998:1;50227:158::o:0;24584:185::-;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;;16864:2:1;41560:102:0;;;16846:21:1;16903:2;16883:18;;;16876:30;16942:34;16922:18;;;16915:62;-1:-1:-1;;;16993:18:1;;;16986:46;17049:19;;41560:102:0;16836: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;;16091:2:1;35763:95:0;;;16073:21:1;16130:2;16110:18;;;16103:30;16169:34;16149:18;;;16142:62;-1:-1:-1;;;16220:18:1;;;16213:42;16272:19;;35763:95:0;16063:234:1;35763:95:0;35876:10;35887:5;35876:17;;;;;;-1:-1:-1;;;35876:17:0;;;;;;;;;;;;;;;;;35869:24;;35668:233;;;:::o;49749:96::-;42753:7;42780:6;-1:-1:-1;;;;;42780:6:0;16259:10;42927:23;42919:68;;;;-1:-1:-1;;;42919:68:0;;;;;;;:::i;:::-;49816:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49749: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;;12203:2:1;21554:73:0;;;12185:21:1;12242:2;12222:18;;;12215:30;12281:34;12261:18;;;12254:62;-1:-1:-1;;;12332:18:1;;;12325:39;12381:19;;21554:73:0;12175:231:1;21149:208:0;21221:7;-1:-1:-1;;;;;21249:19:0;;21241:74;;;;-1:-1:-1;;;21241:74:0;;11792:2:1;21241:74:0;;;11774:21:1;11831:2;11811:18;;;11804:30;11870:34;11850:18;;;11843:62;-1:-1:-1;;;11921:18:1;;;11914:40;11971:19;;21241:74:0;11764: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;;10198:2:1;23672:62:0;;;10180:21:1;10237:2;10217:18;;;10210:30;10276:27;10256:18;;;10249:55;10321:18;;23672:62:0;10170: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;;6443:41:1;;;23747:42:0;;16259:10;23816:48;;6416: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;;14158:2:1;22168:76:0;;;14140:21:1;14197:2;14177:18;;;14170:30;14236:34;14216:18;;;14209:62;-1:-1:-1;;;14287:18:1;;;14280:45;14342:19;;22168:76:0;14130: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;50655:229::-;50743:16;50751:7;50743;:16::i;:::-;-1:-1:-1;;;;;50729:30:0;:10;-1:-1:-1;;;;;50729:30:0;;50721:66;;;;-1:-1:-1;;;50721:66:0;;14574:2:1;50721:66:0;;;14556:21:1;14613:2;14593:18;;;14586:30;14652:25;14632:18;;;14625:53;14695:18;;50721:66:0;14546:173:1;50721:66:0;50810:1;50802:5;:9;50794:18;;;;;;50821:17;;;;:8;:17;;;;;;;:25;;;50858:20;50830:7;;50858:20;;;;50841:5;17579:25:1;;17567:2;17552:18;;17534:76;50858:20:0;;;;;;;;50655:229;;:::o;50890:184::-;50965:16;50973:7;50965;:16::i;:::-;-1:-1:-1;;;;;50951:30:0;:10;-1:-1:-1;;;;;50951:30:0;;50943:68;;;;-1:-1:-1;;;50943:68:0;;17281:2:1;50943:68:0;;;17263:21:1;17320:2;17300:18;;;17293:30;17359:27;17339:18;;;17332:55;17404:18;;50943:68:0;17253:175:1;50943:68:0;51040:1;51020:17;;;:8;:17;;;;;;:21;;;51053:15;51029:7;;51053:15;;;50890: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;;8674:2:1;43688:73:0::1;::::0;::::1;8656:21:1::0;8713:2;8693:18;;;8686:30;8752:34;8732:18;;;8725:62;-1:-1:-1;;;8803:18:1;;;8796:36;8849:19;;43688:73:0::1;8646: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;;10552:2:1;27082:73:0;;;10534:21:1;10591:2;10571:18;;;10564:30;10630:34;10610:18;;;10603:62;-1:-1:-1;;;10681:18:1;;;10674:42;10733:19;;27082:73:0;10524: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;23943:164;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;;13748:2:1;30088:85:0;;;13730:21:1;13787:2;13767:18;;;13760:30;13826:34;13806:18;;;13799:62;-1:-1:-1;;;13877:18:1;;;13870:39;13926:19;;30088:85:0;13720:231:1;30088:85:0;-1:-1:-1;;;;;30192:16:0;;30184:65;;;;-1:-1:-1;;;30184:65:0;;9793:2:1;30184:65:0;;;9775:21:1;9832:2;9812:18;;;9805:30;9871:34;9851:18;;;9844:62;-1:-1:-1;;;9922:18:1;;;9915:34;9966:19;;30184:65:0;9765: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;49635:108::-;49695:13;49724;49717: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;50391:258::-;50563:1;50543:17;;;:8;:17;;;;;;:21;;;50576:15;50552:7;;50576:15;;;50598:45;50625:4;50631:2;50635:7;50598: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;32168:11;;28656:382;-1:-1:-1;;;;;28736:16:0;;28728:61;;;;-1:-1:-1;;;28728:61:0;;12613:2:1;28728:61:0;;;12595:21:1;;;12632:18;;;12625:30;12691:34;12671:18;;;12664:62;12743:18;;28728:61:0;12585: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;;9081:2:1;28800:58:0;;;9063:21:1;9120:2;9100:18;;;9093:30;9159;9139:18;;;9132:58;9207:18;;28800:58:0;9053: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:194::-;4263:6;4316:2;4304:9;4295:7;4291:23;4287:32;4284:2;;;4337:6;4329;4322:22;4284:2;-1:-1:-1;4365:16:1;;4274:113;-1:-1:-1;4274:113:1:o;4392:258::-;4460:6;4468;4521:2;4509:9;4500:7;4496:23;4492:32;4489:2;;;4542:6;4534;4527:22;4489:2;-1:-1:-1;;4570:23:1;;;4640:2;4625:18;;;4612:32;;-1:-1:-1;4479:171:1:o;4655:257::-;4696:3;4734:5;4728:12;4761:6;4756:3;4749:19;4777:63;4833:6;4826:4;4821:3;4817:14;4810:4;4803:5;4799:16;4777:63;:::i;:::-;4894:2;4873:15;-1:-1:-1;;4869:29:1;4860:39;;;;4901:4;4856:50;;4704:208;-1:-1:-1;;4704:208:1:o;4917:470::-;5096:3;5134:6;5128:13;5150:53;5196:6;5191:3;5184:4;5176:6;5172:17;5150:53;:::i;:::-;5266:13;;5225:16;;;;5288:57;5266:13;5225:16;5322:4;5310:17;;5288:57;:::i;:::-;5361:20;;5104:283;-1:-1:-1;;;;5104:283:1:o;5810:488::-;-1:-1:-1;;;;;6079:15:1;;;6061:34;;6131:15;;6126:2;6111:18;;6104:43;6178:2;6163:18;;6156:34;;;6226:3;6221:2;6206:18;;6199:31;;;6004:4;;6247:45;;6272:19;;6264:6;6247:45;:::i;:::-;6239:53;6013:285;-1:-1:-1;;;;;;6013:285:1:o;6702:219::-;6851:2;6840:9;6833:21;6814:4;6871:44;6911:2;6900:9;6896:18;6888:6;6871:44;:::i;8053:414::-;8255:2;8237:21;;;8294:2;8274:18;;;8267:30;8333:34;8328:2;8313:18;;8306:62;-1:-1:-1;;;8399:2:1;8384:18;;8377:48;8457:3;8442:19;;8227:240::o;13185:356::-;13387:2;13369:21;;;13406:18;;;13399:30;13465:34;13460:2;13445:18;;13438:62;13532:2;13517:18;;13359:182::o;15471:413::-;15673:2;15655:21;;;15712:2;15692:18;;;15685:30;15751:34;15746:2;15731:18;;15724:62;-1:-1:-1;;;15817:2:1;15802:18;;15795:47;15874:3;15859:19;;15645:239::o;17615:128::-;17655:3;17686:1;17682:6;17679:1;17676:13;17673:2;;;17692:18;;:::i;:::-;-1:-1:-1;17728:9:1;;17663:80::o;17748:120::-;17788:1;17814;17804:2;;17819:18;;:::i;:::-;-1:-1:-1;17853:9:1;;17794:74::o;17873:125::-;17913:4;17941:1;17938;17935:8;17932:2;;;17946:18;;:::i;:::-;-1:-1:-1;17983:9:1;;17922:76::o;18003:258::-;18075:1;18085:113;18099:6;18096:1;18093:13;18085:113;;;18175:11;;;18169:18;18156:11;;;18149:39;18121:2;18114:10;18085:113;;;18216:6;18213:1;18210:13;18207:2;;;-1:-1:-1;;18251:1:1;18233:16;;18226:27;18056:205::o;18266:380::-;18345:1;18341:12;;;;18388;;;18409:2;;18463:4;18455:6;18451:17;18441:27;;18409:2;18516;18508:6;18505:14;18485:18;18482:38;18479:2;;;18562:10;18557:3;18553:20;18550:1;18543:31;18597:4;18594:1;18587:15;18625:4;18622:1;18615:15;18479:2;;18321:325;;;:::o;18651:135::-;18690:3;-1:-1:-1;;18711:17:1;;18708:2;;;18731:18;;:::i;:::-;-1:-1:-1;18778:1:1;18767:13;;18698:88::o;18791:112::-;18823:1;18849;18839:2;;18854:18;;:::i;:::-;-1:-1:-1;18888:9:1;;18829:74::o;18908:127::-;18969:10;18964:3;18960:20;18957:1;18950:31;19000:4;18997:1;18990:15;19024:4;19021:1;19014:15;19040:127;19101:10;19096:3;19092:20;19089:1;19082:31;19132:4;19129:1;19122:15;19156:4;19153:1;19146:15;19172:127;19233:10;19228:3;19224:20;19221:1;19214:31;19264:4;19261:1;19254:15;19288:4;19285:1;19278:15;19304:131;-1:-1:-1;;;;;;19378:32:1;;19368:43;;19358:2;;19425:1;19422;19415:12

Swarm Source

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