ETH Price: $3,396.27 (+6.39%)
Gas: 27 Gwei

Token

Gym A Club Pass (GACP)
 

Overview

Max Total Supply

6,146 GACP

Holders

6,028

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xe8957a222204284ab133799e900b392878915a9f
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:
GymAClubPass

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : GymAClubPass.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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


contract GymAClubPass is ERC1155, AccessControl, Pausable, ERC1155Burnable, ERC1155Supply, Ownable{
    
    using Strings for uint256;

    bytes32 public constant OPERATOR_ROLE = keccak256("OPERATOR_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE");

    uint256 public constant MAX_SUPPLY_LIMIT = type(uint256).max;
    mapping(uint256 => uint256) private _supplyLimit;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_, string memory uri_) ERC1155(uri_) {

        _name = name_;
        _symbol = symbol_;

        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _grantRole(OPERATOR_ROLE, msg.sender);
        _grantRole(PAUSER_ROLE, msg.sender);
        _grantRole(MINTER_ROLE, msg.sender);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function uri(uint256 id) public view virtual override returns (string memory) {
        string memory baseURI = super.uri(id);
        return bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, id.toString()))
            : '';
    }

    function setURI(string memory newuri) public onlyRole(OPERATOR_ROLE) {
        _setURI(newuri);
    }

    function setSupplyLimit(uint256 id, uint256 limit) external onlyRole(OPERATOR_ROLE){
        require(limit > 0, "Cannot set limit to 0");
        require(_supplyLimit[id] == 0, "Cannot update supply limit");
        require(limit >= totalSupply(id) , "Limit is less than current supply");
        _supplyLimit[id] = limit;
    }

    function supplyLimitOf(uint256 id) external view returns( uint256 ){
        uint256 limit = _supplyLimit[id];
        if (limit == 0 && exists(id)){
            return MAX_SUPPLY_LIMIT;
        }else{
            return limit;
        }
    }

    function safeDeliver(
        address[] memory tos,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public onlyRole(MINTER_ROLE) 
    {
        _safeDeliver(tos, ids, amounts, data);
    }

    function _safeDeliver(
        address[] memory tos,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        uint256 length = tos.length;
        require(length == ids.length && length == amounts.length,  "tos, ids and amounts length mismatch");
        
        for (uint256 i = 0; i < length; ++i) {
            _mint(tos[i], ids[i], amounts[i], data);       
        }
    }

    function redeem(
        address account,
        uint256 id,
        uint256 value
    ) public virtual onlyRole(BURNER_ROLE){
        _burn(account, id, value);
    }

    function pause() public onlyRole(PAUSER_ROLE) {
        _pause();
    }

    function unpause() public onlyRole(PAUSER_ROLE) {
        _unpause();
    }

    function mint(address account, uint256 id, uint256 amount, bytes memory data)
        public
        onlyRole(MINTER_ROLE)
    {
        _mint(account, id, amount, data);
    }

    function mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data)
        public
        onlyRole(MINTER_ROLE)
    {
        _mintBatch(to, ids, amounts, data);
    }

    function _beforeTokenTransfer(address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data)
        internal
        whenNotPaused
        override(ERC1155, ERC1155Supply)
    {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                if(_supplyLimit[id] != 0 && totalSupply(id) > _supplyLimit[id]){
                    revert("Excess supply limit");
                }
            }
        }
        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                if(_supplyLimit[id] != 0){
                    _supplyLimit[id] -= amounts[i];
                }
            }
        }
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC1155, AccessControl)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

File 2 of 16 : 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 16 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

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

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

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

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

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

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

        _revokeRole(role, account);
    }

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

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

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 4 of 16 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

import "../ERC1155.sol";

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

        _burn(account, id, value);
    }

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

        _burnBatch(account, ids, values);
    }
}

File 6 of 16 : ERC1155Supply.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] -= amounts[i];
            }
        }
    }
}

File 7 of 16 : 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 8 of 16 : 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 9 of 16 : 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 10 of 16 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 16 : 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 14 of 16 : 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 15 of 16 : 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);
}

File 16 of 16 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"uri_","type":"string"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"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":"tos","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeDeliver","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":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setSupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"supplyLimitOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040516200643f3803806200643f8339818101604052810190620000379190620004d4565b8062000049816200016b60201b60201c565b506000600460006101000a81548160ff02191690831515021790555062000085620000796200018760201b60201c565b6200018f60201b60201c565b82600890805190602001906200009d929190620003b2565b508160099080519060200190620000b6929190620003b2565b50620000cc6000801b336200025560201b60201c565b620000fe7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b929336200025560201b60201c565b620001307f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336200025560201b60201c565b620001627f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336200025560201b60201c565b505050620006e5565b806002908051906020019062000183929190620003b2565b5050565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200026782826200034760201b60201c565b620003435760016003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002e86200018760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054620003c0906200060a565b90600052602060002090601f016020900481019282620003e4576000855562000430565b82601f10620003ff57805160ff191683800117855562000430565b8280016001018555821562000430579182015b828111156200042f57825182559160200191906001019062000412565b5b5090506200043f919062000443565b5090565b5b808211156200045e57600081600090555060010162000444565b5090565b60006200047962000473846200059e565b62000575565b9050828152602081018484840111156200049257600080fd5b6200049f848285620005d4565b509392505050565b600082601f830112620004b957600080fd5b8151620004cb84826020860162000462565b91505092915050565b600080600060608486031215620004ea57600080fd5b600084015167ffffffffffffffff8111156200050557600080fd5b6200051386828701620004a7565b935050602084015167ffffffffffffffff8111156200053157600080fd5b6200053f86828701620004a7565b925050604084015167ffffffffffffffff8111156200055d57600080fd5b6200056b86828701620004a7565b9150509250925092565b60006200058162000594565b90506200058f828262000640565b919050565b6000604051905090565b600067ffffffffffffffff821115620005bc57620005bb620006a5565b5b620005c782620006d4565b9050602081019050919050565b60005b83811015620005f4578082015181840152602081019050620005d7565b8381111562000604576000848401525b50505050565b600060028204905060018216806200062357607f821691505b602082108114156200063a576200063962000676565b5b50919050565b6200064b82620006d4565b810181811067ffffffffffffffff821117156200066d576200066c620006a5565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615d4a80620006f56000396000f3fe608060405234801561001057600080fd5b50600436106102315760003560e01c8063731133e911610130578063d34b685d116100b8578063e985e9c51161007c578063e985e9c514610662578063f242432a14610692578063f2fde38b146106ae578063f5298aca146106ca578063f5b541a6146106e657610231565b8063d34b685d146105be578063d5391393146105ee578063d547741f1461060c578063e63ab1e914610628578063e8ab9ccc1461064657610231565b806391d14854116100ff57806391d148541461050657806395d89b4114610536578063a217fddf14610554578063a22cb46514610572578063bd85b0391461058e57610231565b8063731133e9146104a65780638413e8b3146104c25780638456cb59146104de5780638da5cb5b146104e857610231565b80632eb2c2d6116101be5780634f558e79116101825780634f558e79146104145780635c975abb14610444578063617d1126146104625780636b20c45414610480578063715018a61461049c57610231565b80632eb2c2d6146103865780632f2ff15d146103a257806336568abe146103be5780633f4ba83a146103da5780634e1273f4146103e457610231565b80630e89341c116102055780630e89341c146102d05780631f7fdffa14610300578063248a9ca31461031c578063282c51f31461034c5780632b83cccd1461036a57610231565b8062fdd58e1461023657806301ffc9a71461026657806302fe53051461029657806306fdde03146102b2575b600080fd5b610250600480360381019061024b9190614274565b610704565b60405161025d9190614fe4565b60405180910390f35b610280600480360381019061027b919061450e565b6107cd565b60405161028d9190614c8c565b60405180910390f35b6102b060048036038101906102ab9190614560565b6107df565b005b6102ba61081e565b6040516102c79190614cc2565b60405180910390f35b6102ea60048036038101906102e591906145a1565b6108b0565b6040516102f79190614cc2565b60405180910390f35b61031a6004803603810190610315919061418d565b610910565b005b610336600480360381019061033191906144a9565b610955565b6040516103439190614ca7565b60405180910390f35b610354610975565b6040516103619190614ca7565b60405180910390f35b610384600480360381019061037f91906142b0565b610999565b005b6103a0600480360381019061039b9190613fc0565b6109dc565b005b6103bc60048036038101906103b791906144d2565b610a7d565b005b6103d860048036038101906103d391906144d2565b610aa6565b005b6103e2610b29565b005b6103fe60048036038101906103f9919061437a565b610b66565b60405161040b9190614c33565b60405180910390f35b61042e600480360381019061042991906145a1565b610d17565b60405161043b9190614c8c565b60405180910390f35b61044c610d2b565b6040516104599190614c8c565b60405180910390f35b61046a610d42565b6040516104779190614fe4565b60405180910390f35b61049a6004803603810190610495919061410e565b610d66565b005b6104a4610e03565b005b6104c060048036038101906104bb91906142ff565b610e8b565b005b6104dc60048036038101906104d791906145ca565b610ed0565b005b6104e6611003565b005b6104f0611040565b6040516104fd9190614b56565b60405180910390f35b610520600480360381019061051b91906144d2565b61106a565b60405161052d9190614c8c565b60405180910390f35b61053e6110d5565b60405161054b9190614cc2565b60405180910390f35b61055c611167565b6040516105699190614ca7565b60405180910390f35b61058c60048036038101906105879190614238565b61116e565b005b6105a860048036038101906105a391906145a1565b611184565b6040516105b59190614fe4565b60405180910390f35b6105d860048036038101906105d391906145a1565b6111a1565b6040516105e59190614fe4565b60405180910390f35b6105f6611207565b6040516106039190614ca7565b60405180910390f35b610626600480360381019061062191906144d2565b61122b565b005b610630611254565b60405161063d9190614ca7565b60405180910390f35b610660600480360381019061065b91906143e6565b611278565b005b61067c60048036038101906106779190613f84565b6112bd565b6040516106899190614c8c565b60405180910390f35b6106ac60048036038101906106a7919061407f565b611351565b005b6106c860048036038101906106c39190613f5b565b6113f2565b005b6106e460048036038101906106df91906142b0565b6114ea565b005b6106ee611587565b6040516106fb9190614ca7565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076c90614da4565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006107d8826115ab565b9050919050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b9296108118161080c611625565b61162d565b61081a826116ca565b5050565b60606008805461082d90615382565b80601f016020809104026020016040519081016040528092919081815260200182805461085990615382565b80156108a65780601f1061087b576101008083540402835291602001916108a6565b820191906000526020600020905b81548152906001019060200180831161088957829003601f168201915b5050505050905090565b606060006108bd836116e4565b905060008151116108dd5760405180602001604052806000815250610908565b806108e784611778565b6040516020016108f8929190614af8565b6040516020818303038152906040525b915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66109428161093d611625565b61162d565b61094e85858585611925565b5050505050565b600060036000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8486109cb816109c6611625565b61162d565b6109d6848484611b8f565b50505050565b6109e4611625565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610a2a5750610a2985610a24611625565b6112bd565b5b610a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6090614e64565b60405180910390fd5b610a768585858585611dac565b5050505050565b610a8682610955565b610a9781610a92611625565b61162d565b610aa1838361210c565b505050565b610aae611625565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1290614fc4565b60405180910390fd5b610b2582826121ed565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610b5b81610b56611625565b61162d565b610b636122cf565b50565b60608151835114610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba390614f64565b60405180910390fd5b6000835167ffffffffffffffff811115610bef577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610c1d5781602001602082028036833780820191505090505b50905060005b8451811015610d0c57610cb6858281518110610c68577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610ca9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610704565b828281518110610cef577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610d05906153e5565b9050610c23565b508091505092915050565b600080610d2383611184565b119050919050565b6000600460009054906101000a900460ff16905090565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81565b610d6e611625565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610db45750610db383610dae611625565b6112bd565b5b610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90614e04565b60405180910390fd5b610dfe838383612371565b505050565b610e0b611625565b73ffffffffffffffffffffffffffffffffffffffff16610e29611040565b73ffffffffffffffffffffffffffffffffffffffff1614610e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7690614ec4565b60405180910390fd5b610e89600061266e565b565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610ebd81610eb8611625565b61162d565b610ec985858585612734565b5050505050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b929610f0281610efd611625565b61162d565b60008211610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90614f04565b60405180910390fd5b6000600760008581526020019081526020016000205414610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9290614d84565b60405180910390fd5b610fa483611184565b821015610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd90614ee4565b60405180910390fd5b816007600085815260200190815260200160002081905550505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61103581611030611625565b61162d565b61103d6128ca565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600980546110e490615382565b80601f016020809104026020016040519081016040528092919081815260200182805461111090615382565b801561115d5780601f106111325761010080835404028352916020019161115d565b820191906000526020600020905b81548152906001019060200180831161114057829003601f168201915b5050505050905090565b6000801b81565b611180611179611625565b838361296d565b5050565b600060056000838152602001908152602001600020549050919050565b600080600760008481526020019081526020016000205490506000811480156111cf57506111ce83610d17565b5b156111fd577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff915050611202565b809150505b919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61123482610955565b61124581611240611625565b61162d565b61124f83836121ed565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66112aa816112a5611625565b61162d565b6112b685858585612ada565b5050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611359611625565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061139f575061139e85611399611625565b6112bd565b5b6113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590614e04565b60405180910390fd5b6113eb8585858585612c1f565b5050505050565b6113fa611625565b73ffffffffffffffffffffffffffffffffffffffff16611418611040565b73ffffffffffffffffffffffffffffffffffffffff161461146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590614ec4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d590614dc4565b60405180910390fd5b6114e78161266e565b50565b6114f2611625565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611538575061153783611532611625565b6112bd565b5b611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90614e04565b60405180910390fd5b611582838383611b8f565b505050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92981565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061161e575061161d82612ea1565b5b9050919050565b600033905090565b611637828261106a565b6116c65761165c8173ffffffffffffffffffffffffffffffffffffffff166014612f83565b61166a8360001c6020612f83565b60405160200161167b929190614b1c565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bd9190614cc2565b60405180910390fd5b5050565b80600290805190602001906116e0929190613c3e565b5050565b6060600280546116f390615382565b80601f016020809104026020016040519081016040528092919081815260200182805461171f90615382565b801561176c5780601f106117415761010080835404028352916020019161176c565b820191906000526020600020905b81548152906001019060200180831161174f57829003601f168201915b50505050509050919050565b606060008214156117c0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611920565b600082905060005b600082146117f25780806117db906153e5565b915050600a826117eb91906151d9565b91506117c8565b60008167ffffffffffffffff811115611834577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118665781602001600182028036833780820191505090505b5090505b600085146119195760018261187f9190615264565b9150600a8561188e919061542e565b603061189a9190615183565b60f81b8183815181106118d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561191291906151d9565b945061186a565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c90614fa4565b60405180910390fd5b81518351146119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d090614f84565b60405180910390fd5b60006119e3611625565b90506119f48160008787878761327d565b60005b8451811015611af957838181518110611a39577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600080878481518110611a7d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611adf9190615183565b925050819055508080611af1906153e5565b9150506119f7565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b71929190614c55565b60405180910390a4611b8881600087878787613513565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf690614e84565b60405180910390fd5b6000611c09611625565b9050611c3981856000611c1b876136fa565b611c24876136fa565b6040518060200160405280600081525061327d565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc790614de4565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611d9d929190614fff565b60405180910390a45050505050565b8151835114611df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de790614f84565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5790614e44565b60405180910390fd5b6000611e6a611625565b9050611e7a81878787878761327d565b60005b8451811015612077576000858281518110611ec1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611f06577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9e90614ea4565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461205c9190615183565b9250508190555050505080612070906153e5565b9050611e7d565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516120ee929190614c55565b60405180910390a4612104818787878787613513565b505050505050565b612116828261106a565b6121e95760016003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061218e611625565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6121f7828261106a565b156122cb5760006003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612270611625565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6122d7610d2b565b612316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230d90614d44565b60405180910390fd5b6000600460006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61235a611625565b6040516123679190614b56565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d890614e84565b60405180910390fd5b8051825114612425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241c90614f84565b60405180910390fd5b600061242f611625565b905061244f8185600086866040518060200160405280600081525061327d565b60005b83518110156125e8576000848281518110612496577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106124db577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561257c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257390614de4565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806125e0906153e5565b915050612452565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612660929190614c55565b60405180910390a450505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279b90614fa4565b60405180910390fd5b60006127ae611625565b90506127cf816000876127c0886136fa565b6127c9886136fa565b8761327d565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461282e9190615183565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516128ac929190614fff565b60405180910390a46128c3816000878787876137c0565b5050505050565b6128d2610d2b565b15612912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290990614e24565b60405180910390fd5b6001600460006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612956611625565b6040516129639190614b56565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d390614f44565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612acd9190614c8c565b60405180910390a3505050565b600084519050835181148015612af05750825181145b612b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2690614f24565b60405180910390fd5b60005b81811015612c1757612c06868281518110612b76577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151868381518110612bb7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151868481518110612bf8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015186612734565b80612c10906153e5565b9050612b32565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8690614e44565b60405180910390fd5b6000612c99611625565b9050612cb9818787612caa886136fa565b612cb3886136fa565b8761327d565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4790614ea4565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e059190615183565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612e82929190614fff565b60405180910390a4612e988288888888886137c0565b50505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612f6c57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612f7c5750612f7b826139a7565b5b9050919050565b606060006002836002612f96919061520a565b612fa09190615183565b67ffffffffffffffff811115612fdf577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130115781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061306f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106130f9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002613139919061520a565b6131439190615183565b90505b600181111561322f577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106131ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106131e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061322890615358565b9050613146565b5060008414613273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326a90614d04565b60405180910390fd5b8091505092915050565b613285610d2b565b156132c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132bc90614e24565b60405180910390fd5b6132d3868686868686613a11565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156133eb5760005b83518110156133e957600084828151811061334f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006007600083815260200190815260200160002054141580156133975750600760008281526020019081526020016000205461339582611184565b115b156133d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ce90614d64565b60405180910390fd5b50806133e2906153e5565b905061330b565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561350b5760005b8351811015613509576000848281518110613467577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006007600083815260200190815260200160002054146134f7578382815181106134c5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516007600083815260200190815260200160002060008282546134ef9190615264565b925050819055505b5080613502906153e5565b9050613423565b505b505050505050565b6135328473ffffffffffffffffffffffffffffffffffffffff16613c23565b156136f2578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401613578959493929190614b71565b602060405180830381600087803b15801561359257600080fd5b505af19250505080156135c357506040513d601f19601f820116820180604052508101906135c09190614537565b60015b613669576135cf61551b565b806308c379a0141561362c57506135e4615c0b565b806135ef575061362e565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136239190614cc2565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161366090614ce4565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146136f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e790614d24565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561373f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561376d5781602001602082028036833780820191505090505b50905082816000815181106137ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6137df8473ffffffffffffffffffffffffffffffffffffffff16613c23565b1561399f578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401613825959493929190614bd9565b602060405180830381600087803b15801561383f57600080fd5b505af192505050801561387057506040513d601f19601f8201168201806040525081019061386d9190614537565b60015b6139165761387c61551b565b806308c379a014156138d95750613891615c0b565b8061389c57506138db565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138d09190614cc2565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390d90614ce4565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461399d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399490614d24565b60405180910390fd5b505b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613a1f868686868686613c36565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613b1d5760005b8351811015613b1b57828181518110613a99577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160056000868481518110613ade577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000206000828254613b039190615183565b9250508190555080613b14906153e5565b9050613a57565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613c1b5760005b8351811015613c1957828181518110613b97577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160056000868481518110613bdc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000206000828254613c019190615264565b9250508190555080613c12906153e5565b9050613b55565b505b505050505050565b600080823b905060008111915050919050565b505050505050565b828054613c4a90615382565b90600052602060002090601f016020900481019282613c6c5760008555613cb3565b82601f10613c8557805160ff1916838001178555613cb3565b82800160010185558215613cb3579182015b82811115613cb2578251825591602001919060010190613c97565b5b509050613cc09190613cc4565b5090565b5b80821115613cdd576000816000905550600101613cc5565b5090565b6000613cf4613cef8461504d565b615028565b90508083825260208201905082856020860282011115613d1357600080fd5b60005b85811015613d435781613d298882613e35565b845260208401935060208301925050600181019050613d16565b5050509392505050565b6000613d60613d5b84615079565b615028565b90508083825260208201905082856020860282011115613d7f57600080fd5b60005b85811015613daf5781613d958882613f46565b845260208401935060208301925050600181019050613d82565b5050509392505050565b6000613dcc613dc7846150a5565b615028565b905082815260208101848484011115613de457600080fd5b613def848285615316565b509392505050565b6000613e0a613e05846150d6565b615028565b905082815260208101848484011115613e2257600080fd5b613e2d848285615316565b509392505050565b600081359050613e4481615ca1565b92915050565b600082601f830112613e5b57600080fd5b8135613e6b848260208601613ce1565b91505092915050565b600082601f830112613e8557600080fd5b8135613e95848260208601613d4d565b91505092915050565b600081359050613ead81615cb8565b92915050565b600081359050613ec281615ccf565b92915050565b600081359050613ed781615ce6565b92915050565b600081519050613eec81615ce6565b92915050565b600082601f830112613f0357600080fd5b8135613f13848260208601613db9565b91505092915050565b600082601f830112613f2d57600080fd5b8135613f3d848260208601613df7565b91505092915050565b600081359050613f5581615cfd565b92915050565b600060208284031215613f6d57600080fd5b6000613f7b84828501613e35565b91505092915050565b60008060408385031215613f9757600080fd5b6000613fa585828601613e35565b9250506020613fb685828601613e35565b9150509250929050565b600080600080600060a08688031215613fd857600080fd5b6000613fe688828901613e35565b9550506020613ff788828901613e35565b945050604086013567ffffffffffffffff81111561401457600080fd5b61402088828901613e74565b935050606086013567ffffffffffffffff81111561403d57600080fd5b61404988828901613e74565b925050608086013567ffffffffffffffff81111561406657600080fd5b61407288828901613ef2565b9150509295509295909350565b600080600080600060a0868803121561409757600080fd5b60006140a588828901613e35565b95505060206140b688828901613e35565b94505060406140c788828901613f46565b93505060606140d888828901613f46565b925050608086013567ffffffffffffffff8111156140f557600080fd5b61410188828901613ef2565b9150509295509295909350565b60008060006060848603121561412357600080fd5b600061413186828701613e35565b935050602084013567ffffffffffffffff81111561414e57600080fd5b61415a86828701613e74565b925050604084013567ffffffffffffffff81111561417757600080fd5b61418386828701613e74565b9150509250925092565b600080600080608085870312156141a357600080fd5b60006141b187828801613e35565b945050602085013567ffffffffffffffff8111156141ce57600080fd5b6141da87828801613e74565b935050604085013567ffffffffffffffff8111156141f757600080fd5b61420387828801613e74565b925050606085013567ffffffffffffffff81111561422057600080fd5b61422c87828801613ef2565b91505092959194509250565b6000806040838503121561424b57600080fd5b600061425985828601613e35565b925050602061426a85828601613e9e565b9150509250929050565b6000806040838503121561428757600080fd5b600061429585828601613e35565b92505060206142a685828601613f46565b9150509250929050565b6000806000606084860312156142c557600080fd5b60006142d386828701613e35565b93505060206142e486828701613f46565b92505060406142f586828701613f46565b9150509250925092565b6000806000806080858703121561431557600080fd5b600061432387828801613e35565b945050602061433487828801613f46565b935050604061434587828801613f46565b925050606085013567ffffffffffffffff81111561436257600080fd5b61436e87828801613ef2565b91505092959194509250565b6000806040838503121561438d57600080fd5b600083013567ffffffffffffffff8111156143a757600080fd5b6143b385828601613e4a565b925050602083013567ffffffffffffffff8111156143d057600080fd5b6143dc85828601613e74565b9150509250929050565b600080600080608085870312156143fc57600080fd5b600085013567ffffffffffffffff81111561441657600080fd5b61442287828801613e4a565b945050602085013567ffffffffffffffff81111561443f57600080fd5b61444b87828801613e74565b935050604085013567ffffffffffffffff81111561446857600080fd5b61447487828801613e74565b925050606085013567ffffffffffffffff81111561449157600080fd5b61449d87828801613ef2565b91505092959194509250565b6000602082840312156144bb57600080fd5b60006144c984828501613eb3565b91505092915050565b600080604083850312156144e557600080fd5b60006144f385828601613eb3565b925050602061450485828601613e35565b9150509250929050565b60006020828403121561452057600080fd5b600061452e84828501613ec8565b91505092915050565b60006020828403121561454957600080fd5b600061455784828501613edd565b91505092915050565b60006020828403121561457257600080fd5b600082013567ffffffffffffffff81111561458c57600080fd5b61459884828501613f1c565b91505092915050565b6000602082840312156145b357600080fd5b60006145c184828501613f46565b91505092915050565b600080604083850312156145dd57600080fd5b60006145eb85828601613f46565b92505060206145fc85828601613f46565b9150509250929050565b60006146128383614ada565b60208301905092915050565b61462781615298565b82525050565b600061463882615117565b6146428185615145565b935061464d83615107565b8060005b8381101561467e5781516146658882614606565b975061467083615138565b925050600181019050614651565b5085935050505092915050565b614694816152aa565b82525050565b6146a3816152b6565b82525050565b60006146b482615122565b6146be8185615156565b93506146ce818560208601615325565b6146d78161553d565b840191505092915050565b60006146ed8261512d565b6146f78185615167565b9350614707818560208601615325565b6147108161553d565b840191505092915050565b60006147268261512d565b6147308185615178565b9350614740818560208601615325565b80840191505092915050565b6000614759603483615167565b91506147648261555b565b604082019050919050565b600061477c602083615167565b9150614787826155aa565b602082019050919050565b600061479f602883615167565b91506147aa826155d3565b604082019050919050565b60006147c2601483615167565b91506147cd82615622565b602082019050919050565b60006147e5601383615167565b91506147f08261564b565b602082019050919050565b6000614808601a83615167565b915061481382615674565b602082019050919050565b600061482b602b83615167565b91506148368261569d565b604082019050919050565b600061484e602683615167565b9150614859826156ec565b604082019050919050565b6000614871602483615167565b915061487c8261573b565b604082019050919050565b6000614894602983615167565b915061489f8261578a565b604082019050919050565b60006148b7601083615167565b91506148c2826157d9565b602082019050919050565b60006148da602583615167565b91506148e582615802565b604082019050919050565b60006148fd603283615167565b915061490882615851565b604082019050919050565b6000614920602383615167565b915061492b826158a0565b604082019050919050565b6000614943602a83615167565b915061494e826158ef565b604082019050919050565b6000614966602083615167565b91506149718261593e565b602082019050919050565b6000614989602183615167565b915061499482615967565b604082019050919050565b60006149ac601783615178565b91506149b7826159b6565b601782019050919050565b60006149cf601583615167565b91506149da826159df565b602082019050919050565b60006149f2602483615167565b91506149fd82615a08565b604082019050919050565b6000614a15602983615167565b9150614a2082615a57565b604082019050919050565b6000614a38602983615167565b9150614a4382615aa6565b604082019050919050565b6000614a5b602883615167565b9150614a6682615af5565b604082019050919050565b6000614a7e602183615167565b9150614a8982615b44565b604082019050919050565b6000614aa1601183615178565b9150614aac82615b93565b601182019050919050565b6000614ac4602f83615167565b9150614acf82615bbc565b604082019050919050565b614ae38161530c565b82525050565b614af28161530c565b82525050565b6000614b04828561471b565b9150614b10828461471b565b91508190509392505050565b6000614b278261499f565b9150614b33828561471b565b9150614b3e82614a94565b9150614b4a828461471b565b91508190509392505050565b6000602082019050614b6b600083018461461e565b92915050565b600060a082019050614b86600083018861461e565b614b93602083018761461e565b8181036040830152614ba5818661462d565b90508181036060830152614bb9818561462d565b90508181036080830152614bcd81846146a9565b90509695505050505050565b600060a082019050614bee600083018861461e565b614bfb602083018761461e565b614c086040830186614ae9565b614c156060830185614ae9565b8181036080830152614c2781846146a9565b90509695505050505050565b60006020820190508181036000830152614c4d818461462d565b905092915050565b60006040820190508181036000830152614c6f818561462d565b90508181036020830152614c83818461462d565b90509392505050565b6000602082019050614ca1600083018461468b565b92915050565b6000602082019050614cbc600083018461469a565b92915050565b60006020820190508181036000830152614cdc81846146e2565b905092915050565b60006020820190508181036000830152614cfd8161474c565b9050919050565b60006020820190508181036000830152614d1d8161476f565b9050919050565b60006020820190508181036000830152614d3d81614792565b9050919050565b60006020820190508181036000830152614d5d816147b5565b9050919050565b60006020820190508181036000830152614d7d816147d8565b9050919050565b60006020820190508181036000830152614d9d816147fb565b9050919050565b60006020820190508181036000830152614dbd8161481e565b9050919050565b60006020820190508181036000830152614ddd81614841565b9050919050565b60006020820190508181036000830152614dfd81614864565b9050919050565b60006020820190508181036000830152614e1d81614887565b9050919050565b60006020820190508181036000830152614e3d816148aa565b9050919050565b60006020820190508181036000830152614e5d816148cd565b9050919050565b60006020820190508181036000830152614e7d816148f0565b9050919050565b60006020820190508181036000830152614e9d81614913565b9050919050565b60006020820190508181036000830152614ebd81614936565b9050919050565b60006020820190508181036000830152614edd81614959565b9050919050565b60006020820190508181036000830152614efd8161497c565b9050919050565b60006020820190508181036000830152614f1d816149c2565b9050919050565b60006020820190508181036000830152614f3d816149e5565b9050919050565b60006020820190508181036000830152614f5d81614a08565b9050919050565b60006020820190508181036000830152614f7d81614a2b565b9050919050565b60006020820190508181036000830152614f9d81614a4e565b9050919050565b60006020820190508181036000830152614fbd81614a71565b9050919050565b60006020820190508181036000830152614fdd81614ab7565b9050919050565b6000602082019050614ff96000830184614ae9565b92915050565b60006040820190506150146000830185614ae9565b6150216020830184614ae9565b9392505050565b6000615032615043565b905061503e82826153b4565b919050565b6000604051905090565b600067ffffffffffffffff821115615068576150676154ec565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615094576150936154ec565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156150c0576150bf6154ec565b5b6150c98261553d565b9050602081019050919050565b600067ffffffffffffffff8211156150f1576150f06154ec565b5b6150fa8261553d565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061518e8261530c565b91506151998361530c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151ce576151cd61545f565b5b828201905092915050565b60006151e48261530c565b91506151ef8361530c565b9250826151ff576151fe61548e565b5b828204905092915050565b60006152158261530c565b91506152208361530c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156152595761525861545f565b5b828202905092915050565b600061526f8261530c565b915061527a8361530c565b92508282101561528d5761528c61545f565b5b828203905092915050565b60006152a3826152ec565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615343578082015181840152602081019050615328565b83811115615352576000848401525b50505050565b60006153638261530c565b915060008214156153775761537661545f565b5b600182039050919050565b6000600282049050600182168061539a57607f821691505b602082108114156153ae576153ad6154bd565b5b50919050565b6153bd8261553d565b810181811067ffffffffffffffff821117156153dc576153db6154ec565b5b80604052505050565b60006153f08261530c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154235761542261545f565b5b600182019050919050565b60006154398261530c565b91506154448361530c565b9250826154545761545361548e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d111561553a5760046000803e61553760005161554e565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45786365737320737570706c79206c696d697400000000000000000000000000600082015250565b7f43616e6e6f742075706461746520737570706c79206c696d6974000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4c696d6974206973206c657373207468616e2063757272656e7420737570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f43616e6e6f7420736574206c696d697420746f20300000000000000000000000600082015250565b7f746f732c2069647320616e6420616d6f756e7473206c656e677468206d69736d60008201527f6174636800000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600060443d1015615c1b57615c9e565b615c23615043565b60043d036004823e80513d602482011167ffffffffffffffff82111715615c4b575050615c9e565b808201805167ffffffffffffffff811115615c695750505050615c9e565b80602083010160043d038501811115615c86575050505050615c9e565b615c95826020018501866153b4565b82955050505050505b90565b615caa81615298565b8114615cb557600080fd5b50565b615cc1816152aa565b8114615ccc57600080fd5b50565b615cd8816152b6565b8114615ce357600080fd5b50565b615cef816152c0565b8114615cfa57600080fd5b50565b615d068161530c565b8114615d1157600080fd5b5056fea2646970667358221220a16ac61cdb1eb709f19daffe814a503f157c3c8d05ee4eabdbff9022d3589dce64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f47796d204120436c75622050617373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044741435000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003068747470733a2f2f6170692e646f7365746f6b656e2e636f6d2f6d657461646174612f73616e64626f782f706173732f00000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102315760003560e01c8063731133e911610130578063d34b685d116100b8578063e985e9c51161007c578063e985e9c514610662578063f242432a14610692578063f2fde38b146106ae578063f5298aca146106ca578063f5b541a6146106e657610231565b8063d34b685d146105be578063d5391393146105ee578063d547741f1461060c578063e63ab1e914610628578063e8ab9ccc1461064657610231565b806391d14854116100ff57806391d148541461050657806395d89b4114610536578063a217fddf14610554578063a22cb46514610572578063bd85b0391461058e57610231565b8063731133e9146104a65780638413e8b3146104c25780638456cb59146104de5780638da5cb5b146104e857610231565b80632eb2c2d6116101be5780634f558e79116101825780634f558e79146104145780635c975abb14610444578063617d1126146104625780636b20c45414610480578063715018a61461049c57610231565b80632eb2c2d6146103865780632f2ff15d146103a257806336568abe146103be5780633f4ba83a146103da5780634e1273f4146103e457610231565b80630e89341c116102055780630e89341c146102d05780631f7fdffa14610300578063248a9ca31461031c578063282c51f31461034c5780632b83cccd1461036a57610231565b8062fdd58e1461023657806301ffc9a71461026657806302fe53051461029657806306fdde03146102b2575b600080fd5b610250600480360381019061024b9190614274565b610704565b60405161025d9190614fe4565b60405180910390f35b610280600480360381019061027b919061450e565b6107cd565b60405161028d9190614c8c565b60405180910390f35b6102b060048036038101906102ab9190614560565b6107df565b005b6102ba61081e565b6040516102c79190614cc2565b60405180910390f35b6102ea60048036038101906102e591906145a1565b6108b0565b6040516102f79190614cc2565b60405180910390f35b61031a6004803603810190610315919061418d565b610910565b005b610336600480360381019061033191906144a9565b610955565b6040516103439190614ca7565b60405180910390f35b610354610975565b6040516103619190614ca7565b60405180910390f35b610384600480360381019061037f91906142b0565b610999565b005b6103a0600480360381019061039b9190613fc0565b6109dc565b005b6103bc60048036038101906103b791906144d2565b610a7d565b005b6103d860048036038101906103d391906144d2565b610aa6565b005b6103e2610b29565b005b6103fe60048036038101906103f9919061437a565b610b66565b60405161040b9190614c33565b60405180910390f35b61042e600480360381019061042991906145a1565b610d17565b60405161043b9190614c8c565b60405180910390f35b61044c610d2b565b6040516104599190614c8c565b60405180910390f35b61046a610d42565b6040516104779190614fe4565b60405180910390f35b61049a6004803603810190610495919061410e565b610d66565b005b6104a4610e03565b005b6104c060048036038101906104bb91906142ff565b610e8b565b005b6104dc60048036038101906104d791906145ca565b610ed0565b005b6104e6611003565b005b6104f0611040565b6040516104fd9190614b56565b60405180910390f35b610520600480360381019061051b91906144d2565b61106a565b60405161052d9190614c8c565b60405180910390f35b61053e6110d5565b60405161054b9190614cc2565b60405180910390f35b61055c611167565b6040516105699190614ca7565b60405180910390f35b61058c60048036038101906105879190614238565b61116e565b005b6105a860048036038101906105a391906145a1565b611184565b6040516105b59190614fe4565b60405180910390f35b6105d860048036038101906105d391906145a1565b6111a1565b6040516105e59190614fe4565b60405180910390f35b6105f6611207565b6040516106039190614ca7565b60405180910390f35b610626600480360381019061062191906144d2565b61122b565b005b610630611254565b60405161063d9190614ca7565b60405180910390f35b610660600480360381019061065b91906143e6565b611278565b005b61067c60048036038101906106779190613f84565b6112bd565b6040516106899190614c8c565b60405180910390f35b6106ac60048036038101906106a7919061407f565b611351565b005b6106c860048036038101906106c39190613f5b565b6113f2565b005b6106e460048036038101906106df91906142b0565b6114ea565b005b6106ee611587565b6040516106fb9190614ca7565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076c90614da4565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006107d8826115ab565b9050919050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b9296108118161080c611625565b61162d565b61081a826116ca565b5050565b60606008805461082d90615382565b80601f016020809104026020016040519081016040528092919081815260200182805461085990615382565b80156108a65780601f1061087b576101008083540402835291602001916108a6565b820191906000526020600020905b81548152906001019060200180831161088957829003601f168201915b5050505050905090565b606060006108bd836116e4565b905060008151116108dd5760405180602001604052806000815250610908565b806108e784611778565b6040516020016108f8929190614af8565b6040516020818303038152906040525b915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66109428161093d611625565b61162d565b61094e85858585611925565b5050505050565b600060036000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8486109cb816109c6611625565b61162d565b6109d6848484611b8f565b50505050565b6109e4611625565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610a2a5750610a2985610a24611625565b6112bd565b5b610a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6090614e64565b60405180910390fd5b610a768585858585611dac565b5050505050565b610a8682610955565b610a9781610a92611625565b61162d565b610aa1838361210c565b505050565b610aae611625565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1290614fc4565b60405180910390fd5b610b2582826121ed565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610b5b81610b56611625565b61162d565b610b636122cf565b50565b60608151835114610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba390614f64565b60405180910390fd5b6000835167ffffffffffffffff811115610bef577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610c1d5781602001602082028036833780820191505090505b50905060005b8451811015610d0c57610cb6858281518110610c68577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610ca9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610704565b828281518110610cef577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610d05906153e5565b9050610c23565b508091505092915050565b600080610d2383611184565b119050919050565b6000600460009054906101000a900460ff16905090565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81565b610d6e611625565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610db45750610db383610dae611625565b6112bd565b5b610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90614e04565b60405180910390fd5b610dfe838383612371565b505050565b610e0b611625565b73ffffffffffffffffffffffffffffffffffffffff16610e29611040565b73ffffffffffffffffffffffffffffffffffffffff1614610e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7690614ec4565b60405180910390fd5b610e89600061266e565b565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610ebd81610eb8611625565b61162d565b610ec985858585612734565b5050505050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b929610f0281610efd611625565b61162d565b60008211610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90614f04565b60405180910390fd5b6000600760008581526020019081526020016000205414610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9290614d84565b60405180910390fd5b610fa483611184565b821015610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd90614ee4565b60405180910390fd5b816007600085815260200190815260200160002081905550505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61103581611030611625565b61162d565b61103d6128ca565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600980546110e490615382565b80601f016020809104026020016040519081016040528092919081815260200182805461111090615382565b801561115d5780601f106111325761010080835404028352916020019161115d565b820191906000526020600020905b81548152906001019060200180831161114057829003601f168201915b5050505050905090565b6000801b81565b611180611179611625565b838361296d565b5050565b600060056000838152602001908152602001600020549050919050565b600080600760008481526020019081526020016000205490506000811480156111cf57506111ce83610d17565b5b156111fd577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff915050611202565b809150505b919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61123482610955565b61124581611240611625565b61162d565b61124f83836121ed565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66112aa816112a5611625565b61162d565b6112b685858585612ada565b5050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611359611625565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061139f575061139e85611399611625565b6112bd565b5b6113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590614e04565b60405180910390fd5b6113eb8585858585612c1f565b5050505050565b6113fa611625565b73ffffffffffffffffffffffffffffffffffffffff16611418611040565b73ffffffffffffffffffffffffffffffffffffffff161461146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590614ec4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d590614dc4565b60405180910390fd5b6114e78161266e565b50565b6114f2611625565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611538575061153783611532611625565b6112bd565b5b611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90614e04565b60405180910390fd5b611582838383611b8f565b505050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92981565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061161e575061161d82612ea1565b5b9050919050565b600033905090565b611637828261106a565b6116c65761165c8173ffffffffffffffffffffffffffffffffffffffff166014612f83565b61166a8360001c6020612f83565b60405160200161167b929190614b1c565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bd9190614cc2565b60405180910390fd5b5050565b80600290805190602001906116e0929190613c3e565b5050565b6060600280546116f390615382565b80601f016020809104026020016040519081016040528092919081815260200182805461171f90615382565b801561176c5780601f106117415761010080835404028352916020019161176c565b820191906000526020600020905b81548152906001019060200180831161174f57829003601f168201915b50505050509050919050565b606060008214156117c0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611920565b600082905060005b600082146117f25780806117db906153e5565b915050600a826117eb91906151d9565b91506117c8565b60008167ffffffffffffffff811115611834577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118665781602001600182028036833780820191505090505b5090505b600085146119195760018261187f9190615264565b9150600a8561188e919061542e565b603061189a9190615183565b60f81b8183815181106118d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561191291906151d9565b945061186a565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c90614fa4565b60405180910390fd5b81518351146119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d090614f84565b60405180910390fd5b60006119e3611625565b90506119f48160008787878761327d565b60005b8451811015611af957838181518110611a39577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600080878481518110611a7d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611adf9190615183565b925050819055508080611af1906153e5565b9150506119f7565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b71929190614c55565b60405180910390a4611b8881600087878787613513565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf690614e84565b60405180910390fd5b6000611c09611625565b9050611c3981856000611c1b876136fa565b611c24876136fa565b6040518060200160405280600081525061327d565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc790614de4565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611d9d929190614fff565b60405180910390a45050505050565b8151835114611df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de790614f84565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5790614e44565b60405180910390fd5b6000611e6a611625565b9050611e7a81878787878761327d565b60005b8451811015612077576000858281518110611ec1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611f06577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9e90614ea4565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461205c9190615183565b9250508190555050505080612070906153e5565b9050611e7d565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516120ee929190614c55565b60405180910390a4612104818787878787613513565b505050505050565b612116828261106a565b6121e95760016003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061218e611625565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6121f7828261106a565b156122cb5760006003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612270611625565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6122d7610d2b565b612316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230d90614d44565b60405180910390fd5b6000600460006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61235a611625565b6040516123679190614b56565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d890614e84565b60405180910390fd5b8051825114612425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241c90614f84565b60405180910390fd5b600061242f611625565b905061244f8185600086866040518060200160405280600081525061327d565b60005b83518110156125e8576000848281518110612496577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106124db577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561257c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257390614de4565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806125e0906153e5565b915050612452565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612660929190614c55565b60405180910390a450505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279b90614fa4565b60405180910390fd5b60006127ae611625565b90506127cf816000876127c0886136fa565b6127c9886136fa565b8761327d565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461282e9190615183565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516128ac929190614fff565b60405180910390a46128c3816000878787876137c0565b5050505050565b6128d2610d2b565b15612912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290990614e24565b60405180910390fd5b6001600460006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612956611625565b6040516129639190614b56565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d390614f44565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612acd9190614c8c565b60405180910390a3505050565b600084519050835181148015612af05750825181145b612b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2690614f24565b60405180910390fd5b60005b81811015612c1757612c06868281518110612b76577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151868381518110612bb7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151868481518110612bf8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015186612734565b80612c10906153e5565b9050612b32565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8690614e44565b60405180910390fd5b6000612c99611625565b9050612cb9818787612caa886136fa565b612cb3886136fa565b8761327d565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4790614ea4565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e059190615183565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612e82929190614fff565b60405180910390a4612e988288888888886137c0565b50505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612f6c57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612f7c5750612f7b826139a7565b5b9050919050565b606060006002836002612f96919061520a565b612fa09190615183565b67ffffffffffffffff811115612fdf577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130115781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061306f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106130f9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002613139919061520a565b6131439190615183565b90505b600181111561322f577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106131ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106131e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061322890615358565b9050613146565b5060008414613273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326a90614d04565b60405180910390fd5b8091505092915050565b613285610d2b565b156132c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132bc90614e24565b60405180910390fd5b6132d3868686868686613a11565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156133eb5760005b83518110156133e957600084828151811061334f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006007600083815260200190815260200160002054141580156133975750600760008281526020019081526020016000205461339582611184565b115b156133d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ce90614d64565b60405180910390fd5b50806133e2906153e5565b905061330b565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561350b5760005b8351811015613509576000848281518110613467577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006007600083815260200190815260200160002054146134f7578382815181106134c5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516007600083815260200190815260200160002060008282546134ef9190615264565b925050819055505b5080613502906153e5565b9050613423565b505b505050505050565b6135328473ffffffffffffffffffffffffffffffffffffffff16613c23565b156136f2578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401613578959493929190614b71565b602060405180830381600087803b15801561359257600080fd5b505af19250505080156135c357506040513d601f19601f820116820180604052508101906135c09190614537565b60015b613669576135cf61551b565b806308c379a0141561362c57506135e4615c0b565b806135ef575061362e565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136239190614cc2565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161366090614ce4565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146136f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e790614d24565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561373f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561376d5781602001602082028036833780820191505090505b50905082816000815181106137ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6137df8473ffffffffffffffffffffffffffffffffffffffff16613c23565b1561399f578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401613825959493929190614bd9565b602060405180830381600087803b15801561383f57600080fd5b505af192505050801561387057506040513d601f19601f8201168201806040525081019061386d9190614537565b60015b6139165761387c61551b565b806308c379a014156138d95750613891615c0b565b8061389c57506138db565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138d09190614cc2565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390d90614ce4565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461399d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399490614d24565b60405180910390fd5b505b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613a1f868686868686613c36565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613b1d5760005b8351811015613b1b57828181518110613a99577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160056000868481518110613ade577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000206000828254613b039190615183565b9250508190555080613b14906153e5565b9050613a57565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613c1b5760005b8351811015613c1957828181518110613b97577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160056000868481518110613bdc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000206000828254613c019190615264565b9250508190555080613c12906153e5565b9050613b55565b505b505050505050565b600080823b905060008111915050919050565b505050505050565b828054613c4a90615382565b90600052602060002090601f016020900481019282613c6c5760008555613cb3565b82601f10613c8557805160ff1916838001178555613cb3565b82800160010185558215613cb3579182015b82811115613cb2578251825591602001919060010190613c97565b5b509050613cc09190613cc4565b5090565b5b80821115613cdd576000816000905550600101613cc5565b5090565b6000613cf4613cef8461504d565b615028565b90508083825260208201905082856020860282011115613d1357600080fd5b60005b85811015613d435781613d298882613e35565b845260208401935060208301925050600181019050613d16565b5050509392505050565b6000613d60613d5b84615079565b615028565b90508083825260208201905082856020860282011115613d7f57600080fd5b60005b85811015613daf5781613d958882613f46565b845260208401935060208301925050600181019050613d82565b5050509392505050565b6000613dcc613dc7846150a5565b615028565b905082815260208101848484011115613de457600080fd5b613def848285615316565b509392505050565b6000613e0a613e05846150d6565b615028565b905082815260208101848484011115613e2257600080fd5b613e2d848285615316565b509392505050565b600081359050613e4481615ca1565b92915050565b600082601f830112613e5b57600080fd5b8135613e6b848260208601613ce1565b91505092915050565b600082601f830112613e8557600080fd5b8135613e95848260208601613d4d565b91505092915050565b600081359050613ead81615cb8565b92915050565b600081359050613ec281615ccf565b92915050565b600081359050613ed781615ce6565b92915050565b600081519050613eec81615ce6565b92915050565b600082601f830112613f0357600080fd5b8135613f13848260208601613db9565b91505092915050565b600082601f830112613f2d57600080fd5b8135613f3d848260208601613df7565b91505092915050565b600081359050613f5581615cfd565b92915050565b600060208284031215613f6d57600080fd5b6000613f7b84828501613e35565b91505092915050565b60008060408385031215613f9757600080fd5b6000613fa585828601613e35565b9250506020613fb685828601613e35565b9150509250929050565b600080600080600060a08688031215613fd857600080fd5b6000613fe688828901613e35565b9550506020613ff788828901613e35565b945050604086013567ffffffffffffffff81111561401457600080fd5b61402088828901613e74565b935050606086013567ffffffffffffffff81111561403d57600080fd5b61404988828901613e74565b925050608086013567ffffffffffffffff81111561406657600080fd5b61407288828901613ef2565b9150509295509295909350565b600080600080600060a0868803121561409757600080fd5b60006140a588828901613e35565b95505060206140b688828901613e35565b94505060406140c788828901613f46565b93505060606140d888828901613f46565b925050608086013567ffffffffffffffff8111156140f557600080fd5b61410188828901613ef2565b9150509295509295909350565b60008060006060848603121561412357600080fd5b600061413186828701613e35565b935050602084013567ffffffffffffffff81111561414e57600080fd5b61415a86828701613e74565b925050604084013567ffffffffffffffff81111561417757600080fd5b61418386828701613e74565b9150509250925092565b600080600080608085870312156141a357600080fd5b60006141b187828801613e35565b945050602085013567ffffffffffffffff8111156141ce57600080fd5b6141da87828801613e74565b935050604085013567ffffffffffffffff8111156141f757600080fd5b61420387828801613e74565b925050606085013567ffffffffffffffff81111561422057600080fd5b61422c87828801613ef2565b91505092959194509250565b6000806040838503121561424b57600080fd5b600061425985828601613e35565b925050602061426a85828601613e9e565b9150509250929050565b6000806040838503121561428757600080fd5b600061429585828601613e35565b92505060206142a685828601613f46565b9150509250929050565b6000806000606084860312156142c557600080fd5b60006142d386828701613e35565b93505060206142e486828701613f46565b92505060406142f586828701613f46565b9150509250925092565b6000806000806080858703121561431557600080fd5b600061432387828801613e35565b945050602061433487828801613f46565b935050604061434587828801613f46565b925050606085013567ffffffffffffffff81111561436257600080fd5b61436e87828801613ef2565b91505092959194509250565b6000806040838503121561438d57600080fd5b600083013567ffffffffffffffff8111156143a757600080fd5b6143b385828601613e4a565b925050602083013567ffffffffffffffff8111156143d057600080fd5b6143dc85828601613e74565b9150509250929050565b600080600080608085870312156143fc57600080fd5b600085013567ffffffffffffffff81111561441657600080fd5b61442287828801613e4a565b945050602085013567ffffffffffffffff81111561443f57600080fd5b61444b87828801613e74565b935050604085013567ffffffffffffffff81111561446857600080fd5b61447487828801613e74565b925050606085013567ffffffffffffffff81111561449157600080fd5b61449d87828801613ef2565b91505092959194509250565b6000602082840312156144bb57600080fd5b60006144c984828501613eb3565b91505092915050565b600080604083850312156144e557600080fd5b60006144f385828601613eb3565b925050602061450485828601613e35565b9150509250929050565b60006020828403121561452057600080fd5b600061452e84828501613ec8565b91505092915050565b60006020828403121561454957600080fd5b600061455784828501613edd565b91505092915050565b60006020828403121561457257600080fd5b600082013567ffffffffffffffff81111561458c57600080fd5b61459884828501613f1c565b91505092915050565b6000602082840312156145b357600080fd5b60006145c184828501613f46565b91505092915050565b600080604083850312156145dd57600080fd5b60006145eb85828601613f46565b92505060206145fc85828601613f46565b9150509250929050565b60006146128383614ada565b60208301905092915050565b61462781615298565b82525050565b600061463882615117565b6146428185615145565b935061464d83615107565b8060005b8381101561467e5781516146658882614606565b975061467083615138565b925050600181019050614651565b5085935050505092915050565b614694816152aa565b82525050565b6146a3816152b6565b82525050565b60006146b482615122565b6146be8185615156565b93506146ce818560208601615325565b6146d78161553d565b840191505092915050565b60006146ed8261512d565b6146f78185615167565b9350614707818560208601615325565b6147108161553d565b840191505092915050565b60006147268261512d565b6147308185615178565b9350614740818560208601615325565b80840191505092915050565b6000614759603483615167565b91506147648261555b565b604082019050919050565b600061477c602083615167565b9150614787826155aa565b602082019050919050565b600061479f602883615167565b91506147aa826155d3565b604082019050919050565b60006147c2601483615167565b91506147cd82615622565b602082019050919050565b60006147e5601383615167565b91506147f08261564b565b602082019050919050565b6000614808601a83615167565b915061481382615674565b602082019050919050565b600061482b602b83615167565b91506148368261569d565b604082019050919050565b600061484e602683615167565b9150614859826156ec565b604082019050919050565b6000614871602483615167565b915061487c8261573b565b604082019050919050565b6000614894602983615167565b915061489f8261578a565b604082019050919050565b60006148b7601083615167565b91506148c2826157d9565b602082019050919050565b60006148da602583615167565b91506148e582615802565b604082019050919050565b60006148fd603283615167565b915061490882615851565b604082019050919050565b6000614920602383615167565b915061492b826158a0565b604082019050919050565b6000614943602a83615167565b915061494e826158ef565b604082019050919050565b6000614966602083615167565b91506149718261593e565b602082019050919050565b6000614989602183615167565b915061499482615967565b604082019050919050565b60006149ac601783615178565b91506149b7826159b6565b601782019050919050565b60006149cf601583615167565b91506149da826159df565b602082019050919050565b60006149f2602483615167565b91506149fd82615a08565b604082019050919050565b6000614a15602983615167565b9150614a2082615a57565b604082019050919050565b6000614a38602983615167565b9150614a4382615aa6565b604082019050919050565b6000614a5b602883615167565b9150614a6682615af5565b604082019050919050565b6000614a7e602183615167565b9150614a8982615b44565b604082019050919050565b6000614aa1601183615178565b9150614aac82615b93565b601182019050919050565b6000614ac4602f83615167565b9150614acf82615bbc565b604082019050919050565b614ae38161530c565b82525050565b614af28161530c565b82525050565b6000614b04828561471b565b9150614b10828461471b565b91508190509392505050565b6000614b278261499f565b9150614b33828561471b565b9150614b3e82614a94565b9150614b4a828461471b565b91508190509392505050565b6000602082019050614b6b600083018461461e565b92915050565b600060a082019050614b86600083018861461e565b614b93602083018761461e565b8181036040830152614ba5818661462d565b90508181036060830152614bb9818561462d565b90508181036080830152614bcd81846146a9565b90509695505050505050565b600060a082019050614bee600083018861461e565b614bfb602083018761461e565b614c086040830186614ae9565b614c156060830185614ae9565b8181036080830152614c2781846146a9565b90509695505050505050565b60006020820190508181036000830152614c4d818461462d565b905092915050565b60006040820190508181036000830152614c6f818561462d565b90508181036020830152614c83818461462d565b90509392505050565b6000602082019050614ca1600083018461468b565b92915050565b6000602082019050614cbc600083018461469a565b92915050565b60006020820190508181036000830152614cdc81846146e2565b905092915050565b60006020820190508181036000830152614cfd8161474c565b9050919050565b60006020820190508181036000830152614d1d8161476f565b9050919050565b60006020820190508181036000830152614d3d81614792565b9050919050565b60006020820190508181036000830152614d5d816147b5565b9050919050565b60006020820190508181036000830152614d7d816147d8565b9050919050565b60006020820190508181036000830152614d9d816147fb565b9050919050565b60006020820190508181036000830152614dbd8161481e565b9050919050565b60006020820190508181036000830152614ddd81614841565b9050919050565b60006020820190508181036000830152614dfd81614864565b9050919050565b60006020820190508181036000830152614e1d81614887565b9050919050565b60006020820190508181036000830152614e3d816148aa565b9050919050565b60006020820190508181036000830152614e5d816148cd565b9050919050565b60006020820190508181036000830152614e7d816148f0565b9050919050565b60006020820190508181036000830152614e9d81614913565b9050919050565b60006020820190508181036000830152614ebd81614936565b9050919050565b60006020820190508181036000830152614edd81614959565b9050919050565b60006020820190508181036000830152614efd8161497c565b9050919050565b60006020820190508181036000830152614f1d816149c2565b9050919050565b60006020820190508181036000830152614f3d816149e5565b9050919050565b60006020820190508181036000830152614f5d81614a08565b9050919050565b60006020820190508181036000830152614f7d81614a2b565b9050919050565b60006020820190508181036000830152614f9d81614a4e565b9050919050565b60006020820190508181036000830152614fbd81614a71565b9050919050565b60006020820190508181036000830152614fdd81614ab7565b9050919050565b6000602082019050614ff96000830184614ae9565b92915050565b60006040820190506150146000830185614ae9565b6150216020830184614ae9565b9392505050565b6000615032615043565b905061503e82826153b4565b919050565b6000604051905090565b600067ffffffffffffffff821115615068576150676154ec565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615094576150936154ec565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156150c0576150bf6154ec565b5b6150c98261553d565b9050602081019050919050565b600067ffffffffffffffff8211156150f1576150f06154ec565b5b6150fa8261553d565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061518e8261530c565b91506151998361530c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151ce576151cd61545f565b5b828201905092915050565b60006151e48261530c565b91506151ef8361530c565b9250826151ff576151fe61548e565b5b828204905092915050565b60006152158261530c565b91506152208361530c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156152595761525861545f565b5b828202905092915050565b600061526f8261530c565b915061527a8361530c565b92508282101561528d5761528c61545f565b5b828203905092915050565b60006152a3826152ec565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615343578082015181840152602081019050615328565b83811115615352576000848401525b50505050565b60006153638261530c565b915060008214156153775761537661545f565b5b600182039050919050565b6000600282049050600182168061539a57607f821691505b602082108114156153ae576153ad6154bd565b5b50919050565b6153bd8261553d565b810181811067ffffffffffffffff821117156153dc576153db6154ec565b5b80604052505050565b60006153f08261530c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154235761542261545f565b5b600182019050919050565b60006154398261530c565b91506154448361530c565b9250826154545761545361548e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d111561553a5760046000803e61553760005161554e565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45786365737320737570706c79206c696d697400000000000000000000000000600082015250565b7f43616e6e6f742075706461746520737570706c79206c696d6974000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4c696d6974206973206c657373207468616e2063757272656e7420737570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f43616e6e6f7420736574206c696d697420746f20300000000000000000000000600082015250565b7f746f732c2069647320616e6420616d6f756e7473206c656e677468206d69736d60008201527f6174636800000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600060443d1015615c1b57615c9e565b615c23615043565b60043d036004823e80513d602482011167ffffffffffffffff82111715615c4b575050615c9e565b808201805167ffffffffffffffff811115615c695750505050615c9e565b80602083010160043d038501811115615c86575050505050615c9e565b615c95826020018501866153b4565b82955050505050505b90565b615caa81615298565b8114615cb557600080fd5b50565b615cc1816152aa565b8114615ccc57600080fd5b50565b615cd8816152b6565b8114615ce357600080fd5b50565b615cef816152c0565b8114615cfa57600080fd5b50565b615d068161530c565b8114615d1157600080fd5b5056fea2646970667358221220a16ac61cdb1eb709f19daffe814a503f157c3c8d05ee4eabdbff9022d3589dce64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f47796d204120436c75622050617373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044741435000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003068747470733a2f2f6170692e646f7365746f6b656e2e636f6d2f6d657461646174612f73616e64626f782f706173732f00000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Gym A Club Pass
Arg [1] : symbol_ (string): GACP
Arg [2] : uri_ (string): https://api.dosetoken.com/metadata/sandbox/pass/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 47796d204120436c756220506173730000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4741435000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000030
Arg [8] : 68747470733a2f2f6170692e646f7365746f6b656e2e636f6d2f6d6574616461
Arg [9] : 74612f73616e64626f782f706173732f00000000000000000000000000000000


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

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