ETH Price: $2,979.56 (+2.04%)
Gas: 1 Gwei

Token

JapanDao (JDN)
 

Overview

Max Total Supply

0 JDN

Holders

1,151

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
orangette.eth
0x25CEAc94604b3EB3a751aD751eB97a1e3BBf702a
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:
JapanDAO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : japandao.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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/IERC1155Receiver.sol



pragma solidity ^0.8.0;


/**
 * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/IERC1155.sol



pragma solidity ^0.8.0;


/**
 * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol



pragma solidity ^0.8.0;


/**
 * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/ERC1155.sol



pragma solidity ^0.8.0;







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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

        return array;
    }
}

pragma solidity ^0.8.0;

contract JapanDAO is ERC1155, Ownable {
    
    string public name;
    string public symbol;
    bool public paused = false;
    bool public onlyWhitelisted = true;
    mapping(uint => string) public tokenURI;
    address public constant withdrawAddress = 0x7F429dc5FFDa5374bb09a1Ba390FfebdeA4797a4;

    struct phaseStrct {
        uint256 totalSupply;
        uint256 maxSupply;
        uint256 cost;
        uint256 maxMintAmount;
        mapping(address => uint256) whitelistUserAmount;
    }
    uint256 public phaseId = 1;
    mapping(uint256 => phaseStrct) public phaseData;

    constructor() ERC1155("") {
        name = "JapanDao";
        symbol = "JDN";
        phaseData[1].maxSupply = 1000;
        phaseData[1].cost = 0;
        phaseData[1].maxMintAmount = 5;
        tokenURI[1] = "ipfs://QmRxbAzfBB8oBRcTjDwn1VaBfmdSWkkyuMVJhZAq3hJfvt/1.json";
    }

    function setPhaseData( uint256 _id , uint256 _maxSupply , uint256 _cost , uint256 _maxMintAmount ) external onlyOwner {
        phaseData[_id].maxSupply = _maxSupply;
        phaseData[_id].cost = _cost;
        phaseData[_id].maxMintAmount = _maxMintAmount;
    }

    function setPhaseId(uint256 _id) external onlyOwner {
        phaseId = _id;
    }

    function mint(uint256 _mintAmount)  external payable {
        require(!paused, "the contract is paused");
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(_mintAmount <= phaseData[phaseId].maxMintAmount, "max mint amount per session exceeded");
        require(phaseData[phaseId].totalSupply + _mintAmount <= phaseData[phaseId].maxSupply, "max NFT limit exceeded");
        require(msg.value >= phaseData[phaseId].cost * _mintAmount, "insufficient funds");
        if(onlyWhitelisted == true) {
            require(phaseData[phaseId].whitelistUserAmount[msg.sender] != 0, "user is not whitelisted");
            require(_mintAmount <= phaseData[phaseId].whitelistUserAmount[msg.sender], "max NFT per address exceeded");
        }

        //check end

        if(onlyWhitelisted == true) {
            phaseData[phaseId].whitelistUserAmount[msg.sender] -= _mintAmount;
        }
        phaseData[phaseId].totalSupply += _mintAmount;
        _mint(msg.sender, phaseId , _mintAmount, "");
    }

    function setWhitelist(uint256 _id , address[] memory addresses, uint256[] memory saleSupplies) public onlyOwner {
        require(addresses.length == saleSupplies.length);
        for (uint256 i = 0; i < addresses.length; i++) {
            phaseData[_id].whitelistUserAmount[addresses[i]] = saleSupplies[i];
        }
    }

    function ownermint(address _to, uint _id, uint _amount) external onlyOwner {
        _mint(_to, _id, _amount, "");
    }

    function mintBatch(address _to, uint[] memory _ids, uint[] memory _amounts) external onlyOwner {
        _mintBatch(_to, _ids, _amounts, "");
    }

    function burn(uint _id, uint _amount) external {
        _burn(msg.sender, _id, _amount);
    }

    function burnBatch(uint[] memory _ids, uint[] memory _amounts) external {
        _burnBatch(msg.sender, _ids, _amounts);
    }

    function burnForMint(address _from, uint[] memory _burnIds, uint[] memory _burnAmounts, uint[] memory _mintIds, uint[] memory _mintAmounts) external onlyOwner {
        _burnBatch(_from, _burnIds, _burnAmounts);
        _mintBatch(_from, _mintIds, _mintAmounts, "");
    }

    function setURI(uint _id, string memory _uri) external onlyOwner {
        tokenURI[_id] = _uri;
        emit URI(_uri, _id);
    }

    function uri(uint _id) public override view returns (string memory) {
        return tokenURI[_id];
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }


    function getTotalSupply() external view returns(uint256) {
        return phaseData[phaseId].totalSupply;
    }

    function getMaxMintAmount() external view returns(uint256) {
        return phaseData[phaseId].maxMintAmount;
    }

    function getWhitelistUserAmount(address _user) external view returns(uint256) {
        return phaseData[phaseId].whitelistUserAmount[_user];
    }

    function withdraw() public onlyOwner {
        (bool os, ) = payable(withdrawAddress).call{value: address(this).balance}('');
        require(os);
    }



}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256[]","name":"_burnIds","type":"uint256[]"},{"internalType":"uint256[]","name":"_burnAmounts","type":"uint256[]"},{"internalType":"uint256[]","name":"_mintIds","type":"uint256[]"},{"internalType":"uint256[]","name":"_mintAmounts","type":"uint256[]"}],"name":"burnForMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMaxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getWhitelistUserAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ownermint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"phaseData","outputs":[{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"uint256","name":"maxMintAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setPhaseData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"setPhaseId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"saleSupplies","type":"uint256[]"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526000600660006101000a81548160ff0219169083151502179055506001600660016101000a81548160ff02191690831515021790555060016008553480156200004c57600080fd5b50604051806020016040528060008152506200006e81620001cd60201b60201c565b506200008f62000083620001e960201b60201c565b620001f160201b60201c565b6040518060400160405280600881526020017f4a6170616e44616f00000000000000000000000000000000000000000000000081525060049080519060200190620000dc929190620002b7565b506040518060400160405280600381526020017f4a444e0000000000000000000000000000000000000000000000000000000000815250600590805190602001906200012a929190620002b7565b506103e8600960006001815260200190815260200160002060010181905550600060096000600181526020019081526020016000206002018190555060056009600060018152602001908152602001600020600301819055506040518060600160405280603c8152602001620054fb603c913960076000600181526020019081526020016000209080519060200190620001c6929190620002b7565b50620003cc565b8060029080519060200190620001e5929190620002b7565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c59062000367565b90600052602060002090601f016020900481019282620002e9576000855562000335565b82601f106200030457805160ff191683800117855562000335565b8280016001018555821562000335579182015b828111156200033457825182559160200191906001019062000317565b5b50905062000344919062000348565b5090565b5b808211156200036357600081600090555060010162000349565b5090565b600060028204905060018216806200038057607f821691505b602082108114156200039757620003966200039d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61511f80620003dc6000396000f3fe6080604052600436106101f85760003560e01c80638da5cb5b1161010d578063c4e41b22116100a0578063d9c7f8f11161006f578063d9c7f8f1146106fb578063e985e9c51461073b578063f242432a14610778578063f2fde38b146107a1578063fdf03cd5146107ca576101f8565b8063c4e41b221461063f578063c87b56dd1461066a578063d6e7b8e4146106a7578063d81d0a15146106d2576101f8565b8063a22cb465116100dc578063a22cb46514610587578063af808621146105b0578063b390c0ab146105d9578063ba77d77314610602576101f8565b80638da5cb5b146104ea57806395d89b41146105155780639c70b51214610540578063a0712d681461056b576101f8565b80633ccfd60b1161019057806358303b101161015f57806358303b101461042b5780635c975abb14610456578063715018a61461048157806383ca4b6f14610498578063862440e2146104c1576101f8565b80633ccfd60b1461038557806340b454181461039c5780634e1273f4146103c5578063510f410414610402576101f8565b80630e89341c116101cc5780630e89341c146102cb5780631581b6001461030857806326f4e277146103335780632eb2c2d61461035c576101f8565b8062fdd58e146101fd57806301ffc9a71461023a57806302329a291461027757806306fdde03146102a0575b600080fd5b34801561020957600080fd5b50610224600480360381019061021f919061389f565b6107f3565b60405161023191906144f5565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190613a4f565b6108bc565b60405161026e91906141f8565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190613a22565b61099e565b005b3480156102ac57600080fd5b506102b5610a37565b6040516102c29190614213565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190613aa9565b610ac5565b6040516102ff9190614213565b60405180910390f35b34801561031457600080fd5b5061031d610b6a565b60405161032a91906140c2565b60405180910390f35b34801561033f57600080fd5b5061035a600480360381019061035591906138df565b610b82565b005b34801561036857600080fd5b50610383600480360381019061037e9190613583565b610c1e565b005b34801561039157600080fd5b5061039a610cbf565b005b3480156103a857600080fd5b506103c360048036038101906103be9190613ad6565b610dc8565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190613932565b610f03565b6040516103f9919061419f565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190613774565b61101c565b005b34801561043757600080fd5b506104406110c5565b60405161044d91906144f5565b60405180910390f35b34801561046257600080fd5b5061046b6110cb565b60405161047891906141f8565b60405180910390f35b34801561048d57600080fd5b506104966110de565b005b3480156104a457600080fd5b506104bf60048036038101906104ba91906139aa565b611166565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190613b61565b611175565b005b3480156104f657600080fd5b506104ff611255565b60405161050c91906140c2565b60405180910390f35b34801561052157600080fd5b5061052a61127f565b6040516105379190614213565b60405180910390f35b34801561054c57600080fd5b5061055561130d565b60405161056291906141f8565b60405180910390f35b61058560048036038101906105809190613aa9565b611320565b005b34801561059357600080fd5b506105ae60048036038101906105a9919061385f565b611718565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190613bfd565b61172e565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190613bbd565b611801565b005b34801561060e57600080fd5b5061062960048036038101906106249190613516565b611810565b60405161063691906144f5565b60405180910390f35b34801561064b57600080fd5b5061065461186f565b60405161066191906144f5565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190613aa9565b61188f565b60405161069e9190614213565b60405180910390f35b3480156106b357600080fd5b506106bc61192f565b6040516106c991906144f5565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f491906136e9565b61194f565b005b34801561070757600080fd5b50610722600480360381019061071d9190613aa9565b6119eb565b6040516107329493929190614539565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190613543565b611a1b565b60405161076f91906141f8565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a9190613652565b611aaf565b005b3480156107ad57600080fd5b506107c860048036038101906107c39190613516565b611b50565b005b3480156107d657600080fd5b506107f160048036038101906107ec9190613aa9565b611c48565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085b90614275565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098757507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610997575061099682611cce565b5b9050919050565b6109a6611d38565b73ffffffffffffffffffffffffffffffffffffffff166109c4611255565b73ffffffffffffffffffffffffffffffffffffffff1614610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a11906143d5565b60405180910390fd5b80600660006101000a81548160ff02191690831515021790555050565b60048054610a4490614873565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7090614873565b8015610abd5780601f10610a9257610100808354040283529160200191610abd565b820191906000526020600020905b815481529060010190602001808311610aa057829003601f168201915b505050505081565b6060600760008381526020019081526020016000208054610ae590614873565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1190614873565b8015610b5e5780601f10610b3357610100808354040283529160200191610b5e565b820191906000526020600020905b815481529060010190602001808311610b4157829003601f168201915b50505050509050919050565b737f429dc5ffda5374bb09a1ba390ffebdea4797a481565b610b8a611d38565b73ffffffffffffffffffffffffffffffffffffffff16610ba8611255565b73ffffffffffffffffffffffffffffffffffffffff1614610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf5906143d5565b60405180910390fd5b610c1983838360405180602001604052806000815250611d40565b505050565b610c26611d38565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c6c5750610c6b85610c66611d38565b611a1b565b5b610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca290614335565b60405180910390fd5b610cb88585858585611ed6565b5050505050565b610cc7611d38565b73ffffffffffffffffffffffffffffffffffffffff16610ce5611255565b73ffffffffffffffffffffffffffffffffffffffff1614610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d32906143d5565b60405180910390fd5b6000737f429dc5ffda5374bb09a1ba390ffebdea4797a473ffffffffffffffffffffffffffffffffffffffff1647604051610d75906140ad565b60006040518083038185875af1925050503d8060008114610db2576040519150601f19603f3d011682016040523d82523d6000602084013e610db7565b606091505b5050905080610dc557600080fd5b50565b610dd0611d38565b73ffffffffffffffffffffffffffffffffffffffff16610dee611255565b73ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906143d5565b60405180910390fd5b8051825114610e5257600080fd5b60005b8251811015610efd57818181518110610e7157610e7061497d565b5b6020026020010151600960008681526020019081526020016000206004016000858481518110610ea457610ea361497d565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610ef5906148d6565b915050610e55565b50505050565b60608151835114610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4090614455565b60405180910390fd5b6000835167ffffffffffffffff811115610f6657610f656149ac565b5b604051908082528060200260200182016040528015610f945781602001602082028036833780820191505090505b50905060005b845181101561101157610fe1858281518110610fb957610fb861497d565b5b6020026020010151858381518110610fd457610fd361497d565b5b60200260200101516107f3565b828281518110610ff457610ff361497d565b5b6020026020010181815250508061100a906148d6565b9050610f9a565b508091505092915050565b611024611d38565b73ffffffffffffffffffffffffffffffffffffffff16611042611255565b73ffffffffffffffffffffffffffffffffffffffff1614611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f906143d5565b60405180910390fd5b6110a38585856121ea565b6110be8583836040518060200160405280600081525061249b565b5050505050565b60085481565b600660009054906101000a900460ff1681565b6110e6611d38565b73ffffffffffffffffffffffffffffffffffffffff16611104611255565b73ffffffffffffffffffffffffffffffffffffffff161461115a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611151906143d5565b60405180910390fd5b61116460006126b9565b565b6111713383836121ea565b5050565b61117d611d38565b73ffffffffffffffffffffffffffffffffffffffff1661119b611255565b73ffffffffffffffffffffffffffffffffffffffff16146111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e8906143d5565b60405180910390fd5b806007600084815260200190815260200160002090805190602001906112189291906131ee565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b826040516112499190614213565b60405180910390a25050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6005805461128c90614873565b80601f01602080910402602001604051908101604052809291908181526020018280546112b890614873565b80156113055780601f106112da57610100808354040283529160200191611305565b820191906000526020600020905b8154815290600101906020018083116112e857829003601f168201915b505050505081565b600660019054906101000a900460ff1681565b600660009054906101000a900460ff1615611370576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611367906143f5565b60405180910390fd5b600081116113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa906144d5565b60405180910390fd5b6009600060085481526020019081526020016000206003015481111561140e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140590614375565b60405180910390fd5b60096000600854815260200190815260200160002060010154816009600060085481526020019081526020016000206000015461144b91906146d9565b111561148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148390614355565b60405180910390fd5b80600960006008548152602001908152602001600020600201546114b0919061472f565b3410156114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e990614415565b60405180910390fd5b60011515600660019054906101000a900460ff161515141561164057600060096000600854815260200190815260200160002060040160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90614475565b60405180910390fd5b60096000600854815260200190815260200160002060040160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481111561163f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611636906142f5565b60405180910390fd5b5b60011515600660019054906101000a900460ff16151514156116c9578060096000600854815260200190815260200160002060040160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116c19190614789565b925050819055505b8060096000600854815260200190815260200160002060000160008282546116f191906146d9565b92505081905550611715336008548360405180602001604052806000815250611d40565b50565b61172a611723611d38565b838361277f565b5050565b611736611d38565b73ffffffffffffffffffffffffffffffffffffffff16611754611255565b73ffffffffffffffffffffffffffffffffffffffff16146117aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a1906143d5565b60405180910390fd5b82600960008681526020019081526020016000206001018190555081600960008681526020019081526020016000206002018190555080600960008681526020019081526020016000206003018190555050505050565b61180c3383836128ec565b5050565b600060096000600854815260200190815260200160002060040160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600060096000600854815260200190815260200160002060000154905090565b600760205280600052604060002060009150905080546118ae90614873565b80601f01602080910402602001604051908101604052809291908181526020018280546118da90614873565b80156119275780601f106118fc57610100808354040283529160200191611927565b820191906000526020600020905b81548152906001019060200180831161190a57829003601f168201915b505050505081565b600060096000600854815260200190815260200160002060030154905090565b611957611d38565b73ffffffffffffffffffffffffffffffffffffffff16611975611255565b73ffffffffffffffffffffffffffffffffffffffff16146119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c2906143d5565b60405180910390fd5b6119e68383836040518060200160405280600081525061249b565b505050565b60096020528060005260406000206000915090508060000154908060010154908060020154908060030154905084565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ab7611d38565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611afd5750611afc85611af7611d38565b611a1b565b5b611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b33906142d5565b60405180910390fd5b611b498585858585612b09565b5050505050565b611b58611d38565b73ffffffffffffffffffffffffffffffffffffffff16611b76611255565b73ffffffffffffffffffffffffffffffffffffffff1614611bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc3906143d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3390614295565b60405180910390fd5b611c45816126b9565b50565b611c50611d38565b73ffffffffffffffffffffffffffffffffffffffff16611c6e611255565b73ffffffffffffffffffffffffffffffffffffffff1614611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb906143d5565b60405180910390fd5b8060088190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da7906144b5565b60405180910390fd5b6000611dba611d38565b9050611ddb81600087611dcc88612d8b565b611dd588612d8b565b87612e05565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e3a91906146d9565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611eb8929190614510565b60405180910390a4611ecf81600087878787612e0d565b5050505050565b8151835114611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1190614495565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8190614315565b60405180910390fd5b6000611f94611d38565b9050611fa4818787878787612e05565b60005b8451811015612155576000858281518110611fc557611fc461497d565b5b602002602001015190506000858381518110611fe457611fe361497d565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207c906143b5565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461213a91906146d9565b925050819055505050508061214e906148d6565b9050611fa7565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516121cc9291906141c1565b60405180910390a46121e2818787878787612ff4565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190614395565b60405180910390fd5b805182511461229e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229590614495565b60405180910390fd5b60006122a8611d38565b90506122c881856000868660405180602001604052806000815250612e05565b60005b83518110156124155760008482815181106122e9576122e861497d565b5b6020026020010151905060008483815181106123085761230761497d565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a0906142b5565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050808061240d906148d6565b9150506122cb565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161248d9291906141c1565b60405180910390a450505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561250b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612502906144b5565b60405180910390fd5b815183511461254f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254690614495565b60405180910390fd5b6000612559611d38565b905061256a81600087878787612e05565b60005b8451811015612623578381815181106125895761258861497d565b5b60200260200101516000808784815181106125a7576125a661497d565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461260991906146d9565b92505081905550808061261b906148d6565b91505061256d565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161269b9291906141c1565b60405180910390a46126b281600087878787612ff4565b5050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e590614435565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128df91906141f8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561295c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295390614395565b60405180910390fd5b6000612966611d38565b90506129968185600061297887612d8b565b61298187612d8b565b60405180602001604052806000815250612e05565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a24906142b5565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612afa929190614510565b60405180910390a45050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7090614315565b60405180910390fd5b6000612b83611d38565b9050612ba3818787612b9488612d8b565b612b9d88612d8b565b87612e05565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c31906143b5565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cef91906146d9565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612d6c929190614510565b60405180910390a4612d82828888888888612e0d565b50505050505050565b60606000600167ffffffffffffffff811115612daa57612da96149ac565b5b604051908082528060200260200182016040528015612dd85781602001602082028036833780820191505090505b5090508281600081518110612df057612def61497d565b5b60200260200101818152505080915050919050565b505050505050565b612e2c8473ffffffffffffffffffffffffffffffffffffffff166131db565b15612fec578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612e72959493929190614145565b602060405180830381600087803b158015612e8c57600080fd5b505af1925050508015612ebd57506040513d601f19601f82011682018060405250810190612eba9190613a7c565b60015b612f6357612ec96149db565b806308c379a01415612f265750612ede614ff7565b80612ee95750612f28565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1d9190614213565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5a90614235565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe190614255565b60405180910390fd5b505b505050505050565b6130138473ffffffffffffffffffffffffffffffffffffffff166131db565b156131d3578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016130599594939291906140dd565b602060405180830381600087803b15801561307357600080fd5b505af19250505080156130a457506040513d601f19601f820116820180604052508101906130a19190613a7c565b60015b61314a576130b06149db565b806308c379a0141561310d57506130c5614ff7565b806130d0575061310f565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131049190614213565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314190614235565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146131d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c890614255565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b8280546131fa90614873565b90600052602060002090601f01602090048101928261321c5760008555613263565b82601f1061323557805160ff1916838001178555613263565b82800160010185558215613263579182015b82811115613262578251825591602001919060010190613247565b5b5090506132709190613274565b5090565b5b8082111561328d576000816000905550600101613275565b5090565b60006132a461329f846145a3565b61457e565b905080838252602082019050828560208602820111156132c7576132c6614a02565b5b60005b858110156132f757816132dd88826133f5565b8452602084019350602083019250506001810190506132ca565b5050509392505050565b600061331461330f846145cf565b61457e565b9050808382526020820190508285602086028201111561333757613336614a02565b5b60005b85811015613367578161334d8882613501565b84526020840193506020830192505060018101905061333a565b5050509392505050565b600061338461337f846145fb565b61457e565b9050828152602081018484840111156133a05761339f614a07565b5b6133ab848285614831565b509392505050565b60006133c66133c18461462c565b61457e565b9050828152602081018484840111156133e2576133e1614a07565b5b6133ed848285614831565b509392505050565b6000813590506134048161508d565b92915050565b600082601f83011261341f5761341e6149fd565b5b813561342f848260208601613291565b91505092915050565b600082601f83011261344d5761344c6149fd565b5b813561345d848260208601613301565b91505092915050565b600081359050613475816150a4565b92915050565b60008135905061348a816150bb565b92915050565b60008151905061349f816150bb565b92915050565b600082601f8301126134ba576134b96149fd565b5b81356134ca848260208601613371565b91505092915050565b600082601f8301126134e8576134e76149fd565b5b81356134f88482602086016133b3565b91505092915050565b600081359050613510816150d2565b92915050565b60006020828403121561352c5761352b614a11565b5b600061353a848285016133f5565b91505092915050565b6000806040838503121561355a57613559614a11565b5b6000613568858286016133f5565b9250506020613579858286016133f5565b9150509250929050565b600080600080600060a0868803121561359f5761359e614a11565b5b60006135ad888289016133f5565b95505060206135be888289016133f5565b945050604086013567ffffffffffffffff8111156135df576135de614a0c565b5b6135eb88828901613438565b935050606086013567ffffffffffffffff81111561360c5761360b614a0c565b5b61361888828901613438565b925050608086013567ffffffffffffffff81111561363957613638614a0c565b5b613645888289016134a5565b9150509295509295909350565b600080600080600060a0868803121561366e5761366d614a11565b5b600061367c888289016133f5565b955050602061368d888289016133f5565b945050604061369e88828901613501565b93505060606136af88828901613501565b925050608086013567ffffffffffffffff8111156136d0576136cf614a0c565b5b6136dc888289016134a5565b9150509295509295909350565b60008060006060848603121561370257613701614a11565b5b6000613710868287016133f5565b935050602084013567ffffffffffffffff81111561373157613730614a0c565b5b61373d86828701613438565b925050604084013567ffffffffffffffff81111561375e5761375d614a0c565b5b61376a86828701613438565b9150509250925092565b600080600080600060a086880312156137905761378f614a11565b5b600061379e888289016133f5565b955050602086013567ffffffffffffffff8111156137bf576137be614a0c565b5b6137cb88828901613438565b945050604086013567ffffffffffffffff8111156137ec576137eb614a0c565b5b6137f888828901613438565b935050606086013567ffffffffffffffff81111561381957613818614a0c565b5b61382588828901613438565b925050608086013567ffffffffffffffff81111561384657613845614a0c565b5b61385288828901613438565b9150509295509295909350565b6000806040838503121561387657613875614a11565b5b6000613884858286016133f5565b925050602061389585828601613466565b9150509250929050565b600080604083850312156138b6576138b5614a11565b5b60006138c4858286016133f5565b92505060206138d585828601613501565b9150509250929050565b6000806000606084860312156138f8576138f7614a11565b5b6000613906868287016133f5565b935050602061391786828701613501565b925050604061392886828701613501565b9150509250925092565b6000806040838503121561394957613948614a11565b5b600083013567ffffffffffffffff81111561396757613966614a0c565b5b6139738582860161340a565b925050602083013567ffffffffffffffff81111561399457613993614a0c565b5b6139a085828601613438565b9150509250929050565b600080604083850312156139c1576139c0614a11565b5b600083013567ffffffffffffffff8111156139df576139de614a0c565b5b6139eb85828601613438565b925050602083013567ffffffffffffffff811115613a0c57613a0b614a0c565b5b613a1885828601613438565b9150509250929050565b600060208284031215613a3857613a37614a11565b5b6000613a4684828501613466565b91505092915050565b600060208284031215613a6557613a64614a11565b5b6000613a738482850161347b565b91505092915050565b600060208284031215613a9257613a91614a11565b5b6000613aa084828501613490565b91505092915050565b600060208284031215613abf57613abe614a11565b5b6000613acd84828501613501565b91505092915050565b600080600060608486031215613aef57613aee614a11565b5b6000613afd86828701613501565b935050602084013567ffffffffffffffff811115613b1e57613b1d614a0c565b5b613b2a8682870161340a565b925050604084013567ffffffffffffffff811115613b4b57613b4a614a0c565b5b613b5786828701613438565b9150509250925092565b60008060408385031215613b7857613b77614a11565b5b6000613b8685828601613501565b925050602083013567ffffffffffffffff811115613ba757613ba6614a0c565b5b613bb3858286016134d3565b9150509250929050565b60008060408385031215613bd457613bd3614a11565b5b6000613be285828601613501565b9250506020613bf385828601613501565b9150509250929050565b60008060008060808587031215613c1757613c16614a11565b5b6000613c2587828801613501565b9450506020613c3687828801613501565b9350506040613c4787828801613501565b9250506060613c5887828801613501565b91505092959194509250565b6000613c70838361408f565b60208301905092915050565b613c85816147bd565b82525050565b6000613c968261466d565b613ca0818561469b565b9350613cab8361465d565b8060005b83811015613cdc578151613cc38882613c64565b9750613cce8361468e565b925050600181019050613caf565b5085935050505092915050565b613cf2816147cf565b82525050565b6000613d0382614678565b613d0d81856146ac565b9350613d1d818560208601614840565b613d2681614a16565b840191505092915050565b6000613d3c82614683565b613d4681856146c8565b9350613d56818560208601614840565b613d5f81614a16565b840191505092915050565b6000613d776034836146c8565b9150613d8282614a34565b604082019050919050565b6000613d9a6028836146c8565b9150613da582614a83565b604082019050919050565b6000613dbd602b836146c8565b9150613dc882614ad2565b604082019050919050565b6000613de06026836146c8565b9150613deb82614b21565b604082019050919050565b6000613e036024836146c8565b9150613e0e82614b70565b604082019050919050565b6000613e266029836146c8565b9150613e3182614bbf565b604082019050919050565b6000613e49601c836146c8565b9150613e5482614c0e565b602082019050919050565b6000613e6c6025836146c8565b9150613e7782614c37565b604082019050919050565b6000613e8f6032836146c8565b9150613e9a82614c86565b604082019050919050565b6000613eb26016836146c8565b9150613ebd82614cd5565b602082019050919050565b6000613ed56024836146c8565b9150613ee082614cfe565b604082019050919050565b6000613ef86023836146c8565b9150613f0382614d4d565b604082019050919050565b6000613f1b602a836146c8565b9150613f2682614d9c565b604082019050919050565b6000613f3e6020836146c8565b9150613f4982614deb565b602082019050919050565b6000613f616016836146c8565b9150613f6c82614e14565b602082019050919050565b6000613f846000836146bd565b9150613f8f82614e3d565b600082019050919050565b6000613fa76012836146c8565b9150613fb282614e40565b602082019050919050565b6000613fca6029836146c8565b9150613fd582614e69565b604082019050919050565b6000613fed6029836146c8565b9150613ff882614eb8565b604082019050919050565b60006140106017836146c8565b915061401b82614f07565b602082019050919050565b60006140336028836146c8565b915061403e82614f30565b604082019050919050565b60006140566021836146c8565b915061406182614f7f565b604082019050919050565b6000614079601b836146c8565b915061408482614fce565b602082019050919050565b61409881614827565b82525050565b6140a781614827565b82525050565b60006140b882613f77565b9150819050919050565b60006020820190506140d76000830184613c7c565b92915050565b600060a0820190506140f26000830188613c7c565b6140ff6020830187613c7c565b81810360408301526141118186613c8b565b905081810360608301526141258185613c8b565b905081810360808301526141398184613cf8565b90509695505050505050565b600060a08201905061415a6000830188613c7c565b6141676020830187613c7c565b614174604083018661409e565b614181606083018561409e565b81810360808301526141938184613cf8565b90509695505050505050565b600060208201905081810360008301526141b98184613c8b565b905092915050565b600060408201905081810360008301526141db8185613c8b565b905081810360208301526141ef8184613c8b565b90509392505050565b600060208201905061420d6000830184613ce9565b92915050565b6000602082019050818103600083015261422d8184613d31565b905092915050565b6000602082019050818103600083015261424e81613d6a565b9050919050565b6000602082019050818103600083015261426e81613d8d565b9050919050565b6000602082019050818103600083015261428e81613db0565b9050919050565b600060208201905081810360008301526142ae81613dd3565b9050919050565b600060208201905081810360008301526142ce81613df6565b9050919050565b600060208201905081810360008301526142ee81613e19565b9050919050565b6000602082019050818103600083015261430e81613e3c565b9050919050565b6000602082019050818103600083015261432e81613e5f565b9050919050565b6000602082019050818103600083015261434e81613e82565b9050919050565b6000602082019050818103600083015261436e81613ea5565b9050919050565b6000602082019050818103600083015261438e81613ec8565b9050919050565b600060208201905081810360008301526143ae81613eeb565b9050919050565b600060208201905081810360008301526143ce81613f0e565b9050919050565b600060208201905081810360008301526143ee81613f31565b9050919050565b6000602082019050818103600083015261440e81613f54565b9050919050565b6000602082019050818103600083015261442e81613f9a565b9050919050565b6000602082019050818103600083015261444e81613fbd565b9050919050565b6000602082019050818103600083015261446e81613fe0565b9050919050565b6000602082019050818103600083015261448e81614003565b9050919050565b600060208201905081810360008301526144ae81614026565b9050919050565b600060208201905081810360008301526144ce81614049565b9050919050565b600060208201905081810360008301526144ee8161406c565b9050919050565b600060208201905061450a600083018461409e565b92915050565b6000604082019050614525600083018561409e565b614532602083018461409e565b9392505050565b600060808201905061454e600083018761409e565b61455b602083018661409e565b614568604083018561409e565b614575606083018461409e565b95945050505050565b6000614588614599565b905061459482826148a5565b919050565b6000604051905090565b600067ffffffffffffffff8211156145be576145bd6149ac565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156145ea576145e96149ac565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614616576146156149ac565b5b61461f82614a16565b9050602081019050919050565b600067ffffffffffffffff821115614647576146466149ac565b5b61465082614a16565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006146e482614827565b91506146ef83614827565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147245761472361491f565b5b828201905092915050565b600061473a82614827565b915061474583614827565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561477e5761477d61491f565b5b828202905092915050565b600061479482614827565b915061479f83614827565b9250828210156147b2576147b161491f565b5b828203905092915050565b60006147c882614807565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561485e578082015181840152602081019050614843565b8381111561486d576000848401525b50505050565b6000600282049050600182168061488b57607f821691505b6020821081141561489f5761489e61494e565b5b50919050565b6148ae82614a16565b810181811067ffffffffffffffff821117156148cd576148cc6149ac565b5b80604052505050565b60006148e182614827565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149145761491361491f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156149fa5760046000803e6149f7600051614a27565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b600060443d10156150075761508a565b61500f614599565b60043d036004823e80513d602482011167ffffffffffffffff8211171561503757505061508a565b808201805167ffffffffffffffff811115615055575050505061508a565b80602083010160043d03850181111561507257505050505061508a565b615081826020018501866148a5565b82955050505050505b90565b615096816147bd565b81146150a157600080fd5b50565b6150ad816147cf565b81146150b857600080fd5b50565b6150c4816147db565b81146150cf57600080fd5b50565b6150db81614827565b81146150e657600080fd5b5056fea2646970667358221220b9686a87621c9779ff1008120e5fab23a90e0fcd85d799d36c9358bf6414759464736f6c63430008070033697066733a2f2f516d527862417a664242386f425263546a44776e31566142666d6453576b6b79754d564a685a417133684a6676742f312e6a736f6e

Deployed Bytecode

0x6080604052600436106101f85760003560e01c80638da5cb5b1161010d578063c4e41b22116100a0578063d9c7f8f11161006f578063d9c7f8f1146106fb578063e985e9c51461073b578063f242432a14610778578063f2fde38b146107a1578063fdf03cd5146107ca576101f8565b8063c4e41b221461063f578063c87b56dd1461066a578063d6e7b8e4146106a7578063d81d0a15146106d2576101f8565b8063a22cb465116100dc578063a22cb46514610587578063af808621146105b0578063b390c0ab146105d9578063ba77d77314610602576101f8565b80638da5cb5b146104ea57806395d89b41146105155780639c70b51214610540578063a0712d681461056b576101f8565b80633ccfd60b1161019057806358303b101161015f57806358303b101461042b5780635c975abb14610456578063715018a61461048157806383ca4b6f14610498578063862440e2146104c1576101f8565b80633ccfd60b1461038557806340b454181461039c5780634e1273f4146103c5578063510f410414610402576101f8565b80630e89341c116101cc5780630e89341c146102cb5780631581b6001461030857806326f4e277146103335780632eb2c2d61461035c576101f8565b8062fdd58e146101fd57806301ffc9a71461023a57806302329a291461027757806306fdde03146102a0575b600080fd5b34801561020957600080fd5b50610224600480360381019061021f919061389f565b6107f3565b60405161023191906144f5565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190613a4f565b6108bc565b60405161026e91906141f8565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190613a22565b61099e565b005b3480156102ac57600080fd5b506102b5610a37565b6040516102c29190614213565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190613aa9565b610ac5565b6040516102ff9190614213565b60405180910390f35b34801561031457600080fd5b5061031d610b6a565b60405161032a91906140c2565b60405180910390f35b34801561033f57600080fd5b5061035a600480360381019061035591906138df565b610b82565b005b34801561036857600080fd5b50610383600480360381019061037e9190613583565b610c1e565b005b34801561039157600080fd5b5061039a610cbf565b005b3480156103a857600080fd5b506103c360048036038101906103be9190613ad6565b610dc8565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190613932565b610f03565b6040516103f9919061419f565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190613774565b61101c565b005b34801561043757600080fd5b506104406110c5565b60405161044d91906144f5565b60405180910390f35b34801561046257600080fd5b5061046b6110cb565b60405161047891906141f8565b60405180910390f35b34801561048d57600080fd5b506104966110de565b005b3480156104a457600080fd5b506104bf60048036038101906104ba91906139aa565b611166565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190613b61565b611175565b005b3480156104f657600080fd5b506104ff611255565b60405161050c91906140c2565b60405180910390f35b34801561052157600080fd5b5061052a61127f565b6040516105379190614213565b60405180910390f35b34801561054c57600080fd5b5061055561130d565b60405161056291906141f8565b60405180910390f35b61058560048036038101906105809190613aa9565b611320565b005b34801561059357600080fd5b506105ae60048036038101906105a9919061385f565b611718565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190613bfd565b61172e565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190613bbd565b611801565b005b34801561060e57600080fd5b5061062960048036038101906106249190613516565b611810565b60405161063691906144f5565b60405180910390f35b34801561064b57600080fd5b5061065461186f565b60405161066191906144f5565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190613aa9565b61188f565b60405161069e9190614213565b60405180910390f35b3480156106b357600080fd5b506106bc61192f565b6040516106c991906144f5565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f491906136e9565b61194f565b005b34801561070757600080fd5b50610722600480360381019061071d9190613aa9565b6119eb565b6040516107329493929190614539565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190613543565b611a1b565b60405161076f91906141f8565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a9190613652565b611aaf565b005b3480156107ad57600080fd5b506107c860048036038101906107c39190613516565b611b50565b005b3480156107d657600080fd5b506107f160048036038101906107ec9190613aa9565b611c48565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085b90614275565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098757507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610997575061099682611cce565b5b9050919050565b6109a6611d38565b73ffffffffffffffffffffffffffffffffffffffff166109c4611255565b73ffffffffffffffffffffffffffffffffffffffff1614610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a11906143d5565b60405180910390fd5b80600660006101000a81548160ff02191690831515021790555050565b60048054610a4490614873565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7090614873565b8015610abd5780601f10610a9257610100808354040283529160200191610abd565b820191906000526020600020905b815481529060010190602001808311610aa057829003601f168201915b505050505081565b6060600760008381526020019081526020016000208054610ae590614873565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1190614873565b8015610b5e5780601f10610b3357610100808354040283529160200191610b5e565b820191906000526020600020905b815481529060010190602001808311610b4157829003601f168201915b50505050509050919050565b737f429dc5ffda5374bb09a1ba390ffebdea4797a481565b610b8a611d38565b73ffffffffffffffffffffffffffffffffffffffff16610ba8611255565b73ffffffffffffffffffffffffffffffffffffffff1614610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf5906143d5565b60405180910390fd5b610c1983838360405180602001604052806000815250611d40565b505050565b610c26611d38565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c6c5750610c6b85610c66611d38565b611a1b565b5b610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca290614335565b60405180910390fd5b610cb88585858585611ed6565b5050505050565b610cc7611d38565b73ffffffffffffffffffffffffffffffffffffffff16610ce5611255565b73ffffffffffffffffffffffffffffffffffffffff1614610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d32906143d5565b60405180910390fd5b6000737f429dc5ffda5374bb09a1ba390ffebdea4797a473ffffffffffffffffffffffffffffffffffffffff1647604051610d75906140ad565b60006040518083038185875af1925050503d8060008114610db2576040519150601f19603f3d011682016040523d82523d6000602084013e610db7565b606091505b5050905080610dc557600080fd5b50565b610dd0611d38565b73ffffffffffffffffffffffffffffffffffffffff16610dee611255565b73ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906143d5565b60405180910390fd5b8051825114610e5257600080fd5b60005b8251811015610efd57818181518110610e7157610e7061497d565b5b6020026020010151600960008681526020019081526020016000206004016000858481518110610ea457610ea361497d565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610ef5906148d6565b915050610e55565b50505050565b60608151835114610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4090614455565b60405180910390fd5b6000835167ffffffffffffffff811115610f6657610f656149ac565b5b604051908082528060200260200182016040528015610f945781602001602082028036833780820191505090505b50905060005b845181101561101157610fe1858281518110610fb957610fb861497d565b5b6020026020010151858381518110610fd457610fd361497d565b5b60200260200101516107f3565b828281518110610ff457610ff361497d565b5b6020026020010181815250508061100a906148d6565b9050610f9a565b508091505092915050565b611024611d38565b73ffffffffffffffffffffffffffffffffffffffff16611042611255565b73ffffffffffffffffffffffffffffffffffffffff1614611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f906143d5565b60405180910390fd5b6110a38585856121ea565b6110be8583836040518060200160405280600081525061249b565b5050505050565b60085481565b600660009054906101000a900460ff1681565b6110e6611d38565b73ffffffffffffffffffffffffffffffffffffffff16611104611255565b73ffffffffffffffffffffffffffffffffffffffff161461115a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611151906143d5565b60405180910390fd5b61116460006126b9565b565b6111713383836121ea565b5050565b61117d611d38565b73ffffffffffffffffffffffffffffffffffffffff1661119b611255565b73ffffffffffffffffffffffffffffffffffffffff16146111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e8906143d5565b60405180910390fd5b806007600084815260200190815260200160002090805190602001906112189291906131ee565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b826040516112499190614213565b60405180910390a25050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6005805461128c90614873565b80601f01602080910402602001604051908101604052809291908181526020018280546112b890614873565b80156113055780601f106112da57610100808354040283529160200191611305565b820191906000526020600020905b8154815290600101906020018083116112e857829003601f168201915b505050505081565b600660019054906101000a900460ff1681565b600660009054906101000a900460ff1615611370576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611367906143f5565b60405180910390fd5b600081116113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa906144d5565b60405180910390fd5b6009600060085481526020019081526020016000206003015481111561140e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140590614375565b60405180910390fd5b60096000600854815260200190815260200160002060010154816009600060085481526020019081526020016000206000015461144b91906146d9565b111561148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148390614355565b60405180910390fd5b80600960006008548152602001908152602001600020600201546114b0919061472f565b3410156114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e990614415565b60405180910390fd5b60011515600660019054906101000a900460ff161515141561164057600060096000600854815260200190815260200160002060040160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90614475565b60405180910390fd5b60096000600854815260200190815260200160002060040160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481111561163f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611636906142f5565b60405180910390fd5b5b60011515600660019054906101000a900460ff16151514156116c9578060096000600854815260200190815260200160002060040160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116c19190614789565b925050819055505b8060096000600854815260200190815260200160002060000160008282546116f191906146d9565b92505081905550611715336008548360405180602001604052806000815250611d40565b50565b61172a611723611d38565b838361277f565b5050565b611736611d38565b73ffffffffffffffffffffffffffffffffffffffff16611754611255565b73ffffffffffffffffffffffffffffffffffffffff16146117aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a1906143d5565b60405180910390fd5b82600960008681526020019081526020016000206001018190555081600960008681526020019081526020016000206002018190555080600960008681526020019081526020016000206003018190555050505050565b61180c3383836128ec565b5050565b600060096000600854815260200190815260200160002060040160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600060096000600854815260200190815260200160002060000154905090565b600760205280600052604060002060009150905080546118ae90614873565b80601f01602080910402602001604051908101604052809291908181526020018280546118da90614873565b80156119275780601f106118fc57610100808354040283529160200191611927565b820191906000526020600020905b81548152906001019060200180831161190a57829003601f168201915b505050505081565b600060096000600854815260200190815260200160002060030154905090565b611957611d38565b73ffffffffffffffffffffffffffffffffffffffff16611975611255565b73ffffffffffffffffffffffffffffffffffffffff16146119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c2906143d5565b60405180910390fd5b6119e68383836040518060200160405280600081525061249b565b505050565b60096020528060005260406000206000915090508060000154908060010154908060020154908060030154905084565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ab7611d38565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611afd5750611afc85611af7611d38565b611a1b565b5b611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b33906142d5565b60405180910390fd5b611b498585858585612b09565b5050505050565b611b58611d38565b73ffffffffffffffffffffffffffffffffffffffff16611b76611255565b73ffffffffffffffffffffffffffffffffffffffff1614611bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc3906143d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3390614295565b60405180910390fd5b611c45816126b9565b50565b611c50611d38565b73ffffffffffffffffffffffffffffffffffffffff16611c6e611255565b73ffffffffffffffffffffffffffffffffffffffff1614611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb906143d5565b60405180910390fd5b8060088190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da7906144b5565b60405180910390fd5b6000611dba611d38565b9050611ddb81600087611dcc88612d8b565b611dd588612d8b565b87612e05565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e3a91906146d9565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611eb8929190614510565b60405180910390a4611ecf81600087878787612e0d565b5050505050565b8151835114611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1190614495565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8190614315565b60405180910390fd5b6000611f94611d38565b9050611fa4818787878787612e05565b60005b8451811015612155576000858281518110611fc557611fc461497d565b5b602002602001015190506000858381518110611fe457611fe361497d565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207c906143b5565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461213a91906146d9565b925050819055505050508061214e906148d6565b9050611fa7565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516121cc9291906141c1565b60405180910390a46121e2818787878787612ff4565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190614395565b60405180910390fd5b805182511461229e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229590614495565b60405180910390fd5b60006122a8611d38565b90506122c881856000868660405180602001604052806000815250612e05565b60005b83518110156124155760008482815181106122e9576122e861497d565b5b6020026020010151905060008483815181106123085761230761497d565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a0906142b5565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050808061240d906148d6565b9150506122cb565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161248d9291906141c1565b60405180910390a450505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561250b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612502906144b5565b60405180910390fd5b815183511461254f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254690614495565b60405180910390fd5b6000612559611d38565b905061256a81600087878787612e05565b60005b8451811015612623578381815181106125895761258861497d565b5b60200260200101516000808784815181106125a7576125a661497d565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461260991906146d9565b92505081905550808061261b906148d6565b91505061256d565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161269b9291906141c1565b60405180910390a46126b281600087878787612ff4565b5050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e590614435565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128df91906141f8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561295c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295390614395565b60405180910390fd5b6000612966611d38565b90506129968185600061297887612d8b565b61298187612d8b565b60405180602001604052806000815250612e05565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a24906142b5565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612afa929190614510565b60405180910390a45050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7090614315565b60405180910390fd5b6000612b83611d38565b9050612ba3818787612b9488612d8b565b612b9d88612d8b565b87612e05565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c31906143b5565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cef91906146d9565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612d6c929190614510565b60405180910390a4612d82828888888888612e0d565b50505050505050565b60606000600167ffffffffffffffff811115612daa57612da96149ac565b5b604051908082528060200260200182016040528015612dd85781602001602082028036833780820191505090505b5090508281600081518110612df057612def61497d565b5b60200260200101818152505080915050919050565b505050505050565b612e2c8473ffffffffffffffffffffffffffffffffffffffff166131db565b15612fec578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612e72959493929190614145565b602060405180830381600087803b158015612e8c57600080fd5b505af1925050508015612ebd57506040513d601f19601f82011682018060405250810190612eba9190613a7c565b60015b612f6357612ec96149db565b806308c379a01415612f265750612ede614ff7565b80612ee95750612f28565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1d9190614213565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5a90614235565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe190614255565b60405180910390fd5b505b505050505050565b6130138473ffffffffffffffffffffffffffffffffffffffff166131db565b156131d3578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016130599594939291906140dd565b602060405180830381600087803b15801561307357600080fd5b505af19250505080156130a457506040513d601f19601f820116820180604052508101906130a19190613a7c565b60015b61314a576130b06149db565b806308c379a0141561310d57506130c5614ff7565b806130d0575061310f565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131049190614213565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314190614235565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146131d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c890614255565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b8280546131fa90614873565b90600052602060002090601f01602090048101928261321c5760008555613263565b82601f1061323557805160ff1916838001178555613263565b82800160010185558215613263579182015b82811115613262578251825591602001919060010190613247565b5b5090506132709190613274565b5090565b5b8082111561328d576000816000905550600101613275565b5090565b60006132a461329f846145a3565b61457e565b905080838252602082019050828560208602820111156132c7576132c6614a02565b5b60005b858110156132f757816132dd88826133f5565b8452602084019350602083019250506001810190506132ca565b5050509392505050565b600061331461330f846145cf565b61457e565b9050808382526020820190508285602086028201111561333757613336614a02565b5b60005b85811015613367578161334d8882613501565b84526020840193506020830192505060018101905061333a565b5050509392505050565b600061338461337f846145fb565b61457e565b9050828152602081018484840111156133a05761339f614a07565b5b6133ab848285614831565b509392505050565b60006133c66133c18461462c565b61457e565b9050828152602081018484840111156133e2576133e1614a07565b5b6133ed848285614831565b509392505050565b6000813590506134048161508d565b92915050565b600082601f83011261341f5761341e6149fd565b5b813561342f848260208601613291565b91505092915050565b600082601f83011261344d5761344c6149fd565b5b813561345d848260208601613301565b91505092915050565b600081359050613475816150a4565b92915050565b60008135905061348a816150bb565b92915050565b60008151905061349f816150bb565b92915050565b600082601f8301126134ba576134b96149fd565b5b81356134ca848260208601613371565b91505092915050565b600082601f8301126134e8576134e76149fd565b5b81356134f88482602086016133b3565b91505092915050565b600081359050613510816150d2565b92915050565b60006020828403121561352c5761352b614a11565b5b600061353a848285016133f5565b91505092915050565b6000806040838503121561355a57613559614a11565b5b6000613568858286016133f5565b9250506020613579858286016133f5565b9150509250929050565b600080600080600060a0868803121561359f5761359e614a11565b5b60006135ad888289016133f5565b95505060206135be888289016133f5565b945050604086013567ffffffffffffffff8111156135df576135de614a0c565b5b6135eb88828901613438565b935050606086013567ffffffffffffffff81111561360c5761360b614a0c565b5b61361888828901613438565b925050608086013567ffffffffffffffff81111561363957613638614a0c565b5b613645888289016134a5565b9150509295509295909350565b600080600080600060a0868803121561366e5761366d614a11565b5b600061367c888289016133f5565b955050602061368d888289016133f5565b945050604061369e88828901613501565b93505060606136af88828901613501565b925050608086013567ffffffffffffffff8111156136d0576136cf614a0c565b5b6136dc888289016134a5565b9150509295509295909350565b60008060006060848603121561370257613701614a11565b5b6000613710868287016133f5565b935050602084013567ffffffffffffffff81111561373157613730614a0c565b5b61373d86828701613438565b925050604084013567ffffffffffffffff81111561375e5761375d614a0c565b5b61376a86828701613438565b9150509250925092565b600080600080600060a086880312156137905761378f614a11565b5b600061379e888289016133f5565b955050602086013567ffffffffffffffff8111156137bf576137be614a0c565b5b6137cb88828901613438565b945050604086013567ffffffffffffffff8111156137ec576137eb614a0c565b5b6137f888828901613438565b935050606086013567ffffffffffffffff81111561381957613818614a0c565b5b61382588828901613438565b925050608086013567ffffffffffffffff81111561384657613845614a0c565b5b61385288828901613438565b9150509295509295909350565b6000806040838503121561387657613875614a11565b5b6000613884858286016133f5565b925050602061389585828601613466565b9150509250929050565b600080604083850312156138b6576138b5614a11565b5b60006138c4858286016133f5565b92505060206138d585828601613501565b9150509250929050565b6000806000606084860312156138f8576138f7614a11565b5b6000613906868287016133f5565b935050602061391786828701613501565b925050604061392886828701613501565b9150509250925092565b6000806040838503121561394957613948614a11565b5b600083013567ffffffffffffffff81111561396757613966614a0c565b5b6139738582860161340a565b925050602083013567ffffffffffffffff81111561399457613993614a0c565b5b6139a085828601613438565b9150509250929050565b600080604083850312156139c1576139c0614a11565b5b600083013567ffffffffffffffff8111156139df576139de614a0c565b5b6139eb85828601613438565b925050602083013567ffffffffffffffff811115613a0c57613a0b614a0c565b5b613a1885828601613438565b9150509250929050565b600060208284031215613a3857613a37614a11565b5b6000613a4684828501613466565b91505092915050565b600060208284031215613a6557613a64614a11565b5b6000613a738482850161347b565b91505092915050565b600060208284031215613a9257613a91614a11565b5b6000613aa084828501613490565b91505092915050565b600060208284031215613abf57613abe614a11565b5b6000613acd84828501613501565b91505092915050565b600080600060608486031215613aef57613aee614a11565b5b6000613afd86828701613501565b935050602084013567ffffffffffffffff811115613b1e57613b1d614a0c565b5b613b2a8682870161340a565b925050604084013567ffffffffffffffff811115613b4b57613b4a614a0c565b5b613b5786828701613438565b9150509250925092565b60008060408385031215613b7857613b77614a11565b5b6000613b8685828601613501565b925050602083013567ffffffffffffffff811115613ba757613ba6614a0c565b5b613bb3858286016134d3565b9150509250929050565b60008060408385031215613bd457613bd3614a11565b5b6000613be285828601613501565b9250506020613bf385828601613501565b9150509250929050565b60008060008060808587031215613c1757613c16614a11565b5b6000613c2587828801613501565b9450506020613c3687828801613501565b9350506040613c4787828801613501565b9250506060613c5887828801613501565b91505092959194509250565b6000613c70838361408f565b60208301905092915050565b613c85816147bd565b82525050565b6000613c968261466d565b613ca0818561469b565b9350613cab8361465d565b8060005b83811015613cdc578151613cc38882613c64565b9750613cce8361468e565b925050600181019050613caf565b5085935050505092915050565b613cf2816147cf565b82525050565b6000613d0382614678565b613d0d81856146ac565b9350613d1d818560208601614840565b613d2681614a16565b840191505092915050565b6000613d3c82614683565b613d4681856146c8565b9350613d56818560208601614840565b613d5f81614a16565b840191505092915050565b6000613d776034836146c8565b9150613d8282614a34565b604082019050919050565b6000613d9a6028836146c8565b9150613da582614a83565b604082019050919050565b6000613dbd602b836146c8565b9150613dc882614ad2565b604082019050919050565b6000613de06026836146c8565b9150613deb82614b21565b604082019050919050565b6000613e036024836146c8565b9150613e0e82614b70565b604082019050919050565b6000613e266029836146c8565b9150613e3182614bbf565b604082019050919050565b6000613e49601c836146c8565b9150613e5482614c0e565b602082019050919050565b6000613e6c6025836146c8565b9150613e7782614c37565b604082019050919050565b6000613e8f6032836146c8565b9150613e9a82614c86565b604082019050919050565b6000613eb26016836146c8565b9150613ebd82614cd5565b602082019050919050565b6000613ed56024836146c8565b9150613ee082614cfe565b604082019050919050565b6000613ef86023836146c8565b9150613f0382614d4d565b604082019050919050565b6000613f1b602a836146c8565b9150613f2682614d9c565b604082019050919050565b6000613f3e6020836146c8565b9150613f4982614deb565b602082019050919050565b6000613f616016836146c8565b9150613f6c82614e14565b602082019050919050565b6000613f846000836146bd565b9150613f8f82614e3d565b600082019050919050565b6000613fa76012836146c8565b9150613fb282614e40565b602082019050919050565b6000613fca6029836146c8565b9150613fd582614e69565b604082019050919050565b6000613fed6029836146c8565b9150613ff882614eb8565b604082019050919050565b60006140106017836146c8565b915061401b82614f07565b602082019050919050565b60006140336028836146c8565b915061403e82614f30565b604082019050919050565b60006140566021836146c8565b915061406182614f7f565b604082019050919050565b6000614079601b836146c8565b915061408482614fce565b602082019050919050565b61409881614827565b82525050565b6140a781614827565b82525050565b60006140b882613f77565b9150819050919050565b60006020820190506140d76000830184613c7c565b92915050565b600060a0820190506140f26000830188613c7c565b6140ff6020830187613c7c565b81810360408301526141118186613c8b565b905081810360608301526141258185613c8b565b905081810360808301526141398184613cf8565b90509695505050505050565b600060a08201905061415a6000830188613c7c565b6141676020830187613c7c565b614174604083018661409e565b614181606083018561409e565b81810360808301526141938184613cf8565b90509695505050505050565b600060208201905081810360008301526141b98184613c8b565b905092915050565b600060408201905081810360008301526141db8185613c8b565b905081810360208301526141ef8184613c8b565b90509392505050565b600060208201905061420d6000830184613ce9565b92915050565b6000602082019050818103600083015261422d8184613d31565b905092915050565b6000602082019050818103600083015261424e81613d6a565b9050919050565b6000602082019050818103600083015261426e81613d8d565b9050919050565b6000602082019050818103600083015261428e81613db0565b9050919050565b600060208201905081810360008301526142ae81613dd3565b9050919050565b600060208201905081810360008301526142ce81613df6565b9050919050565b600060208201905081810360008301526142ee81613e19565b9050919050565b6000602082019050818103600083015261430e81613e3c565b9050919050565b6000602082019050818103600083015261432e81613e5f565b9050919050565b6000602082019050818103600083015261434e81613e82565b9050919050565b6000602082019050818103600083015261436e81613ea5565b9050919050565b6000602082019050818103600083015261438e81613ec8565b9050919050565b600060208201905081810360008301526143ae81613eeb565b9050919050565b600060208201905081810360008301526143ce81613f0e565b9050919050565b600060208201905081810360008301526143ee81613f31565b9050919050565b6000602082019050818103600083015261440e81613f54565b9050919050565b6000602082019050818103600083015261442e81613f9a565b9050919050565b6000602082019050818103600083015261444e81613fbd565b9050919050565b6000602082019050818103600083015261446e81613fe0565b9050919050565b6000602082019050818103600083015261448e81614003565b9050919050565b600060208201905081810360008301526144ae81614026565b9050919050565b600060208201905081810360008301526144ce81614049565b9050919050565b600060208201905081810360008301526144ee8161406c565b9050919050565b600060208201905061450a600083018461409e565b92915050565b6000604082019050614525600083018561409e565b614532602083018461409e565b9392505050565b600060808201905061454e600083018761409e565b61455b602083018661409e565b614568604083018561409e565b614575606083018461409e565b95945050505050565b6000614588614599565b905061459482826148a5565b919050565b6000604051905090565b600067ffffffffffffffff8211156145be576145bd6149ac565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156145ea576145e96149ac565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614616576146156149ac565b5b61461f82614a16565b9050602081019050919050565b600067ffffffffffffffff821115614647576146466149ac565b5b61465082614a16565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006146e482614827565b91506146ef83614827565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147245761472361491f565b5b828201905092915050565b600061473a82614827565b915061474583614827565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561477e5761477d61491f565b5b828202905092915050565b600061479482614827565b915061479f83614827565b9250828210156147b2576147b161491f565b5b828203905092915050565b60006147c882614807565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561485e578082015181840152602081019050614843565b8381111561486d576000848401525b50505050565b6000600282049050600182168061488b57607f821691505b6020821081141561489f5761489e61494e565b5b50919050565b6148ae82614a16565b810181811067ffffffffffffffff821117156148cd576148cc6149ac565b5b80604052505050565b60006148e182614827565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149145761491361491f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156149fa5760046000803e6149f7600051614a27565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b600060443d10156150075761508a565b61500f614599565b60043d036004823e80513d602482011167ffffffffffffffff8211171561503757505061508a565b808201805167ffffffffffffffff811115615055575050505061508a565b80602083010160043d03850181111561507257505050505061508a565b615081826020018501866148a5565b82955050505050505b90565b615096816147bd565b81146150a157600080fd5b50565b6150ad816147cf565b81146150b857600080fd5b50565b6150c4816147db565b81146150cf57600080fd5b50565b6150db81614827565b81146150e657600080fd5b5056fea2646970667358221220b9686a87621c9779ff1008120e5fab23a90e0fcd85d799d36c9358bf6414759464736f6c63430008070033

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.