ETH Price: $2,426.94 (+0.08%)

Jungleverse ()
 

Overview

TokenID

4

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
Jungleverse

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : Jungleverse.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

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

contract Jungleverse is ERC1155, Ownable {

    constructor() ERC1155("Jungleverse") { }

    string public baseUri;

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

    function setURI(
        string memory _baseUri
    ) external onlyOwner {
        baseUri = _baseUri;
    }

    function uri(uint256 _tokenId) public view virtual override returns (string memory) {
        return string(
          abi.encodePacked(
            baseUri,
            Strings.toString(_tokenId)
          )
        );
    }
}

File 2 of 11 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

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 {
        _setApprovalForAll(_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(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(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(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `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 memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        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");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

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

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

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - 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[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        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");
            unchecked {
                _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 `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

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

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

        _doSafeTransferAcceptanceCheck(operator, address(0), to, 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 (uint256 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 `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

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

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, 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 from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

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

        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: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.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.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 3 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 11 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 11 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

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 6 of 11 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

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.
     *
     * NOTE: 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.
     *
     * NOTE: 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 7 of 11 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

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 8 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 10 of 11 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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 11 of 11 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "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":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"to","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":"_baseUri","type":"string"}],"name":"setURI","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":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f4a756e676c65766572736500000000000000000000000000000000000000000081525062000059816200008060201b60201c565b506200007a6200006e6200009c60201b60201c565b620000a460201b60201c565b6200027f565b8060029080519060200190620000989291906200016a565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000178906200021a565b90600052602060002090601f0160209004810192826200019c5760008555620001e8565b82601f10620001b757805160ff1916838001178555620001e8565b82800160010185558215620001e8579182015b82811115620001e7578251825591602001919060010190620001ca565b5b509050620001f79190620001fb565b5090565b5b8082111562000216576000816000905550600101620001fc565b5090565b600060028204905060018216806200023357607f821691505b602082108114156200024a576200024962000250565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6133d8806200028f6000396000f3fe608060405234801561001057600080fd5b50600436106100e95760003560e01c8063731133e91161008c578063a22cb46511610066578063a22cb46514610248578063e985e9c514610264578063f242432a14610294578063f2fde38b146102b0576100e9565b8063731133e9146101f05780638da5cb5b1461020c5780639abc83201461022a576100e9565b80630e89341c116100c85780630e89341c1461016a5780632eb2c2d61461019a5780634e1273f4146101b6578063715018a6146101e6576100e9565b8062fdd58e146100ee57806301ffc9a71461011e57806302fe53051461014e575b600080fd5b61010860048036038101906101039190612124565b6102cc565b60405161011591906129d5565b60405180910390f35b61013860048036038101906101339190612247565b610395565b60405161014591906127f8565b60405180910390f35b61016860048036038101906101639190612299565b610477565b005b610184600480360381019061017f91906122da565b61050d565b6040516101919190612813565b60405180910390f35b6101b460048036038101906101af9190611f9a565b610541565b005b6101d060048036038101906101cb91906121db565b6105e2565b6040516101dd919061279f565b60405180910390f35b6101ee610793565b005b61020a60048036038101906102059190612160565b61081b565b005b6102146108a9565b60405161022191906126c2565b60405180910390f35b6102326108d3565b60405161023f9190612813565b60405180910390f35b610262600480360381019061025d91906120e8565b610961565b005b61027e60048036038101906102799190611f5e565b610977565b60405161028b91906127f8565b60405180910390f35b6102ae60048036038101906102a99190612059565b610a0b565b005b6102ca60048036038101906102c59190611f35565b610aac565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561033d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161033490612875565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061046057507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610470575061046f82610ba4565b5b9050919050565b61047f610c0e565b73ffffffffffffffffffffffffffffffffffffffff1661049d6108a9565b73ffffffffffffffffffffffffffffffffffffffff16146104f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ea90612935565b60405180910390fd5b8060049080519060200190610509929190611c2d565b5050565b6060600461051a83610c16565b60405160200161052b92919061269e565b6040516020818303038152906040529050919050565b610549610c0e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061058f575061058e85610589610c0e565b610977565b5b6105ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c5906128f5565b60405180910390fd5b6105db8585858585610dc3565b5050505050565b60608151835114610628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061f90612975565b60405180910390fd5b6000835167ffffffffffffffff81111561066b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156106995781602001602082028036833780820191505090505b50905060005b8451811015610788576107328582815181106106e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610725577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516102cc565b82828151811061076b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508061078190612d5d565b905061069f565b508091505092915050565b61079b610c0e565b73ffffffffffffffffffffffffffffffffffffffff166107b96108a9565b73ffffffffffffffffffffffffffffffffffffffff161461080f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080690612935565b60405180910390fd5b6108196000611123565b565b610823610c0e565b73ffffffffffffffffffffffffffffffffffffffff166108416108a9565b73ffffffffffffffffffffffffffffffffffffffff1614610897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088e90612935565b60405180910390fd5b6108a3848484846111e9565b50505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600480546108e090612cfa565b80601f016020809104026020016040519081016040528092919081815260200182805461090c90612cfa565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b505050505081565b61097361096c610c0e565b838361137f565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610a13610c0e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610a595750610a5885610a53610c0e565b610977565b5b610a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8f906128b5565b60405180910390fd5b610aa585858585856114ec565b5050505050565b610ab4610c0e565b73ffffffffffffffffffffffffffffffffffffffff16610ad26108a9565b73ffffffffffffffffffffffffffffffffffffffff1614610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f90612935565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90612895565b60405180910390fd5b610ba181611123565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60606000821415610c5e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050610dbe565b600082905060005b60008214610c90578080610c7990612d5d565b915050600a82610c899190612bdf565b9150610c66565b60008167ffffffffffffffff811115610cd2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610d045781602001600182028036833780820191505090505b5090505b60008514610db757600182610d1d9190612c10565b9150600a85610d2c9190612da6565b6030610d389190612b89565b60f81b818381518110610d74577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85610db09190612bdf565b9450610d08565b8093505050505b919050565b8151835114610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe90612995565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e906128d5565b60405180910390fd5b6000610e81610c0e565b9050610e9181878787878761176e565b60005b845181101561108e576000858281518110610ed8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110610f1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb590612915565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110739190612b89565b925050819055505050508061108790612d5d565b9050610e94565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516111059291906127c1565b60405180910390a461111b818787878787611776565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611259576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611250906129b5565b60405180910390fd5b6000611263610c0e565b9050611284816000876112758861195d565b61127e8861195d565b8761176e565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112e39190612b89565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516113619291906129f0565b60405180910390a461137881600087878787611a23565b5050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590612955565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114df91906127f8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561155c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611553906128d5565b60405180910390fd5b6000611566610c0e565b90506115868187876115778861195d565b6115808861195d565b8761176e565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161490612915565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116d29190612b89565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161174f9291906129f0565b60405180910390a4611765828888888888611a23565b50505050505050565b505050505050565b6117958473ffffffffffffffffffffffffffffffffffffffff16611c0a565b15611955578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016117db9594939291906126dd565b602060405180830381600087803b1580156117f557600080fd5b505af192505050801561182657506040513d601f19601f820116820180604052508101906118239190612270565b60015b6118cc57611832612e93565b806308c379a0141561188f57506118476132b0565b806118525750611891565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118869190612813565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c390612835565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194a90612855565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156119a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156119d05781602001602082028036833780820191505090505b5090508281600081518110611a0e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b611a428473ffffffffffffffffffffffffffffffffffffffff16611c0a565b15611c02578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611a88959493929190612745565b602060405180830381600087803b158015611aa257600080fd5b505af1925050508015611ad357506040513d601f19601f82011682018060405250810190611ad09190612270565b60015b611b7957611adf612e93565b806308c379a01415611b3c5750611af46132b0565b80611aff5750611b3e565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b339190612813565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7090612835565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf790612855565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611c3990612cfa565b90600052602060002090601f016020900481019282611c5b5760008555611ca2565b82601f10611c7457805160ff1916838001178555611ca2565b82800160010185558215611ca2579182015b82811115611ca1578251825591602001919060010190611c86565b5b509050611caf9190611cb3565b5090565b5b80821115611ccc576000816000905550600101611cb4565b5090565b6000611ce3611cde84612a3e565b612a19565b90508083825260208201905082856020860282011115611d0257600080fd5b60005b85811015611d325781611d188882611e24565b845260208401935060208301925050600181019050611d05565b5050509392505050565b6000611d4f611d4a84612a6a565b612a19565b90508083825260208201905082856020860282011115611d6e57600080fd5b60005b85811015611d9e5781611d848882611f20565b845260208401935060208301925050600181019050611d71565b5050509392505050565b6000611dbb611db684612a96565b612a19565b905082815260208101848484011115611dd357600080fd5b611dde848285612cb8565b509392505050565b6000611df9611df484612ac7565b612a19565b905082815260208101848484011115611e1157600080fd5b611e1c848285612cb8565b509392505050565b600081359050611e3381613346565b92915050565b600082601f830112611e4a57600080fd5b8135611e5a848260208601611cd0565b91505092915050565b600082601f830112611e7457600080fd5b8135611e84848260208601611d3c565b91505092915050565b600081359050611e9c8161335d565b92915050565b600081359050611eb181613374565b92915050565b600081519050611ec681613374565b92915050565b600082601f830112611edd57600080fd5b8135611eed848260208601611da8565b91505092915050565b600082601f830112611f0757600080fd5b8135611f17848260208601611de6565b91505092915050565b600081359050611f2f8161338b565b92915050565b600060208284031215611f4757600080fd5b6000611f5584828501611e24565b91505092915050565b60008060408385031215611f7157600080fd5b6000611f7f85828601611e24565b9250506020611f9085828601611e24565b9150509250929050565b600080600080600060a08688031215611fb257600080fd5b6000611fc088828901611e24565b9550506020611fd188828901611e24565b945050604086013567ffffffffffffffff811115611fee57600080fd5b611ffa88828901611e63565b935050606086013567ffffffffffffffff81111561201757600080fd5b61202388828901611e63565b925050608086013567ffffffffffffffff81111561204057600080fd5b61204c88828901611ecc565b9150509295509295909350565b600080600080600060a0868803121561207157600080fd5b600061207f88828901611e24565b955050602061209088828901611e24565b94505060406120a188828901611f20565b93505060606120b288828901611f20565b925050608086013567ffffffffffffffff8111156120cf57600080fd5b6120db88828901611ecc565b9150509295509295909350565b600080604083850312156120fb57600080fd5b600061210985828601611e24565b925050602061211a85828601611e8d565b9150509250929050565b6000806040838503121561213757600080fd5b600061214585828601611e24565b925050602061215685828601611f20565b9150509250929050565b6000806000806080858703121561217657600080fd5b600061218487828801611e24565b945050602061219587828801611f20565b93505060406121a687828801611f20565b925050606085013567ffffffffffffffff8111156121c357600080fd5b6121cf87828801611ecc565b91505092959194509250565b600080604083850312156121ee57600080fd5b600083013567ffffffffffffffff81111561220857600080fd5b61221485828601611e39565b925050602083013567ffffffffffffffff81111561223157600080fd5b61223d85828601611e63565b9150509250929050565b60006020828403121561225957600080fd5b600061226784828501611ea2565b91505092915050565b60006020828403121561228257600080fd5b600061229084828501611eb7565b91505092915050565b6000602082840312156122ab57600080fd5b600082013567ffffffffffffffff8111156122c557600080fd5b6122d184828501611ef6565b91505092915050565b6000602082840312156122ec57600080fd5b60006122fa84828501611f20565b91505092915050565b600061230f8383612680565b60208301905092915050565b61232481612c44565b82525050565b600061233582612b1d565b61233f8185612b4b565b935061234a83612af8565b8060005b8381101561237b5781516123628882612303565b975061236d83612b3e565b92505060018101905061234e565b5085935050505092915050565b61239181612c56565b82525050565b60006123a282612b28565b6123ac8185612b5c565b93506123bc818560208601612cc7565b6123c581612eb5565b840191505092915050565b60006123db82612b33565b6123e58185612b6d565b93506123f5818560208601612cc7565b6123fe81612eb5565b840191505092915050565b600061241482612b33565b61241e8185612b7e565b935061242e818560208601612cc7565b80840191505092915050565b6000815461244781612cfa565b6124518186612b7e565b9450600182166000811461246c576001811461247d576124b0565b60ff198316865281860193506124b0565b61248685612b08565b60005b838110156124a857815481890152600182019150602081019050612489565b838801955050505b50505092915050565b60006124c6603483612b6d565b91506124d182612ed3565b604082019050919050565b60006124e9602883612b6d565b91506124f482612f22565b604082019050919050565b600061250c602b83612b6d565b915061251782612f71565b604082019050919050565b600061252f602683612b6d565b915061253a82612fc0565b604082019050919050565b6000612552602983612b6d565b915061255d8261300f565b604082019050919050565b6000612575602583612b6d565b91506125808261305e565b604082019050919050565b6000612598603283612b6d565b91506125a3826130ad565b604082019050919050565b60006125bb602a83612b6d565b91506125c6826130fc565b604082019050919050565b60006125de602083612b6d565b91506125e98261314b565b602082019050919050565b6000612601602983612b6d565b915061260c82613174565b604082019050919050565b6000612624602983612b6d565b915061262f826131c3565b604082019050919050565b6000612647602883612b6d565b915061265282613212565b604082019050919050565b600061266a602183612b6d565b915061267582613261565b604082019050919050565b61268981612cae565b82525050565b61269881612cae565b82525050565b60006126aa828561243a565b91506126b68284612409565b91508190509392505050565b60006020820190506126d7600083018461231b565b92915050565b600060a0820190506126f2600083018861231b565b6126ff602083018761231b565b8181036040830152612711818661232a565b90508181036060830152612725818561232a565b905081810360808301526127398184612397565b90509695505050505050565b600060a08201905061275a600083018861231b565b612767602083018761231b565b612774604083018661268f565b612781606083018561268f565b81810360808301526127938184612397565b90509695505050505050565b600060208201905081810360008301526127b9818461232a565b905092915050565b600060408201905081810360008301526127db818561232a565b905081810360208301526127ef818461232a565b90509392505050565b600060208201905061280d6000830184612388565b92915050565b6000602082019050818103600083015261282d81846123d0565b905092915050565b6000602082019050818103600083015261284e816124b9565b9050919050565b6000602082019050818103600083015261286e816124dc565b9050919050565b6000602082019050818103600083015261288e816124ff565b9050919050565b600060208201905081810360008301526128ae81612522565b9050919050565b600060208201905081810360008301526128ce81612545565b9050919050565b600060208201905081810360008301526128ee81612568565b9050919050565b6000602082019050818103600083015261290e8161258b565b9050919050565b6000602082019050818103600083015261292e816125ae565b9050919050565b6000602082019050818103600083015261294e816125d1565b9050919050565b6000602082019050818103600083015261296e816125f4565b9050919050565b6000602082019050818103600083015261298e81612617565b9050919050565b600060208201905081810360008301526129ae8161263a565b9050919050565b600060208201905081810360008301526129ce8161265d565b9050919050565b60006020820190506129ea600083018461268f565b92915050565b6000604082019050612a05600083018561268f565b612a12602083018461268f565b9392505050565b6000612a23612a34565b9050612a2f8282612d2c565b919050565b6000604051905090565b600067ffffffffffffffff821115612a5957612a58612e64565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612a8557612a84612e64565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612ab157612ab0612e64565b5b612aba82612eb5565b9050602081019050919050565b600067ffffffffffffffff821115612ae257612ae1612e64565b5b612aeb82612eb5565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b9482612cae565b9150612b9f83612cae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bd457612bd3612dd7565b5b828201905092915050565b6000612bea82612cae565b9150612bf583612cae565b925082612c0557612c04612e06565b5b828204905092915050565b6000612c1b82612cae565b9150612c2683612cae565b925082821015612c3957612c38612dd7565b5b828203905092915050565b6000612c4f82612c8e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ce5578082015181840152602081019050612cca565b83811115612cf4576000848401525b50505050565b60006002820490506001821680612d1257607f821691505b60208210811415612d2657612d25612e35565b5b50919050565b612d3582612eb5565b810181811067ffffffffffffffff82111715612d5457612d53612e64565b5b80604052505050565b6000612d6882612cae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d9b57612d9a612dd7565b5b600182019050919050565b6000612db182612cae565b9150612dbc83612cae565b925082612dcc57612dcb612e06565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115612eb25760046000803e612eaf600051612ec6565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d10156132c057613343565b6132c8612a34565b60043d036004823e80513d602482011167ffffffffffffffff821117156132f0575050613343565b808201805167ffffffffffffffff81111561330e5750505050613343565b80602083010160043d03850181111561332b575050505050613343565b61333a82602001850186612d2c565b82955050505050505b90565b61334f81612c44565b811461335a57600080fd5b50565b61336681612c56565b811461337157600080fd5b50565b61337d81612c62565b811461338857600080fd5b50565b61339481612cae565b811461339f57600080fd5b5056fea26469706673582212203e281f0e000cf5eeeca5e4dcc3b1e7985f248e66c436f5fd5dd9278e2be2925864736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100e95760003560e01c8063731133e91161008c578063a22cb46511610066578063a22cb46514610248578063e985e9c514610264578063f242432a14610294578063f2fde38b146102b0576100e9565b8063731133e9146101f05780638da5cb5b1461020c5780639abc83201461022a576100e9565b80630e89341c116100c85780630e89341c1461016a5780632eb2c2d61461019a5780634e1273f4146101b6578063715018a6146101e6576100e9565b8062fdd58e146100ee57806301ffc9a71461011e57806302fe53051461014e575b600080fd5b61010860048036038101906101039190612124565b6102cc565b60405161011591906129d5565b60405180910390f35b61013860048036038101906101339190612247565b610395565b60405161014591906127f8565b60405180910390f35b61016860048036038101906101639190612299565b610477565b005b610184600480360381019061017f91906122da565b61050d565b6040516101919190612813565b60405180910390f35b6101b460048036038101906101af9190611f9a565b610541565b005b6101d060048036038101906101cb91906121db565b6105e2565b6040516101dd919061279f565b60405180910390f35b6101ee610793565b005b61020a60048036038101906102059190612160565b61081b565b005b6102146108a9565b60405161022191906126c2565b60405180910390f35b6102326108d3565b60405161023f9190612813565b60405180910390f35b610262600480360381019061025d91906120e8565b610961565b005b61027e60048036038101906102799190611f5e565b610977565b60405161028b91906127f8565b60405180910390f35b6102ae60048036038101906102a99190612059565b610a0b565b005b6102ca60048036038101906102c59190611f35565b610aac565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561033d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161033490612875565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061046057507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610470575061046f82610ba4565b5b9050919050565b61047f610c0e565b73ffffffffffffffffffffffffffffffffffffffff1661049d6108a9565b73ffffffffffffffffffffffffffffffffffffffff16146104f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ea90612935565b60405180910390fd5b8060049080519060200190610509929190611c2d565b5050565b6060600461051a83610c16565b60405160200161052b92919061269e565b6040516020818303038152906040529050919050565b610549610c0e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061058f575061058e85610589610c0e565b610977565b5b6105ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c5906128f5565b60405180910390fd5b6105db8585858585610dc3565b5050505050565b60608151835114610628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061f90612975565b60405180910390fd5b6000835167ffffffffffffffff81111561066b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156106995781602001602082028036833780820191505090505b50905060005b8451811015610788576107328582815181106106e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610725577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516102cc565b82828151811061076b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508061078190612d5d565b905061069f565b508091505092915050565b61079b610c0e565b73ffffffffffffffffffffffffffffffffffffffff166107b96108a9565b73ffffffffffffffffffffffffffffffffffffffff161461080f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080690612935565b60405180910390fd5b6108196000611123565b565b610823610c0e565b73ffffffffffffffffffffffffffffffffffffffff166108416108a9565b73ffffffffffffffffffffffffffffffffffffffff1614610897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088e90612935565b60405180910390fd5b6108a3848484846111e9565b50505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600480546108e090612cfa565b80601f016020809104026020016040519081016040528092919081815260200182805461090c90612cfa565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b505050505081565b61097361096c610c0e565b838361137f565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610a13610c0e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610a595750610a5885610a53610c0e565b610977565b5b610a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8f906128b5565b60405180910390fd5b610aa585858585856114ec565b5050505050565b610ab4610c0e565b73ffffffffffffffffffffffffffffffffffffffff16610ad26108a9565b73ffffffffffffffffffffffffffffffffffffffff1614610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f90612935565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90612895565b60405180910390fd5b610ba181611123565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60606000821415610c5e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050610dbe565b600082905060005b60008214610c90578080610c7990612d5d565b915050600a82610c899190612bdf565b9150610c66565b60008167ffffffffffffffff811115610cd2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610d045781602001600182028036833780820191505090505b5090505b60008514610db757600182610d1d9190612c10565b9150600a85610d2c9190612da6565b6030610d389190612b89565b60f81b818381518110610d74577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85610db09190612bdf565b9450610d08565b8093505050505b919050565b8151835114610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe90612995565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e906128d5565b60405180910390fd5b6000610e81610c0e565b9050610e9181878787878761176e565b60005b845181101561108e576000858281518110610ed8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110610f1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb590612915565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110739190612b89565b925050819055505050508061108790612d5d565b9050610e94565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516111059291906127c1565b60405180910390a461111b818787878787611776565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611259576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611250906129b5565b60405180910390fd5b6000611263610c0e565b9050611284816000876112758861195d565b61127e8861195d565b8761176e565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112e39190612b89565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516113619291906129f0565b60405180910390a461137881600087878787611a23565b5050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590612955565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114df91906127f8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561155c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611553906128d5565b60405180910390fd5b6000611566610c0e565b90506115868187876115778861195d565b6115808861195d565b8761176e565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161490612915565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116d29190612b89565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161174f9291906129f0565b60405180910390a4611765828888888888611a23565b50505050505050565b505050505050565b6117958473ffffffffffffffffffffffffffffffffffffffff16611c0a565b15611955578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016117db9594939291906126dd565b602060405180830381600087803b1580156117f557600080fd5b505af192505050801561182657506040513d601f19601f820116820180604052508101906118239190612270565b60015b6118cc57611832612e93565b806308c379a0141561188f57506118476132b0565b806118525750611891565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118869190612813565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c390612835565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194a90612855565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156119a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156119d05781602001602082028036833780820191505090505b5090508281600081518110611a0e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b611a428473ffffffffffffffffffffffffffffffffffffffff16611c0a565b15611c02578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611a88959493929190612745565b602060405180830381600087803b158015611aa257600080fd5b505af1925050508015611ad357506040513d601f19601f82011682018060405250810190611ad09190612270565b60015b611b7957611adf612e93565b806308c379a01415611b3c5750611af46132b0565b80611aff5750611b3e565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b339190612813565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7090612835565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf790612855565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611c3990612cfa565b90600052602060002090601f016020900481019282611c5b5760008555611ca2565b82601f10611c7457805160ff1916838001178555611ca2565b82800160010185558215611ca2579182015b82811115611ca1578251825591602001919060010190611c86565b5b509050611caf9190611cb3565b5090565b5b80821115611ccc576000816000905550600101611cb4565b5090565b6000611ce3611cde84612a3e565b612a19565b90508083825260208201905082856020860282011115611d0257600080fd5b60005b85811015611d325781611d188882611e24565b845260208401935060208301925050600181019050611d05565b5050509392505050565b6000611d4f611d4a84612a6a565b612a19565b90508083825260208201905082856020860282011115611d6e57600080fd5b60005b85811015611d9e5781611d848882611f20565b845260208401935060208301925050600181019050611d71565b5050509392505050565b6000611dbb611db684612a96565b612a19565b905082815260208101848484011115611dd357600080fd5b611dde848285612cb8565b509392505050565b6000611df9611df484612ac7565b612a19565b905082815260208101848484011115611e1157600080fd5b611e1c848285612cb8565b509392505050565b600081359050611e3381613346565b92915050565b600082601f830112611e4a57600080fd5b8135611e5a848260208601611cd0565b91505092915050565b600082601f830112611e7457600080fd5b8135611e84848260208601611d3c565b91505092915050565b600081359050611e9c8161335d565b92915050565b600081359050611eb181613374565b92915050565b600081519050611ec681613374565b92915050565b600082601f830112611edd57600080fd5b8135611eed848260208601611da8565b91505092915050565b600082601f830112611f0757600080fd5b8135611f17848260208601611de6565b91505092915050565b600081359050611f2f8161338b565b92915050565b600060208284031215611f4757600080fd5b6000611f5584828501611e24565b91505092915050565b60008060408385031215611f7157600080fd5b6000611f7f85828601611e24565b9250506020611f9085828601611e24565b9150509250929050565b600080600080600060a08688031215611fb257600080fd5b6000611fc088828901611e24565b9550506020611fd188828901611e24565b945050604086013567ffffffffffffffff811115611fee57600080fd5b611ffa88828901611e63565b935050606086013567ffffffffffffffff81111561201757600080fd5b61202388828901611e63565b925050608086013567ffffffffffffffff81111561204057600080fd5b61204c88828901611ecc565b9150509295509295909350565b600080600080600060a0868803121561207157600080fd5b600061207f88828901611e24565b955050602061209088828901611e24565b94505060406120a188828901611f20565b93505060606120b288828901611f20565b925050608086013567ffffffffffffffff8111156120cf57600080fd5b6120db88828901611ecc565b9150509295509295909350565b600080604083850312156120fb57600080fd5b600061210985828601611e24565b925050602061211a85828601611e8d565b9150509250929050565b6000806040838503121561213757600080fd5b600061214585828601611e24565b925050602061215685828601611f20565b9150509250929050565b6000806000806080858703121561217657600080fd5b600061218487828801611e24565b945050602061219587828801611f20565b93505060406121a687828801611f20565b925050606085013567ffffffffffffffff8111156121c357600080fd5b6121cf87828801611ecc565b91505092959194509250565b600080604083850312156121ee57600080fd5b600083013567ffffffffffffffff81111561220857600080fd5b61221485828601611e39565b925050602083013567ffffffffffffffff81111561223157600080fd5b61223d85828601611e63565b9150509250929050565b60006020828403121561225957600080fd5b600061226784828501611ea2565b91505092915050565b60006020828403121561228257600080fd5b600061229084828501611eb7565b91505092915050565b6000602082840312156122ab57600080fd5b600082013567ffffffffffffffff8111156122c557600080fd5b6122d184828501611ef6565b91505092915050565b6000602082840312156122ec57600080fd5b60006122fa84828501611f20565b91505092915050565b600061230f8383612680565b60208301905092915050565b61232481612c44565b82525050565b600061233582612b1d565b61233f8185612b4b565b935061234a83612af8565b8060005b8381101561237b5781516123628882612303565b975061236d83612b3e565b92505060018101905061234e565b5085935050505092915050565b61239181612c56565b82525050565b60006123a282612b28565b6123ac8185612b5c565b93506123bc818560208601612cc7565b6123c581612eb5565b840191505092915050565b60006123db82612b33565b6123e58185612b6d565b93506123f5818560208601612cc7565b6123fe81612eb5565b840191505092915050565b600061241482612b33565b61241e8185612b7e565b935061242e818560208601612cc7565b80840191505092915050565b6000815461244781612cfa565b6124518186612b7e565b9450600182166000811461246c576001811461247d576124b0565b60ff198316865281860193506124b0565b61248685612b08565b60005b838110156124a857815481890152600182019150602081019050612489565b838801955050505b50505092915050565b60006124c6603483612b6d565b91506124d182612ed3565b604082019050919050565b60006124e9602883612b6d565b91506124f482612f22565b604082019050919050565b600061250c602b83612b6d565b915061251782612f71565b604082019050919050565b600061252f602683612b6d565b915061253a82612fc0565b604082019050919050565b6000612552602983612b6d565b915061255d8261300f565b604082019050919050565b6000612575602583612b6d565b91506125808261305e565b604082019050919050565b6000612598603283612b6d565b91506125a3826130ad565b604082019050919050565b60006125bb602a83612b6d565b91506125c6826130fc565b604082019050919050565b60006125de602083612b6d565b91506125e98261314b565b602082019050919050565b6000612601602983612b6d565b915061260c82613174565b604082019050919050565b6000612624602983612b6d565b915061262f826131c3565b604082019050919050565b6000612647602883612b6d565b915061265282613212565b604082019050919050565b600061266a602183612b6d565b915061267582613261565b604082019050919050565b61268981612cae565b82525050565b61269881612cae565b82525050565b60006126aa828561243a565b91506126b68284612409565b91508190509392505050565b60006020820190506126d7600083018461231b565b92915050565b600060a0820190506126f2600083018861231b565b6126ff602083018761231b565b8181036040830152612711818661232a565b90508181036060830152612725818561232a565b905081810360808301526127398184612397565b90509695505050505050565b600060a08201905061275a600083018861231b565b612767602083018761231b565b612774604083018661268f565b612781606083018561268f565b81810360808301526127938184612397565b90509695505050505050565b600060208201905081810360008301526127b9818461232a565b905092915050565b600060408201905081810360008301526127db818561232a565b905081810360208301526127ef818461232a565b90509392505050565b600060208201905061280d6000830184612388565b92915050565b6000602082019050818103600083015261282d81846123d0565b905092915050565b6000602082019050818103600083015261284e816124b9565b9050919050565b6000602082019050818103600083015261286e816124dc565b9050919050565b6000602082019050818103600083015261288e816124ff565b9050919050565b600060208201905081810360008301526128ae81612522565b9050919050565b600060208201905081810360008301526128ce81612545565b9050919050565b600060208201905081810360008301526128ee81612568565b9050919050565b6000602082019050818103600083015261290e8161258b565b9050919050565b6000602082019050818103600083015261292e816125ae565b9050919050565b6000602082019050818103600083015261294e816125d1565b9050919050565b6000602082019050818103600083015261296e816125f4565b9050919050565b6000602082019050818103600083015261298e81612617565b9050919050565b600060208201905081810360008301526129ae8161263a565b9050919050565b600060208201905081810360008301526129ce8161265d565b9050919050565b60006020820190506129ea600083018461268f565b92915050565b6000604082019050612a05600083018561268f565b612a12602083018461268f565b9392505050565b6000612a23612a34565b9050612a2f8282612d2c565b919050565b6000604051905090565b600067ffffffffffffffff821115612a5957612a58612e64565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612a8557612a84612e64565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612ab157612ab0612e64565b5b612aba82612eb5565b9050602081019050919050565b600067ffffffffffffffff821115612ae257612ae1612e64565b5b612aeb82612eb5565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b9482612cae565b9150612b9f83612cae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bd457612bd3612dd7565b5b828201905092915050565b6000612bea82612cae565b9150612bf583612cae565b925082612c0557612c04612e06565b5b828204905092915050565b6000612c1b82612cae565b9150612c2683612cae565b925082821015612c3957612c38612dd7565b5b828203905092915050565b6000612c4f82612c8e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ce5578082015181840152602081019050612cca565b83811115612cf4576000848401525b50505050565b60006002820490506001821680612d1257607f821691505b60208210811415612d2657612d25612e35565b5b50919050565b612d3582612eb5565b810181811067ffffffffffffffff82111715612d5457612d53612e64565b5b80604052505050565b6000612d6882612cae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d9b57612d9a612dd7565b5b600182019050919050565b6000612db182612cae565b9150612dbc83612cae565b925082612dcc57612dcb612e06565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115612eb25760046000803e612eaf600051612ec6565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d10156132c057613343565b6132c8612a34565b60043d036004823e80513d602482011167ffffffffffffffff821117156132f0575050613343565b808201805167ffffffffffffffff81111561330e5750505050613343565b80602083010160043d03850181111561332b575050505050613343565b61333a82602001850186612d2c565b82955050505050505b90565b61334f81612c44565b811461335a57600080fd5b50565b61336681612c56565b811461337157600080fd5b50565b61337d81612c62565b811461338857600080fd5b50565b61339481612cae565b811461339f57600080fd5b5056fea26469706673582212203e281f0e000cf5eeeca5e4dcc3b1e7985f248e66c436f5fd5dd9278e2be2925864736f6c63430008040033

Loading...
Loading
Loading...
Loading
[ 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.