ETH Price: $3,356.79 (-2.70%)
Gas: 3 Gwei

Token

Soccer Doge Club (SDC)
 

Overview

Max Total Supply

10,000 SDC

Holders

2,145

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0x3135887f360975b341a0ce0b442e9660d5d5e0d5
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:
SoccerDogeClub

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : SoccerDogeClub.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

contract SoccerDogeClub is
    ERC1155,
    ERC1155Holder,
    NativeMetaTransaction,
    Ownable
{
    using SafeMath for uint256;
    string constant NAME = "Soccer Doge Club";
    string constant SYMBOL = "SDC";
    string constant _CONTRACT = "ERC1155";
    uint256 constant MAX_TOTAL_SUPPLY = 10000;
    uint256 constant MAX_NUM_PER_TOKEN = 1;
    uint256 constant batchCount = 500;
    uint256 constant price = 59000000000000000; // 0.059 ETH;
    uint256 public currentID = 1;
    string constant URI_BASE = "https://soccerdogeclubnft.s3.us-west-1.amazonaws.com/metadatas/sdc-metadata-";
    bytes4 private constant INTERFACE_SIGNATURE_ERC165 = 0x01ffc9a7;
    bytes4 private constant INTERFACE_SIGNATURE_ERC1155 = 0xd9b67a26;
    bytes4 private constant INTERFACE_SIGNATURE_URI = 0x0e89341c;

    constructor() ERC1155(URI_BASE) {
        _initializeEIP712(NAME);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC1155, ERC1155Receiver)
        returns (bool)
    {
        if (
            interfaceId == INTERFACE_SIGNATURE_ERC165 ||
            interfaceId == INTERFACE_SIGNATURE_ERC1155 ||
            interfaceId == INTERFACE_SIGNATURE_URI
        ) {
            return true;
        }
        return super.supportsInterface(interfaceId);
    }

    function uri(uint256 _tokenId)
        public
        pure
        override
        returns (string memory)
    {
        return _getUri(_tokenId);
    }

    function _getUri(uint256 _tokenId) internal pure returns (string memory) {
        return
            string(
                abi.encodePacked(URI_BASE, Strings.toString(_tokenId), ".json")
            );
    }

  
    receive() external payable {}

    fallback() external payable {}

    function withdraw() 
        public 
        onlyOwner 
    {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    function mintPayable(uint256 _customBatchCount) 
        external 
        payable 
    {
        require(_customBatchCount > 0, "count should be more than one");
        require(
            price.mul(_customBatchCount) <= msg.value,
            "Sorry, sending incorrect eth value"
        );

        _batchMint(msg.sender, _customBatchCount);
    }
    
    function mint(address _to, uint256 _customBatchCount)
        external
        onlyOwner
    {
        if (_customBatchCount <= 0) 
            _customBatchCount = batchCount;
        
        _batchMint(_to, _customBatchCount);
    }

    function _batchMint(
        address _to,
        uint256 num
    ) private {
        
        uint256 i = 0;
        uint256 range = num + currentID;
        require(range <= MAX_TOTAL_SUPPLY, "Sorry, Request More than TotalSupply, Please Change Number");
        uint256[] memory ids = new uint256[](num);
        uint256[] memory amounts = new uint256[](num);
        for (; currentID < range; currentID++) {
            ids[i] = currentID;
            amounts[i] = MAX_NUM_PER_TOKEN;
            require(_balances[currentID][_to] == 0, "Cannot mint existed token id");
            ++i;
        }
        super._mintBatch(_to, ids, amounts, "");
    }

    function burnBatch(address _account, uint256[] memory _ids)
        external
        onlyOwner
    {
        super._burnBatch(_account, _ids, _getAmountArray(_ids.length));
    }
    
    function transferBatch(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts
    ) external {
        super.safeBatchTransferFrom(from, to, ids, amounts, "");
    }
    
    function _getAmountArray(uint256 arrayLen)
        private
        pure
        returns (uint256[] memory)
    {
        uint256[] memory _amounts = new uint256[](arrayLen);
        for (uint256 i = 0; i < arrayLen; i++) {
            _amounts[i] = MAX_NUM_PER_TOKEN;
        }
        return _amounts;
    }

    function name() external pure returns (string memory) {
        return NAME;
    }

    function symbol() external pure returns (string memory) {
        return SYMBOL;
    }

    function supportsFactoryInterface() public pure returns (bool) {
        return true;
    }

    function factorySchemaName() external pure returns (string memory) {
        return _CONTRACT;
    }

    function totalSupply() external pure returns (uint256) {
        return MAX_TOTAL_SUPPLY;
    }
}

File 2 of 17 : Strings.sol
// SPDX-License-Identifier: MIT

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 3 of 17 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 17 : ERC1155Holder.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC1155Receiver.sol";

/**
 * @dev _Available since v3.1._
 */
contract ERC1155Holder is ERC1155Receiver {
    function onERC1155Received(
        address,
        address,
        uint256,
        uint256,
        bytes memory
    ) public virtual override returns (bytes4) {
        return this.onERC1155Received.selector;
    }

    function onERC1155BatchReceived(
        address,
        address,
        uint256[] memory,
        uint256[] memory,
        bytes memory
    ) public virtual override returns (bytes4) {
        return this.onERC1155BatchReceived.selector;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

        return array;
    }
}

File 6 of 17 : NativeMetaTransaction.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import {SafeMath} from  "./SafeMath.sol";
import {EIP712Base} from "./EIP712Base.sol";

contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

File 7 of 17 : EIP712Base.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import {Initializable} from "./Initializable.sol";

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

File 8 of 17 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 9 of 17 : ERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC1155Receiver.sol";
import "../../../utils/introspection/ERC165.sol";

/**
 * @dev _Available since v3.1._
 */
abstract contract ERC1155Receiver is ERC165, IERC1155Receiver {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(IERC1155Receiver).interfaceId || super.supportsInterface(interfaceId);
    }
}

File 10 of 17 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 11 of 17 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

File 13 of 17 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

File 14 of 17 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

File 15 of 17 : IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

File 16 of 17 : Initializable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

File 17 of 17 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"_ids","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"factorySchemaName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_customBatchCount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_customBatchCount","type":"uint256"}],"name":"mintPayable","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supportsFactoryInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","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":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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[]"}],"name":"transferBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600360006101000a81548160ff02191690831515021790555060016007553480156200003157600080fd5b506040518060800160405280604c81526020016200563d604c91396200005d81620000ca60201b60201c565b506200007e62000072620000e660201b60201c565b620000ee60201b60201c565b620000c46040518060400160405280601081526020017f536f6363657220446f676520436c756200000000000000000000000000000000815250620001b460201b60201c565b62000547565b8060029080519060200190620000e2929190620002f2565b5050565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600360009054906101000a900460ff161562000207576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001fe9062000448565b60405180910390fd5b62000218816200023660201b60201c565b6001600360006101000a81548160ff02191690831515021790555050565b6040518060800160405280604f815260200162005689604f91398051906020012081805190602001206040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152508051906020012030620002ad620002e560201b60201c565b60001b604051602001620002c6959493929190620003eb565b6040516020818303038152906040528051906020012060048190555050565b6000804690508091505090565b8280546200030090620004b9565b90600052602060002090601f01602090048101928262000324576000855562000370565b82601f106200033f57805160ff191683800117855562000370565b8280016001018555821562000370579182015b828111156200036f57825182559160200191906001019062000352565b5b5090506200037f919062000383565b5090565b5b808211156200039e57600081600090555060010162000384565b5090565b620003ad816200047b565b82525050565b620003be816200048f565b82525050565b6000620003d3600e836200046a565b9150620003e0826200051e565b602082019050919050565b600060a082019050620004026000830188620003b3565b620004116020830187620003b3565b620004206040830186620003b3565b6200042f6060830185620003a2565b6200043e6080830184620003b3565b9695505050505050565b600060208201905081810360008301526200046381620003c4565b9050919050565b600082825260208201905092915050565b6000620004888262000499565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620004d257607f821691505b60208210811415620004e957620004e8620004ef565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f616c726561647920696e69746564000000000000000000000000000000000000600082015250565b6150e680620005576000396000f3fe6080604052600436106101c55760003560e01c80633ccfd60b116100f7578063a22cb46511610095578063e985e9c511610064578063e985e9c514610631578063f23a6e611461066e578063f242432a146106ab578063f2fde38b146106d4576101cc565b8063a22cb46514610577578063b2dc5dc3146105a0578063bc197c81146105c9578063c311c52314610606576101cc565b80634e1273f4116100d15780634e1273f4146104cd578063715018a61461050a5780638da5cb5b1461052157806395d89b411461054c576101cc565b80633ccfd60b1461046257806340c10f191461047957806345df5787146104a2576101cc565b806318160ddd11610164578063243321091161013e57806324332109146103b55780632d0335ab146103d15780632eb2c2d61461040e5780633408e47014610437576101cc565b806318160ddd146103345780631c75cfb41461035f57806320379ee51461038a576101cc565b80630731a369116101a05780630731a369146102735780630c53c51c1461029c5780630e89341c146102cc5780630f7e597014610309576101cc565b8062fdd58e146101ce57806301ffc9a71461020b57806306fdde0314610248576101cc565b366101cc57005b005b3480156101da57600080fd5b506101f560048036038101906101f0919061363d565b6106fd565b604051610202919061430b565b60405180910390f35b34801561021757600080fd5b50610232600480360381019061022d91906136e5565b6107c6565b60405161023f9190613f0c565b60405180910390f35b34801561025457600080fd5b5061025d6108cd565b60405161026a9190614009565b60405180910390f35b34801561027f57600080fd5b5061029a6004803603810190610295919061333d565b61090a565b005b6102b660048036038101906102b191906135ae565b61092c565b6040516102c39190613fe7565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190613737565b610b9e565b6040516103009190614009565b60405180910390f35b34801561031557600080fd5b5061031e610bb0565b60405161032b9190614009565b60405180910390f35b34801561034057600080fd5b50610349610be9565b604051610356919061430b565b60405180910390f35b34801561036b57600080fd5b50610374610bf3565b604051610381919061430b565b60405180910390f35b34801561039657600080fd5b5061039f610bf9565b6040516103ac9190613f27565b60405180910390f35b6103cf60048036038101906103ca9190613737565b610c03565b005b3480156103dd57600080fd5b506103f860048036038101906103f391906132d8565b610caf565b604051610405919061430b565b60405180910390f35b34801561041a57600080fd5b50610435600480360381019061043091906133d0565b610cf8565b005b34801561044357600080fd5b5061044c610d99565b604051610459919061430b565b60405180910390f35b34801561046e57600080fd5b50610477610da6565b005b34801561048557600080fd5b506104a0600480360381019061049b919061363d565b610ed1565b005b3480156104ae57600080fd5b506104b7610f69565b6040516104c49190614009565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190613679565b610fa6565b6040516105019190613eb3565b60405180910390f35b34801561051657600080fd5b5061051f611157565b005b34801561052d57600080fd5b506105366111df565b6040516105439190613d98565b60405180910390f35b34801561055857600080fd5b50610561611209565b60405161056e9190614009565b60405180910390f35b34801561058357600080fd5b5061059e60048036038101906105999190613572565b611246565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061351e565b6113c7565b005b3480156105d557600080fd5b506105f060048036038101906105eb91906133d0565b61145b565b6040516105fd9190613fcc565b60405180910390f35b34801561061257600080fd5b5061061b611470565b6040516106289190613f0c565b60405180910390f35b34801561063d57600080fd5b5061065860048036038101906106539190613301565b611479565b6040516106659190613f0c565b60405180910390f35b34801561067a57600080fd5b506106956004803603810190610690919061348f565b61150d565b6040516106a29190613fcc565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd919061348f565b611522565b005b3480156106e057600080fd5b506106fb60048036038101906106f691906132d8565b6115c3565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561076e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107659061408b565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006301ffc9a760e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085f575063d9b67a2660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ae5750630e89341c60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b156108bc57600190506108c8565b6108c5826116bb565b90505b919050565b60606040518060400160405280601081526020017f536f6363657220446f676520436c756200000000000000000000000000000000815250905090565b6109268484848460405180602001604052806000815250610cf8565b50505050565b606060006040518060600160405280600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018873ffffffffffffffffffffffffffffffffffffffff1681526020018781525090506109af8782878787611735565b6109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e59061422b565b60405180910390fd5b610a416001600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461183e90919063ffffffff16565b600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051610ab793929190613db3565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610aec929190613cf5565b604051602081830303815290604052604051610b089190613cde565b6000604051808303816000865af19150503d8060008114610b45576040519150601f19603f3d011682016040523d82523d6000602084013e610b4a565b606091505b509150915081610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b86906140cb565b60405180910390fd5b80935050505095945050505050565b6060610ba982611854565b9050919050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b6000612710905090565b60075481565b6000600454905090565b60008111610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d9061424b565b60405180910390fd5b34610c618266d19c2ff9bf800061189f90919063ffffffff16565b1115610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c999061406b565b60405180910390fd5b610cac33826118b5565b50565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d00611b6d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610d465750610d4585610d40611b6d565b611479565b5b610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c9061418b565b60405180910390fd5b610d928585858585611b75565b5050505050565b6000804690508091505090565b610dae611b6d565b73ffffffffffffffffffffffffffffffffffffffff16610dcc6111df565b73ffffffffffffffffffffffffffffffffffffffff1614610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e199061420b565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e4890613d83565b60006040518083038185875af1925050503d8060008114610e85576040519150601f19603f3d011682016040523d82523d6000602084013e610e8a565b606091505b5050905080610ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec59061412b565b60405180910390fd5b50565b610ed9611b6d565b73ffffffffffffffffffffffffffffffffffffffff16610ef76111df565b73ffffffffffffffffffffffffffffffffffffffff1614610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f449061420b565b60405180910390fd5b60008111610f5b576101f490505b610f6582826118b5565b5050565b60606040518060400160405280600781526020017f4552433131353500000000000000000000000000000000000000000000000000815250905090565b60608151835114610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe39061428b565b60405180910390fd5b6000835167ffffffffffffffff81111561102f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561105d5781602001602082028036833780820191505090505b50905060005b845181101561114c576110f68582815181106110a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518583815181106110e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516106fd565b82828151811061112f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080611145906146a9565b9050611063565b508091505092915050565b61115f611b6d565b73ffffffffffffffffffffffffffffffffffffffff1661117d6111df565b73ffffffffffffffffffffffffffffffffffffffff16146111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca9061420b565b60405180910390fd5b6111dd6000611ed5565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f5344430000000000000000000000000000000000000000000000000000000000815250905090565b8173ffffffffffffffffffffffffffffffffffffffff16611265611b6d565b73ffffffffffffffffffffffffffffffffffffffff1614156112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b39061426b565b60405180910390fd5b80600160006112c9611b6d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611376611b6d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113bb9190613f0c565b60405180910390a35050565b6113cf611b6d565b73ffffffffffffffffffffffffffffffffffffffff166113ed6111df565b73ffffffffffffffffffffffffffffffffffffffff1614611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a9061420b565b60405180910390fd5b61145782826114528451611f9b565b61207f565b5050565b600063bc197c8160e01b905095945050505050565b60006001905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600063f23a6e6160e01b905095945050505050565b61152a611b6d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611570575061156f8561156a611b6d565b611479565b5b6115af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a69061410b565b60405180910390fd5b6115bc858585858561237c565b5050505050565b6115cb611b6d565b73ffffffffffffffffffffffffffffffffffffffff166115e96111df565b73ffffffffffffffffffffffffffffffffffffffff161461163f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116369061420b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a6906140ab565b60405180910390fd5b6116b881611ed5565b50565b60007f4e2312e0000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061172e575061172d826125fe565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179d9061414b565b60405180910390fd5b60016117b96117b4876126e0565b612748565b838686604051600081526020016040526040516117d99493929190613f87565b6020604051602081039080840390855afa1580156117fb573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b6000818361184c9190614484565b905092915050565b60606040518060800160405280604c8152602001615022604c913961187883612781565b604051602001611889929190613d1d565b6040516020818303038152906040529050919050565b600081836118ad919061450b565b905092915050565b600080600754836118c69190614484565b905061271081111561190d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611904906142eb565b60405180910390fd5b60008367ffffffffffffffff81111561194f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561197d5781602001602082028036833780820191505090505b50905060008467ffffffffffffffff8111156119c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156119f05781602001602082028036833780820191505090505b5090505b826007541015611b4a57600754828581518110611a3a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250506001818581518110611a81577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250506000806000600754815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b18906141eb565b60405180910390fd5b83611b2b906146a9565b935060076000815480929190611b40906146a9565b91905055506119f4565b611b658683836040518060200160405280600081525061292e565b505050505050565b600033905090565b8151835114611bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb0906142ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c209061416b565b60405180910390fd5b6000611c33611b6d565b9050611c43818787878787612b98565b60005b8451811015611e40576000858281518110611c8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611ccf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d67906141cb565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e259190614484565b9250508190555050505080611e39906146a9565b9050611c46565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611eb7929190613ed5565b60405180910390a4611ecd818787878787612ba0565b505050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b606060008267ffffffffffffffff811115611fdf577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561200d5781602001602082028036833780820191505090505b50905060005b83811015612075576001828281518110612056577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061206d906146a9565b915050612013565b5080915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e6906141ab565b60405180910390fd5b8051825114612133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212a906142ab565b60405180910390fd5b600061213d611b6d565b905061215d81856000868660405180602001604052806000815250612b98565b60005b83518110156122f65760008482815181106121a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106121e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561228a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612281906140eb565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806122ee906146a9565b915050612160565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161236e929190613ed5565b60405180910390a450505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e39061416b565b60405180910390fd5b60006123f6611b6d565b905061241681878761240788612d87565b61241088612d87565b87612b98565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156124ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a4906141cb565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125629190614484565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516125df929190614326565b60405180910390a46125f5828888888888612e4d565b50505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126c957507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806126d957506126d882613034565b5b9050919050565b600060405180608001604052806043815260200161506e60439139805190602001208260000151836020015184604001518051906020012060405160200161272b9493929190613f42565b604051602081830303815290604052805190602001209050919050565b6000612752610bf9565b82604051602001612764929190613d4c565b604051602081830303815290604052805190602001209050919050565b606060008214156127c9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612929565b600082905060005b600082146127fb5780806127e4906146a9565b915050600a826127f491906144da565b91506127d1565b60008167ffffffffffffffff81111561283d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561286f5781602001600182028036833780820191505090505b5090505b60008514612922576001826128889190614565565b9150600a856128979190614720565b60306128a39190614484565b60f81b8183815181106128df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561291b91906144da565b9450612873565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561299e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612995906142cb565b60405180910390fd5b81518351146129e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d9906142ab565b60405180910390fd5b60006129ec611b6d565b90506129fd81600087878787612b98565b60005b8451811015612b0257838181518110612a42577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600080878481518110612a86577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ae89190614484565b925050819055508080612afa906146a9565b915050612a00565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612b7a929190613ed5565b60405180910390a4612b9181600087878787612ba0565b5050505050565b505050505050565b612bbf8473ffffffffffffffffffffffffffffffffffffffff1661309e565b15612d7f578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612c05959493929190613df1565b602060405180830381600087803b158015612c1f57600080fd5b505af1925050508015612c5057506040513d601f19601f82011682018060405250810190612c4d919061370e565b60015b612cf657612c5c6147de565b806308c379a01415612cb95750612c71614f01565b80612c7c5750612cbb565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb09190614009565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ced9061402b565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d749061404b565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612dcc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612dfa5781602001602082028036833780820191505090505b5090508281600081518110612e38577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b612e6c8473ffffffffffffffffffffffffffffffffffffffff1661309e565b1561302c578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612eb2959493929190613e59565b602060405180830381600087803b158015612ecc57600080fd5b505af1925050508015612efd57506040513d601f19601f82011682018060405250810190612efa919061370e565b60015b612fa357612f096147de565b806308c379a01415612f665750612f1e614f01565b80612f295750612f68565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5d9190614009565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9a9061402b565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461302a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130219061404b565b60405180910390fd5b505b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080823b905060008111915050919050565b60006130c46130bf84614374565b61434f565b905080838252602082019050828560208602820111156130e357600080fd5b60005b8581101561311357816130f988826131c7565b8452602084019350602083019250506001810190506130e6565b5050509392505050565b600061313061312b846143a0565b61434f565b9050808382526020820190508285602086028201111561314f57600080fd5b60005b8581101561317f578161316588826132ae565b845260208401935060208301925050600181019050613152565b5050509392505050565b600061319c613197846143cc565b61434f565b9050828152602081018484840111156131b457600080fd5b6131bf848285614636565b509392505050565b6000813590506131d681614f97565b92915050565b600082601f8301126131ed57600080fd5b81356131fd8482602086016130b1565b91505092915050565b600082601f83011261321757600080fd5b813561322784826020860161311d565b91505092915050565b60008135905061323f81614fae565b92915050565b60008135905061325481614fc5565b92915050565b60008135905061326981614fdc565b92915050565b60008151905061327e81614fdc565b92915050565b600082601f83011261329557600080fd5b81356132a5848260208601613189565b91505092915050565b6000813590506132bd81614ff3565b92915050565b6000813590506132d28161500a565b92915050565b6000602082840312156132ea57600080fd5b60006132f8848285016131c7565b91505092915050565b6000806040838503121561331457600080fd5b6000613322858286016131c7565b9250506020613333858286016131c7565b9150509250929050565b6000806000806080858703121561335357600080fd5b6000613361878288016131c7565b9450506020613372878288016131c7565b935050604085013567ffffffffffffffff81111561338f57600080fd5b61339b87828801613206565b925050606085013567ffffffffffffffff8111156133b857600080fd5b6133c487828801613206565b91505092959194509250565b600080600080600060a086880312156133e857600080fd5b60006133f6888289016131c7565b9550506020613407888289016131c7565b945050604086013567ffffffffffffffff81111561342457600080fd5b61343088828901613206565b935050606086013567ffffffffffffffff81111561344d57600080fd5b61345988828901613206565b925050608086013567ffffffffffffffff81111561347657600080fd5b61348288828901613284565b9150509295509295909350565b600080600080600060a086880312156134a757600080fd5b60006134b5888289016131c7565b95505060206134c6888289016131c7565b94505060406134d7888289016132ae565b93505060606134e8888289016132ae565b925050608086013567ffffffffffffffff81111561350557600080fd5b61351188828901613284565b9150509295509295909350565b6000806040838503121561353157600080fd5b600061353f858286016131c7565b925050602083013567ffffffffffffffff81111561355c57600080fd5b61356885828601613206565b9150509250929050565b6000806040838503121561358557600080fd5b6000613593858286016131c7565b92505060206135a485828601613230565b9150509250929050565b600080600080600060a086880312156135c657600080fd5b60006135d4888289016131c7565b955050602086013567ffffffffffffffff8111156135f157600080fd5b6135fd88828901613284565b945050604061360e88828901613245565b935050606061361f88828901613245565b9250506080613630888289016132c3565b9150509295509295909350565b6000806040838503121561365057600080fd5b600061365e858286016131c7565b925050602061366f858286016132ae565b9150509250929050565b6000806040838503121561368c57600080fd5b600083013567ffffffffffffffff8111156136a657600080fd5b6136b2858286016131dc565b925050602083013567ffffffffffffffff8111156136cf57600080fd5b6136db85828601613206565b9150509250929050565b6000602082840312156136f757600080fd5b60006137058482850161325a565b91505092915050565b60006020828403121561372057600080fd5b600061372e8482850161326f565b91505092915050565b60006020828403121561374957600080fd5b6000613757848285016132ae565b91505092915050565b600061376c8383613cb1565b60208301905092915050565b613781816145ab565b82525050565b61379081614599565b82525050565b6137a76137a282614599565b6146f2565b82525050565b60006137b88261440d565b6137c2818561443b565b93506137cd836143fd565b8060005b838110156137fe5781516137e58882613760565b97506137f08361442e565b9250506001810190506137d1565b5085935050505092915050565b613814816145bd565b82525050565b613823816145c9565b82525050565b61383a613835826145c9565b614704565b82525050565b613849816145d3565b82525050565b600061385a82614418565b613864818561444c565b9350613874818560208601614645565b61387d81614800565b840191505092915050565b600061389382614418565b61389d818561445d565b93506138ad818560208601614645565b80840191505092915050565b60006138c482614423565b6138ce8185614468565b93506138de818560208601614645565b6138e781614800565b840191505092915050565b60006138fd82614423565b6139078185614479565b9350613917818560208601614645565b80840191505092915050565b6000613930603483614468565b915061393b8261482b565b604082019050919050565b6000613953602883614468565b915061395e8261487a565b604082019050919050565b6000613976602283614468565b9150613981826148c9565b604082019050919050565b6000613999602b83614468565b91506139a482614918565b604082019050919050565b60006139bc602683614468565b91506139c782614967565b604082019050919050565b60006139df601c83614468565b91506139ea826149b6565b602082019050919050565b6000613a02602483614468565b9150613a0d826149df565b604082019050919050565b6000613a25600283614479565b9150613a3082614a2e565b600282019050919050565b6000613a48602983614468565b9150613a5382614a57565b604082019050919050565b6000613a6b603a83614468565b9150613a7682614aa6565b604082019050919050565b6000613a8e602583614468565b9150613a9982614af5565b604082019050919050565b6000613ab1602583614468565b9150613abc82614b44565b604082019050919050565b6000613ad4603283614468565b9150613adf82614b93565b604082019050919050565b6000613af7602383614468565b9150613b0282614be2565b604082019050919050565b6000613b1a602a83614468565b9150613b2582614c31565b604082019050919050565b6000613b3d601c83614468565b9150613b4882614c80565b602082019050919050565b6000613b60600583614479565b9150613b6b82614ca9565b600582019050919050565b6000613b83602083614468565b9150613b8e82614cd2565b602082019050919050565b6000613ba6602183614468565b9150613bb182614cfb565b604082019050919050565b6000613bc9601d83614468565b9150613bd482614d4a565b602082019050919050565b6000613bec60008361445d565b9150613bf782614d73565b600082019050919050565b6000613c0f602983614468565b9150613c1a82614d76565b604082019050919050565b6000613c32602983614468565b9150613c3d82614dc5565b604082019050919050565b6000613c55602883614468565b9150613c6082614e14565b604082019050919050565b6000613c78602183614468565b9150613c8382614e63565b604082019050919050565b6000613c9b603a83614468565b9150613ca682614eb2565b604082019050919050565b613cba8161461f565b82525050565b613cc98161461f565b82525050565b613cd881614629565b82525050565b6000613cea8284613888565b915081905092915050565b6000613d018285613888565b9150613d0d8284613796565b6014820191508190509392505050565b6000613d2982856138f2565b9150613d3582846138f2565b9150613d4082613b53565b91508190509392505050565b6000613d5782613a18565b9150613d638285613829565b602082019150613d738284613829565b6020820191508190509392505050565b6000613d8e82613bdf565b9150819050919050565b6000602082019050613dad6000830184613787565b92915050565b6000606082019050613dc86000830186613787565b613dd56020830185613778565b8181036040830152613de7818461384f565b9050949350505050565b600060a082019050613e066000830188613787565b613e136020830187613787565b8181036040830152613e2581866137ad565b90508181036060830152613e3981856137ad565b90508181036080830152613e4d818461384f565b90509695505050505050565b600060a082019050613e6e6000830188613787565b613e7b6020830187613787565b613e886040830186613cc0565b613e956060830185613cc0565b8181036080830152613ea7818461384f565b90509695505050505050565b60006020820190508181036000830152613ecd81846137ad565b905092915050565b60006040820190508181036000830152613eef81856137ad565b90508181036020830152613f0381846137ad565b90509392505050565b6000602082019050613f21600083018461380b565b92915050565b6000602082019050613f3c600083018461381a565b92915050565b6000608082019050613f57600083018761381a565b613f646020830186613cc0565b613f716040830185613787565b613f7e606083018461381a565b95945050505050565b6000608082019050613f9c600083018761381a565b613fa96020830186613ccf565b613fb6604083018561381a565b613fc3606083018461381a565b95945050505050565b6000602082019050613fe16000830184613840565b92915050565b60006020820190508181036000830152614001818461384f565b905092915050565b6000602082019050818103600083015261402381846138b9565b905092915050565b6000602082019050818103600083015261404481613923565b9050919050565b6000602082019050818103600083015261406481613946565b9050919050565b6000602082019050818103600083015261408481613969565b9050919050565b600060208201905081810360008301526140a48161398c565b9050919050565b600060208201905081810360008301526140c4816139af565b9050919050565b600060208201905081810360008301526140e4816139d2565b9050919050565b60006020820190508181036000830152614104816139f5565b9050919050565b6000602082019050818103600083015261412481613a3b565b9050919050565b6000602082019050818103600083015261414481613a5e565b9050919050565b6000602082019050818103600083015261416481613a81565b9050919050565b6000602082019050818103600083015261418481613aa4565b9050919050565b600060208201905081810360008301526141a481613ac7565b9050919050565b600060208201905081810360008301526141c481613aea565b9050919050565b600060208201905081810360008301526141e481613b0d565b9050919050565b6000602082019050818103600083015261420481613b30565b9050919050565b6000602082019050818103600083015261422481613b76565b9050919050565b6000602082019050818103600083015261424481613b99565b9050919050565b6000602082019050818103600083015261426481613bbc565b9050919050565b6000602082019050818103600083015261428481613c02565b9050919050565b600060208201905081810360008301526142a481613c25565b9050919050565b600060208201905081810360008301526142c481613c48565b9050919050565b600060208201905081810360008301526142e481613c6b565b9050919050565b6000602082019050818103600083015261430481613c8e565b9050919050565b60006020820190506143206000830184613cc0565b92915050565b600060408201905061433b6000830185613cc0565b6143486020830184613cc0565b9392505050565b600061435961436a565b90506143658282614678565b919050565b6000604051905090565b600067ffffffffffffffff82111561438f5761438e6147af565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156143bb576143ba6147af565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156143e7576143e66147af565b5b6143f082614800565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061448f8261461f565b915061449a8361461f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144cf576144ce614751565b5b828201905092915050565b60006144e58261461f565b91506144f08361461f565b925082614500576144ff614780565b5b828204905092915050565b60006145168261461f565b91506145218361461f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561455a57614559614751565b5b828202905092915050565b60006145708261461f565b915061457b8361461f565b92508282101561458e5761458d614751565b5b828203905092915050565b60006145a4826145ff565b9050919050565b60006145b6826145ff565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614663578082015181840152602081019050614648565b83811115614672576000848401525b50505050565b61468182614800565b810181811067ffffffffffffffff821117156146a05761469f6147af565b5b80604052505050565b60006146b48261461f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146e7576146e6614751565b5b600182019050919050565b60006146fd8261470e565b9050919050565b6000819050919050565b600061471982614811565b9050919050565b600061472b8261461f565b91506147368361461f565b92508261474657614745614780565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156147fd5760046000803e6147fa60005161481e565b90505b90565b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f536f7272792c2073656e64696e6720696e636f7272656374206574682076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000600082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360008201527f49474e4552000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206578697374656420746f6b656e20696400000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360008201527f6800000000000000000000000000000000000000000000000000000000000000602082015250565b7f636f756e742073686f756c64206265206d6f7265207468616e206f6e65000000600082015250565b50565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f7272792c2052657175657374204d6f7265207468616e20546f74616c537560008201527f70706c792c20506c65617365204368616e6765204e756d626572000000000000602082015250565b600060443d1015614f1157614f94565b614f1961436a565b60043d036004823e80513d602482011167ffffffffffffffff82111715614f41575050614f94565b808201805167ffffffffffffffff811115614f5f5750505050614f94565b80602083010160043d038501811115614f7c575050505050614f94565b614f8b82602001850186614678565b82955050505050505b90565b614fa081614599565b8114614fab57600080fd5b50565b614fb7816145bd565b8114614fc257600080fd5b50565b614fce816145c9565b8114614fd957600080fd5b50565b614fe5816145d3565b8114614ff057600080fd5b50565b614ffc8161461f565b811461500757600080fd5b50565b61501381614629565b811461501e57600080fd5b5056fe68747470733a2f2f736f63636572646f6765636c75626e66742e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6d65746164617461732f7364632d6d657461646174612d4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220dcc39fa1c627f72dc9c2ff96f4c7e4ad8e4f3768bee482c46c360bef1c72f68d64736f6c6343000804003368747470733a2f2f736f63636572646f6765636c75626e66742e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6d65746164617461732f7364632d6d657461646174612d454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429

Deployed Bytecode

0x6080604052600436106101c55760003560e01c80633ccfd60b116100f7578063a22cb46511610095578063e985e9c511610064578063e985e9c514610631578063f23a6e611461066e578063f242432a146106ab578063f2fde38b146106d4576101cc565b8063a22cb46514610577578063b2dc5dc3146105a0578063bc197c81146105c9578063c311c52314610606576101cc565b80634e1273f4116100d15780634e1273f4146104cd578063715018a61461050a5780638da5cb5b1461052157806395d89b411461054c576101cc565b80633ccfd60b1461046257806340c10f191461047957806345df5787146104a2576101cc565b806318160ddd11610164578063243321091161013e57806324332109146103b55780632d0335ab146103d15780632eb2c2d61461040e5780633408e47014610437576101cc565b806318160ddd146103345780631c75cfb41461035f57806320379ee51461038a576101cc565b80630731a369116101a05780630731a369146102735780630c53c51c1461029c5780630e89341c146102cc5780630f7e597014610309576101cc565b8062fdd58e146101ce57806301ffc9a71461020b57806306fdde0314610248576101cc565b366101cc57005b005b3480156101da57600080fd5b506101f560048036038101906101f0919061363d565b6106fd565b604051610202919061430b565b60405180910390f35b34801561021757600080fd5b50610232600480360381019061022d91906136e5565b6107c6565b60405161023f9190613f0c565b60405180910390f35b34801561025457600080fd5b5061025d6108cd565b60405161026a9190614009565b60405180910390f35b34801561027f57600080fd5b5061029a6004803603810190610295919061333d565b61090a565b005b6102b660048036038101906102b191906135ae565b61092c565b6040516102c39190613fe7565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190613737565b610b9e565b6040516103009190614009565b60405180910390f35b34801561031557600080fd5b5061031e610bb0565b60405161032b9190614009565b60405180910390f35b34801561034057600080fd5b50610349610be9565b604051610356919061430b565b60405180910390f35b34801561036b57600080fd5b50610374610bf3565b604051610381919061430b565b60405180910390f35b34801561039657600080fd5b5061039f610bf9565b6040516103ac9190613f27565b60405180910390f35b6103cf60048036038101906103ca9190613737565b610c03565b005b3480156103dd57600080fd5b506103f860048036038101906103f391906132d8565b610caf565b604051610405919061430b565b60405180910390f35b34801561041a57600080fd5b50610435600480360381019061043091906133d0565b610cf8565b005b34801561044357600080fd5b5061044c610d99565b604051610459919061430b565b60405180910390f35b34801561046e57600080fd5b50610477610da6565b005b34801561048557600080fd5b506104a0600480360381019061049b919061363d565b610ed1565b005b3480156104ae57600080fd5b506104b7610f69565b6040516104c49190614009565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190613679565b610fa6565b6040516105019190613eb3565b60405180910390f35b34801561051657600080fd5b5061051f611157565b005b34801561052d57600080fd5b506105366111df565b6040516105439190613d98565b60405180910390f35b34801561055857600080fd5b50610561611209565b60405161056e9190614009565b60405180910390f35b34801561058357600080fd5b5061059e60048036038101906105999190613572565b611246565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061351e565b6113c7565b005b3480156105d557600080fd5b506105f060048036038101906105eb91906133d0565b61145b565b6040516105fd9190613fcc565b60405180910390f35b34801561061257600080fd5b5061061b611470565b6040516106289190613f0c565b60405180910390f35b34801561063d57600080fd5b5061065860048036038101906106539190613301565b611479565b6040516106659190613f0c565b60405180910390f35b34801561067a57600080fd5b506106956004803603810190610690919061348f565b61150d565b6040516106a29190613fcc565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd919061348f565b611522565b005b3480156106e057600080fd5b506106fb60048036038101906106f691906132d8565b6115c3565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561076e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107659061408b565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006301ffc9a760e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085f575063d9b67a2660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ae5750630e89341c60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b156108bc57600190506108c8565b6108c5826116bb565b90505b919050565b60606040518060400160405280601081526020017f536f6363657220446f676520436c756200000000000000000000000000000000815250905090565b6109268484848460405180602001604052806000815250610cf8565b50505050565b606060006040518060600160405280600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018873ffffffffffffffffffffffffffffffffffffffff1681526020018781525090506109af8782878787611735565b6109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e59061422b565b60405180910390fd5b610a416001600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461183e90919063ffffffff16565b600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051610ab793929190613db3565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610aec929190613cf5565b604051602081830303815290604052604051610b089190613cde565b6000604051808303816000865af19150503d8060008114610b45576040519150601f19603f3d011682016040523d82523d6000602084013e610b4a565b606091505b509150915081610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b86906140cb565b60405180910390fd5b80935050505095945050505050565b6060610ba982611854565b9050919050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b6000612710905090565b60075481565b6000600454905090565b60008111610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d9061424b565b60405180910390fd5b34610c618266d19c2ff9bf800061189f90919063ffffffff16565b1115610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c999061406b565b60405180910390fd5b610cac33826118b5565b50565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d00611b6d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610d465750610d4585610d40611b6d565b611479565b5b610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c9061418b565b60405180910390fd5b610d928585858585611b75565b5050505050565b6000804690508091505090565b610dae611b6d565b73ffffffffffffffffffffffffffffffffffffffff16610dcc6111df565b73ffffffffffffffffffffffffffffffffffffffff1614610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e199061420b565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e4890613d83565b60006040518083038185875af1925050503d8060008114610e85576040519150601f19603f3d011682016040523d82523d6000602084013e610e8a565b606091505b5050905080610ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec59061412b565b60405180910390fd5b50565b610ed9611b6d565b73ffffffffffffffffffffffffffffffffffffffff16610ef76111df565b73ffffffffffffffffffffffffffffffffffffffff1614610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f449061420b565b60405180910390fd5b60008111610f5b576101f490505b610f6582826118b5565b5050565b60606040518060400160405280600781526020017f4552433131353500000000000000000000000000000000000000000000000000815250905090565b60608151835114610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe39061428b565b60405180910390fd5b6000835167ffffffffffffffff81111561102f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561105d5781602001602082028036833780820191505090505b50905060005b845181101561114c576110f68582815181106110a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518583815181106110e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516106fd565b82828151811061112f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080611145906146a9565b9050611063565b508091505092915050565b61115f611b6d565b73ffffffffffffffffffffffffffffffffffffffff1661117d6111df565b73ffffffffffffffffffffffffffffffffffffffff16146111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca9061420b565b60405180910390fd5b6111dd6000611ed5565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f5344430000000000000000000000000000000000000000000000000000000000815250905090565b8173ffffffffffffffffffffffffffffffffffffffff16611265611b6d565b73ffffffffffffffffffffffffffffffffffffffff1614156112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b39061426b565b60405180910390fd5b80600160006112c9611b6d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611376611b6d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113bb9190613f0c565b60405180910390a35050565b6113cf611b6d565b73ffffffffffffffffffffffffffffffffffffffff166113ed6111df565b73ffffffffffffffffffffffffffffffffffffffff1614611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a9061420b565b60405180910390fd5b61145782826114528451611f9b565b61207f565b5050565b600063bc197c8160e01b905095945050505050565b60006001905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600063f23a6e6160e01b905095945050505050565b61152a611b6d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611570575061156f8561156a611b6d565b611479565b5b6115af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a69061410b565b60405180910390fd5b6115bc858585858561237c565b5050505050565b6115cb611b6d565b73ffffffffffffffffffffffffffffffffffffffff166115e96111df565b73ffffffffffffffffffffffffffffffffffffffff161461163f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116369061420b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a6906140ab565b60405180910390fd5b6116b881611ed5565b50565b60007f4e2312e0000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061172e575061172d826125fe565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179d9061414b565b60405180910390fd5b60016117b96117b4876126e0565b612748565b838686604051600081526020016040526040516117d99493929190613f87565b6020604051602081039080840390855afa1580156117fb573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b6000818361184c9190614484565b905092915050565b60606040518060800160405280604c8152602001615022604c913961187883612781565b604051602001611889929190613d1d565b6040516020818303038152906040529050919050565b600081836118ad919061450b565b905092915050565b600080600754836118c69190614484565b905061271081111561190d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611904906142eb565b60405180910390fd5b60008367ffffffffffffffff81111561194f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561197d5781602001602082028036833780820191505090505b50905060008467ffffffffffffffff8111156119c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156119f05781602001602082028036833780820191505090505b5090505b826007541015611b4a57600754828581518110611a3a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250506001818581518110611a81577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250506000806000600754815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b18906141eb565b60405180910390fd5b83611b2b906146a9565b935060076000815480929190611b40906146a9565b91905055506119f4565b611b658683836040518060200160405280600081525061292e565b505050505050565b600033905090565b8151835114611bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb0906142ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c209061416b565b60405180910390fd5b6000611c33611b6d565b9050611c43818787878787612b98565b60005b8451811015611e40576000858281518110611c8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611ccf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d67906141cb565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e259190614484565b9250508190555050505080611e39906146a9565b9050611c46565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611eb7929190613ed5565b60405180910390a4611ecd818787878787612ba0565b505050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b606060008267ffffffffffffffff811115611fdf577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561200d5781602001602082028036833780820191505090505b50905060005b83811015612075576001828281518110612056577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061206d906146a9565b915050612013565b5080915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e6906141ab565b60405180910390fd5b8051825114612133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212a906142ab565b60405180910390fd5b600061213d611b6d565b905061215d81856000868660405180602001604052806000815250612b98565b60005b83518110156122f65760008482815181106121a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106121e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561228a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612281906140eb565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806122ee906146a9565b915050612160565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161236e929190613ed5565b60405180910390a450505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e39061416b565b60405180910390fd5b60006123f6611b6d565b905061241681878761240788612d87565b61241088612d87565b87612b98565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156124ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a4906141cb565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125629190614484565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516125df929190614326565b60405180910390a46125f5828888888888612e4d565b50505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126c957507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806126d957506126d882613034565b5b9050919050565b600060405180608001604052806043815260200161506e60439139805190602001208260000151836020015184604001518051906020012060405160200161272b9493929190613f42565b604051602081830303815290604052805190602001209050919050565b6000612752610bf9565b82604051602001612764929190613d4c565b604051602081830303815290604052805190602001209050919050565b606060008214156127c9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612929565b600082905060005b600082146127fb5780806127e4906146a9565b915050600a826127f491906144da565b91506127d1565b60008167ffffffffffffffff81111561283d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561286f5781602001600182028036833780820191505090505b5090505b60008514612922576001826128889190614565565b9150600a856128979190614720565b60306128a39190614484565b60f81b8183815181106128df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561291b91906144da565b9450612873565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561299e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612995906142cb565b60405180910390fd5b81518351146129e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d9906142ab565b60405180910390fd5b60006129ec611b6d565b90506129fd81600087878787612b98565b60005b8451811015612b0257838181518110612a42577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600080878481518110612a86577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ae89190614484565b925050819055508080612afa906146a9565b915050612a00565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612b7a929190613ed5565b60405180910390a4612b9181600087878787612ba0565b5050505050565b505050505050565b612bbf8473ffffffffffffffffffffffffffffffffffffffff1661309e565b15612d7f578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612c05959493929190613df1565b602060405180830381600087803b158015612c1f57600080fd5b505af1925050508015612c5057506040513d601f19601f82011682018060405250810190612c4d919061370e565b60015b612cf657612c5c6147de565b806308c379a01415612cb95750612c71614f01565b80612c7c5750612cbb565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb09190614009565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ced9061402b565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d749061404b565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612dcc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612dfa5781602001602082028036833780820191505090505b5090508281600081518110612e38577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b612e6c8473ffffffffffffffffffffffffffffffffffffffff1661309e565b1561302c578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612eb2959493929190613e59565b602060405180830381600087803b158015612ecc57600080fd5b505af1925050508015612efd57506040513d601f19601f82011682018060405250810190612efa919061370e565b60015b612fa357612f096147de565b806308c379a01415612f665750612f1e614f01565b80612f295750612f68565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5d9190614009565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9a9061402b565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461302a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130219061404b565b60405180910390fd5b505b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080823b905060008111915050919050565b60006130c46130bf84614374565b61434f565b905080838252602082019050828560208602820111156130e357600080fd5b60005b8581101561311357816130f988826131c7565b8452602084019350602083019250506001810190506130e6565b5050509392505050565b600061313061312b846143a0565b61434f565b9050808382526020820190508285602086028201111561314f57600080fd5b60005b8581101561317f578161316588826132ae565b845260208401935060208301925050600181019050613152565b5050509392505050565b600061319c613197846143cc565b61434f565b9050828152602081018484840111156131b457600080fd5b6131bf848285614636565b509392505050565b6000813590506131d681614f97565b92915050565b600082601f8301126131ed57600080fd5b81356131fd8482602086016130b1565b91505092915050565b600082601f83011261321757600080fd5b813561322784826020860161311d565b91505092915050565b60008135905061323f81614fae565b92915050565b60008135905061325481614fc5565b92915050565b60008135905061326981614fdc565b92915050565b60008151905061327e81614fdc565b92915050565b600082601f83011261329557600080fd5b81356132a5848260208601613189565b91505092915050565b6000813590506132bd81614ff3565b92915050565b6000813590506132d28161500a565b92915050565b6000602082840312156132ea57600080fd5b60006132f8848285016131c7565b91505092915050565b6000806040838503121561331457600080fd5b6000613322858286016131c7565b9250506020613333858286016131c7565b9150509250929050565b6000806000806080858703121561335357600080fd5b6000613361878288016131c7565b9450506020613372878288016131c7565b935050604085013567ffffffffffffffff81111561338f57600080fd5b61339b87828801613206565b925050606085013567ffffffffffffffff8111156133b857600080fd5b6133c487828801613206565b91505092959194509250565b600080600080600060a086880312156133e857600080fd5b60006133f6888289016131c7565b9550506020613407888289016131c7565b945050604086013567ffffffffffffffff81111561342457600080fd5b61343088828901613206565b935050606086013567ffffffffffffffff81111561344d57600080fd5b61345988828901613206565b925050608086013567ffffffffffffffff81111561347657600080fd5b61348288828901613284565b9150509295509295909350565b600080600080600060a086880312156134a757600080fd5b60006134b5888289016131c7565b95505060206134c6888289016131c7565b94505060406134d7888289016132ae565b93505060606134e8888289016132ae565b925050608086013567ffffffffffffffff81111561350557600080fd5b61351188828901613284565b9150509295509295909350565b6000806040838503121561353157600080fd5b600061353f858286016131c7565b925050602083013567ffffffffffffffff81111561355c57600080fd5b61356885828601613206565b9150509250929050565b6000806040838503121561358557600080fd5b6000613593858286016131c7565b92505060206135a485828601613230565b9150509250929050565b600080600080600060a086880312156135c657600080fd5b60006135d4888289016131c7565b955050602086013567ffffffffffffffff8111156135f157600080fd5b6135fd88828901613284565b945050604061360e88828901613245565b935050606061361f88828901613245565b9250506080613630888289016132c3565b9150509295509295909350565b6000806040838503121561365057600080fd5b600061365e858286016131c7565b925050602061366f858286016132ae565b9150509250929050565b6000806040838503121561368c57600080fd5b600083013567ffffffffffffffff8111156136a657600080fd5b6136b2858286016131dc565b925050602083013567ffffffffffffffff8111156136cf57600080fd5b6136db85828601613206565b9150509250929050565b6000602082840312156136f757600080fd5b60006137058482850161325a565b91505092915050565b60006020828403121561372057600080fd5b600061372e8482850161326f565b91505092915050565b60006020828403121561374957600080fd5b6000613757848285016132ae565b91505092915050565b600061376c8383613cb1565b60208301905092915050565b613781816145ab565b82525050565b61379081614599565b82525050565b6137a76137a282614599565b6146f2565b82525050565b60006137b88261440d565b6137c2818561443b565b93506137cd836143fd565b8060005b838110156137fe5781516137e58882613760565b97506137f08361442e565b9250506001810190506137d1565b5085935050505092915050565b613814816145bd565b82525050565b613823816145c9565b82525050565b61383a613835826145c9565b614704565b82525050565b613849816145d3565b82525050565b600061385a82614418565b613864818561444c565b9350613874818560208601614645565b61387d81614800565b840191505092915050565b600061389382614418565b61389d818561445d565b93506138ad818560208601614645565b80840191505092915050565b60006138c482614423565b6138ce8185614468565b93506138de818560208601614645565b6138e781614800565b840191505092915050565b60006138fd82614423565b6139078185614479565b9350613917818560208601614645565b80840191505092915050565b6000613930603483614468565b915061393b8261482b565b604082019050919050565b6000613953602883614468565b915061395e8261487a565b604082019050919050565b6000613976602283614468565b9150613981826148c9565b604082019050919050565b6000613999602b83614468565b91506139a482614918565b604082019050919050565b60006139bc602683614468565b91506139c782614967565b604082019050919050565b60006139df601c83614468565b91506139ea826149b6565b602082019050919050565b6000613a02602483614468565b9150613a0d826149df565b604082019050919050565b6000613a25600283614479565b9150613a3082614a2e565b600282019050919050565b6000613a48602983614468565b9150613a5382614a57565b604082019050919050565b6000613a6b603a83614468565b9150613a7682614aa6565b604082019050919050565b6000613a8e602583614468565b9150613a9982614af5565b604082019050919050565b6000613ab1602583614468565b9150613abc82614b44565b604082019050919050565b6000613ad4603283614468565b9150613adf82614b93565b604082019050919050565b6000613af7602383614468565b9150613b0282614be2565b604082019050919050565b6000613b1a602a83614468565b9150613b2582614c31565b604082019050919050565b6000613b3d601c83614468565b9150613b4882614c80565b602082019050919050565b6000613b60600583614479565b9150613b6b82614ca9565b600582019050919050565b6000613b83602083614468565b9150613b8e82614cd2565b602082019050919050565b6000613ba6602183614468565b9150613bb182614cfb565b604082019050919050565b6000613bc9601d83614468565b9150613bd482614d4a565b602082019050919050565b6000613bec60008361445d565b9150613bf782614d73565b600082019050919050565b6000613c0f602983614468565b9150613c1a82614d76565b604082019050919050565b6000613c32602983614468565b9150613c3d82614dc5565b604082019050919050565b6000613c55602883614468565b9150613c6082614e14565b604082019050919050565b6000613c78602183614468565b9150613c8382614e63565b604082019050919050565b6000613c9b603a83614468565b9150613ca682614eb2565b604082019050919050565b613cba8161461f565b82525050565b613cc98161461f565b82525050565b613cd881614629565b82525050565b6000613cea8284613888565b915081905092915050565b6000613d018285613888565b9150613d0d8284613796565b6014820191508190509392505050565b6000613d2982856138f2565b9150613d3582846138f2565b9150613d4082613b53565b91508190509392505050565b6000613d5782613a18565b9150613d638285613829565b602082019150613d738284613829565b6020820191508190509392505050565b6000613d8e82613bdf565b9150819050919050565b6000602082019050613dad6000830184613787565b92915050565b6000606082019050613dc86000830186613787565b613dd56020830185613778565b8181036040830152613de7818461384f565b9050949350505050565b600060a082019050613e066000830188613787565b613e136020830187613787565b8181036040830152613e2581866137ad565b90508181036060830152613e3981856137ad565b90508181036080830152613e4d818461384f565b90509695505050505050565b600060a082019050613e6e6000830188613787565b613e7b6020830187613787565b613e886040830186613cc0565b613e956060830185613cc0565b8181036080830152613ea7818461384f565b90509695505050505050565b60006020820190508181036000830152613ecd81846137ad565b905092915050565b60006040820190508181036000830152613eef81856137ad565b90508181036020830152613f0381846137ad565b90509392505050565b6000602082019050613f21600083018461380b565b92915050565b6000602082019050613f3c600083018461381a565b92915050565b6000608082019050613f57600083018761381a565b613f646020830186613cc0565b613f716040830185613787565b613f7e606083018461381a565b95945050505050565b6000608082019050613f9c600083018761381a565b613fa96020830186613ccf565b613fb6604083018561381a565b613fc3606083018461381a565b95945050505050565b6000602082019050613fe16000830184613840565b92915050565b60006020820190508181036000830152614001818461384f565b905092915050565b6000602082019050818103600083015261402381846138b9565b905092915050565b6000602082019050818103600083015261404481613923565b9050919050565b6000602082019050818103600083015261406481613946565b9050919050565b6000602082019050818103600083015261408481613969565b9050919050565b600060208201905081810360008301526140a48161398c565b9050919050565b600060208201905081810360008301526140c4816139af565b9050919050565b600060208201905081810360008301526140e4816139d2565b9050919050565b60006020820190508181036000830152614104816139f5565b9050919050565b6000602082019050818103600083015261412481613a3b565b9050919050565b6000602082019050818103600083015261414481613a5e565b9050919050565b6000602082019050818103600083015261416481613a81565b9050919050565b6000602082019050818103600083015261418481613aa4565b9050919050565b600060208201905081810360008301526141a481613ac7565b9050919050565b600060208201905081810360008301526141c481613aea565b9050919050565b600060208201905081810360008301526141e481613b0d565b9050919050565b6000602082019050818103600083015261420481613b30565b9050919050565b6000602082019050818103600083015261422481613b76565b9050919050565b6000602082019050818103600083015261424481613b99565b9050919050565b6000602082019050818103600083015261426481613bbc565b9050919050565b6000602082019050818103600083015261428481613c02565b9050919050565b600060208201905081810360008301526142a481613c25565b9050919050565b600060208201905081810360008301526142c481613c48565b9050919050565b600060208201905081810360008301526142e481613c6b565b9050919050565b6000602082019050818103600083015261430481613c8e565b9050919050565b60006020820190506143206000830184613cc0565b92915050565b600060408201905061433b6000830185613cc0565b6143486020830184613cc0565b9392505050565b600061435961436a565b90506143658282614678565b919050565b6000604051905090565b600067ffffffffffffffff82111561438f5761438e6147af565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156143bb576143ba6147af565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156143e7576143e66147af565b5b6143f082614800565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061448f8261461f565b915061449a8361461f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144cf576144ce614751565b5b828201905092915050565b60006144e58261461f565b91506144f08361461f565b925082614500576144ff614780565b5b828204905092915050565b60006145168261461f565b91506145218361461f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561455a57614559614751565b5b828202905092915050565b60006145708261461f565b915061457b8361461f565b92508282101561458e5761458d614751565b5b828203905092915050565b60006145a4826145ff565b9050919050565b60006145b6826145ff565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614663578082015181840152602081019050614648565b83811115614672576000848401525b50505050565b61468182614800565b810181811067ffffffffffffffff821117156146a05761469f6147af565b5b80604052505050565b60006146b48261461f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146e7576146e6614751565b5b600182019050919050565b60006146fd8261470e565b9050919050565b6000819050919050565b600061471982614811565b9050919050565b600061472b8261461f565b91506147368361461f565b92508261474657614745614780565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156147fd5760046000803e6147fa60005161481e565b90505b90565b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f536f7272792c2073656e64696e6720696e636f7272656374206574682076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000600082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360008201527f49474e4552000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206578697374656420746f6b656e20696400000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360008201527f6800000000000000000000000000000000000000000000000000000000000000602082015250565b7f636f756e742073686f756c64206265206d6f7265207468616e206f6e65000000600082015250565b50565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f7272792c2052657175657374204d6f7265207468616e20546f74616c537560008201527f70706c792c20506c65617365204368616e6765204e756d626572000000000000602082015250565b600060443d1015614f1157614f94565b614f1961436a565b60043d036004823e80513d602482011167ffffffffffffffff82111715614f41575050614f94565b808201805167ffffffffffffffff811115614f5f5750505050614f94565b80602083010160043d038501811115614f7c575050505050614f94565b614f8b82602001850186614678565b82955050505050505b90565b614fa081614599565b8114614fab57600080fd5b50565b614fb7816145bd565b8114614fc257600080fd5b50565b614fce816145c9565b8114614fd957600080fd5b50565b614fe5816145d3565b8114614ff057600080fd5b50565b614ffc8161461f565b811461500757600080fd5b50565b61501381614629565b811461501e57600080fd5b5056fe68747470733a2f2f736f63636572646f6765636c75626e66742e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6d65746164617461732f7364632d6d657461646174612d4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220dcc39fa1c627f72dc9c2ff96f4c7e4ad8e4f3768bee482c46c360bef1c72f68d64736f6c63430008040033

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.