ETH Price: $3,491.35 (+0.09%)
Gas: 1 Gwei

Token

 

Overview

Max Total Supply

295

Holders

208

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0xed0ad70e504eafd0ec7fbf2e7618c54e4dd6c135
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TreatsNFT

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : TreatsNFT.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract TreatsNFT is ERC1155Burnable, Ownable {
    using Strings for uint256;

    string tokenUri = "https://awoo.finance/snctry/json/treats/";
    
    mapping(uint256 => uint256) public evoPoint;

    function setTokenURI(string calldata _uri) public onlyOwner {
        tokenUri = _uri;
    }

    function contractURI() public pure returns (string memory) {
        return "https://awoo.finance/snctry/json/contracttreats";
    }

    constructor() ERC1155("https://awoo.finance/snctry/json/treats/") {
        evoPoint[0] = 10;
    }

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for all token types. It relies
     * on the token type ID substituion mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the \{id\} substring with the
     * actual token type ID.
     */
    function uri(uint256 _id) public view override returns (string memory) {
        return
            bytes(tokenUri).length > 0
                ? string(abi.encodePacked(tokenUri, _id.toString()))
                : "";
    }

    function mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) external onlyOwner {
        _mint(account, id, amount, data);
    }
}

File 2 of 12 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(address account, uint256 id, uint256 value) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(address account, uint256[] memory ids, uint256[] memory values) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

File 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

File 4 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

}

File 5 of 12 : ERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping (uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor (string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(
        address[] memory accounts,
        uint256[] memory ids
    )
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    )
        public
        virtual
        override
    {
        require(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        _balances[id][from] = fromBalance - amount;
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        public
        virtual
        override
    {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            _balances[id][from] = fromBalance - amount;
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(address account, uint256 id, uint256 amount, bytes memory data) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] += amount;
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(address account, uint256 id, uint256 amount) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 accountBalance = _balances[id][account];
        require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
        _balances[id][account] = accountBalance - amount;

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(address account, uint256[] memory ids, uint256[] memory amounts) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 accountBalance = _balances[id][account];
            require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
            _balances[id][account] = accountBalance - amount;
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        internal
        virtual
    { }

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    )
        private
    {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver(to).onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        private
    {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (bytes4 response) {
                if (response != IERC1155Receiver(to).onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 6 of 12 : IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values);

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data) external;
}

File 7 of 12 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {

    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    )
        external
        returns(bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    )
        external
        returns(bytes4);
}

File 8 of 12 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 9 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 12 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 12 of 12 : IERC165.sol
// 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);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"evoPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setTokenURI","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60e060405260286080818152906200247c60a0398051620000299160049160209091019062000108565b503480156200003757600080fd5b506040518060600160405280602881526020016200247c602891396200005d81620000eb565b5060006200006a62000104565b600380546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600080526005602052600a7f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc55620001eb565b80516200010090600290602084019062000108565b5050565b3390565b8280546200011690620001ae565b90600052602060002090601f0160209004810192826200013a576000855562000185565b82601f106200015557805160ff191683800117855562000185565b8280016001018555821562000185579182015b828111156200018557825182559160200191906001019062000168565b506200019392915062000197565b5090565b5b8082111562000193576000815560010162000198565b600281046001821680620001c357607f821691505b60208210811415620001e557634e487b7160e01b600052602260045260246000fd5b50919050565b61228180620001fb6000396000f3fe608060405234801561001057600080fd5b506004361061010a5760003560e01c8063731133e9116100a2578063e8a3d48511610071578063e8a3d48514610229578063e985e9c514610231578063f242432a14610244578063f2fde38b14610257578063f5298aca1461026a5761010a565b8063731133e9146101db5780638da5cb5b146101ee578063a22cb46514610203578063e0df5b6f146102165761010a565b80632eb2c2d6116100de5780632eb2c2d61461018b5780634e1273f4146101a05780636b20c454146101c0578063715018a6146101d35761010a565b8062fdd58e1461010f57806301ffc9a7146101385780630e89341c146101585780631ecac8d614610178575b600080fd5b61012261011d366004611734565b61027d565b60405161012f9190611fcc565b60405180910390f35b61014b6101463660046118ac565b6102d4565b60405161012f9190611b80565b61016b610166366004611951565b61031c565b60405161012f9190611b8b565b610122610186366004611951565b61037b565b61019e610199366004611580565b61038d565b005b6101b36101ae3660046117ee565b6105f3565b60405161012f9190611b48565b61019e6101ce366004611689565b610713565b61019e61076d565b61019e6101e936600461178f565b6107f6565b6101f6610847565b60405161012f9190611a91565b61019e6102113660046116fa565b610857565b61019e6102243660046118e4565b610925565b61016b610970565b61014b61023f36600461154e565b610990565b61019e610252366004611626565b6109be565b61019e61026536600461152d565b610b54565b61019e61027836600461175d565b610c15565b60006001600160a01b0383166102ae5760405162461bcd60e51b81526004016102a590611c3a565b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061030557506001600160e01b031982166303a24d0760e21b145b80610314575061031482610c6a565b90505b919050565b606060006004805461032d906120ac565b9050116103495760405180602001604052806000815250610314565b600461035483610c83565b6040516020016103659291906119eb565b6040516020818303038152906040529050919050565b60056020526000908152604090205481565b81518351146103ae5760405162461bcd60e51b81526004016102a590611f43565b6001600160a01b0384166103d45760405162461bcd60e51b81526004016102a590611d58565b6103dc610da6565b6001600160a01b0316856001600160a01b0316148061040257506104028561023f610da6565b61041e5760405162461bcd60e51b81526004016102a590611d9d565b6000610428610da6565b90506104388187878787876105eb565b60005b845181101561058557600085828151811061046657634e487b7160e01b600052603260045260246000fd5b60200260200101519050600085838151811061049257634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156104e25760405162461bcd60e51b81526004016102a590611e32565b6104ec8282612069565b60008085815260200190815260200160002060008c6001600160a01b03166001600160a01b03168152602001908152602001600020819055508160008085815260200190815260200160002060008b6001600160a01b03166001600160a01b03168152602001908152602001600020600082825461056a919061203d565b925050819055505050508061057e906120e7565b905061043b565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516105d5929190611b5b565b60405180910390a46105eb818787878787610daa565b505050505050565b606081518351146106165760405162461bcd60e51b81526004016102a590611efa565b6000835167ffffffffffffffff81111561064057634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610669578160200160208202803683370190505b50905060005b845181101561070b576106d085828151811061069b57634e487b7160e01b600052603260045260246000fd5b60200260200101518583815181106106c357634e487b7160e01b600052603260045260246000fd5b602002602001015161027d565b8282815181106106f057634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610704816120e7565b905061066f565b509392505050565b61071b610da6565b6001600160a01b0316836001600160a01b0316148061074157506107418361023f610da6565b61075d5760405162461bcd60e51b81526004016102a590611d0f565b610768838383610eb8565b505050565b610775610da6565b6001600160a01b0316610786610847565b6001600160a01b0316146107ac5760405162461bcd60e51b81526004016102a590611e7c565b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b6107fe610da6565b6001600160a01b031661080f610847565b6001600160a01b0316146108355760405162461bcd60e51b81526004016102a590611e7c565b61084184848484611076565b50505050565b6003546001600160a01b03165b90565b816001600160a01b0316610869610da6565b6001600160a01b031614156108905760405162461bcd60e51b81526004016102a590611eb1565b806001600061089d610da6565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556108e1610da6565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516109199190611b80565b60405180910390a35050565b61092d610da6565b6001600160a01b031661093e610847565b6001600160a01b0316146109645760405162461bcd60e51b81526004016102a590611e7c565b610768600483836113a6565b60606040518060600160405280602f815260200161221d602f9139905090565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6001600160a01b0384166109e45760405162461bcd60e51b81526004016102a590611d58565b6109ec610da6565b6001600160a01b0316856001600160a01b03161480610a125750610a128561023f610da6565b610a2e5760405162461bcd60e51b81526004016102a590611d0f565b6000610a38610da6565b9050610a58818787610a498861115d565b610a528861115d565b876105eb565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015610a995760405162461bcd60e51b81526004016102a590611e32565b610aa38482612069565b6000868152602081815260408083206001600160a01b038c81168552925280832093909355881681529081208054869290610adf90849061203d565b92505081905550856001600160a01b0316876001600160a01b0316836001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051610b35929190611fd5565b60405180910390a4610b4b8288888888886111b6565b50505050505050565b610b5c610da6565b6001600160a01b0316610b6d610847565b6001600160a01b031614610b935760405162461bcd60e51b81526004016102a590611e7c565b6001600160a01b038116610bb95760405162461bcd60e51b81526004016102a590611c85565b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b610c1d610da6565b6001600160a01b0316836001600160a01b03161480610c435750610c438361023f610da6565b610c5f5760405162461bcd60e51b81526004016102a590611d0f565b610768838383611287565b6001600160e01b031981166301ffc9a760e01b14919050565b606081610ca857506040805180820190915260018152600360fc1b6020820152610317565b8160005b8115610cd25780610cbc816120e7565b9150610ccb9050600a83612055565b9150610cac565b60008167ffffffffffffffff811115610cfb57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610d25576020820181803683370190505b5090505b8415610d9e57610d3a600183612069565b9150610d47600a86612102565b610d5290603061203d565b60f81b818381518110610d7557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350610d97600a86612055565b9450610d29565b949350505050565b3390565b610dbc846001600160a01b03166113a0565b156105eb5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190610df59089908990889088908890600401611aa5565b602060405180830381600087803b158015610e0f57600080fd5b505af1925050508015610e3f575060408051601f3d908101601f19168201909252610e3c918101906118c8565b60015b610e8857610e4b61215e565b80610e565750610e70565b8060405162461bcd60e51b81526004016102a59190611b8b565b60405162461bcd60e51b81526004016102a590611b9e565b6001600160e01b0319811663bc197c8160e01b14610b4b5760405162461bcd60e51b81526004016102a590611bf2565b6001600160a01b038316610ede5760405162461bcd60e51b81526004016102a590611def565b8051825114610eff5760405162461bcd60e51b81526004016102a590611f43565b6000610f09610da6565b9050610f29818560008686604051806020016040528060008152506105eb565b60005b8351811015611017576000848281518110610f5757634e487b7160e01b600052603260045260246000fd5b602002602001015190506000848381518110610f8357634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015610fd35760405162461bcd60e51b81526004016102a590611ccb565b610fdd8282612069565b6000938452602084815260408086206001600160a01b038c168752909152909320929092555081905061100f816120e7565b915050610f2c565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611068929190611b5b565b60405180910390a450505050565b6001600160a01b03841661109c5760405162461bcd60e51b81526004016102a590611f8b565b60006110a6610da6565b90506110b881600087610a498861115d565b6000848152602081815260408083206001600160a01b0389168452909152812080548592906110e890849061203d565b92505081905550846001600160a01b031660006001600160a01b0316826001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161113f929190611fd5565b60405180910390a4611156816000878787876111b6565b5050505050565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106111a557634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6111c8846001600160a01b03166113a0565b156105eb5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906112019089908990889088908890600401611b03565b602060405180830381600087803b15801561121b57600080fd5b505af192505050801561124b575060408051601f3d908101601f19168201909252611248918101906118c8565b60015b61125757610e4b61215e565b6001600160e01b0319811663f23a6e6160e01b14610b4b5760405162461bcd60e51b81526004016102a590611bf2565b6001600160a01b0383166112ad5760405162461bcd60e51b81526004016102a590611def565b60006112b7610da6565b90506112e7818560006112c98761115d565b6112d28761115d565b604051806020016040528060008152506105eb565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156113285760405162461bcd60e51b81526004016102a590611ccb565b6113328382612069565b6000858152602081815260408083206001600160a01b03808b16808652919093528184209490945551919291908516907fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62906113919089908990611fd5565b60405180910390a45050505050565b3b151590565b8280546113b2906120ac565b90600052602060002090601f0160209004810192826113d4576000855561141a565b82601f106113ed5782800160ff1982351617855561141a565b8280016001018555821561141a579182015b8281111561141a5782358255916020019190600101906113ff565b5061142692915061142a565b5090565b5b80821115611426576000815560010161142b565b80356001600160a01b038116811461031757600080fd5b600082601f830112611466578081fd5b8135602061147b6114768361200d565b611fe3565b8281528181019085830183850287018401881015611497578586fd5b855b858110156114b557813584529284019290840190600101611499565b5090979650505050505050565b600082601f8301126114d2578081fd5b813567ffffffffffffffff8111156114ec576114ec612142565b6114ff601f8201601f1916602001611fe3565b818152846020838601011115611513578283fd5b816020850160208301379081016020019190915292915050565b60006020828403121561153e578081fd5b6115478261143f565b9392505050565b60008060408385031215611560578081fd5b6115698361143f565b91506115776020840161143f565b90509250929050565b600080600080600060a08688031215611597578081fd5b6115a08661143f565b94506115ae6020870161143f565b9350604086013567ffffffffffffffff808211156115ca578283fd5b6115d689838a01611456565b945060608801359150808211156115eb578283fd5b6115f789838a01611456565b9350608088013591508082111561160c578283fd5b50611619888289016114c2565b9150509295509295909350565b600080600080600060a0868803121561163d578081fd5b6116468661143f565b94506116546020870161143f565b93506040860135925060608601359150608086013567ffffffffffffffff81111561167d578182fd5b611619888289016114c2565b60008060006060848603121561169d578283fd5b6116a68461143f565b9250602084013567ffffffffffffffff808211156116c2578384fd5b6116ce87838801611456565b935060408601359150808211156116e3578283fd5b506116f086828701611456565b9150509250925092565b6000806040838503121561170c578182fd5b6117158361143f565b915060208301358015158114611729578182fd5b809150509250929050565b60008060408385031215611746578182fd5b61174f8361143f565b946020939093013593505050565b600080600060608486031215611771578283fd5b61177a8461143f565b95602085013595506040909401359392505050565b600080600080608085870312156117a4578182fd5b6117ad8561143f565b93506020850135925060408501359150606085013567ffffffffffffffff8111156117d6578182fd5b6117e2878288016114c2565b91505092959194509250565b60008060408385031215611800578182fd5b823567ffffffffffffffff80821115611817578384fd5b818501915085601f83011261182a578384fd5b8135602061183a6114768361200d565b82815281810190858301838502870184018b1015611856578889fd5b8896505b8487101561187f5761186b8161143f565b83526001969096019591830191830161185a565b5096505086013592505080821115611895578283fd5b506118a285828601611456565b9150509250929050565b6000602082840312156118bd578081fd5b813561154781612203565b6000602082840312156118d9578081fd5b815161154781612203565b600080602083850312156118f6578182fd5b823567ffffffffffffffff8082111561190d578384fd5b818501915085601f830112611920578384fd5b81358181111561192e578485fd5b86602082850101111561193f578485fd5b60209290920196919550909350505050565b600060208284031215611962578081fd5b5035919050565b6000815180845260208085019450808401835b838110156119985781518752958201959082019060010161197c565b509495945050505050565b600081518084526119bb816020860160208601612080565b601f01601f19169290920160200192915050565b600081516119e1818560208601612080565b9290920192915050565b8254600090819060028104600180831680611a0757607f831692505b6020808410821415611a2757634e487b7160e01b87526022600452602487fd5b818015611a3b5760018114611a4c57611a78565b60ff19861689528489019650611a78565b611a558b612031565b885b86811015611a705781548b820152908501908301611a57565b505084890196505b505050505050611a8881856119cf565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0386811682528516602082015260a060408201819052600090611ad190830186611969565b8281036060840152611ae38186611969565b90508281036080840152611af781856119a3565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611b3d908301846119a3565b979650505050505050565b6000602082526115476020830184611969565b600060408252611b6e6040830185611969565b8281036020840152611a888185611969565b901515815260200190565b60006020825261154760208301846119a3565b60208082526034908201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356040820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606082015260800190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6020808252602b908201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526032908201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604082015268103337b91039b2b63360b91b606082015260800190565b60208082526029908201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604082015268040dad2e6dac2e8c6d60bb1b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b90815260200190565b918252602082015260400190565b60405181810167ffffffffffffffff8111828210171561200557612005612142565b604052919050565b600067ffffffffffffffff82111561202757612027612142565b5060209081020190565b60009081526020902090565b6000821982111561205057612050612116565b500190565b6000826120645761206461212c565b500490565b60008282101561207b5761207b612116565b500390565b60005b8381101561209b578181015183820152602001612083565b838111156108415750506000910152565b6002810460018216806120c057607f821691505b602082108114156120e157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120fb576120fb612116565b5060010190565b6000826121115761211161212c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b60e01c90565b600060443d101561216e57610854565b600481823e6308c379a06121828251612158565b1461218c57610854565b6040513d600319016004823e80513d67ffffffffffffffff81602484011181841117156121bc5750505050610854565b828401925082519150808211156121d65750505050610854565b503d830160208284010111156121ee57505050610854565b601f01601f1916810160200160405291505090565b6001600160e01b03198116811461221957600080fd5b5056fe68747470733a2f2f61776f6f2e66696e616e63652f736e637472792f6a736f6e2f636f6e7472616374747265617473a26469706673582212202c7344a37a346cbbae733932aafb6612100823692afba8f7f196cbbb0f0b574864736f6c6343000800003368747470733a2f2f61776f6f2e66696e616e63652f736e637472792f6a736f6e2f7472656174732f

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010a5760003560e01c8063731133e9116100a2578063e8a3d48511610071578063e8a3d48514610229578063e985e9c514610231578063f242432a14610244578063f2fde38b14610257578063f5298aca1461026a5761010a565b8063731133e9146101db5780638da5cb5b146101ee578063a22cb46514610203578063e0df5b6f146102165761010a565b80632eb2c2d6116100de5780632eb2c2d61461018b5780634e1273f4146101a05780636b20c454146101c0578063715018a6146101d35761010a565b8062fdd58e1461010f57806301ffc9a7146101385780630e89341c146101585780631ecac8d614610178575b600080fd5b61012261011d366004611734565b61027d565b60405161012f9190611fcc565b60405180910390f35b61014b6101463660046118ac565b6102d4565b60405161012f9190611b80565b61016b610166366004611951565b61031c565b60405161012f9190611b8b565b610122610186366004611951565b61037b565b61019e610199366004611580565b61038d565b005b6101b36101ae3660046117ee565b6105f3565b60405161012f9190611b48565b61019e6101ce366004611689565b610713565b61019e61076d565b61019e6101e936600461178f565b6107f6565b6101f6610847565b60405161012f9190611a91565b61019e6102113660046116fa565b610857565b61019e6102243660046118e4565b610925565b61016b610970565b61014b61023f36600461154e565b610990565b61019e610252366004611626565b6109be565b61019e61026536600461152d565b610b54565b61019e61027836600461175d565b610c15565b60006001600160a01b0383166102ae5760405162461bcd60e51b81526004016102a590611c3a565b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061030557506001600160e01b031982166303a24d0760e21b145b80610314575061031482610c6a565b90505b919050565b606060006004805461032d906120ac565b9050116103495760405180602001604052806000815250610314565b600461035483610c83565b6040516020016103659291906119eb565b6040516020818303038152906040529050919050565b60056020526000908152604090205481565b81518351146103ae5760405162461bcd60e51b81526004016102a590611f43565b6001600160a01b0384166103d45760405162461bcd60e51b81526004016102a590611d58565b6103dc610da6565b6001600160a01b0316856001600160a01b0316148061040257506104028561023f610da6565b61041e5760405162461bcd60e51b81526004016102a590611d9d565b6000610428610da6565b90506104388187878787876105eb565b60005b845181101561058557600085828151811061046657634e487b7160e01b600052603260045260246000fd5b60200260200101519050600085838151811061049257634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156104e25760405162461bcd60e51b81526004016102a590611e32565b6104ec8282612069565b60008085815260200190815260200160002060008c6001600160a01b03166001600160a01b03168152602001908152602001600020819055508160008085815260200190815260200160002060008b6001600160a01b03166001600160a01b03168152602001908152602001600020600082825461056a919061203d565b925050819055505050508061057e906120e7565b905061043b565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516105d5929190611b5b565b60405180910390a46105eb818787878787610daa565b505050505050565b606081518351146106165760405162461bcd60e51b81526004016102a590611efa565b6000835167ffffffffffffffff81111561064057634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610669578160200160208202803683370190505b50905060005b845181101561070b576106d085828151811061069b57634e487b7160e01b600052603260045260246000fd5b60200260200101518583815181106106c357634e487b7160e01b600052603260045260246000fd5b602002602001015161027d565b8282815181106106f057634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610704816120e7565b905061066f565b509392505050565b61071b610da6565b6001600160a01b0316836001600160a01b0316148061074157506107418361023f610da6565b61075d5760405162461bcd60e51b81526004016102a590611d0f565b610768838383610eb8565b505050565b610775610da6565b6001600160a01b0316610786610847565b6001600160a01b0316146107ac5760405162461bcd60e51b81526004016102a590611e7c565b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b6107fe610da6565b6001600160a01b031661080f610847565b6001600160a01b0316146108355760405162461bcd60e51b81526004016102a590611e7c565b61084184848484611076565b50505050565b6003546001600160a01b03165b90565b816001600160a01b0316610869610da6565b6001600160a01b031614156108905760405162461bcd60e51b81526004016102a590611eb1565b806001600061089d610da6565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556108e1610da6565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516109199190611b80565b60405180910390a35050565b61092d610da6565b6001600160a01b031661093e610847565b6001600160a01b0316146109645760405162461bcd60e51b81526004016102a590611e7c565b610768600483836113a6565b60606040518060600160405280602f815260200161221d602f9139905090565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6001600160a01b0384166109e45760405162461bcd60e51b81526004016102a590611d58565b6109ec610da6565b6001600160a01b0316856001600160a01b03161480610a125750610a128561023f610da6565b610a2e5760405162461bcd60e51b81526004016102a590611d0f565b6000610a38610da6565b9050610a58818787610a498861115d565b610a528861115d565b876105eb565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015610a995760405162461bcd60e51b81526004016102a590611e32565b610aa38482612069565b6000868152602081815260408083206001600160a01b038c81168552925280832093909355881681529081208054869290610adf90849061203d565b92505081905550856001600160a01b0316876001600160a01b0316836001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051610b35929190611fd5565b60405180910390a4610b4b8288888888886111b6565b50505050505050565b610b5c610da6565b6001600160a01b0316610b6d610847565b6001600160a01b031614610b935760405162461bcd60e51b81526004016102a590611e7c565b6001600160a01b038116610bb95760405162461bcd60e51b81526004016102a590611c85565b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b610c1d610da6565b6001600160a01b0316836001600160a01b03161480610c435750610c438361023f610da6565b610c5f5760405162461bcd60e51b81526004016102a590611d0f565b610768838383611287565b6001600160e01b031981166301ffc9a760e01b14919050565b606081610ca857506040805180820190915260018152600360fc1b6020820152610317565b8160005b8115610cd25780610cbc816120e7565b9150610ccb9050600a83612055565b9150610cac565b60008167ffffffffffffffff811115610cfb57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610d25576020820181803683370190505b5090505b8415610d9e57610d3a600183612069565b9150610d47600a86612102565b610d5290603061203d565b60f81b818381518110610d7557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350610d97600a86612055565b9450610d29565b949350505050565b3390565b610dbc846001600160a01b03166113a0565b156105eb5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190610df59089908990889088908890600401611aa5565b602060405180830381600087803b158015610e0f57600080fd5b505af1925050508015610e3f575060408051601f3d908101601f19168201909252610e3c918101906118c8565b60015b610e8857610e4b61215e565b80610e565750610e70565b8060405162461bcd60e51b81526004016102a59190611b8b565b60405162461bcd60e51b81526004016102a590611b9e565b6001600160e01b0319811663bc197c8160e01b14610b4b5760405162461bcd60e51b81526004016102a590611bf2565b6001600160a01b038316610ede5760405162461bcd60e51b81526004016102a590611def565b8051825114610eff5760405162461bcd60e51b81526004016102a590611f43565b6000610f09610da6565b9050610f29818560008686604051806020016040528060008152506105eb565b60005b8351811015611017576000848281518110610f5757634e487b7160e01b600052603260045260246000fd5b602002602001015190506000848381518110610f8357634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015610fd35760405162461bcd60e51b81526004016102a590611ccb565b610fdd8282612069565b6000938452602084815260408086206001600160a01b038c168752909152909320929092555081905061100f816120e7565b915050610f2c565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611068929190611b5b565b60405180910390a450505050565b6001600160a01b03841661109c5760405162461bcd60e51b81526004016102a590611f8b565b60006110a6610da6565b90506110b881600087610a498861115d565b6000848152602081815260408083206001600160a01b0389168452909152812080548592906110e890849061203d565b92505081905550846001600160a01b031660006001600160a01b0316826001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161113f929190611fd5565b60405180910390a4611156816000878787876111b6565b5050505050565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106111a557634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6111c8846001600160a01b03166113a0565b156105eb5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906112019089908990889088908890600401611b03565b602060405180830381600087803b15801561121b57600080fd5b505af192505050801561124b575060408051601f3d908101601f19168201909252611248918101906118c8565b60015b61125757610e4b61215e565b6001600160e01b0319811663f23a6e6160e01b14610b4b5760405162461bcd60e51b81526004016102a590611bf2565b6001600160a01b0383166112ad5760405162461bcd60e51b81526004016102a590611def565b60006112b7610da6565b90506112e7818560006112c98761115d565b6112d28761115d565b604051806020016040528060008152506105eb565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156113285760405162461bcd60e51b81526004016102a590611ccb565b6113328382612069565b6000858152602081815260408083206001600160a01b03808b16808652919093528184209490945551919291908516907fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62906113919089908990611fd5565b60405180910390a45050505050565b3b151590565b8280546113b2906120ac565b90600052602060002090601f0160209004810192826113d4576000855561141a565b82601f106113ed5782800160ff1982351617855561141a565b8280016001018555821561141a579182015b8281111561141a5782358255916020019190600101906113ff565b5061142692915061142a565b5090565b5b80821115611426576000815560010161142b565b80356001600160a01b038116811461031757600080fd5b600082601f830112611466578081fd5b8135602061147b6114768361200d565b611fe3565b8281528181019085830183850287018401881015611497578586fd5b855b858110156114b557813584529284019290840190600101611499565b5090979650505050505050565b600082601f8301126114d2578081fd5b813567ffffffffffffffff8111156114ec576114ec612142565b6114ff601f8201601f1916602001611fe3565b818152846020838601011115611513578283fd5b816020850160208301379081016020019190915292915050565b60006020828403121561153e578081fd5b6115478261143f565b9392505050565b60008060408385031215611560578081fd5b6115698361143f565b91506115776020840161143f565b90509250929050565b600080600080600060a08688031215611597578081fd5b6115a08661143f565b94506115ae6020870161143f565b9350604086013567ffffffffffffffff808211156115ca578283fd5b6115d689838a01611456565b945060608801359150808211156115eb578283fd5b6115f789838a01611456565b9350608088013591508082111561160c578283fd5b50611619888289016114c2565b9150509295509295909350565b600080600080600060a0868803121561163d578081fd5b6116468661143f565b94506116546020870161143f565b93506040860135925060608601359150608086013567ffffffffffffffff81111561167d578182fd5b611619888289016114c2565b60008060006060848603121561169d578283fd5b6116a68461143f565b9250602084013567ffffffffffffffff808211156116c2578384fd5b6116ce87838801611456565b935060408601359150808211156116e3578283fd5b506116f086828701611456565b9150509250925092565b6000806040838503121561170c578182fd5b6117158361143f565b915060208301358015158114611729578182fd5b809150509250929050565b60008060408385031215611746578182fd5b61174f8361143f565b946020939093013593505050565b600080600060608486031215611771578283fd5b61177a8461143f565b95602085013595506040909401359392505050565b600080600080608085870312156117a4578182fd5b6117ad8561143f565b93506020850135925060408501359150606085013567ffffffffffffffff8111156117d6578182fd5b6117e2878288016114c2565b91505092959194509250565b60008060408385031215611800578182fd5b823567ffffffffffffffff80821115611817578384fd5b818501915085601f83011261182a578384fd5b8135602061183a6114768361200d565b82815281810190858301838502870184018b1015611856578889fd5b8896505b8487101561187f5761186b8161143f565b83526001969096019591830191830161185a565b5096505086013592505080821115611895578283fd5b506118a285828601611456565b9150509250929050565b6000602082840312156118bd578081fd5b813561154781612203565b6000602082840312156118d9578081fd5b815161154781612203565b600080602083850312156118f6578182fd5b823567ffffffffffffffff8082111561190d578384fd5b818501915085601f830112611920578384fd5b81358181111561192e578485fd5b86602082850101111561193f578485fd5b60209290920196919550909350505050565b600060208284031215611962578081fd5b5035919050565b6000815180845260208085019450808401835b838110156119985781518752958201959082019060010161197c565b509495945050505050565b600081518084526119bb816020860160208601612080565b601f01601f19169290920160200192915050565b600081516119e1818560208601612080565b9290920192915050565b8254600090819060028104600180831680611a0757607f831692505b6020808410821415611a2757634e487b7160e01b87526022600452602487fd5b818015611a3b5760018114611a4c57611a78565b60ff19861689528489019650611a78565b611a558b612031565b885b86811015611a705781548b820152908501908301611a57565b505084890196505b505050505050611a8881856119cf565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0386811682528516602082015260a060408201819052600090611ad190830186611969565b8281036060840152611ae38186611969565b90508281036080840152611af781856119a3565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611b3d908301846119a3565b979650505050505050565b6000602082526115476020830184611969565b600060408252611b6e6040830185611969565b8281036020840152611a888185611969565b901515815260200190565b60006020825261154760208301846119a3565b60208082526034908201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356040820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606082015260800190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6020808252602b908201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526032908201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604082015268103337b91039b2b63360b91b606082015260800190565b60208082526029908201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604082015268040dad2e6dac2e8c6d60bb1b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b90815260200190565b918252602082015260400190565b60405181810167ffffffffffffffff8111828210171561200557612005612142565b604052919050565b600067ffffffffffffffff82111561202757612027612142565b5060209081020190565b60009081526020902090565b6000821982111561205057612050612116565b500190565b6000826120645761206461212c565b500490565b60008282101561207b5761207b612116565b500390565b60005b8381101561209b578181015183820152602001612083565b838111156108415750506000910152565b6002810460018216806120c057607f821691505b602082108114156120e157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120fb576120fb612116565b5060010190565b6000826121115761211161212c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b60e01c90565b600060443d101561216e57610854565b600481823e6308c379a06121828251612158565b1461218c57610854565b6040513d600319016004823e80513d67ffffffffffffffff81602484011181841117156121bc5750505050610854565b828401925082519150808211156121d65750505050610854565b503d830160208284010111156121ee57505050610854565b601f01601f1916810160200160405291505090565b6001600160e01b03198116811461221957600080fd5b5056fe68747470733a2f2f61776f6f2e66696e616e63652f736e637472792f6a736f6e2f636f6e7472616374747265617473a26469706673582212202c7344a37a346cbbae733932aafb6612100823692afba8f7f196cbbb0f0b574864736f6c63430008000033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.