ETH Price: $2,407.25 (+2.91%)

Contract

0xE294D214A9849310ef6AaF38C9e8cC52Fd42aF66
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approval For...203403752024-07-19 11:47:3556 days ago1721389655IN
0xE294D214...2Fd42aF66
0 ETH0.00030626.61127648
Safe Transfer Fr...203189282024-07-16 11:59:3559 days ago1721131175IN
0xE294D214...2Fd42aF66
0 ETH0.000625969.55309766
Safe Transfer Fr...203187202024-07-16 11:17:5959 days ago1721128679IN
0xE294D214...2Fd42aF66
0 ETH0.000432076.5939971
Safe Transfer Fr...203187152024-07-16 11:16:5959 days ago1721128619IN
0xE294D214...2Fd42aF66
0 ETH0.000455726.9550303
Safe Transfer Fr...203187042024-07-16 11:14:4759 days ago1721128487IN
0xE294D214...2Fd42aF66
0 ETH0.000460657.0302447
Safe Transfer Fr...203186392024-07-16 11:01:4759 days ago1721127707IN
0xE294D214...2Fd42aF66
0 ETH0.000306716.33373273
Safe Transfer Fr...203186282024-07-16 10:59:3559 days ago1721127575IN
0xE294D214...2Fd42aF66
0 ETH0.000385565.8842627
Safe Transfer Fr...203186202024-07-16 10:57:5959 days ago1721127479IN
0xE294D214...2Fd42aF66
0 ETH0.000401186.12266788
Safe Transfer Fr...203186132024-07-16 10:56:3559 days ago1721127395IN
0xE294D214...2Fd42aF66
0 ETH0.000414916.33214224
Safe Transfer Fr...203136962024-07-15 18:27:3559 days ago1721068055IN
0xE294D214...2Fd42aF66
0 ETH0.0012518219.10452791
Safe Transfer Fr...203136842024-07-15 18:25:1159 days ago1721067911IN
0xE294D214...2Fd42aF66
0 ETH0.0012978919.80766609
Safe Transfer Fr...203135492024-07-15 17:57:5959 days ago1721066279IN
0xE294D214...2Fd42aF66
0 ETH0.0014972122.84958615
Set Approval For...192319292024-02-15 7:46:11211 days ago1707983171IN
0xE294D214...2Fd42aF66
0 ETH0.0008296517.91338877
Set Approval For...184363772023-10-26 19:08:35322 days ago1698347315IN
0xE294D214...2Fd42aF66
0 ETH0.0009543820.60631819
Set Approval For...169255792023-03-28 11:37:11535 days ago1680003431IN
0xE294D214...2Fd42aF66
0 ETH0.0011328924.41641585
Set Approval For...157164062022-10-10 8:07:23704 days ago1665389243IN
0xE294D214...2Fd42aF66
0 ETH0.0012361526.64181436
Transfer From153252542022-08-12 5:48:46763 days ago1660283326IN
0xE294D214...2Fd42aF66
0 ETH0.000323137.94771119
Transfer From153252542022-08-12 5:48:46763 days ago1660283326IN
0xE294D214...2Fd42aF66
0 ETH0.000361277.94771119
Transfer From153252542022-08-12 5:48:46763 days ago1660283326IN
0xE294D214...2Fd42aF66
0 ETH0.000353097.76771119
Transfer From153252202022-08-12 5:40:03763 days ago1660282803IN
0xE294D214...2Fd42aF66
0 ETH0.000601579.61643973
Set Approval For...152711362022-08-03 18:46:23771 days ago1659552383IN
0xE294D214...2Fd42aF66
0 ETH0.001310528.2954527
Set Approval For...141257662022-02-02 9:13:44954 days ago1643793224IN
0xE294D214...2Fd42aF66
0 ETH0.0040355486.97479967
Transfer From139441052022-01-05 7:30:59982 days ago1641367859IN
0xE294D214...2Fd42aF66
0 ETH0.0057549291.94196478
Transfer From139440972022-01-05 7:29:43982 days ago1641367783IN
0xE294D214...2Fd42aF66
0 ETH0.00640782102.37286677
Set Approval For...138606932021-12-23 9:50:11995 days ago1640253011IN
0xE294D214...2Fd42aF66
0 ETH0.002259148.68858996
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
OrderCollectible

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-31
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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






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

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

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

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

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

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

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

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

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

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

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

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






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




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

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




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

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

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

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

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

}












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







/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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





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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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





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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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








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

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

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

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

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

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

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

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

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

        _revokeRole(role, account);
    }

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

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

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

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







interface ICollectible is IERC721 {

    function mintTo(address _to, bytes32 _hash) external;

    function getMetadataIPFSHash(uint256 _tokenId) external view returns(string memory);
    
    function baseTokenURI() external pure returns (string memory);
   
    function tokenURI(uint256 _tokenId) external view returns(string memory);

}


contract OrderCollectible is ERC721, AccessControl, ICollectible{

    mapping(uint256 => bytes32) internal URIHashesMapping;

    uint256 private lastMintedTokenId = 0;

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

    uint256 public constant MAX_TOTAL_SUPPLY = 10500;

    constructor(address _admin) ERC721("Order", "ORD") {
        _setupRole(DEFAULT_ADMIN_ROLE, _admin);
    }
    
    modifier onlyMinter() {
        require(hasRole(MINTER_ROLE, msg.sender), "OrderCollectible: Caller is not a Minter");
        _;
    }


    function supportsInterface(bytes4 interfaceId) public view override (AccessControl, ERC721, IERC165) returns (bool){
         return interfaceId == type(IAccessControl).interfaceId
                || super.supportsInterface(interfaceId)
                || interfaceId == type(IERC721).interfaceId
                || interfaceId == type(IERC721Metadata).interfaceId
                || super.supportsInterface(interfaceId);
    }

    function mintTo(address _to, bytes32 _hash) public override onlyMinter{
        require (lastMintedTokenId < MAX_TOTAL_SUPPLY, "OrderCollectible: Max amount of tokens reached");
        uint256 _nextTokenID = lastMintedTokenId + 1;
        URIHashesMapping[_nextTokenID] = _hash;
        _mint(_to, _nextTokenID);
        lastMintedTokenId = _nextTokenID;
    }

    function getMetadataIPFSHash(uint256 _tokenId) public override view returns(string memory){  
        require(_exists(_tokenId), "OrderCollectible: URI query for nonexistent token");
        return encode(URIHashesMapping[_tokenId]);
    }
    
    function baseTokenURI() public override pure returns (string memory) {
        return "ipfs://";
    }
    
    /**
    * @dev See {IERC721Metadata-tokenURI}.
    */
    function tokenURI(uint256 _tokenId) public view virtual override(ERC721, ICollectible) returns (string memory) {
        require(_exists(_tokenId), "OrderCollectible: URI query for nonexistent token");
        return concatStrings(baseTokenURI(), encode(URIHashesMapping[_tokenId]));
    }

    /******************************** IPFS LIB ************************************/

// @title verifyIPFS
    // @author Martin Lundfall ([email protected])
    // @rewrited by Vakhtanh Chikhladze to new version solidity 0.8.0
    bytes constant private sha256MultiHash = "\x12\x20";
    bytes constant private ALPHABET = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz";

    //@dev generates the corresponding IPFS hash (in base 58) to the given stroraged decoded hash
    //@param contentString The content of the IPFS object
    //@return The IPFS hash in base 58
    function encode(bytes32 decodedHash) private pure returns (string memory) {
        bytes memory content=toBytes(decodedHash);
        return toBase58(concat(sha256MultiHash, content));
    }
  
    // @dev Converts hex string to base 58
    /*
        some comment-proof about array size of digits:
        source is the number with base 256. 
        Example: for given input 0x414244 it can be presented as 0x41*256^2+0x42*256+0x44;
        How many digits are needed to write such a number n in base 256?
        (P.S. All all of the following formulas may be checked in WolframAlpha.)
        We need rounded up logarithm of number n with base 256 , in formula presentation: roof(log(256,n))
        Example: roof(log(256,0x414244))=|in decimal 0x414244=4276804|=roof(log(256,4276804))~=roof(2.4089)=3;
        Encoding Base58 works with numbers in base 58.
        Example: 0x414244 = 21 53 20 0 = 21*58^3 + 53*58^2 + 20*58+0
        How many digits are needed to write such a number n in base 58?
        We need rounded up logarithm of number n with base 58 , in formula presentation: roof(log(58,n))
        Example: roof(log(58,0x414244))=|in decimal 0x414244=4276804|=roof(log(58,4276804))~=roof(3.7603)=4;
        
        And the question is: How many times the number in base 58 will be bigger than number in base 256 represantation?
        The aswer is lim n->inf log(58,n)/log(256,n)
        
        lim n->inf log(58,n)/log(256,n)=[inf/inf]=|use hopitals rule|=(1/(n*ln(58))/(1/(n*ln(256))=
        =ln(256)/ln(58)=log(58,256)~=1.36
        
        So, log(58,n)~=1.36 * log(256,n); (1)
        
        Therefore, we know the asymptoyic minimal size of additional memory of digits array, that shoud be used.
        But calculated limit is asymptotic value. So it may be some errors like the size of n in base 58 is bigger than calculated value.
        Hence, (1) will be rewrited as: log(58,n) = [log(256,n) * 136/100] + 1; (2)
        ,where square brackets [a] is valuable part of number [a] 
        In code exist @param digitlength which dinamically calculates the explicit size of digits array.
        And there are correct statement that digitlength <= [log(256,n) * 136/100] + 1 .
    */
    function toBase58(bytes memory source) private pure returns (string memory) {
        uint8[] memory digits = new uint8[]((source.length*136/100)+1); 
        uint digitlength = 1;
        for (uint i = 0; i<source.length; ++i) {
            uint carry = uint8(source[i]);
            for (uint j = 0; j<digitlength; ++j) {
                carry += uint(digits[j]) * 256;
                digits[j] = uint8(carry % 58);
                carry = carry / 58;
            }
            while (carry > 0) {
                digits[digitlength] = uint8(carry % 58);
                digitlength++;
                carry = carry / 58;
            }
        }
        return string(toAlphabet(reverse(truncate(digits, digitlength))));
    }

    function toBytes(bytes32 input) private pure returns (bytes memory) {
        return abi.encodePacked(input);
    }
    

    function truncate(uint8[] memory array, uint length) pure private returns (uint8[] memory) {
        if(array.length==length){
            return array;
        }else{
            uint8[] memory output = new uint8[](length);
            for (uint i = 0; i<length; i++) {
                output[i] = array[i];
            }
            return output;
        }
    }
    
    function reverse(uint8[] memory input) pure private returns (uint8[] memory) {
        uint8[] memory output = new uint8[](input.length);
        for (uint i = 0; i<input.length; i++) {
            output[i] = input[input.length-1-i];
        }
        return output;
    }
    
    function toAlphabet(uint8[] memory indices) pure private returns (bytes memory) {
        bytes memory output = new bytes(indices.length);
        for (uint i = 0; i<indices.length; i++) {
            output[i] = ALPHABET[indices[i]];
        }
        return output;
    }

    function concat(bytes memory byteArray1, bytes memory byteArray2) pure private returns (bytes memory) {
        return abi.encodePacked(byteArray1,byteArray2);
    }
    
    function concatStrings(string memory a,string memory b) private pure returns(string memory){
        return string(abi.encodePacked(a,b));
    }

    function to_binary(uint256 x) private pure returns (bytes memory) {
         return abi.encodePacked(x);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_admin","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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getMetadataIPFSHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes32","name":"_hash","type":"bytes32"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]

608060405260006008553480156200001657600080fd5b50604051620021e6380380620021e6833981016040819052620000399162000221565b604080518082018252600581526427b93232b960d91b60208083019182528351808501909452600384526213d49160ea1b90840152815191929162000081916000916200017b565b508051620000979060019060208401906200017b565b50620000a991506000905082620000b0565b506200028e565b620000bc8282620000c0565b5050565b620000cc82826200014c565b620000bc5760008281526006602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200010862000177565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b3390565b828054620001899062000251565b90600052602060002090601f016020900481019282620001ad5760008555620001f8565b82601f10620001c857805160ff1916838001178555620001f8565b82800160010185558215620001f8579182015b82811115620001f8578251825591602001919060010190620001db565b50620002069291506200020a565b5090565b5b808211156200020657600081556001016200020b565b60006020828403121562000233578081fd5b81516001600160a01b03811681146200024a578182fd5b9392505050565b6002810460018216806200026657607f821691505b602082108114156200028857634e487b7160e01b600052602260045260246000fd5b50919050565b611f48806200029e6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde146102c6578063c87b56dd146102d9578063d5391393146102ec578063d547741f146102f4578063d547cfb714610307578063e985e9c51461030f57610158565b806370a082311461026a57806391d148541461027d57806395d89b4114610290578063a217fddf14610298578063a22cb465146102a0578063adf288df146102b357610158565b80632f2ff15d116101155780632f2ff15d1461020357806333039d3d1461021657806336568abe1461021e5780633cbe51581461023157806342842e0e146102445780636352211e1461025757610158565b806301ffc9a71461015d57806306fdde0314610186578063081812fc1461019b578063095ea7b3146101bb57806323b872dd146101d0578063248a9ca3146101e3575b600080fd5b61017061016b366004611709565b610322565b60405161017d91906117f6565b60405180910390f35b61018e610394565b60405161017d9190611801565b6101ae6101a93660046116cf565b610426565b60405161017d91906117a5565b6101ce6101c93660046116a6565b610472565b005b6101ce6101de36600461155c565b61050a565b6101f66101f13660046116cf565b610542565b60405161017d919061176d565b6101ce6102113660046116e7565b610557565b6101f6610595565b6101ce61022c3660046116e7565b61059b565b61018e61023f3660046116cf565b6105dd565b6101ce61025236600461155c565b61061c565b6101ae6102653660046116cf565b610637565b6101f6610278366004611510565b61066c565b61017061028b3660046116e7565b6106b0565b61018e6106dd565b6101f66106ec565b6101ce6102ae36600461166c565b6106f1565b6101ce6102c13660046116a6565b6107bf565b6101ce6102d4366004611597565b61085d565b61018e6102e73660046116cf565b61089c565b6101f66108eb565b6101ce6103023660046116e7565b61090f565b61018e610937565b61017061031d36600461152a565b610958565b60006001600160e01b03198216637965db0b60e01b1480610347575061034782610986565b8061036257506001600160e01b031982166380ac58cd60e01b145b8061037d57506001600160e01b03198216635b5e139f60e01b145b8061038c575061038c82610986565b90505b919050565b6060600080546103a390611e13565b80601f01602080910402602001604051908101604052809291908181526020018280546103cf90611e13565b801561041c5780601f106103f15761010080835404028352916020019161041c565b820191906000526020600020905b8154815290600101906020018083116103ff57829003601f168201915b5050505050905090565b6000610431826109ab565b6104565760405162461bcd60e51b815260040161044d90611b76565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061047d82610637565b9050806001600160a01b0316836001600160a01b031614156104b15760405162461bcd60e51b815260040161044d90611c53565b806001600160a01b03166104c36109c8565b6001600160a01b031614806104df57506104df8161031d6109c8565b6104fb5760405162461bcd60e51b815260040161044d90611a51565b61050583836109cc565b505050565b61051b6105156109c8565b82610a3a565b6105375760405162461bcd60e51b815260040161044d90611ce5565b610505838383610abf565b60009081526006602052604090206001015490565b61056b61056383610542565b61028b6109c8565b6105875760405162461bcd60e51b815260040161044d90611814565b6105918282610bec565b5050565b61290481565b6105a36109c8565b6001600160a01b0316816001600160a01b0316146105d35760405162461bcd60e51b815260040161044d90611d36565b6105918282610c73565b60606105e8826109ab565b6106045760405162461bcd60e51b815260040161044d90611c94565b60008281526007602052604090205461038c90610cf8565b6105058383836040518060200160405280600081525061085d565b6000818152600260205260408120546001600160a01b03168061038c5760405162461bcd60e51b815260040161044d90611af8565b60006001600160a01b0382166106945760405162461bcd60e51b815260040161044d90611aae565b506001600160a01b031660009081526003602052604090205490565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b6060600180546103a390611e13565b600081565b6106f96109c8565b6001600160a01b0316826001600160a01b0316141561072a5760405162461bcd60e51b815260040161044d90611930565b80600560006107376109c8565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561077b6109c8565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516107b391906117f6565b60405180910390a35050565b6107e97f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336106b0565b6108055760405162461bcd60e51b815260040161044d90611c0b565b612904600854106108285760405162461bcd60e51b815260040161044d90611967565b600060085460016108399190611d85565b600081815260076020526040902083905590506108568382610d39565b6008555050565b61086e6108686109c8565b83610a3a565b61088a5760405162461bcd60e51b815260040161044d90611ce5565b61089684848484610e18565b50505050565b60606108a7826109ab565b6108c35760405162461bcd60e51b815260040161044d90611c94565b61038c6108ce610937565b6000848152600760205260409020546108e690610cf8565b610e4b565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61091b61056383610542565b6105d35760405162461bcd60e51b815260040161044d90611a01565b604080518082019091526007815266697066733a2f2f60c81b602082015290565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b03198216637965db0b60e01b148061038c575061038c82610e77565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610a0182610637565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610a45826109ab565b610a615760405162461bcd60e51b815260040161044d906119b5565b6000610a6c83610637565b9050806001600160a01b0316846001600160a01b03161480610aa75750836001600160a01b0316610a9c84610426565b6001600160a01b0316145b80610ab75750610ab78185610958565b949350505050565b826001600160a01b0316610ad282610637565b6001600160a01b031614610af85760405162461bcd60e51b815260040161044d90611bc2565b6001600160a01b038216610b1e5760405162461bcd60e51b815260040161044d906118ec565b610b29838383610505565b610b346000826109cc565b6001600160a01b0383166000908152600360205260408120805460019290610b5d908490611dd0565b90915550506001600160a01b0382166000908152600360205260408120805460019290610b8b908490611d85565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bf682826106b0565b6105915760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610c2f6109c8565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610c7d82826106b0565b156105915760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19169055610cb46109c8565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60606000610d0583610eb7565b9050610d32610d2d604051806040016040528060028152602001609160f51b81525083610e4b565b610ee0565b9392505050565b6001600160a01b038216610d5f5760405162461bcd60e51b815260040161044d90611b41565b610d68816109ab565b15610d855760405162461bcd60e51b815260040161044d906118b5565b610d9160008383610505565b6001600160a01b0382166000908152600360205260408120805460019290610dba908490611d85565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b610e23848484610abf565b610e2f848484846110cf565b6108965760405162461bcd60e51b815260040161044d90611863565b60608282604051602001610e60929190611776565b604051602081830303815290604052905092915050565b60006001600160e01b031982166380ac58cd60e01b1480610ea857506001600160e01b03198216635b5e139f60e01b145b8061038c575061038c826111ea565b606081604051602001610eca919061176d565b6040516020818303038152906040529050919050565b60606000606483516088610ef49190611db1565b610efe9190611d9d565b610f09906001611d85565b67ffffffffffffffff811115610f2f57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610f58578160200160208202803683370190505b509050600160005b84518110156110b4576000858281518110610f8b57634e487b7160e01b600052603260045260246000fd5b016020015160f81c905060005b8381101561103e57848181518110610fc057634e487b7160e01b600052603260045260246000fd5b602002602001015160ff16610100610fd89190611db1565b610fe29083611d85565b9150610fef603a83611e69565b85828151811061100f57634e487b7160e01b600052603260045260246000fd5b60ff9092166020928302919091019091015261102c603a83611d9d565b915061103781611e4e565b9050610f98565b505b80156110a357611051603a82611e69565b84848151811061107157634e487b7160e01b600052603260045260246000fd5b60ff909216602092830291909101909101528261108d81611e4e565b935061109c9050603a82611d9d565b9050611040565b506110ad81611e4e565b9050610f60565b50610ab76110ca6110c58484611203565b6112e9565b6113d8565b60006110e3846001600160a01b03166114f3565b156111df57836001600160a01b031663150b7a026110ff6109c8565b8786866040518563ffffffff1660e01b815260040161112194939291906117b9565b602060405180830381600087803b15801561113b57600080fd5b505af192505050801561116b575060408051601f3d908101601f1916820190925261116891810190611725565b60015b6111c5573d808015611199576040519150601f19603f3d011682016040523d82523d6000602084013e61119e565b606091505b5080516111bd5760405162461bcd60e51b815260040161044d90611863565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ab7565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b606081835114156112155750816106d7565b60008267ffffffffffffffff81111561123e57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611267578160200160208202803683370190505b50905060005b838110156112e15784818151811061129557634e487b7160e01b600052603260045260246000fd5b60200260200101518282815181106112bd57634e487b7160e01b600052603260045260246000fd5b60ff90921660209283029190910190910152806112d981611e4e565b91505061126d565b5090506106d7565b60606000825167ffffffffffffffff81111561131557634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561133e578160200160208202803683370190505b50905060005b83518110156113d15783816001865161135d9190611dd0565b6113679190611dd0565b8151811061138557634e487b7160e01b600052603260045260246000fd5b60200260200101518282815181106113ad57634e487b7160e01b600052603260045260246000fd5b60ff90921660209283029190910190910152806113c981611e4e565b915050611344565b5092915050565b60606000825167ffffffffffffffff81111561140457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561142e576020820181803683370190505b50905060005b83518110156113d1576040518060600160405280603a8152602001611ed9603a913984828151811061147657634e487b7160e01b600052603260045260246000fd5b602002602001015160ff168151811061149f57634e487b7160e01b600052603260045260246000fd5b602001015160f81c60f81b8282815181106114ca57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350806114eb81611e4e565b915050611434565b3b151590565b80356001600160a01b038116811461038f57600080fd5b600060208284031215611521578081fd5b610d32826114f9565b6000806040838503121561153c578081fd5b611545836114f9565b9150611553602084016114f9565b90509250929050565b600080600060608486031215611570578081fd5b611579846114f9565b9250611587602085016114f9565b9150604084013590509250925092565b600080600080608085870312156115ac578081fd5b6115b5856114f9565b93506115c3602086016114f9565b925060408501359150606085013567ffffffffffffffff808211156115e6578283fd5b818701915087601f8301126115f9578283fd5b81358181111561160b5761160b611ea9565b604051601f8201601f19908116603f0116810190838211818310171561163357611633611ea9565b816040528281528a602084870101111561164b578586fd5b82602086016020830137918201602001949094529598949750929550505050565b6000806040838503121561167e578182fd5b611687836114f9565b91506020830135801515811461169b578182fd5b809150509250929050565b600080604083850312156116b8578182fd5b6116c1836114f9565b946020939093013593505050565b6000602082840312156116e0578081fd5b5035919050565b600080604083850312156116f9578182fd5b82359150611553602084016114f9565b60006020828403121561171a578081fd5b8135610d3281611ebf565b600060208284031215611736578081fd5b8151610d3281611ebf565b60008151808452611759816020860160208601611de7565b601f01601f19169290920160200192915050565b90815260200190565b60008351611788818460208801611de7565b83519083019061179c818360208801611de7565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117ec90830184611741565b9695505050505050565b901515815260200190565b600060208252610d326020830184611741565b6020808252602f908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526e0818591b5a5b881d1bc819dc985b9d608a1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602e908201527f4f72646572436f6c6c65637469626c653a204d617820616d6f756e74206f662060408201526d1d1bdad95b9cc81c995858da195960921b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526030908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526f2061646d696e20746f207265766f6b6560801b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526028908201527f4f72646572436f6c6c65637469626c653a2043616c6c6572206973206e6f7420604082015267309026b4b73a32b960c11b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4f72646572436f6c6c65637469626c653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b60008219821115611d9857611d98611e7d565b500190565b600082611dac57611dac611e93565b500490565b6000816000190483118215151615611dcb57611dcb611e7d565b500290565b600082821015611de257611de2611e7d565b500390565b60005b83811015611e02578181015183820152602001611dea565b838111156108965750506000910152565b600281046001821680611e2757607f821691505b60208210811415611e4857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e6257611e62611e7d565b5060010190565b600082611e7857611e78611e93565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611ed557600080fd5b5056fe31323334353637383941424344454647484a4b4c4d4e505152535455565758595a6162636465666768696a6b6d6e6f707172737475767778797aa264697066735822122025c41d379d56ba804481a3eedae422dc9d7adb1ff028016112919c239a4e852864736f6c63430008010033000000000000000000000000a7a2819f5432a96fb83d088413e782c49f683e59

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde146102c6578063c87b56dd146102d9578063d5391393146102ec578063d547741f146102f4578063d547cfb714610307578063e985e9c51461030f57610158565b806370a082311461026a57806391d148541461027d57806395d89b4114610290578063a217fddf14610298578063a22cb465146102a0578063adf288df146102b357610158565b80632f2ff15d116101155780632f2ff15d1461020357806333039d3d1461021657806336568abe1461021e5780633cbe51581461023157806342842e0e146102445780636352211e1461025757610158565b806301ffc9a71461015d57806306fdde0314610186578063081812fc1461019b578063095ea7b3146101bb57806323b872dd146101d0578063248a9ca3146101e3575b600080fd5b61017061016b366004611709565b610322565b60405161017d91906117f6565b60405180910390f35b61018e610394565b60405161017d9190611801565b6101ae6101a93660046116cf565b610426565b60405161017d91906117a5565b6101ce6101c93660046116a6565b610472565b005b6101ce6101de36600461155c565b61050a565b6101f66101f13660046116cf565b610542565b60405161017d919061176d565b6101ce6102113660046116e7565b610557565b6101f6610595565b6101ce61022c3660046116e7565b61059b565b61018e61023f3660046116cf565b6105dd565b6101ce61025236600461155c565b61061c565b6101ae6102653660046116cf565b610637565b6101f6610278366004611510565b61066c565b61017061028b3660046116e7565b6106b0565b61018e6106dd565b6101f66106ec565b6101ce6102ae36600461166c565b6106f1565b6101ce6102c13660046116a6565b6107bf565b6101ce6102d4366004611597565b61085d565b61018e6102e73660046116cf565b61089c565b6101f66108eb565b6101ce6103023660046116e7565b61090f565b61018e610937565b61017061031d36600461152a565b610958565b60006001600160e01b03198216637965db0b60e01b1480610347575061034782610986565b8061036257506001600160e01b031982166380ac58cd60e01b145b8061037d57506001600160e01b03198216635b5e139f60e01b145b8061038c575061038c82610986565b90505b919050565b6060600080546103a390611e13565b80601f01602080910402602001604051908101604052809291908181526020018280546103cf90611e13565b801561041c5780601f106103f15761010080835404028352916020019161041c565b820191906000526020600020905b8154815290600101906020018083116103ff57829003601f168201915b5050505050905090565b6000610431826109ab565b6104565760405162461bcd60e51b815260040161044d90611b76565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061047d82610637565b9050806001600160a01b0316836001600160a01b031614156104b15760405162461bcd60e51b815260040161044d90611c53565b806001600160a01b03166104c36109c8565b6001600160a01b031614806104df57506104df8161031d6109c8565b6104fb5760405162461bcd60e51b815260040161044d90611a51565b61050583836109cc565b505050565b61051b6105156109c8565b82610a3a565b6105375760405162461bcd60e51b815260040161044d90611ce5565b610505838383610abf565b60009081526006602052604090206001015490565b61056b61056383610542565b61028b6109c8565b6105875760405162461bcd60e51b815260040161044d90611814565b6105918282610bec565b5050565b61290481565b6105a36109c8565b6001600160a01b0316816001600160a01b0316146105d35760405162461bcd60e51b815260040161044d90611d36565b6105918282610c73565b60606105e8826109ab565b6106045760405162461bcd60e51b815260040161044d90611c94565b60008281526007602052604090205461038c90610cf8565b6105058383836040518060200160405280600081525061085d565b6000818152600260205260408120546001600160a01b03168061038c5760405162461bcd60e51b815260040161044d90611af8565b60006001600160a01b0382166106945760405162461bcd60e51b815260040161044d90611aae565b506001600160a01b031660009081526003602052604090205490565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b6060600180546103a390611e13565b600081565b6106f96109c8565b6001600160a01b0316826001600160a01b0316141561072a5760405162461bcd60e51b815260040161044d90611930565b80600560006107376109c8565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561077b6109c8565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516107b391906117f6565b60405180910390a35050565b6107e97f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336106b0565b6108055760405162461bcd60e51b815260040161044d90611c0b565b612904600854106108285760405162461bcd60e51b815260040161044d90611967565b600060085460016108399190611d85565b600081815260076020526040902083905590506108568382610d39565b6008555050565b61086e6108686109c8565b83610a3a565b61088a5760405162461bcd60e51b815260040161044d90611ce5565b61089684848484610e18565b50505050565b60606108a7826109ab565b6108c35760405162461bcd60e51b815260040161044d90611c94565b61038c6108ce610937565b6000848152600760205260409020546108e690610cf8565b610e4b565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61091b61056383610542565b6105d35760405162461bcd60e51b815260040161044d90611a01565b604080518082019091526007815266697066733a2f2f60c81b602082015290565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b03198216637965db0b60e01b148061038c575061038c82610e77565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610a0182610637565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610a45826109ab565b610a615760405162461bcd60e51b815260040161044d906119b5565b6000610a6c83610637565b9050806001600160a01b0316846001600160a01b03161480610aa75750836001600160a01b0316610a9c84610426565b6001600160a01b0316145b80610ab75750610ab78185610958565b949350505050565b826001600160a01b0316610ad282610637565b6001600160a01b031614610af85760405162461bcd60e51b815260040161044d90611bc2565b6001600160a01b038216610b1e5760405162461bcd60e51b815260040161044d906118ec565b610b29838383610505565b610b346000826109cc565b6001600160a01b0383166000908152600360205260408120805460019290610b5d908490611dd0565b90915550506001600160a01b0382166000908152600360205260408120805460019290610b8b908490611d85565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bf682826106b0565b6105915760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610c2f6109c8565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610c7d82826106b0565b156105915760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19169055610cb46109c8565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60606000610d0583610eb7565b9050610d32610d2d604051806040016040528060028152602001609160f51b81525083610e4b565b610ee0565b9392505050565b6001600160a01b038216610d5f5760405162461bcd60e51b815260040161044d90611b41565b610d68816109ab565b15610d855760405162461bcd60e51b815260040161044d906118b5565b610d9160008383610505565b6001600160a01b0382166000908152600360205260408120805460019290610dba908490611d85565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b610e23848484610abf565b610e2f848484846110cf565b6108965760405162461bcd60e51b815260040161044d90611863565b60608282604051602001610e60929190611776565b604051602081830303815290604052905092915050565b60006001600160e01b031982166380ac58cd60e01b1480610ea857506001600160e01b03198216635b5e139f60e01b145b8061038c575061038c826111ea565b606081604051602001610eca919061176d565b6040516020818303038152906040529050919050565b60606000606483516088610ef49190611db1565b610efe9190611d9d565b610f09906001611d85565b67ffffffffffffffff811115610f2f57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610f58578160200160208202803683370190505b509050600160005b84518110156110b4576000858281518110610f8b57634e487b7160e01b600052603260045260246000fd5b016020015160f81c905060005b8381101561103e57848181518110610fc057634e487b7160e01b600052603260045260246000fd5b602002602001015160ff16610100610fd89190611db1565b610fe29083611d85565b9150610fef603a83611e69565b85828151811061100f57634e487b7160e01b600052603260045260246000fd5b60ff9092166020928302919091019091015261102c603a83611d9d565b915061103781611e4e565b9050610f98565b505b80156110a357611051603a82611e69565b84848151811061107157634e487b7160e01b600052603260045260246000fd5b60ff909216602092830291909101909101528261108d81611e4e565b935061109c9050603a82611d9d565b9050611040565b506110ad81611e4e565b9050610f60565b50610ab76110ca6110c58484611203565b6112e9565b6113d8565b60006110e3846001600160a01b03166114f3565b156111df57836001600160a01b031663150b7a026110ff6109c8565b8786866040518563ffffffff1660e01b815260040161112194939291906117b9565b602060405180830381600087803b15801561113b57600080fd5b505af192505050801561116b575060408051601f3d908101601f1916820190925261116891810190611725565b60015b6111c5573d808015611199576040519150601f19603f3d011682016040523d82523d6000602084013e61119e565b606091505b5080516111bd5760405162461bcd60e51b815260040161044d90611863565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ab7565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b606081835114156112155750816106d7565b60008267ffffffffffffffff81111561123e57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611267578160200160208202803683370190505b50905060005b838110156112e15784818151811061129557634e487b7160e01b600052603260045260246000fd5b60200260200101518282815181106112bd57634e487b7160e01b600052603260045260246000fd5b60ff90921660209283029190910190910152806112d981611e4e565b91505061126d565b5090506106d7565b60606000825167ffffffffffffffff81111561131557634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561133e578160200160208202803683370190505b50905060005b83518110156113d15783816001865161135d9190611dd0565b6113679190611dd0565b8151811061138557634e487b7160e01b600052603260045260246000fd5b60200260200101518282815181106113ad57634e487b7160e01b600052603260045260246000fd5b60ff90921660209283029190910190910152806113c981611e4e565b915050611344565b5092915050565b60606000825167ffffffffffffffff81111561140457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561142e576020820181803683370190505b50905060005b83518110156113d1576040518060600160405280603a8152602001611ed9603a913984828151811061147657634e487b7160e01b600052603260045260246000fd5b602002602001015160ff168151811061149f57634e487b7160e01b600052603260045260246000fd5b602001015160f81c60f81b8282815181106114ca57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350806114eb81611e4e565b915050611434565b3b151590565b80356001600160a01b038116811461038f57600080fd5b600060208284031215611521578081fd5b610d32826114f9565b6000806040838503121561153c578081fd5b611545836114f9565b9150611553602084016114f9565b90509250929050565b600080600060608486031215611570578081fd5b611579846114f9565b9250611587602085016114f9565b9150604084013590509250925092565b600080600080608085870312156115ac578081fd5b6115b5856114f9565b93506115c3602086016114f9565b925060408501359150606085013567ffffffffffffffff808211156115e6578283fd5b818701915087601f8301126115f9578283fd5b81358181111561160b5761160b611ea9565b604051601f8201601f19908116603f0116810190838211818310171561163357611633611ea9565b816040528281528a602084870101111561164b578586fd5b82602086016020830137918201602001949094529598949750929550505050565b6000806040838503121561167e578182fd5b611687836114f9565b91506020830135801515811461169b578182fd5b809150509250929050565b600080604083850312156116b8578182fd5b6116c1836114f9565b946020939093013593505050565b6000602082840312156116e0578081fd5b5035919050565b600080604083850312156116f9578182fd5b82359150611553602084016114f9565b60006020828403121561171a578081fd5b8135610d3281611ebf565b600060208284031215611736578081fd5b8151610d3281611ebf565b60008151808452611759816020860160208601611de7565b601f01601f19169290920160200192915050565b90815260200190565b60008351611788818460208801611de7565b83519083019061179c818360208801611de7565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117ec90830184611741565b9695505050505050565b901515815260200190565b600060208252610d326020830184611741565b6020808252602f908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526e0818591b5a5b881d1bc819dc985b9d608a1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602e908201527f4f72646572436f6c6c65637469626c653a204d617820616d6f756e74206f662060408201526d1d1bdad95b9cc81c995858da195960921b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526030908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526f2061646d696e20746f207265766f6b6560801b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526028908201527f4f72646572436f6c6c65637469626c653a2043616c6c6572206973206e6f7420604082015267309026b4b73a32b960c11b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4f72646572436f6c6c65637469626c653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b60008219821115611d9857611d98611e7d565b500190565b600082611dac57611dac611e93565b500490565b6000816000190483118215151615611dcb57611dcb611e7d565b500290565b600082821015611de257611de2611e7d565b500390565b60005b83811015611e02578181015183820152602001611dea565b838111156108965750506000910152565b600281046001821680611e2757607f821691505b60208210811415611e4857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e6257611e62611e7d565b5060010190565b600082611e7857611e78611e93565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611ed557600080fd5b5056fe31323334353637383941424344454647484a4b4c4d4e505152535455565758595a6162636465666768696a6b6d6e6f707172737475767778797aa264697066735822122025c41d379d56ba804481a3eedae422dc9d7adb1ff028016112919c239a4e852864736f6c63430008010033

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

000000000000000000000000a7a2819f5432a96fb83d088413e782c49f683e59

-----Decoded View---------------
Arg [0] : _admin (address): 0xA7A2819f5432a96FB83D088413E782c49f683e59

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a7a2819f5432a96fb83d088413e782c49f683e59


Deployed Bytecode Sourcemap

39515:7284:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40092:433;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20776:100;;;:::i;:::-;;;;;;;:::i;22236:221::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;21773:397::-;;;;;;:::i;:::-;;:::i;:::-;;23126:305;;;;;;:::i;:::-;;:::i;35820:123::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;36205:232::-;;;;;;:::i;:::-;;:::i;39767:48::-;;;:::i;37424:218::-;;;;;;:::i;:::-;;:::i;40908:242::-;;;;;;:::i;:::-;;:::i;23502:151::-;;;;;;:::i;:::-;;:::i;20470:239::-;;;;;;:::i;:::-;;:::i;20200:208::-;;;;;;:::i;:::-;;:::i;35492:139::-;;;;;;:::i;:::-;;:::i;20945:104::-;;;:::i;33948:49::-;;;:::i;22529:295::-;;;;;;:::i;:::-;;:::i;40533:367::-;;;;;;:::i;:::-;;:::i;23724:285::-;;;;;;:::i;:::-;;:::i;41339:292::-;;;;;;:::i;:::-;;:::i;39696:62::-;;;:::i;36682:235::-;;;;;;:::i;:::-;;:::i;41162:104::-;;;:::i;22895:164::-;;;;;;:::i;:::-;;:::i;40092:433::-;40202:4;-1:-1:-1;;;;;;40226:47:0;;-1:-1:-1;;;40226:47:0;;:104;;;40294:36;40318:11;40294:23;:36::i;:::-;40226:165;;;-1:-1:-1;;;;;;;40351:40:0;;-1:-1:-1;;;40351:40:0;40226:165;:234;;;-1:-1:-1;;;;;;;40412:48:0;;-1:-1:-1;;;40412:48:0;40226:234;:291;;;;40481:36;40505:11;40481:23;:36::i;:::-;40219:298;;40092:433;;;;:::o;20776:100::-;20830:13;20863:5;20856:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20776:100;:::o;22236:221::-;22312:7;22340:16;22348:7;22340;:16::i;:::-;22332:73;;;;-1:-1:-1;;;22332:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;22425:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22425:24:0;;22236:221::o;21773:397::-;21854:13;21870:23;21885:7;21870:14;:23::i;:::-;21854:39;;21918:5;-1:-1:-1;;;;;21912:11:0;:2;-1:-1:-1;;;;;21912:11:0;;;21904:57;;;;-1:-1:-1;;;21904:57:0;;;;;;;:::i;:::-;21998:5;-1:-1:-1;;;;;21982:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;21982:21:0;;:62;;;;22007:37;22024:5;22031:12;:10;:12::i;22007:37::-;21974:154;;;;-1:-1:-1;;;21974:154:0;;;;;;;:::i;:::-;22141:21;22150:2;22154:7;22141:8;:21::i;:::-;21773:397;;;:::o;23126:305::-;23287:41;23306:12;:10;:12::i;:::-;23320:7;23287:18;:41::i;:::-;23279:103;;;;-1:-1:-1;;;23279:103:0;;;;;;;:::i;:::-;23395:28;23405:4;23411:2;23415:7;23395:9;:28::i;35820:123::-;35886:7;35913:12;;;:6;:12;;;;;:22;;;;35820:123::o;36205:232::-;36298:41;36306:18;36319:4;36306:12;:18::i;:::-;36326:12;:10;:12::i;36298:41::-;36290:101;;;;-1:-1:-1;;;36290:101:0;;;;;;;:::i;:::-;36404:25;36415:4;36421:7;36404:10;:25::i;:::-;36205:232;;:::o;39767:48::-;39810:5;39767:48;:::o;37424:218::-;37531:12;:10;:12::i;:::-;-1:-1:-1;;;;;37520:23:0;:7;-1:-1:-1;;;;;37520:23:0;;37512:83;;;;-1:-1:-1;;;37512:83:0;;;;;;;:::i;:::-;37608:26;37620:4;37626:7;37608:11;:26::i;40908:242::-;40984:13;41019:17;41027:8;41019:7;:17::i;:::-;41011:79;;;;-1:-1:-1;;;41011:79:0;;;;;;;:::i;:::-;41115:26;;;;:16;:26;;;;;;41108:34;;:6;:34::i;23502:151::-;23606:39;23623:4;23629:2;23633:7;23606:39;;;;;;;;;;;;:16;:39::i;20470:239::-;20542:7;20578:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20578:16:0;20613:19;20605:73;;;;-1:-1:-1;;;20605:73:0;;;;;;;:::i;20200:208::-;20272:7;-1:-1:-1;;;;;20300:19:0;;20292:74;;;;-1:-1:-1;;;20292:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;20384:16:0;;;;;:9;:16;;;;;;;20200:208::o;35492:139::-;35570:4;35594:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;35594:29:0;;;;;;;;;;;;35492:139;;;;;:::o;20945:104::-;21001:13;21034:7;21027:14;;;;;:::i;33948:49::-;33993:4;33948:49;:::o;22529:295::-;22644:12;:10;:12::i;:::-;-1:-1:-1;;;;;22632:24:0;:8;-1:-1:-1;;;;;22632:24:0;;;22624:62;;;;-1:-1:-1;;;22624:62:0;;;;;;;:::i;:::-;22744:8;22699:18;:32;22718:12;:10;:12::i;:::-;-1:-1:-1;;;;;22699:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;22699:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;22699:53:0;;;;;;;;;;;22783:12;:10;:12::i;:::-;-1:-1:-1;;;;;22768:48:0;;22807:8;22768:48;;;;;;:::i;:::-;;;;;;;;22529:295;;:::o;40533:367::-;39985:32;39734:24;40006:10;39985:7;:32::i;:::-;39977:85;;;;-1:-1:-1;;;39977:85:0;;;;;;;:::i;:::-;39810:5:::1;40623:17;;:36;40614:96;;;;-1:-1:-1::0;;;40614:96:0::1;;;;;;;:::i;:::-;40721:20;40744:17;;40764:1;40744:21;;;;:::i;:::-;40776:30;::::0;;;:16:::1;:30;::::0;;;;:38;;;40721:44;-1:-1:-1;40825:24:0::1;40831:3:::0;40721:44;40825:5:::1;:24::i;:::-;40860:17;:32:::0;-1:-1:-1;;40533:367:0:o;23724:285::-;23856:41;23875:12;:10;:12::i;:::-;23889:7;23856:18;:41::i;:::-;23848:103;;;;-1:-1:-1;;;23848:103:0;;;;;;;:::i;:::-;23962:39;23976:4;23982:2;23986:7;23995:5;23962:13;:39::i;:::-;23724:285;;;;:::o;41339:292::-;41435:13;41469:17;41477:8;41469:7;:17::i;:::-;41461:79;;;;-1:-1:-1;;;41461:79:0;;;;;;;:::i;:::-;41558:65;41572:14;:12;:14::i;:::-;41595:26;;;;:16;:26;;;;;;41588:34;;:6;:34::i;:::-;41558:13;:65::i;39696:62::-;39734:24;39696:62;:::o;36682:235::-;36776:41;36784:18;36797:4;36784:12;:18::i;36776:41::-;36768:102;;;;-1:-1:-1;;;36768:102:0;;;;;;;:::i;41162:104::-;41242:16;;;;;;;;;;;;-1:-1:-1;;;41242:16:0;;;;41162:104;:::o;22895:164::-;-1:-1:-1;;;;;23016:25:0;;;22992:4;23016:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22895:164::o;35183:217::-;35268:4;-1:-1:-1;;;;;;35292:47:0;;-1:-1:-1;;;35292:47:0;;:100;;;35356:36;35380:11;35356:23;:36::i;25476:127::-;25541:4;25565:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25565:16:0;:30;;;25476:127::o;6847:98::-;6927:10;6847:98;:::o;29353:174::-;29428:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;29428:29:0;-1:-1:-1;;;;;29428:29:0;;;;;;;;:24;;29482:23;29428:24;29482:14;:23::i;:::-;-1:-1:-1;;;;;29473:46:0;;;;;;;;;;;29353:174;;:::o;25770:348::-;25863:4;25888:16;25896:7;25888;:16::i;:::-;25880:73;;;;-1:-1:-1;;;25880:73:0;;;;;;;:::i;:::-;25964:13;25980:23;25995:7;25980:14;:23::i;:::-;25964:39;;26033:5;-1:-1:-1;;;;;26022:16:0;:7;-1:-1:-1;;;;;26022:16:0;;:51;;;;26066:7;-1:-1:-1;;;;;26042:31:0;:20;26054:7;26042:11;:20::i;:::-;-1:-1:-1;;;;;26042:31:0;;26022:51;:87;;;;26077:32;26094:5;26101:7;26077:16;:32::i;:::-;26014:96;25770:348;-1:-1:-1;;;;25770:348:0:o;28691:544::-;28816:4;-1:-1:-1;;;;;28789:31:0;:23;28804:7;28789:14;:23::i;:::-;-1:-1:-1;;;;;28789:31:0;;28781:85;;;;-1:-1:-1;;;28781:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28885:16:0;;28877:65;;;;-1:-1:-1;;;28877:65:0;;;;;;;:::i;:::-;28955:39;28976:4;28982:2;28986:7;28955:20;:39::i;:::-;29059:29;29076:1;29080:7;29059:8;:29::i;:::-;-1:-1:-1;;;;;29101:15:0;;;;;;:9;:15;;;;;:20;;29120:1;;29101:15;:20;;29120:1;;29101:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29132:13:0;;;;;;:9;:13;;;;;:18;;29149:1;;29132:13;:18;;29149:1;;29132:18;:::i;:::-;;;;-1:-1:-1;;29161:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29161:21:0;-1:-1:-1;;;;;29161:21:0;;;;;;;;;29200:27;;29161:16;;29200:27;;;;;;;28691:544;;;:::o;38672:229::-;38747:22;38755:4;38761:7;38747;:22::i;:::-;38742:152;;38786:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;38786:29:0;;;;;;;;;:36;;-1:-1:-1;;38786:36:0;38818:4;38786:36;;;38869:12;:10;:12::i;:::-;-1:-1:-1;;;;;38842:40:0;38860:7;-1:-1:-1;;;;;38842:40:0;38854:4;38842:40;;;;;;;;;;38672:229;;:::o;38909:230::-;38984:22;38992:4;38998:7;38984;:22::i;:::-;38980:152;;;39055:5;39023:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;39023:29:0;;;;;;;;;:37;;-1:-1:-1;;39023:37:0;;;39107:12;:10;:12::i;:::-;-1:-1:-1;;;;;39080:40:0;39098:7;-1:-1:-1;;;;;39080:40:0;39092:4;39080:40;;;;;;;;;;38909:230;;:::o;42243:194::-;42302:13;42328:20;42349;42357:11;42349:7;:20::i;:::-;42328:41;;42387:42;42396:32;42403:15;;;;;;;;;;;;;-1:-1:-1;;;42403:15:0;;;42420:7;42396:6;:32::i;:::-;42387:8;:42::i;:::-;42380:49;42243:194;-1:-1:-1;;;42243:194:0:o;27383:382::-;-1:-1:-1;;;;;27463:16:0;;27455:61;;;;-1:-1:-1;;;27455:61:0;;;;;;;:::i;:::-;27536:16;27544:7;27536;:16::i;:::-;27535:17;27527:58;;;;-1:-1:-1;;;27527:58:0;;;;;;;:::i;:::-;27598:45;27627:1;27631:2;27635:7;27598:20;:45::i;:::-;-1:-1:-1;;;;;27656:13:0;;;;;;:9;:13;;;;;:18;;27673:1;;27656:13;:18;;27673:1;;27656:18;:::i;:::-;;;;-1:-1:-1;;27685:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;27685:21:0;-1:-1:-1;;;;;27685:21:0;;;;;;;;27724:33;;27685:16;;;27724:33;;27685:16;;27724:33;27383:382;;:::o;24891:272::-;25005:28;25015:4;25021:2;25025:7;25005:9;:28::i;:::-;25052:48;25075:4;25081:2;25085:7;25094:5;25052:22;:48::i;:::-;25044:111;;;;-1:-1:-1;;;25044:111:0;;;;;;;:::i;46530:146::-;46607:13;46663:1;46665;46646:21;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46632:36;;46530:146;;;;:::o;19844:292::-;19946:4;-1:-1:-1;;;;;;19970:40:0;;-1:-1:-1;;;19970:40:0;;:105;;-1:-1:-1;;;;;;;20027:48:0;;-1:-1:-1;;;20027:48:0;19970:105;:158;;;;20092:36;20116:11;20092:23;:36::i;45255:117::-;45309:12;45358:5;45341:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;45334:30;;45255:117;;;:::o;44501:746::-;44562:13;44588:21;44643:3;44625:6;:13;44639:3;44625:17;;;;:::i;:::-;:21;;;;:::i;:::-;44624:25;;44648:1;44624:25;:::i;:::-;44612:38;;;;;;-1:-1:-1;;;44612:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44612:38:0;-1:-1:-1;44588:62:0;-1:-1:-1;44681:1:0;44662:16;44693:471;44712:6;:13;44710:1;:15;44693:471;;;44747:10;44766:6;44773:1;44766:9;;;;;;-1:-1:-1;;;44766:9:0;;;;;;;;;;;;;;;;-1:-1:-1;44796:6:0;44791:187;44810:11;44808:1;:13;44791:187;;;44861:6;44868:1;44861:9;;;;;;-1:-1:-1;;;44861:9:0;;;;;;;;;;;;;;;44856:15;;44874:3;44856:21;;;;:::i;:::-;44847:30;;;;:::i;:::-;;-1:-1:-1;44914:10:0;44922:2;44847:30;44914:10;:::i;:::-;44896:6;44903:1;44896:9;;;;;;-1:-1:-1;;;44896:9:0;;;;;;;;;:29;;;;:9;;;;;;;;;;;:29;44952:10;44960:2;44952:5;:10;:::i;:::-;44944:18;-1:-1:-1;44823:3:0;;;:::i;:::-;;;44791:187;;;;44992:161;44999:9;;44992:161;;45057:10;45065:2;45057:5;:10;:::i;:::-;45029:6;45036:11;45029:19;;;;;;-1:-1:-1;;;45029:19:0;;;;;;;;;:39;;;;:19;;;;;;;;;;;:39;45087:13;;;;:::i;:::-;;-1:-1:-1;45127:10:0;;-1:-1:-1;45135:2:0;45127:5;:10;:::i;:::-;45119:18;;44992:161;;;-1:-1:-1;44727:3:0;;;:::i;:::-;;;44693:471;;;;45188:50;45199:38;45207:29;45216:6;45224:11;45207:8;:29::i;:::-;45199:7;:38::i;:::-;45188:10;:50::i;30092:843::-;30213:4;30239:15;:2;-1:-1:-1;;;;;30239:13:0;;:15::i;:::-;30235:693;;;30291:2;-1:-1:-1;;;;;30275:36:0;;30312:12;:10;:12::i;:::-;30326:4;30332:7;30341:5;30275:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30275:72:0;;;;;;;;-1:-1:-1;;30275:72:0;;;;;;;;;;;;:::i;:::-;;;30271:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30521:13:0;;30517:341;;30564:60;;-1:-1:-1;;;30564:60:0;;;;;;;:::i;30517:341::-;30808:6;30802:13;30793:6;30789:2;30785:15;30778:38;30271:602;-1:-1:-1;;;;;;30398:55:0;-1:-1:-1;;;30398:55:0;;-1:-1:-1;30391:62:0;;30235:693;-1:-1:-1;30912:4:0;30092:843;;;;;;:::o;6138:157::-;-1:-1:-1;;;;;;6247:40:0;;-1:-1:-1;;;6247:40:0;6138:157;;;:::o;45386:375::-;45461:14;45505:6;45491:5;:12;:20;45488:266;;;-1:-1:-1;45534:5:0;45527:12;;45488:266;45570:21;45606:6;45594:19;;;;;;-1:-1:-1;;;45594:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45594:19:0;;45570:43;;45633:6;45628:87;45647:6;45645:1;:8;45628:87;;;45691:5;45697:1;45691:8;;;;;;-1:-1:-1;;;45691:8:0;;;;;;;;;;;;;;;45679:6;45686:1;45679:9;;;;;;-1:-1:-1;;;45679:9:0;;;;;;;;;:20;;;;:9;;;;;;;;;;;:20;45655:3;;;;:::i;:::-;;;;45628:87;;;-1:-1:-1;45736:6:0;-1:-1:-1;45729:13:0;;45773:279;45834:14;45861:21;45897:5;:12;45885:25;;;;;;-1:-1:-1;;;45885:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45885:25:0;;45861:49;;45926:6;45921:100;45940:5;:12;45938:1;:14;45921:100;;;45986:5;46007:1;46005;45992:5;:12;:14;;;;:::i;:::-;:16;;;;:::i;:::-;45986:23;;;;;;-1:-1:-1;;;45986:23:0;;;;;;;;;;;;;;;45974:6;45981:1;45974:9;;;;;;-1:-1:-1;;;45974:9:0;;;;;;;;;:35;;;;:9;;;;;;;;;;;:35;45954:3;;;;:::i;:::-;;;;45921:100;;;-1:-1:-1;46038:6:0;45773:279;-1:-1:-1;;45773:279:0:o;46064:::-;46130:12;46155:19;46187:7;:14;46177:25;;;;;;-1:-1:-1;;;46177:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46177:25:0;;46155:47;;46218:6;46213:99;46232:7;:14;46230:1;:16;46213:99;;;46280:8;;;;;;;;;;;;;;;;;46289:7;46297:1;46289:10;;;;;;-1:-1:-1;;;46289:10:0;;;;;;;;;;;;;;;46280:20;;;;;;;;-1:-1:-1;;;46280:20:0;;;;;;;;;;;;;;;;;46268:6;46275:1;46268:9;;;;;;-1:-1:-1;;;46268:9:0;;;;;;;;;;;;:32;-1:-1:-1;;;;;46268:32:0;;;;;;;;-1:-1:-1;46248:3:0;;;;:::i;:::-;;;;46213:99;;11344:422;11711:20;11750:8;;;11344:422::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:1187::-;;;;;1195:3;1183:9;1174:7;1170:23;1166:33;1163:2;;;1217:6;1209;1202:22;1163:2;1245:31;1266:9;1245:31;:::i;:::-;1235:41;;1295:40;1331:2;1320:9;1316:18;1295:40;:::i;:::-;1285:50;;1382:2;1371:9;1367:18;1354:32;1344:42;;1437:2;1426:9;1422:18;1409:32;1460:18;1501:2;1493:6;1490:14;1487:2;;;1522:6;1514;1507:22;1487:2;1565:6;1554:9;1550:22;1540:32;;1610:7;1603:4;1599:2;1595:13;1591:27;1581:2;;1637:6;1629;1622:22;1581:2;1678;1665:16;1700:2;1696;1693:10;1690:2;;;1706:18;;:::i;:::-;1781:2;1775:9;1749:2;1835:13;;-1:-1:-1;;1831:22:1;;;1855:2;1827:31;1823:40;1811:53;;;1879:18;;;1899:22;;;1876:46;1873:2;;;1925:18;;:::i;:::-;1965:10;1961:2;1954:22;2000:2;1992:6;1985:18;2040:7;2035:2;2030;2026;2022:11;2018:20;2015:33;2012:2;;;2066:6;2058;2051:22;2012:2;2127;2122;2118;2114:11;2109:2;2101:6;2097:15;2084:46;2150:15;;;2167:2;2146:24;2139:40;;;;1153:1057;;;;-1:-1:-1;1153:1057:1;;-1:-1:-1;;;;1153:1057:1:o;2215:369::-;;;2341:2;2329:9;2320:7;2316:23;2312:32;2309:2;;;2362:6;2354;2347:22;2309:2;2390:31;2411:9;2390:31;:::i;:::-;2380:41;;2471:2;2460:9;2456:18;2443:32;2518:5;2511:13;2504:21;2497:5;2494:32;2484:2;;2545:6;2537;2530:22;2484:2;2573:5;2563:15;;;2299:285;;;;;:::o;2589:266::-;;;2718:2;2706:9;2697:7;2693:23;2689:32;2686:2;;;2739:6;2731;2724:22;2686:2;2767:31;2788:9;2767:31;:::i;:::-;2757:41;2845:2;2830:18;;;;2817:32;;-1:-1:-1;;;2676:179:1:o;3131:190::-;;3243:2;3231:9;3222:7;3218:23;3214:32;3211:2;;;3264:6;3256;3249:22;3211:2;-1:-1:-1;3292:23:1;;3201:120;-1:-1:-1;3201:120:1:o;3326:266::-;;;3455:2;3443:9;3434:7;3430:23;3426:32;3423:2;;;3476:6;3468;3461:22;3423:2;3517:9;3504:23;3494:33;;3546:40;3582:2;3571:9;3567:18;3546:40;:::i;3597:257::-;;3708:2;3696:9;3687:7;3683:23;3679:32;3676:2;;;3729:6;3721;3714:22;3676:2;3773:9;3760:23;3792:32;3818:5;3792:32;:::i;3859:261::-;;3981:2;3969:9;3960:7;3956:23;3952:32;3949:2;;;4002:6;3994;3987:22;3949:2;4039:9;4033:16;4058:32;4084:5;4058:32;:::i;4320:259::-;;4401:5;4395:12;4428:6;4423:3;4416:19;4444:63;4500:6;4493:4;4488:3;4484:14;4477:4;4470:5;4466:16;4444:63;:::i;:::-;4561:2;4540:15;-1:-1:-1;;4536:29:1;4527:39;;;;4568:4;4523:50;;4371:208;-1:-1:-1;;4371:208:1:o;4584:182::-;4713:19;;;4757:2;4748:12;;4703:63::o;4771:466::-;;4984:6;4978:13;5000:53;5046:6;5041:3;5034:4;5026:6;5022:17;5000:53;:::i;:::-;5116:13;;5075:16;;;;5138:57;5116:13;5075:16;5172:4;5160:17;;5138:57;:::i;:::-;5211:20;;4954:283;-1:-1:-1;;;;4954:283:1:o;5717:203::-;-1:-1:-1;;;;;5881:32:1;;;;5863:51;;5851:2;5836:18;;5818:102::o;5925:490::-;-1:-1:-1;;;;;6194:15:1;;;6176:34;;6246:15;;6241:2;6226:18;;6219:43;6293:2;6278:18;;6271:34;;;6341:3;6336:2;6321:18;;6314:31;;;5925:490;;6362:47;;6389:19;;6381:6;6362:47;:::i;:::-;6354:55;6128:287;-1:-1:-1;;;;;;6128:287:1:o;6420:187::-;6585:14;;6578:22;6560:41;;6548:2;6533:18;;6515:92::o;6794:221::-;;6943:2;6932:9;6925:21;6963:46;7005:2;6994:9;6990:18;6982:6;6963:46;:::i;7020:411::-;7222:2;7204:21;;;7261:2;7241:18;;;7234:30;7300:34;7295:2;7280:18;;7273:62;-1:-1:-1;;;7366:2:1;7351:18;;7344:45;7421:3;7406:19;;7194:237::o;7436:414::-;7638:2;7620:21;;;7677:2;7657:18;;;7650:30;7716:34;7711:2;7696:18;;7689:62;-1:-1:-1;;;7782:2:1;7767:18;;7760:48;7840:3;7825:19;;7610:240::o;7855:352::-;8057:2;8039:21;;;8096:2;8076:18;;;8069:30;8135;8130:2;8115:18;;8108:58;8198:2;8183:18;;8029:178::o;8212:400::-;8414:2;8396:21;;;8453:2;8433:18;;;8426:30;8492:34;8487:2;8472:18;;8465:62;-1:-1:-1;;;8558:2:1;8543:18;;8536:34;8602:3;8587:19;;8386:226::o;8617:349::-;8819:2;8801:21;;;8858:2;8838:18;;;8831:30;8897:27;8892:2;8877:18;;8870:55;8957:2;8942:18;;8791:175::o;8971:410::-;9173:2;9155:21;;;9212:2;9192:18;;;9185:30;9251:34;9246:2;9231:18;;9224:62;-1:-1:-1;;;9317:2:1;9302:18;;9295:44;9371:3;9356:19;;9145:236::o;9386:408::-;9588:2;9570:21;;;9627:2;9607:18;;;9600:30;9666:34;9661:2;9646:18;;9639:62;-1:-1:-1;;;9732:2:1;9717:18;;9710:42;9784:3;9769:19;;9560:234::o;9799:412::-;10001:2;9983:21;;;10040:2;10020:18;;;10013:30;10079:34;10074:2;10059:18;;10052:62;-1:-1:-1;;;10145:2:1;10130:18;;10123:46;10201:3;10186:19;;9973:238::o;10216:420::-;10418:2;10400:21;;;10457:2;10437:18;;;10430:30;10496:34;10491:2;10476:18;;10469:62;10567:26;10562:2;10547:18;;10540:54;10626:3;10611:19;;10390:246::o;10641:406::-;10843:2;10825:21;;;10882:2;10862:18;;;10855:30;10921:34;10916:2;10901:18;;10894:62;-1:-1:-1;;;10987:2:1;10972:18;;10965:40;11037:3;11022:19;;10815:232::o;11052:405::-;11254:2;11236:21;;;11293:2;11273:18;;;11266:30;11332:34;11327:2;11312:18;;11305:62;-1:-1:-1;;;11398:2:1;11383:18;;11376:39;11447:3;11432:19;;11226:231::o;11462:356::-;11664:2;11646:21;;;11683:18;;;11676:30;11742:34;11737:2;11722:18;;11715:62;11809:2;11794:18;;11636:182::o;11823:408::-;12025:2;12007:21;;;12064:2;12044:18;;;12037:30;12103:34;12098:2;12083:18;;12076:62;-1:-1:-1;;;12169:2:1;12154:18;;12147:42;12221:3;12206:19;;11997:234::o;12236:405::-;12438:2;12420:21;;;12477:2;12457:18;;;12450:30;12516:34;12511:2;12496:18;;12489:62;-1:-1:-1;;;12582:2:1;12567:18;;12560:39;12631:3;12616:19;;12410:231::o;12646:404::-;12848:2;12830:21;;;12887:2;12867:18;;;12860:30;12926:34;12921:2;12906:18;;12899:62;-1:-1:-1;;;12992:2:1;12977:18;;12970:38;13040:3;13025:19;;12820:230::o;13055:397::-;13257:2;13239:21;;;13296:2;13276:18;;;13269:30;13335:34;13330:2;13315:18;;13308:62;-1:-1:-1;;;13401:2:1;13386:18;;13379:31;13442:3;13427:19;;13229:223::o;13457:413::-;13659:2;13641:21;;;13698:2;13678:18;;;13671:30;13737:34;13732:2;13717:18;;13710:62;-1:-1:-1;;;13803:2:1;13788:18;;13781:47;13860:3;13845:19;;13631:239::o;13875:413::-;14077:2;14059:21;;;14116:2;14096:18;;;14089:30;14155:34;14150:2;14135:18;;14128:62;-1:-1:-1;;;14221:2:1;14206:18;;14199:47;14278:3;14263:19;;14049:239::o;14293:411::-;14495:2;14477:21;;;14534:2;14514:18;;;14507:30;14573:34;14568:2;14553:18;;14546:62;-1:-1:-1;;;14639:2:1;14624:18;;14617:45;14694:3;14679:19;;14467:237::o;14891:128::-;;14962:1;14958:6;14955:1;14952:13;14949:2;;;14968:18;;:::i;:::-;-1:-1:-1;15004:9:1;;14939:80::o;15024:120::-;;15090:1;15080:2;;15095:18;;:::i;:::-;-1:-1:-1;15129:9:1;;15070:74::o;15149:168::-;;15255:1;15251;15247:6;15243:14;15240:1;15237:21;15232:1;15225:9;15218:17;15214:45;15211:2;;;15262:18;;:::i;:::-;-1:-1:-1;15302:9:1;;15201:116::o;15322:125::-;;15390:1;15387;15384:8;15381:2;;;15395:18;;:::i;:::-;-1:-1:-1;15432:9:1;;15371:76::o;15452:258::-;15524:1;15534:113;15548:6;15545:1;15542:13;15534:113;;;15624:11;;;15618:18;15605:11;;;15598:39;15570:2;15563:10;15534:113;;;15665:6;15662:1;15659:13;15656:2;;;-1:-1:-1;;15700:1:1;15682:16;;15675:27;15505:205::o;15715:380::-;15800:1;15790:12;;15847:1;15837:12;;;15858:2;;15912:4;15904:6;15900:17;15890:27;;15858:2;15965;15957:6;15954:14;15934:18;15931:38;15928:2;;;16011:10;16006:3;16002:20;15999:1;15992:31;16046:4;16043:1;16036:15;16074:4;16071:1;16064:15;15928:2;;15770:325;;;:::o;16100:135::-;;-1:-1:-1;;16160:17:1;;16157:2;;;16180:18;;:::i;:::-;-1:-1:-1;16227:1:1;16216:13;;16147:88::o;16240:112::-;;16298:1;16288:2;;16303:18;;:::i;:::-;-1:-1:-1;16337:9:1;;16278:74::o;16357:127::-;16418:10;16413:3;16409:20;16406:1;16399:31;16449:4;16446:1;16439:15;16473:4;16470:1;16463:15;16489:127;16550:10;16545:3;16541:20;16538:1;16531:31;16581:4;16578:1;16571:15;16605:4;16602:1;16595:15;16621:127;16682:10;16677:3;16673:20;16670:1;16663:31;16713:4;16710:1;16703:15;16737:4;16734:1;16727:15;16753:133;-1:-1:-1;;;;;;16829:32:1;;16819:43;;16809:2;;16876:1;16873;16866:12;16809:2;16799:87;:::o

Swarm Source

ipfs://25c41d379d56ba804481a3eedae422dc9d7adb1ff028016112919c239a4e8528

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.