ETH Price: $2,385.16 (+2.57%)

Token

Just A Banana (Banana)
 

Overview

Max Total Supply

4 Banana

Holders

2

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Banana
0x7De2d219981E43Ba7844b5A2Bc4Bb308592F003c
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:
JustaBanana

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-26
*/

// File: contracts/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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



pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// File: 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() {
        _setOwner(_msgSender());
    }

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
// File: 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: contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}
// File: 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: 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: contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(
        address indexed owner,
        address indexed approved,
        uint256 indexed tokenId
    );

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId)
        external
        view
        returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator)
        external
        view
        returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}
// File: contracts/token/ERC721/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}
// File: contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, tokenId.toString()))
                : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}
// File: contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721Enumerable.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}
// File: Just a banana.sol

//SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;



contract JustaBanana is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0 ether;
    uint256 public presaleCost = 0 ether;
    uint256 public maxSupply = 888;
    uint256 public maxMintAmount = 20;
    bool public paused = false;
    mapping(address => bool) public whitelisted;
    mapping(address => bool) public presaleWallets;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
    }

    // internal
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    // public
    function mint(address _to, uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
        require(!paused);
        require(_mintAmount > 0);
        require(_mintAmount <= maxMintAmount);
        require(supply + _mintAmount <= maxSupply);

        if (msg.sender != owner()) {
            if (whitelisted[msg.sender] != true) {
                if (presaleWallets[msg.sender] != true) {
                    //general public
                    require(msg.value >= cost * _mintAmount);
                } else {
                    //presale
                    require(msg.value >= presaleCost * _mintAmount);
                }
            }
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, supply + i);
        }
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        baseExtension
                    )
                )
                : "";
    }

    //only owner
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

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

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000051929190620002c8565b506000600d556000600e55610378600f5560146010556000601160006101000a81548160ff0219169083151502179055503480156200008f57600080fd5b50604051620049ee380380620049ee8339818101604052810190620000b5919062000515565b82828160009080519060200190620000cf929190620002c8565b508060019080519060200190620000e8929190620002c8565b5050506200010b620000ff6200012560201b60201c565b6200012d60201b60201c565b6200011c81620001f360201b60201c565b505050620006b5565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002036200012560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002296200029e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000282576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000279906200062f565b60405180910390fd5b80600b90805190602001906200029a929190620002c8565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002d69062000680565b90600052602060002090601f016020900481019282620002fa576000855562000346565b82601f106200031557805160ff191683800117855562000346565b8280016001018555821562000346579182015b828111156200034557825182559160200191906001019062000328565b5b50905062000355919062000359565b5090565b5b80821115620003745760008160009055506001016200035a565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003e18262000396565b810181811067ffffffffffffffff82111715620004035762000402620003a7565b5b80604052505050565b60006200041862000378565b9050620004268282620003d6565b919050565b600067ffffffffffffffff821115620004495762000448620003a7565b5b620004548262000396565b9050602081019050919050565b60005b838110156200048157808201518184015260208101905062000464565b8381111562000491576000848401525b50505050565b6000620004ae620004a8846200042b565b6200040c565b905082815260208101848484011115620004cd57620004cc62000391565b5b620004da84828562000461565b509392505050565b600082601f830112620004fa57620004f96200038c565b5b81516200050c84826020860162000497565b91505092915050565b60008060006060848603121562000531576200053062000382565b5b600084015167ffffffffffffffff81111562000552576200055162000387565b5b6200056086828701620004e2565b935050602084015167ffffffffffffffff81111562000584576200058362000387565b5b6200059286828701620004e2565b925050604084015167ffffffffffffffff811115620005b657620005b562000387565b5b620005c486828701620004e2565b9150509250925092565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000617602083620005ce565b91506200062482620005df565b602082019050919050565b600060208201905081810360008301526200064a8162000608565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200069957607f821691505b602082108103620006af57620006ae62000651565b5b50919050565b61432980620006c56000396000f3fe60806040526004361061020f5760003560e01c806355f804b311610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610795578063d936547e146107c0578063da3ef23f146107fd578063e985e9c514610826578063f2fde38b146108635761020f565b8063a22cb465146106db578063b88d4fde14610704578063c66828621461072d578063c87b56dd146107585761020f565b806370a08231116100e757806370a0823114610608578063715018a6146106455780637f00c7a61461065c5780638da5cb5b1461068557806395d89b41146106b05761020f565b806355f804b31461054c5780635c975abb146105755780636352211e146105a05780636c0360eb146105dd5761020f565b80632a23d07d1161019b57806340c10f191161016a57806340c10f191461046457806342842e0e14610480578063438b6300146104a957806344a0d68a146104e65780634f6ccce71461050f5761020f565b80632a23d07d146103b55780632f745c59146103e057806330b2264e1461041d5780633ccfd60b1461045a5761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806313faede61461030b57806318160ddd14610336578063239c70ae1461036157806323b872dd1461038c5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612d25565b61088c565b6040516102489190612d6d565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190612db4565b610906565b005b34801561028657600080fd5b5061028f61099f565b60405161029c9190612e7a565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190612ed2565b610a31565b6040516102d99190612f40565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190612f87565b610ab6565b005b34801561031757600080fd5b50610320610bcd565b60405161032d9190612fd6565b60405180910390f35b34801561034257600080fd5b5061034b610bd3565b6040516103589190612fd6565b60405180910390f35b34801561036d57600080fd5b50610376610be0565b6040516103839190612fd6565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190612ff1565b610be6565b005b3480156103c157600080fd5b506103ca610c46565b6040516103d79190612fd6565b60405180910390f35b3480156103ec57600080fd5b5061040760048036038101906104029190612f87565b610c4c565b6040516104149190612fd6565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190613044565b610cf1565b6040516104519190612d6d565b60405180910390f35b610462610d11565b005b61047e60048036038101906104799190612f87565b610e06565b005b34801561048c57600080fd5b506104a760048036038101906104a29190612ff1565b610fc4565b005b3480156104b557600080fd5b506104d060048036038101906104cb9190613044565b610fe4565b6040516104dd919061312f565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190612ed2565b611092565b005b34801561051b57600080fd5b5061053660048036038101906105319190612ed2565b611118565b6040516105439190612fd6565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190613286565b611189565b005b34801561058157600080fd5b5061058a61121f565b6040516105979190612d6d565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190612ed2565b611232565b6040516105d49190612f40565b60405180910390f35b3480156105e957600080fd5b506105f26112e3565b6040516105ff9190612e7a565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190613044565b611371565b60405161063c9190612fd6565b60405180910390f35b34801561065157600080fd5b5061065a611428565b005b34801561066857600080fd5b50610683600480360381019061067e9190612ed2565b6114b0565b005b34801561069157600080fd5b5061069a611536565b6040516106a79190612f40565b60405180910390f35b3480156106bc57600080fd5b506106c5611560565b6040516106d29190612e7a565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd91906132cf565b6115f2565b005b34801561071057600080fd5b5061072b600480360381019061072691906133b0565b611772565b005b34801561073957600080fd5b506107426117d4565b60405161074f9190612e7a565b60405180910390f35b34801561076457600080fd5b5061077f600480360381019061077a9190612ed2565b611862565b60405161078c9190612e7a565b60405180910390f35b3480156107a157600080fd5b506107aa61190c565b6040516107b79190612fd6565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e29190613044565b611912565b6040516107f49190612d6d565b60405180910390f35b34801561080957600080fd5b50610824600480360381019061081f9190613286565b611932565b005b34801561083257600080fd5b5061084d60048036038101906108489190613433565b6119c8565b60405161085a9190612d6d565b60405180910390f35b34801561086f57600080fd5b5061088a60048036038101906108859190613044565b611a5c565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ff57506108fe82611b53565b5b9050919050565b61090e611c35565b73ffffffffffffffffffffffffffffffffffffffff1661092c611536565b73ffffffffffffffffffffffffffffffffffffffff1614610982576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610979906134bf565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6060600080546109ae9061350e565b80601f01602080910402602001604051908101604052809291908181526020018280546109da9061350e565b8015610a275780601f106109fc57610100808354040283529160200191610a27565b820191906000526020600020905b815481529060010190602001808311610a0a57829003601f168201915b5050505050905090565b6000610a3c82611c3d565b610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a72906135b1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac182611232565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890613643565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b50611c35565b73ffffffffffffffffffffffffffffffffffffffff161480610b7f5750610b7e81610b79611c35565b6119c8565b5b610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb5906136d5565b60405180910390fd5b610bc88383611ca9565b505050565b600d5481565b6000600880549050905090565b60105481565b610bf7610bf1611c35565b82611d62565b610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d90613767565b60405180910390fd5b610c41838383611e40565b505050565b600e5481565b6000610c5783611371565b8210610c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8f906137f9565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b610d19611c35565b73ffffffffffffffffffffffffffffffffffffffff16610d37611536565b73ffffffffffffffffffffffffffffffffffffffff1614610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d84906134bf565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610db39061384a565b60006040518083038185875af1925050503d8060008114610df0576040519150601f19603f3d011682016040523d82523d6000602084013e610df5565b606091505b5050905080610e0357600080fd5b50565b6000610e10610bd3565b9050601160009054906101000a900460ff1615610e2c57600080fd5b60008211610e3957600080fd5b601054821115610e4857600080fd5b600f548282610e57919061388e565b1115610e6257600080fd5b610e6a611536565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f885760011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610f875760011515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610f6b5781600d54610f5a91906138e4565b341015610f6657600080fd5b610f86565b81600e54610f7991906138e4565b341015610f8557600080fd5b5b5b5b6000600190505b828111610fbe57610fab848284610fa6919061388e565b61209b565b8080610fb69061393e565b915050610f8f565b50505050565b610fdf83838360405180602001604052806000815250611772565b505050565b60606000610ff183611371565b905060008167ffffffffffffffff81111561100f5761100e61315b565b5b60405190808252806020026020018201604052801561103d5781602001602082028036833780820191505090505b50905060005b82811015611087576110558582610c4c565b82828151811061106857611067613986565b5b602002602001018181525050808061107f9061393e565b915050611043565b508092505050919050565b61109a611c35565b73ffffffffffffffffffffffffffffffffffffffff166110b8611536565b73ffffffffffffffffffffffffffffffffffffffff161461110e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611105906134bf565b60405180910390fd5b80600d8190555050565b6000611122610bd3565b8210611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a90613a27565b60405180910390fd5b6008828154811061117757611176613986565b5b90600052602060002001549050919050565b611191611c35565b73ffffffffffffffffffffffffffffffffffffffff166111af611536565b73ffffffffffffffffffffffffffffffffffffffff1614611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc906134bf565b60405180910390fd5b80600b908051906020019061121b929190612c16565b5050565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d190613ab9565b60405180910390fd5b80915050919050565b600b80546112f09061350e565b80601f016020809104026020016040519081016040528092919081815260200182805461131c9061350e565b80156113695780601f1061133e57610100808354040283529160200191611369565b820191906000526020600020905b81548152906001019060200180831161134c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d890613b4b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611430611c35565b73ffffffffffffffffffffffffffffffffffffffff1661144e611536565b73ffffffffffffffffffffffffffffffffffffffff16146114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b906134bf565b60405180910390fd5b6114ae60006120b9565b565b6114b8611c35565b73ffffffffffffffffffffffffffffffffffffffff166114d6611536565b73ffffffffffffffffffffffffffffffffffffffff161461152c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611523906134bf565b60405180910390fd5b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461156f9061350e565b80601f016020809104026020016040519081016040528092919081815260200182805461159b9061350e565b80156115e85780601f106115bd576101008083540402835291602001916115e8565b820191906000526020600020905b8154815290600101906020018083116115cb57829003601f168201915b5050505050905090565b6115fa611c35565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e90613bb7565b60405180910390fd5b8060056000611674611c35565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611721611c35565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117669190612d6d565b60405180910390a35050565b61178361177d611c35565b83611d62565b6117c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b990613767565b60405180910390fd5b6117ce8484848461217f565b50505050565b600c80546117e19061350e565b80601f016020809104026020016040519081016040528092919081815260200182805461180d9061350e565b801561185a5780601f1061182f5761010080835404028352916020019161185a565b820191906000526020600020905b81548152906001019060200180831161183d57829003601f168201915b505050505081565b606061186d82611c3d565b6118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a390613c49565b60405180910390fd5b60006118b66121db565b905060008151116118d65760405180602001604052806000815250611904565b806118e08461226d565b600c6040516020016118f493929190613d39565b6040516020818303038152906040525b915050919050565b600f5481565b60126020528060005260406000206000915054906101000a900460ff1681565b61193a611c35565b73ffffffffffffffffffffffffffffffffffffffff16611958611536565b73ffffffffffffffffffffffffffffffffffffffff16146119ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a5906134bf565b60405180910390fd5b80600c90805190602001906119c4929190612c16565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a64611c35565b73ffffffffffffffffffffffffffffffffffffffff16611a82611536565b73ffffffffffffffffffffffffffffffffffffffff1614611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf906134bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90613ddc565b60405180910390fd5b611b50816120b9565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c1e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c2e5750611c2d826123cd565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d1c83611232565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d6d82611c3d565b611dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da390613e6e565b60405180910390fd5b6000611db783611232565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e2657508373ffffffffffffffffffffffffffffffffffffffff16611e0e84610a31565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e375750611e3681856119c8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e6082611232565b73ffffffffffffffffffffffffffffffffffffffff1614611eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ead90613f00565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1c90613f92565b60405180910390fd5b611f30838383612437565b611f3b600082611ca9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f8b9190613fb2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fe2919061388e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6120b5828260405180602001604052806000815250612549565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61218a848484611e40565b612196848484846125a4565b6121d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cc90614058565b60405180910390fd5b50505050565b6060600b80546121ea9061350e565b80601f01602080910402602001604051908101604052809291908181526020018280546122169061350e565b80156122635780601f1061223857610100808354040283529160200191612263565b820191906000526020600020905b81548152906001019060200180831161224657829003601f168201915b5050505050905090565b6060600082036122b4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123c8565b600082905060005b600082146122e65780806122cf9061393e565b915050600a826122df91906140a7565b91506122bc565b60008167ffffffffffffffff8111156123025761230161315b565b5b6040519080825280601f01601f1916602001820160405280156123345781602001600182028036833780820191505090505b5090505b600085146123c15760018261234d9190613fb2565b9150600a8561235c91906140d8565b6030612368919061388e565b60f81b81838151811061237e5761237d613986565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123ba91906140a7565b9450612338565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61244283838361272b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124845761247f81612730565b6124c3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124c2576124c18382612779565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361250557612500816128e6565b612544565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146125435761254282826129b7565b5b5b505050565b6125538383612a36565b61256060008484846125a4565b61259f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259690614058565b60405180910390fd5b505050565b60006125c58473ffffffffffffffffffffffffffffffffffffffff16612c03565b1561271e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125ee611c35565b8786866040518563ffffffff1660e01b8152600401612610949392919061415e565b6020604051808303816000875af192505050801561264c57506040513d601f19601f8201168201806040525081019061264991906141bf565b60015b6126ce573d806000811461267c576040519150601f19603f3d011682016040523d82523d6000602084013e612681565b606091505b5060008151036126c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bd90614058565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612723565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161278684611371565b6127909190613fb2565b9050600060076000848152602001908152602001600020549050818114612875576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128fa9190613fb2565b905060006009600084815260200190815260200160002054905060006008838154811061292a57612929613986565b5b90600052602060002001549050806008838154811061294c5761294b613986565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061299b5761299a6141ec565b5b6001900381819060005260206000200160009055905550505050565b60006129c283611371565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9c90614267565b60405180910390fd5b612aae81611c3d565b15612aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae5906142d3565b60405180910390fd5b612afa60008383612437565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b4a919061388e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c229061350e565b90600052602060002090601f016020900481019282612c445760008555612c8b565b82601f10612c5d57805160ff1916838001178555612c8b565b82800160010185558215612c8b579182015b82811115612c8a578251825591602001919060010190612c6f565b5b509050612c989190612c9c565b5090565b5b80821115612cb5576000816000905550600101612c9d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d0281612ccd565b8114612d0d57600080fd5b50565b600081359050612d1f81612cf9565b92915050565b600060208284031215612d3b57612d3a612cc3565b5b6000612d4984828501612d10565b91505092915050565b60008115159050919050565b612d6781612d52565b82525050565b6000602082019050612d826000830184612d5e565b92915050565b612d9181612d52565b8114612d9c57600080fd5b50565b600081359050612dae81612d88565b92915050565b600060208284031215612dca57612dc9612cc3565b5b6000612dd884828501612d9f565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e1b578082015181840152602081019050612e00565b83811115612e2a576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e4c82612de1565b612e568185612dec565b9350612e66818560208601612dfd565b612e6f81612e30565b840191505092915050565b60006020820190508181036000830152612e948184612e41565b905092915050565b6000819050919050565b612eaf81612e9c565b8114612eba57600080fd5b50565b600081359050612ecc81612ea6565b92915050565b600060208284031215612ee857612ee7612cc3565b5b6000612ef684828501612ebd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f2a82612eff565b9050919050565b612f3a81612f1f565b82525050565b6000602082019050612f556000830184612f31565b92915050565b612f6481612f1f565b8114612f6f57600080fd5b50565b600081359050612f8181612f5b565b92915050565b60008060408385031215612f9e57612f9d612cc3565b5b6000612fac85828601612f72565b9250506020612fbd85828601612ebd565b9150509250929050565b612fd081612e9c565b82525050565b6000602082019050612feb6000830184612fc7565b92915050565b60008060006060848603121561300a57613009612cc3565b5b600061301886828701612f72565b935050602061302986828701612f72565b925050604061303a86828701612ebd565b9150509250925092565b60006020828403121561305a57613059612cc3565b5b600061306884828501612f72565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130a681612e9c565b82525050565b60006130b8838361309d565b60208301905092915050565b6000602082019050919050565b60006130dc82613071565b6130e6818561307c565b93506130f18361308d565b8060005b8381101561312257815161310988826130ac565b9750613114836130c4565b9250506001810190506130f5565b5085935050505092915050565b6000602082019050818103600083015261314981846130d1565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61319382612e30565b810181811067ffffffffffffffff821117156131b2576131b161315b565b5b80604052505050565b60006131c5612cb9565b90506131d1828261318a565b919050565b600067ffffffffffffffff8211156131f1576131f061315b565b5b6131fa82612e30565b9050602081019050919050565b82818337600083830152505050565b6000613229613224846131d6565b6131bb565b90508281526020810184848401111561324557613244613156565b5b613250848285613207565b509392505050565b600082601f83011261326d5761326c613151565b5b813561327d848260208601613216565b91505092915050565b60006020828403121561329c5761329b612cc3565b5b600082013567ffffffffffffffff8111156132ba576132b9612cc8565b5b6132c684828501613258565b91505092915050565b600080604083850312156132e6576132e5612cc3565b5b60006132f485828601612f72565b925050602061330585828601612d9f565b9150509250929050565b600067ffffffffffffffff82111561332a5761332961315b565b5b61333382612e30565b9050602081019050919050565b600061335361334e8461330f565b6131bb565b90508281526020810184848401111561336f5761336e613156565b5b61337a848285613207565b509392505050565b600082601f83011261339757613396613151565b5b81356133a7848260208601613340565b91505092915050565b600080600080608085870312156133ca576133c9612cc3565b5b60006133d887828801612f72565b94505060206133e987828801612f72565b93505060406133fa87828801612ebd565b925050606085013567ffffffffffffffff81111561341b5761341a612cc8565b5b61342787828801613382565b91505092959194509250565b6000806040838503121561344a57613449612cc3565b5b600061345885828601612f72565b925050602061346985828601612f72565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134a9602083612dec565b91506134b482613473565b602082019050919050565b600060208201905081810360008301526134d88161349c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061352657607f821691505b602082108103613539576135386134df565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061359b602c83612dec565b91506135a68261353f565b604082019050919050565b600060208201905081810360008301526135ca8161358e565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061362d602183612dec565b9150613638826135d1565b604082019050919050565b6000602082019050818103600083015261365c81613620565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006136bf603883612dec565b91506136ca82613663565b604082019050919050565b600060208201905081810360008301526136ee816136b2565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613751603183612dec565b915061375c826136f5565b604082019050919050565b6000602082019050818103600083015261378081613744565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006137e3602b83612dec565b91506137ee82613787565b604082019050919050565b60006020820190508181036000830152613812816137d6565b9050919050565b600081905092915050565b50565b6000613834600083613819565b915061383f82613824565b600082019050919050565b600061385582613827565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061389982612e9c565b91506138a483612e9c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138d9576138d861385f565b5b828201905092915050565b60006138ef82612e9c565b91506138fa83612e9c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139335761393261385f565b5b828202905092915050565b600061394982612e9c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361397b5761397a61385f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613a11602c83612dec565b9150613a1c826139b5565b604082019050919050565b60006020820190508181036000830152613a4081613a04565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613aa3602983612dec565b9150613aae82613a47565b604082019050919050565b60006020820190508181036000830152613ad281613a96565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613b35602a83612dec565b9150613b4082613ad9565b604082019050919050565b60006020820190508181036000830152613b6481613b28565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613ba1601983612dec565b9150613bac82613b6b565b602082019050919050565b60006020820190508181036000830152613bd081613b94565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c33602f83612dec565b9150613c3e82613bd7565b604082019050919050565b60006020820190508181036000830152613c6281613c26565b9050919050565b600081905092915050565b6000613c7f82612de1565b613c898185613c69565b9350613c99818560208601612dfd565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613cc78161350e565b613cd18186613c69565b94506001821660008114613cec5760018114613cfd57613d30565b60ff19831686528186019350613d30565b613d0685613ca5565b60005b83811015613d2857815481890152600182019150602081019050613d09565b838801955050505b50505092915050565b6000613d458286613c74565b9150613d518285613c74565b9150613d5d8284613cba565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613dc6602683612dec565b9150613dd182613d6a565b604082019050919050565b60006020820190508181036000830152613df581613db9565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613e58602c83612dec565b9150613e6382613dfc565b604082019050919050565b60006020820190508181036000830152613e8781613e4b565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613eea602983612dec565b9150613ef582613e8e565b604082019050919050565b60006020820190508181036000830152613f1981613edd565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613f7c602483612dec565b9150613f8782613f20565b604082019050919050565b60006020820190508181036000830152613fab81613f6f565b9050919050565b6000613fbd82612e9c565b9150613fc883612e9c565b925082821015613fdb57613fda61385f565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614042603283612dec565b915061404d82613fe6565b604082019050919050565b6000602082019050818103600083015261407181614035565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140b282612e9c565b91506140bd83612e9c565b9250826140cd576140cc614078565b5b828204905092915050565b60006140e382612e9c565b91506140ee83612e9c565b9250826140fe576140fd614078565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061413082614109565b61413a8185614114565b935061414a818560208601612dfd565b61415381612e30565b840191505092915050565b60006080820190506141736000830187612f31565b6141806020830186612f31565b61418d6040830185612fc7565b818103606083015261419f8184614125565b905095945050505050565b6000815190506141b981612cf9565b92915050565b6000602082840312156141d5576141d4612cc3565b5b60006141e3848285016141aa565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614251602083612dec565b915061425c8261421b565b602082019050919050565b6000602082019050818103600083015261428081614244565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006142bd601c83612dec565b91506142c882614287565b602082019050919050565b600060208201905081810360008301526142ec816142b0565b905091905056fea26469706673582212203d25a2c2644bf05690693f8cc7739917b4be2ce0a29f06a89f6965640995cb5d64736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d4a75737420412042616e616e6100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000642616e616e6100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d546e3136776f47486e78374139775271616f535a6e62683245646170584b4d7a3379637941676d6d474b66332f00000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806355f804b311610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610795578063d936547e146107c0578063da3ef23f146107fd578063e985e9c514610826578063f2fde38b146108635761020f565b8063a22cb465146106db578063b88d4fde14610704578063c66828621461072d578063c87b56dd146107585761020f565b806370a08231116100e757806370a0823114610608578063715018a6146106455780637f00c7a61461065c5780638da5cb5b1461068557806395d89b41146106b05761020f565b806355f804b31461054c5780635c975abb146105755780636352211e146105a05780636c0360eb146105dd5761020f565b80632a23d07d1161019b57806340c10f191161016a57806340c10f191461046457806342842e0e14610480578063438b6300146104a957806344a0d68a146104e65780634f6ccce71461050f5761020f565b80632a23d07d146103b55780632f745c59146103e057806330b2264e1461041d5780633ccfd60b1461045a5761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806313faede61461030b57806318160ddd14610336578063239c70ae1461036157806323b872dd1461038c5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612d25565b61088c565b6040516102489190612d6d565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190612db4565b610906565b005b34801561028657600080fd5b5061028f61099f565b60405161029c9190612e7a565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190612ed2565b610a31565b6040516102d99190612f40565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190612f87565b610ab6565b005b34801561031757600080fd5b50610320610bcd565b60405161032d9190612fd6565b60405180910390f35b34801561034257600080fd5b5061034b610bd3565b6040516103589190612fd6565b60405180910390f35b34801561036d57600080fd5b50610376610be0565b6040516103839190612fd6565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190612ff1565b610be6565b005b3480156103c157600080fd5b506103ca610c46565b6040516103d79190612fd6565b60405180910390f35b3480156103ec57600080fd5b5061040760048036038101906104029190612f87565b610c4c565b6040516104149190612fd6565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190613044565b610cf1565b6040516104519190612d6d565b60405180910390f35b610462610d11565b005b61047e60048036038101906104799190612f87565b610e06565b005b34801561048c57600080fd5b506104a760048036038101906104a29190612ff1565b610fc4565b005b3480156104b557600080fd5b506104d060048036038101906104cb9190613044565b610fe4565b6040516104dd919061312f565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190612ed2565b611092565b005b34801561051b57600080fd5b5061053660048036038101906105319190612ed2565b611118565b6040516105439190612fd6565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190613286565b611189565b005b34801561058157600080fd5b5061058a61121f565b6040516105979190612d6d565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190612ed2565b611232565b6040516105d49190612f40565b60405180910390f35b3480156105e957600080fd5b506105f26112e3565b6040516105ff9190612e7a565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190613044565b611371565b60405161063c9190612fd6565b60405180910390f35b34801561065157600080fd5b5061065a611428565b005b34801561066857600080fd5b50610683600480360381019061067e9190612ed2565b6114b0565b005b34801561069157600080fd5b5061069a611536565b6040516106a79190612f40565b60405180910390f35b3480156106bc57600080fd5b506106c5611560565b6040516106d29190612e7a565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd91906132cf565b6115f2565b005b34801561071057600080fd5b5061072b600480360381019061072691906133b0565b611772565b005b34801561073957600080fd5b506107426117d4565b60405161074f9190612e7a565b60405180910390f35b34801561076457600080fd5b5061077f600480360381019061077a9190612ed2565b611862565b60405161078c9190612e7a565b60405180910390f35b3480156107a157600080fd5b506107aa61190c565b6040516107b79190612fd6565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e29190613044565b611912565b6040516107f49190612d6d565b60405180910390f35b34801561080957600080fd5b50610824600480360381019061081f9190613286565b611932565b005b34801561083257600080fd5b5061084d60048036038101906108489190613433565b6119c8565b60405161085a9190612d6d565b60405180910390f35b34801561086f57600080fd5b5061088a60048036038101906108859190613044565b611a5c565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ff57506108fe82611b53565b5b9050919050565b61090e611c35565b73ffffffffffffffffffffffffffffffffffffffff1661092c611536565b73ffffffffffffffffffffffffffffffffffffffff1614610982576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610979906134bf565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6060600080546109ae9061350e565b80601f01602080910402602001604051908101604052809291908181526020018280546109da9061350e565b8015610a275780601f106109fc57610100808354040283529160200191610a27565b820191906000526020600020905b815481529060010190602001808311610a0a57829003601f168201915b5050505050905090565b6000610a3c82611c3d565b610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a72906135b1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac182611232565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890613643565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b50611c35565b73ffffffffffffffffffffffffffffffffffffffff161480610b7f5750610b7e81610b79611c35565b6119c8565b5b610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb5906136d5565b60405180910390fd5b610bc88383611ca9565b505050565b600d5481565b6000600880549050905090565b60105481565b610bf7610bf1611c35565b82611d62565b610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d90613767565b60405180910390fd5b610c41838383611e40565b505050565b600e5481565b6000610c5783611371565b8210610c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8f906137f9565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b610d19611c35565b73ffffffffffffffffffffffffffffffffffffffff16610d37611536565b73ffffffffffffffffffffffffffffffffffffffff1614610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d84906134bf565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610db39061384a565b60006040518083038185875af1925050503d8060008114610df0576040519150601f19603f3d011682016040523d82523d6000602084013e610df5565b606091505b5050905080610e0357600080fd5b50565b6000610e10610bd3565b9050601160009054906101000a900460ff1615610e2c57600080fd5b60008211610e3957600080fd5b601054821115610e4857600080fd5b600f548282610e57919061388e565b1115610e6257600080fd5b610e6a611536565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f885760011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610f875760011515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610f6b5781600d54610f5a91906138e4565b341015610f6657600080fd5b610f86565b81600e54610f7991906138e4565b341015610f8557600080fd5b5b5b5b6000600190505b828111610fbe57610fab848284610fa6919061388e565b61209b565b8080610fb69061393e565b915050610f8f565b50505050565b610fdf83838360405180602001604052806000815250611772565b505050565b60606000610ff183611371565b905060008167ffffffffffffffff81111561100f5761100e61315b565b5b60405190808252806020026020018201604052801561103d5781602001602082028036833780820191505090505b50905060005b82811015611087576110558582610c4c565b82828151811061106857611067613986565b5b602002602001018181525050808061107f9061393e565b915050611043565b508092505050919050565b61109a611c35565b73ffffffffffffffffffffffffffffffffffffffff166110b8611536565b73ffffffffffffffffffffffffffffffffffffffff161461110e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611105906134bf565b60405180910390fd5b80600d8190555050565b6000611122610bd3565b8210611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a90613a27565b60405180910390fd5b6008828154811061117757611176613986565b5b90600052602060002001549050919050565b611191611c35565b73ffffffffffffffffffffffffffffffffffffffff166111af611536565b73ffffffffffffffffffffffffffffffffffffffff1614611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc906134bf565b60405180910390fd5b80600b908051906020019061121b929190612c16565b5050565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d190613ab9565b60405180910390fd5b80915050919050565b600b80546112f09061350e565b80601f016020809104026020016040519081016040528092919081815260200182805461131c9061350e565b80156113695780601f1061133e57610100808354040283529160200191611369565b820191906000526020600020905b81548152906001019060200180831161134c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d890613b4b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611430611c35565b73ffffffffffffffffffffffffffffffffffffffff1661144e611536565b73ffffffffffffffffffffffffffffffffffffffff16146114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b906134bf565b60405180910390fd5b6114ae60006120b9565b565b6114b8611c35565b73ffffffffffffffffffffffffffffffffffffffff166114d6611536565b73ffffffffffffffffffffffffffffffffffffffff161461152c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611523906134bf565b60405180910390fd5b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461156f9061350e565b80601f016020809104026020016040519081016040528092919081815260200182805461159b9061350e565b80156115e85780601f106115bd576101008083540402835291602001916115e8565b820191906000526020600020905b8154815290600101906020018083116115cb57829003601f168201915b5050505050905090565b6115fa611c35565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e90613bb7565b60405180910390fd5b8060056000611674611c35565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611721611c35565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117669190612d6d565b60405180910390a35050565b61178361177d611c35565b83611d62565b6117c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b990613767565b60405180910390fd5b6117ce8484848461217f565b50505050565b600c80546117e19061350e565b80601f016020809104026020016040519081016040528092919081815260200182805461180d9061350e565b801561185a5780601f1061182f5761010080835404028352916020019161185a565b820191906000526020600020905b81548152906001019060200180831161183d57829003601f168201915b505050505081565b606061186d82611c3d565b6118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a390613c49565b60405180910390fd5b60006118b66121db565b905060008151116118d65760405180602001604052806000815250611904565b806118e08461226d565b600c6040516020016118f493929190613d39565b6040516020818303038152906040525b915050919050565b600f5481565b60126020528060005260406000206000915054906101000a900460ff1681565b61193a611c35565b73ffffffffffffffffffffffffffffffffffffffff16611958611536565b73ffffffffffffffffffffffffffffffffffffffff16146119ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a5906134bf565b60405180910390fd5b80600c90805190602001906119c4929190612c16565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a64611c35565b73ffffffffffffffffffffffffffffffffffffffff16611a82611536565b73ffffffffffffffffffffffffffffffffffffffff1614611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf906134bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90613ddc565b60405180910390fd5b611b50816120b9565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c1e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c2e5750611c2d826123cd565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d1c83611232565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d6d82611c3d565b611dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da390613e6e565b60405180910390fd5b6000611db783611232565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e2657508373ffffffffffffffffffffffffffffffffffffffff16611e0e84610a31565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e375750611e3681856119c8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e6082611232565b73ffffffffffffffffffffffffffffffffffffffff1614611eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ead90613f00565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1c90613f92565b60405180910390fd5b611f30838383612437565b611f3b600082611ca9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f8b9190613fb2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fe2919061388e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6120b5828260405180602001604052806000815250612549565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61218a848484611e40565b612196848484846125a4565b6121d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cc90614058565b60405180910390fd5b50505050565b6060600b80546121ea9061350e565b80601f01602080910402602001604051908101604052809291908181526020018280546122169061350e565b80156122635780601f1061223857610100808354040283529160200191612263565b820191906000526020600020905b81548152906001019060200180831161224657829003601f168201915b5050505050905090565b6060600082036122b4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123c8565b600082905060005b600082146122e65780806122cf9061393e565b915050600a826122df91906140a7565b91506122bc565b60008167ffffffffffffffff8111156123025761230161315b565b5b6040519080825280601f01601f1916602001820160405280156123345781602001600182028036833780820191505090505b5090505b600085146123c15760018261234d9190613fb2565b9150600a8561235c91906140d8565b6030612368919061388e565b60f81b81838151811061237e5761237d613986565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123ba91906140a7565b9450612338565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61244283838361272b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124845761247f81612730565b6124c3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124c2576124c18382612779565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361250557612500816128e6565b612544565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146125435761254282826129b7565b5b5b505050565b6125538383612a36565b61256060008484846125a4565b61259f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259690614058565b60405180910390fd5b505050565b60006125c58473ffffffffffffffffffffffffffffffffffffffff16612c03565b1561271e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125ee611c35565b8786866040518563ffffffff1660e01b8152600401612610949392919061415e565b6020604051808303816000875af192505050801561264c57506040513d601f19601f8201168201806040525081019061264991906141bf565b60015b6126ce573d806000811461267c576040519150601f19603f3d011682016040523d82523d6000602084013e612681565b606091505b5060008151036126c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bd90614058565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612723565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161278684611371565b6127909190613fb2565b9050600060076000848152602001908152602001600020549050818114612875576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128fa9190613fb2565b905060006009600084815260200190815260200160002054905060006008838154811061292a57612929613986565b5b90600052602060002001549050806008838154811061294c5761294b613986565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061299b5761299a6141ec565b5b6001900381819060005260206000200160009055905550505050565b60006129c283611371565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9c90614267565b60405180910390fd5b612aae81611c3d565b15612aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae5906142d3565b60405180910390fd5b612afa60008383612437565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b4a919061388e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c229061350e565b90600052602060002090601f016020900481019282612c445760008555612c8b565b82601f10612c5d57805160ff1916838001178555612c8b565b82800160010185558215612c8b579182015b82811115612c8a578251825591602001919060010190612c6f565b5b509050612c989190612c9c565b5090565b5b80821115612cb5576000816000905550600101612c9d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d0281612ccd565b8114612d0d57600080fd5b50565b600081359050612d1f81612cf9565b92915050565b600060208284031215612d3b57612d3a612cc3565b5b6000612d4984828501612d10565b91505092915050565b60008115159050919050565b612d6781612d52565b82525050565b6000602082019050612d826000830184612d5e565b92915050565b612d9181612d52565b8114612d9c57600080fd5b50565b600081359050612dae81612d88565b92915050565b600060208284031215612dca57612dc9612cc3565b5b6000612dd884828501612d9f565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e1b578082015181840152602081019050612e00565b83811115612e2a576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e4c82612de1565b612e568185612dec565b9350612e66818560208601612dfd565b612e6f81612e30565b840191505092915050565b60006020820190508181036000830152612e948184612e41565b905092915050565b6000819050919050565b612eaf81612e9c565b8114612eba57600080fd5b50565b600081359050612ecc81612ea6565b92915050565b600060208284031215612ee857612ee7612cc3565b5b6000612ef684828501612ebd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f2a82612eff565b9050919050565b612f3a81612f1f565b82525050565b6000602082019050612f556000830184612f31565b92915050565b612f6481612f1f565b8114612f6f57600080fd5b50565b600081359050612f8181612f5b565b92915050565b60008060408385031215612f9e57612f9d612cc3565b5b6000612fac85828601612f72565b9250506020612fbd85828601612ebd565b9150509250929050565b612fd081612e9c565b82525050565b6000602082019050612feb6000830184612fc7565b92915050565b60008060006060848603121561300a57613009612cc3565b5b600061301886828701612f72565b935050602061302986828701612f72565b925050604061303a86828701612ebd565b9150509250925092565b60006020828403121561305a57613059612cc3565b5b600061306884828501612f72565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130a681612e9c565b82525050565b60006130b8838361309d565b60208301905092915050565b6000602082019050919050565b60006130dc82613071565b6130e6818561307c565b93506130f18361308d565b8060005b8381101561312257815161310988826130ac565b9750613114836130c4565b9250506001810190506130f5565b5085935050505092915050565b6000602082019050818103600083015261314981846130d1565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61319382612e30565b810181811067ffffffffffffffff821117156131b2576131b161315b565b5b80604052505050565b60006131c5612cb9565b90506131d1828261318a565b919050565b600067ffffffffffffffff8211156131f1576131f061315b565b5b6131fa82612e30565b9050602081019050919050565b82818337600083830152505050565b6000613229613224846131d6565b6131bb565b90508281526020810184848401111561324557613244613156565b5b613250848285613207565b509392505050565b600082601f83011261326d5761326c613151565b5b813561327d848260208601613216565b91505092915050565b60006020828403121561329c5761329b612cc3565b5b600082013567ffffffffffffffff8111156132ba576132b9612cc8565b5b6132c684828501613258565b91505092915050565b600080604083850312156132e6576132e5612cc3565b5b60006132f485828601612f72565b925050602061330585828601612d9f565b9150509250929050565b600067ffffffffffffffff82111561332a5761332961315b565b5b61333382612e30565b9050602081019050919050565b600061335361334e8461330f565b6131bb565b90508281526020810184848401111561336f5761336e613156565b5b61337a848285613207565b509392505050565b600082601f83011261339757613396613151565b5b81356133a7848260208601613340565b91505092915050565b600080600080608085870312156133ca576133c9612cc3565b5b60006133d887828801612f72565b94505060206133e987828801612f72565b93505060406133fa87828801612ebd565b925050606085013567ffffffffffffffff81111561341b5761341a612cc8565b5b61342787828801613382565b91505092959194509250565b6000806040838503121561344a57613449612cc3565b5b600061345885828601612f72565b925050602061346985828601612f72565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134a9602083612dec565b91506134b482613473565b602082019050919050565b600060208201905081810360008301526134d88161349c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061352657607f821691505b602082108103613539576135386134df565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061359b602c83612dec565b91506135a68261353f565b604082019050919050565b600060208201905081810360008301526135ca8161358e565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061362d602183612dec565b9150613638826135d1565b604082019050919050565b6000602082019050818103600083015261365c81613620565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006136bf603883612dec565b91506136ca82613663565b604082019050919050565b600060208201905081810360008301526136ee816136b2565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613751603183612dec565b915061375c826136f5565b604082019050919050565b6000602082019050818103600083015261378081613744565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006137e3602b83612dec565b91506137ee82613787565b604082019050919050565b60006020820190508181036000830152613812816137d6565b9050919050565b600081905092915050565b50565b6000613834600083613819565b915061383f82613824565b600082019050919050565b600061385582613827565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061389982612e9c565b91506138a483612e9c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138d9576138d861385f565b5b828201905092915050565b60006138ef82612e9c565b91506138fa83612e9c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139335761393261385f565b5b828202905092915050565b600061394982612e9c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361397b5761397a61385f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613a11602c83612dec565b9150613a1c826139b5565b604082019050919050565b60006020820190508181036000830152613a4081613a04565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613aa3602983612dec565b9150613aae82613a47565b604082019050919050565b60006020820190508181036000830152613ad281613a96565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613b35602a83612dec565b9150613b4082613ad9565b604082019050919050565b60006020820190508181036000830152613b6481613b28565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613ba1601983612dec565b9150613bac82613b6b565b602082019050919050565b60006020820190508181036000830152613bd081613b94565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c33602f83612dec565b9150613c3e82613bd7565b604082019050919050565b60006020820190508181036000830152613c6281613c26565b9050919050565b600081905092915050565b6000613c7f82612de1565b613c898185613c69565b9350613c99818560208601612dfd565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613cc78161350e565b613cd18186613c69565b94506001821660008114613cec5760018114613cfd57613d30565b60ff19831686528186019350613d30565b613d0685613ca5565b60005b83811015613d2857815481890152600182019150602081019050613d09565b838801955050505b50505092915050565b6000613d458286613c74565b9150613d518285613c74565b9150613d5d8284613cba565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613dc6602683612dec565b9150613dd182613d6a565b604082019050919050565b60006020820190508181036000830152613df581613db9565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613e58602c83612dec565b9150613e6382613dfc565b604082019050919050565b60006020820190508181036000830152613e8781613e4b565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613eea602983612dec565b9150613ef582613e8e565b604082019050919050565b60006020820190508181036000830152613f1981613edd565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613f7c602483612dec565b9150613f8782613f20565b604082019050919050565b60006020820190508181036000830152613fab81613f6f565b9050919050565b6000613fbd82612e9c565b9150613fc883612e9c565b925082821015613fdb57613fda61385f565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614042603283612dec565b915061404d82613fe6565b604082019050919050565b6000602082019050818103600083015261407181614035565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140b282612e9c565b91506140bd83612e9c565b9250826140cd576140cc614078565b5b828204905092915050565b60006140e382612e9c565b91506140ee83612e9c565b9250826140fe576140fd614078565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061413082614109565b61413a8185614114565b935061414a818560208601612dfd565b61415381612e30565b840191505092915050565b60006080820190506141736000830187612f31565b6141806020830186612f31565b61418d6040830185612fc7565b818103606083015261419f8184614125565b905095945050505050565b6000815190506141b981612cf9565b92915050565b6000602082840312156141d5576141d4612cc3565b5b60006141e3848285016141aa565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614251602083612dec565b915061425c8261421b565b602082019050919050565b6000602082019050818103600083015261428081614244565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006142bd601c83612dec565b91506142c882614287565b602082019050919050565b600060208201905081810360008301526142ec816142b0565b905091905056fea26469706673582212203d25a2c2644bf05690693f8cc7739917b4be2ce0a29f06a89f6965640995cb5d64736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d4a75737420412042616e616e6100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000642616e616e6100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d546e3136776f47486e78374139775271616f535a6e62683245646170584b4d7a3379637941676d6d474b66332f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Just A Banana
Arg [1] : _symbol (string): Banana
Arg [2] : _initBaseURI (string): ipfs://QmTn16woGHnx7A9wRqaoSZnbh2EdapXKMz3ycyAgmmGKf3/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 4a75737420412042616e616e6100000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 42616e616e610000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d546e3136776f47486e78374139775271616f535a6e6268
Arg [9] : 3245646170584b4d7a3379637941676d6d474b66332f00000000000000000000


Deployed Bytecode Sourcemap

45036:3455:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38531:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48209:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25703:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27396:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26919:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45199:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39334:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45315:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28455:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45235:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38915:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45438:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48296:192;;;:::i;:::-;;45833:807;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28902:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46648:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47714:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39524:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47938:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45355:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25310:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45127:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24953:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4569:94;;;;;;;;;;;;;:::i;:::-;;47808:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3918:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25872:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27776:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29158:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45155:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47046:642;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45278:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45388:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48050:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28174:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4818:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38531:300;38678:4;38735:35;38720:50;;;:11;:50;;;;:103;;;;38787:36;38811:11;38787:23;:36::i;:::-;38720:103;38700:123;;38531:300;;;:::o;48209:79::-;4149:12;:10;:12::i;:::-;4138:23;;:7;:5;:7::i;:::-;:23;;;4130:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48274:6:::1;48265;;:15;;;;;;;;;;;;;;;;;;48209:79:::0;:::o;25703:100::-;25757:13;25790:5;25783:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25703:100;:::o;27396:308::-;27517:7;27564:16;27572:7;27564;:16::i;:::-;27542:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;27672:15;:24;27688:7;27672:24;;;;;;;;;;;;;;;;;;;;;27665:31;;27396:308;;;:::o;26919:411::-;27000:13;27016:23;27031:7;27016:14;:23::i;:::-;27000:39;;27064:5;27058:11;;:2;:11;;;27050:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27158:5;27142:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27167:37;27184:5;27191:12;:10;:12::i;:::-;27167:16;:37::i;:::-;27142:62;27120:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27301:21;27310:2;27314:7;27301:8;:21::i;:::-;26989:341;26919:411;;:::o;45199:29::-;;;;:::o;39334:113::-;39395:7;39422:10;:17;;;;39415:24;;39334:113;:::o;45315:33::-;;;;:::o;28455:376::-;28664:41;28683:12;:10;:12::i;:::-;28697:7;28664:18;:41::i;:::-;28642:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;28795:28;28805:4;28811:2;28815:7;28795:9;:28::i;:::-;28455:376;;;:::o;45235:36::-;;;;:::o;38915:343::-;39057:7;39112:23;39129:5;39112:16;:23::i;:::-;39104:5;:31;39082:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;39224:12;:19;39237:5;39224:19;;;;;;;;;;;;;;;:26;39244:5;39224:26;;;;;;;;;;;;39217:33;;38915:343;;;;:::o;45438:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;48296:192::-;4149:12;:10;:12::i;:::-;4138:23;;:7;:5;:7::i;:::-;:23;;;4130:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48353:12:::1;48379:10;48371:24;;48417:21;48371:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48352:101;;;48472:7;48464:16;;;::::0;::::1;;48341:147;48296:192::o:0;45833:807::-;45907:14;45924:13;:11;:13::i;:::-;45907:30;;45957:6;;;;;;;;;;;45956:7;45948:16;;;;;;45997:1;45983:11;:15;45975:24;;;;;;46033:13;;46018:11;:28;;46010:37;;;;;;46090:9;;46075:11;46066:6;:20;;;;:::i;:::-;:33;;46058:42;;;;;;46131:7;:5;:7::i;:::-;46117:21;;:10;:21;;;46113:412;;46186:4;46159:31;;:11;:23;46171:10;46159:23;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;46155:359;;46245:4;46215:34;;:14;:26;46230:10;46215:26;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;46211:288;;46340:11;46333:4;;:18;;;;:::i;:::-;46320:9;:31;;46312:40;;;;;;46211:288;;;46467:11;46453;;:25;;;;:::i;:::-;46440:9;:38;;46432:47;;;;;;46211:288;46155:359;46113:412;46542:9;46554:1;46542:13;;46537:96;46562:11;46557:1;:16;46537:96;;46595:26;46605:3;46619:1;46610:6;:10;;;;:::i;:::-;46595:9;:26::i;:::-;46575:3;;;;;:::i;:::-;;;;46537:96;;;;45896:744;45833:807;;:::o;28902:185::-;29040:39;29057:4;29063:2;29067:7;29040:39;;;;;;;;;;;;:16;:39::i;:::-;28902:185;;;:::o;46648:390::-;46735:16;46769:23;46795:17;46805:6;46795:9;:17::i;:::-;46769:43;;46823:25;46865:15;46851:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46823:58;;46897:9;46892:113;46912:15;46908:1;:19;46892:113;;;46963:30;46983:6;46991:1;46963:19;:30::i;:::-;46949:8;46958:1;46949:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;46929:3;;;;;:::i;:::-;;;;46892:113;;;;47022:8;47015:15;;;;46648:390;;;:::o;47714:86::-;4149:12;:10;:12::i;:::-;4138:23;;:7;:5;:7::i;:::-;:23;;;4130:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47784:8:::1;47777:4;:15;;;;47714:86:::0;:::o;39524:320::-;39644:7;39699:30;:28;:30::i;:::-;39691:5;:38;39669:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;39819:10;39830:5;39819:17;;;;;;;;:::i;:::-;;;;;;;;;;39812:24;;39524:320;;;:::o;47938:104::-;4149:12;:10;:12::i;:::-;4138:23;;:7;:5;:7::i;:::-;:23;;;4130:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48023:11:::1;48013:7;:21;;;;;;;;;;;;:::i;:::-;;47938:104:::0;:::o;45355:26::-;;;;;;;;;;;;;:::o;25310:326::-;25427:7;25452:13;25468:7;:16;25476:7;25468:16;;;;;;;;;;;;;;;;;;;;;25452:32;;25534:1;25517:19;;:5;:19;;;25495:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;25623:5;25616:12;;;25310:326;;;:::o;45127:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24953:295::-;25070:7;25134:1;25117:19;;:5;:19;;;25095:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25224:9;:16;25234:5;25224:16;;;;;;;;;;;;;;;;25217:23;;24953:295;;;:::o;4569:94::-;4149:12;:10;:12::i;:::-;4138:23;;:7;:5;:7::i;:::-;:23;;;4130:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4634:21:::1;4652:1;4634:9;:21::i;:::-;4569:94::o:0;47808:122::-;4149:12;:10;:12::i;:::-;4138:23;;:7;:5;:7::i;:::-;:23;;;4130:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47905:17:::1;47889:13;:33;;;;47808:122:::0;:::o;3918:87::-;3964:7;3991:6;;;;;;;;;;;3984:13;;3918:87;:::o;25872:104::-;25928:13;25961:7;25954:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25872:104;:::o;27776:327::-;27923:12;:10;:12::i;:::-;27911:24;;:8;:24;;;27903:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;28023:8;27978:18;:32;27997:12;:10;:12::i;:::-;27978:32;;;;;;;;;;;;;;;:42;28011:8;27978:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28076:8;28047:48;;28062:12;:10;:12::i;:::-;28047:48;;;28086:8;28047:48;;;;;;:::i;:::-;;;;;;;;27776:327;;:::o;29158:365::-;29347:41;29366:12;:10;:12::i;:::-;29380:7;29347:18;:41::i;:::-;29325:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;29476:39;29490:4;29496:2;29500:7;29509:5;29476:13;:39::i;:::-;29158:365;;;;:::o;45155:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47046:642::-;47164:13;47217:16;47225:7;47217;:16::i;:::-;47195:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;47321:28;47352:10;:8;:10::i;:::-;47321:41;;47424:1;47399:14;47393:28;:32;:287;;;;;;;;;;;;;;;;;47517:14;47558:18;:7;:16;:18::i;:::-;47603:13;47474:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47393:287;47373:307;;;47046:642;;;:::o;45278:30::-;;;;:::o;45388:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;48050:151::-;4149:12;:10;:12::i;:::-;4138:23;;:7;:5;:7::i;:::-;:23;;;4130:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48176:17:::1;48160:13;:33;;;;;;;;;;;;:::i;:::-;;48050:151:::0;:::o;28174:214::-;28316:4;28345:18;:25;28364:5;28345:25;;;;;;;;;;;;;;;:35;28371:8;28345:35;;;;;;;;;;;;;;;;;;;;;;;;;28338:42;;28174:214;;;;:::o;4818:229::-;4149:12;:10;:12::i;:::-;4138:23;;:7;:5;:7::i;:::-;:23;;;4130:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4941:1:::1;4921:22;;:8;:22;;::::0;4899:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5020:19;5030:8;5020:9;:19::i;:::-;4818:229:::0;:::o;24534:355::-;24681:4;24738:25;24723:40;;;:11;:40;;;;:105;;;;24795:33;24780:48;;;:11;:48;;;;24723:105;:158;;;;24845:36;24869:11;24845:23;:36::i;:::-;24723:158;24703:178;;24534:355;;;:::o;2697:98::-;2750:7;2777:10;2770:17;;2697:98;:::o;31070:127::-;31135:4;31187:1;31159:30;;:7;:16;31167:7;31159:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31152:37;;31070:127;;;:::o;35193:174::-;35295:2;35268:15;:24;35284:7;35268:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35351:7;35347:2;35313:46;;35322:23;35337:7;35322:14;:23::i;:::-;35313:46;;;;;;;;;;;;35193:174;;:::o;31364:452::-;31493:4;31537:16;31545:7;31537;:16::i;:::-;31515:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;31636:13;31652:23;31667:7;31652:14;:23::i;:::-;31636:39;;31705:5;31694:16;;:7;:16;;;:64;;;;31751:7;31727:31;;:20;31739:7;31727:11;:20::i;:::-;:31;;;31694:64;:113;;;;31775:32;31792:5;31799:7;31775:16;:32::i;:::-;31694:113;31686:122;;;31364:452;;;;:::o;34460:615::-;34633:4;34606:31;;:23;34621:7;34606:14;:23::i;:::-;:31;;;34584:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;34739:1;34725:16;;:2;:16;;;34717:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34795:39;34816:4;34822:2;34826:7;34795:20;:39::i;:::-;34899:29;34916:1;34920:7;34899:8;:29::i;:::-;34960:1;34941:9;:15;34951:4;34941:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34989:1;34972:9;:13;34982:2;34972:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35020:2;35001:7;:16;35009:7;35001:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35059:7;35055:2;35040:27;;35049:4;35040:27;;;;;;;;;;;;34460:615;;;:::o;32158:110::-;32234:26;32244:2;32248:7;32234:26;;;;;;;;;;;;:9;:26::i;:::-;32158:110;;:::o;5055:173::-;5111:16;5130:6;;;;;;;;;;;5111:25;;5156:8;5147:6;;:17;;;;;;;;;;;;;;;;;;5211:8;5180:40;;5201:8;5180:40;;;;;;;;;;;;5100:128;5055:173;:::o;30405:352::-;30562:28;30572:4;30578:2;30582:7;30562:9;:28::i;:::-;30623:48;30646:4;30652:2;30656:7;30665:5;30623:22;:48::i;:::-;30601:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;30405:352;;;;:::o;45702:108::-;45762:13;45795:7;45788:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45702:108;:::o;297:723::-;353:13;583:1;574:5;:10;570:53;;601:10;;;;;;;;;;;;;;;;;;;;;570:53;633:12;648:5;633:20;;664:14;689:78;704:1;696:4;:9;689:78;;722:8;;;;;:::i;:::-;;;;753:2;745:10;;;;;:::i;:::-;;;689:78;;;777:19;809:6;799:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;777:39;;827:154;843:1;834:5;:10;827:154;;871:1;861:11;;;;;:::i;:::-;;;938:2;930:5;:10;;;;:::i;:::-;917:2;:24;;;;:::i;:::-;904:39;;887:6;894;887:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;967:2;958:11;;;;;:::i;:::-;;;827:154;;;1005:6;991:21;;;;;297:723;;;;:::o;16344:207::-;16474:4;16518:25;16503:40;;;:11;:40;;;;16496:47;;16344:207;;;:::o;40457:589::-;40601:45;40628:4;40634:2;40638:7;40601:26;:45::i;:::-;40679:1;40663:18;;:4;:18;;;40659:187;;40698:40;40730:7;40698:31;:40::i;:::-;40659:187;;;40768:2;40760:10;;:4;:10;;;40756:90;;40787:47;40820:4;40826:7;40787:32;:47::i;:::-;40756:90;40659:187;40874:1;40860:16;;:2;:16;;;40856:183;;40893:45;40930:7;40893:36;:45::i;:::-;40856:183;;;40966:4;40960:10;;:2;:10;;;40956:83;;40987:40;41015:2;41019:7;40987:27;:40::i;:::-;40956:83;40856:183;40457:589;;;:::o;32495:321::-;32625:18;32631:2;32635:7;32625:5;:18::i;:::-;32676:54;32707:1;32711:2;32715:7;32724:5;32676:22;:54::i;:::-;32654:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32495:321;;;:::o;35932:980::-;36087:4;36108:15;:2;:13;;;:15::i;:::-;36104:801;;;36177:2;36161:36;;;36220:12;:10;:12::i;:::-;36255:4;36282:7;36312:5;36161:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36140:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36536:1;36519:6;:13;:18;36515:320;;36562:108;;;;;;;;;;:::i;:::-;;;;;;;;36515:320;36785:6;36779:13;36770:6;36766:2;36762:15;36755:38;36140:710;36410:41;;;36400:51;;;:6;:51;;;;36393:58;;;;;36104:801;36889:4;36882:11;;35932:980;;;;;;;:::o;37484:126::-;;;;:::o;41769:164::-;41873:10;:17;;;;41846:15;:24;41862:7;41846:24;;;;;;;;;;;:44;;;;41901:10;41917:7;41901:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41769:164;:::o;42560:1002::-;42840:22;42890:1;42865:22;42882:4;42865:16;:22::i;:::-;:26;;;;:::i;:::-;42840:51;;42902:18;42923:17;:26;42941:7;42923:26;;;;;;;;;;;;42902:47;;43070:14;43056:10;:28;43052:328;;43101:19;43123:12;:18;43136:4;43123:18;;;;;;;;;;;;;;;:34;43142:14;43123:34;;;;;;;;;;;;43101:56;;43207:11;43174:12;:18;43187:4;43174:18;;;;;;;;;;;;;;;:30;43193:10;43174:30;;;;;;;;;;;:44;;;;43324:10;43291:17;:30;43309:11;43291:30;;;;;;;;;;;:43;;;;43086:294;43052:328;43476:17;:26;43494:7;43476:26;;;;;;;;;;;43469:33;;;43520:12;:18;43533:4;43520:18;;;;;;;;;;;;;;;:34;43539:14;43520:34;;;;;;;;;;;43513:41;;;42655:907;;42560:1002;;:::o;43857:1079::-;44110:22;44155:1;44135:10;:17;;;;:21;;;;:::i;:::-;44110:46;;44167:18;44188:15;:24;44204:7;44188:24;;;;;;;;;;;;44167:45;;44539:19;44561:10;44572:14;44561:26;;;;;;;;:::i;:::-;;;;;;;;;;44539:48;;44625:11;44600:10;44611;44600:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;44736:10;44705:15;:28;44721:11;44705:28;;;;;;;;;;;:41;;;;44877:15;:24;44893:7;44877:24;;;;;;;;;;;44870:31;;;44912:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43928:1008;;;43857:1079;:::o;41347:221::-;41432:14;41449:20;41466:2;41449:16;:20::i;:::-;41432:37;;41507:7;41480:12;:16;41493:2;41480:16;;;;;;;;;;;;;;;:24;41497:6;41480:24;;;;;;;;;;;:34;;;;41554:6;41525:17;:26;41543:7;41525:26;;;;;;;;;;;:35;;;;41421:147;41347:221;;:::o;33152:382::-;33246:1;33232:16;;:2;:16;;;33224:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33305:16;33313:7;33305;:16::i;:::-;33304:17;33296:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33367:45;33396:1;33400:2;33404:7;33367:20;:45::i;:::-;33442:1;33425:9;:13;33435:2;33425:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33473:2;33454:7;:16;33462:7;33454:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33518:7;33514:2;33493:33;;33510:1;33493:33;;;;;;;;;;;;33152:382;;:::o;5985:387::-;6045:4;6253:12;6320:7;6308:20;6300:28;;6363:1;6356:4;:8;6349:15;;;5985:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:329::-;6564:6;6613:2;6601:9;6592:7;6588:23;6584:32;6581:119;;;6619:79;;:::i;:::-;6581:119;6739:1;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6710:117;6505:329;;;;:::o;6840:114::-;6907:6;6941:5;6935:12;6925:22;;6840:114;;;:::o;6960:184::-;7059:11;7093:6;7088:3;7081:19;7133:4;7128:3;7124:14;7109:29;;6960:184;;;;:::o;7150:132::-;7217:4;7240:3;7232:11;;7270:4;7265:3;7261:14;7253:22;;7150:132;;;:::o;7288:108::-;7365:24;7383:5;7365:24;:::i;:::-;7360:3;7353:37;7288:108;;:::o;7402:179::-;7471:10;7492:46;7534:3;7526:6;7492:46;:::i;:::-;7570:4;7565:3;7561:14;7547:28;;7402:179;;;;:::o;7587:113::-;7657:4;7689;7684:3;7680:14;7672:22;;7587:113;;;:::o;7736:732::-;7855:3;7884:54;7932:5;7884:54;:::i;:::-;7954:86;8033:6;8028:3;7954:86;:::i;:::-;7947:93;;8064:56;8114:5;8064:56;:::i;:::-;8143:7;8174:1;8159:284;8184:6;8181:1;8178:13;8159:284;;;8260:6;8254:13;8287:63;8346:3;8331:13;8287:63;:::i;:::-;8280:70;;8373:60;8426:6;8373:60;:::i;:::-;8363:70;;8219:224;8206:1;8203;8199:9;8194:14;;8159:284;;;8163:14;8459:3;8452:10;;7860:608;;;7736:732;;;;:::o;8474:373::-;8617:4;8655:2;8644:9;8640:18;8632:26;;8704:9;8698:4;8694:20;8690:1;8679:9;8675:17;8668:47;8732:108;8835:4;8826:6;8732:108;:::i;:::-;8724:116;;8474:373;;;;:::o;8853:117::-;8962:1;8959;8952:12;8976:117;9085:1;9082;9075:12;9099:180;9147:77;9144:1;9137:88;9244:4;9241:1;9234:15;9268:4;9265:1;9258:15;9285:281;9368:27;9390:4;9368:27;:::i;:::-;9360:6;9356:40;9498:6;9486:10;9483:22;9462:18;9450:10;9447:34;9444:62;9441:88;;;9509:18;;:::i;:::-;9441:88;9549:10;9545:2;9538:22;9328:238;9285:281;;:::o;9572:129::-;9606:6;9633:20;;:::i;:::-;9623:30;;9662:33;9690:4;9682:6;9662:33;:::i;:::-;9572:129;;;:::o;9707:308::-;9769:4;9859:18;9851:6;9848:30;9845:56;;;9881:18;;:::i;:::-;9845:56;9919:29;9941:6;9919:29;:::i;:::-;9911:37;;10003:4;9997;9993:15;9985:23;;9707:308;;;:::o;10021:154::-;10105:6;10100:3;10095;10082:30;10167:1;10158:6;10153:3;10149:16;10142:27;10021:154;;;:::o;10181:412::-;10259:5;10284:66;10300:49;10342:6;10300:49;:::i;:::-;10284:66;:::i;:::-;10275:75;;10373:6;10366:5;10359:21;10411:4;10404:5;10400:16;10449:3;10440:6;10435:3;10431:16;10428:25;10425:112;;;10456:79;;:::i;:::-;10425:112;10546:41;10580:6;10575:3;10570;10546:41;:::i;:::-;10265:328;10181:412;;;;;:::o;10613:340::-;10669:5;10718:3;10711:4;10703:6;10699:17;10695:27;10685:122;;10726:79;;:::i;:::-;10685:122;10843:6;10830:20;10868:79;10943:3;10935:6;10928:4;10920:6;10916:17;10868:79;:::i;:::-;10859:88;;10675:278;10613:340;;;;:::o;10959:509::-;11028:6;11077:2;11065:9;11056:7;11052:23;11048:32;11045:119;;;11083:79;;:::i;:::-;11045:119;11231:1;11220:9;11216:17;11203:31;11261:18;11253:6;11250:30;11247:117;;;11283:79;;:::i;:::-;11247:117;11388:63;11443:7;11434:6;11423:9;11419:22;11388:63;:::i;:::-;11378:73;;11174:287;10959:509;;;;:::o;11474:468::-;11539:6;11547;11596:2;11584:9;11575:7;11571:23;11567:32;11564:119;;;11602:79;;:::i;:::-;11564:119;11722:1;11747:53;11792:7;11783:6;11772:9;11768:22;11747:53;:::i;:::-;11737:63;;11693:117;11849:2;11875:50;11917:7;11908:6;11897:9;11893:22;11875:50;:::i;:::-;11865:60;;11820:115;11474:468;;;;;:::o;11948:307::-;12009:4;12099:18;12091:6;12088:30;12085:56;;;12121:18;;:::i;:::-;12085:56;12159:29;12181:6;12159:29;:::i;:::-;12151:37;;12243:4;12237;12233:15;12225:23;;11948:307;;;:::o;12261:410::-;12338:5;12363:65;12379:48;12420:6;12379:48;:::i;:::-;12363:65;:::i;:::-;12354:74;;12451:6;12444:5;12437:21;12489:4;12482:5;12478:16;12527:3;12518:6;12513:3;12509:16;12506:25;12503:112;;;12534:79;;:::i;:::-;12503:112;12624:41;12658:6;12653:3;12648;12624:41;:::i;:::-;12344:327;12261:410;;;;;:::o;12690:338::-;12745:5;12794:3;12787:4;12779:6;12775:17;12771:27;12761:122;;12802:79;;:::i;:::-;12761:122;12919:6;12906:20;12944:78;13018:3;13010:6;13003:4;12995:6;12991:17;12944:78;:::i;:::-;12935:87;;12751:277;12690:338;;;;:::o;13034:943::-;13129:6;13137;13145;13153;13202:3;13190:9;13181:7;13177:23;13173:33;13170:120;;;13209:79;;:::i;:::-;13170:120;13329:1;13354:53;13399:7;13390:6;13379:9;13375:22;13354:53;:::i;:::-;13344:63;;13300:117;13456:2;13482:53;13527:7;13518:6;13507:9;13503:22;13482:53;:::i;:::-;13472:63;;13427:118;13584:2;13610:53;13655:7;13646:6;13635:9;13631:22;13610:53;:::i;:::-;13600:63;;13555:118;13740:2;13729:9;13725:18;13712:32;13771:18;13763:6;13760:30;13757:117;;;13793:79;;:::i;:::-;13757:117;13898:62;13952:7;13943:6;13932:9;13928:22;13898:62;:::i;:::-;13888:72;;13683:287;13034:943;;;;;;;:::o;13983:474::-;14051:6;14059;14108:2;14096:9;14087:7;14083:23;14079:32;14076:119;;;14114:79;;:::i;:::-;14076:119;14234:1;14259:53;14304:7;14295:6;14284:9;14280:22;14259:53;:::i;:::-;14249:63;;14205:117;14361:2;14387:53;14432:7;14423:6;14412:9;14408:22;14387:53;:::i;:::-;14377:63;;14332:118;13983:474;;;;;:::o;14463:182::-;14603:34;14599:1;14591:6;14587:14;14580:58;14463:182;:::o;14651:366::-;14793:3;14814:67;14878:2;14873:3;14814:67;:::i;:::-;14807:74;;14890:93;14979:3;14890:93;:::i;:::-;15008:2;15003:3;14999:12;14992:19;;14651:366;;;:::o;15023:419::-;15189:4;15227:2;15216:9;15212:18;15204:26;;15276:9;15270:4;15266:20;15262:1;15251:9;15247:17;15240:47;15304:131;15430:4;15304:131;:::i;:::-;15296:139;;15023:419;;;:::o;15448:180::-;15496:77;15493:1;15486:88;15593:4;15590:1;15583:15;15617:4;15614:1;15607:15;15634:320;15678:6;15715:1;15709:4;15705:12;15695:22;;15762:1;15756:4;15752:12;15783:18;15773:81;;15839:4;15831:6;15827:17;15817:27;;15773:81;15901:2;15893:6;15890:14;15870:18;15867:38;15864:84;;15920:18;;:::i;:::-;15864:84;15685:269;15634:320;;;:::o;15960:231::-;16100:34;16096:1;16088:6;16084:14;16077:58;16169:14;16164:2;16156:6;16152:15;16145:39;15960:231;:::o;16197:366::-;16339:3;16360:67;16424:2;16419:3;16360:67;:::i;:::-;16353:74;;16436:93;16525:3;16436:93;:::i;:::-;16554:2;16549:3;16545:12;16538:19;;16197:366;;;:::o;16569:419::-;16735:4;16773:2;16762:9;16758:18;16750:26;;16822:9;16816:4;16812:20;16808:1;16797:9;16793:17;16786:47;16850:131;16976:4;16850:131;:::i;:::-;16842:139;;16569:419;;;:::o;16994:220::-;17134:34;17130:1;17122:6;17118:14;17111:58;17203:3;17198:2;17190:6;17186:15;17179:28;16994:220;:::o;17220:366::-;17362:3;17383:67;17447:2;17442:3;17383:67;:::i;:::-;17376:74;;17459:93;17548:3;17459:93;:::i;:::-;17577:2;17572:3;17568:12;17561:19;;17220:366;;;:::o;17592:419::-;17758:4;17796:2;17785:9;17781:18;17773:26;;17845:9;17839:4;17835:20;17831:1;17820:9;17816:17;17809:47;17873:131;17999:4;17873:131;:::i;:::-;17865:139;;17592:419;;;:::o;18017:243::-;18157:34;18153:1;18145:6;18141:14;18134:58;18226:26;18221:2;18213:6;18209:15;18202:51;18017:243;:::o;18266:366::-;18408:3;18429:67;18493:2;18488:3;18429:67;:::i;:::-;18422:74;;18505:93;18594:3;18505:93;:::i;:::-;18623:2;18618:3;18614:12;18607:19;;18266:366;;;:::o;18638:419::-;18804:4;18842:2;18831:9;18827:18;18819:26;;18891:9;18885:4;18881:20;18877:1;18866:9;18862:17;18855:47;18919:131;19045:4;18919:131;:::i;:::-;18911:139;;18638:419;;;:::o;19063:236::-;19203:34;19199:1;19191:6;19187:14;19180:58;19272:19;19267:2;19259:6;19255:15;19248:44;19063:236;:::o;19305:366::-;19447:3;19468:67;19532:2;19527:3;19468:67;:::i;:::-;19461:74;;19544:93;19633:3;19544:93;:::i;:::-;19662:2;19657:3;19653:12;19646:19;;19305:366;;;:::o;19677:419::-;19843:4;19881:2;19870:9;19866:18;19858:26;;19930:9;19924:4;19920:20;19916:1;19905:9;19901:17;19894:47;19958:131;20084:4;19958:131;:::i;:::-;19950:139;;19677:419;;;:::o;20102:230::-;20242:34;20238:1;20230:6;20226:14;20219:58;20311:13;20306:2;20298:6;20294:15;20287:38;20102:230;:::o;20338:366::-;20480:3;20501:67;20565:2;20560:3;20501:67;:::i;:::-;20494:74;;20577:93;20666:3;20577:93;:::i;:::-;20695:2;20690:3;20686:12;20679:19;;20338:366;;;:::o;20710:419::-;20876:4;20914:2;20903:9;20899:18;20891:26;;20963:9;20957:4;20953:20;20949:1;20938:9;20934:17;20927:47;20991:131;21117:4;20991:131;:::i;:::-;20983:139;;20710:419;;;:::o;21135:147::-;21236:11;21273:3;21258:18;;21135:147;;;;:::o;21288:114::-;;:::o;21408:398::-;21567:3;21588:83;21669:1;21664:3;21588:83;:::i;:::-;21581:90;;21680:93;21769:3;21680:93;:::i;:::-;21798:1;21793:3;21789:11;21782:18;;21408:398;;;:::o;21812:379::-;21996:3;22018:147;22161:3;22018:147;:::i;:::-;22011:154;;22182:3;22175:10;;21812:379;;;:::o;22197:180::-;22245:77;22242:1;22235:88;22342:4;22339:1;22332:15;22366:4;22363:1;22356:15;22383:305;22423:3;22442:20;22460:1;22442:20;:::i;:::-;22437:25;;22476:20;22494:1;22476:20;:::i;:::-;22471:25;;22630:1;22562:66;22558:74;22555:1;22552:81;22549:107;;;22636:18;;:::i;:::-;22549:107;22680:1;22677;22673:9;22666:16;;22383:305;;;;:::o;22694:348::-;22734:7;22757:20;22775:1;22757:20;:::i;:::-;22752:25;;22791:20;22809:1;22791:20;:::i;:::-;22786:25;;22979:1;22911:66;22907:74;22904:1;22901:81;22896:1;22889:9;22882:17;22878:105;22875:131;;;22986:18;;:::i;:::-;22875:131;23034:1;23031;23027:9;23016:20;;22694:348;;;;:::o;23048:233::-;23087:3;23110:24;23128:5;23110:24;:::i;:::-;23101:33;;23156:66;23149:5;23146:77;23143:103;;23226:18;;:::i;:::-;23143:103;23273:1;23266:5;23262:13;23255:20;;23048:233;;;:::o;23287:180::-;23335:77;23332:1;23325:88;23432:4;23429:1;23422:15;23456:4;23453:1;23446:15;23473:231;23613:34;23609:1;23601:6;23597:14;23590:58;23682:14;23677:2;23669:6;23665:15;23658:39;23473:231;:::o;23710:366::-;23852:3;23873:67;23937:2;23932:3;23873:67;:::i;:::-;23866:74;;23949:93;24038:3;23949:93;:::i;:::-;24067:2;24062:3;24058:12;24051:19;;23710:366;;;:::o;24082:419::-;24248:4;24286:2;24275:9;24271:18;24263:26;;24335:9;24329:4;24325:20;24321:1;24310:9;24306:17;24299:47;24363:131;24489:4;24363:131;:::i;:::-;24355:139;;24082:419;;;:::o;24507:228::-;24647:34;24643:1;24635:6;24631:14;24624:58;24716:11;24711:2;24703:6;24699:15;24692:36;24507:228;:::o;24741:366::-;24883:3;24904:67;24968:2;24963:3;24904:67;:::i;:::-;24897:74;;24980:93;25069:3;24980:93;:::i;:::-;25098:2;25093:3;25089:12;25082:19;;24741:366;;;:::o;25113:419::-;25279:4;25317:2;25306:9;25302:18;25294:26;;25366:9;25360:4;25356:20;25352:1;25341:9;25337:17;25330:47;25394:131;25520:4;25394:131;:::i;:::-;25386:139;;25113:419;;;:::o;25538:229::-;25678:34;25674:1;25666:6;25662:14;25655:58;25747:12;25742:2;25734:6;25730:15;25723:37;25538:229;:::o;25773:366::-;25915:3;25936:67;26000:2;25995:3;25936:67;:::i;:::-;25929:74;;26012:93;26101:3;26012:93;:::i;:::-;26130:2;26125:3;26121:12;26114:19;;25773:366;;;:::o;26145:419::-;26311:4;26349:2;26338:9;26334:18;26326:26;;26398:9;26392:4;26388:20;26384:1;26373:9;26369:17;26362:47;26426:131;26552:4;26426:131;:::i;:::-;26418:139;;26145:419;;;:::o;26570:175::-;26710:27;26706:1;26698:6;26694:14;26687:51;26570:175;:::o;26751:366::-;26893:3;26914:67;26978:2;26973:3;26914:67;:::i;:::-;26907:74;;26990:93;27079:3;26990:93;:::i;:::-;27108:2;27103:3;27099:12;27092:19;;26751:366;;;:::o;27123:419::-;27289:4;27327:2;27316:9;27312:18;27304:26;;27376:9;27370:4;27366:20;27362:1;27351:9;27347:17;27340:47;27404:131;27530:4;27404:131;:::i;:::-;27396:139;;27123:419;;;:::o;27548:234::-;27688:34;27684:1;27676:6;27672:14;27665:58;27757:17;27752:2;27744:6;27740:15;27733:42;27548:234;:::o;27788:366::-;27930:3;27951:67;28015:2;28010:3;27951:67;:::i;:::-;27944:74;;28027:93;28116:3;28027:93;:::i;:::-;28145:2;28140:3;28136:12;28129:19;;27788:366;;;:::o;28160:419::-;28326:4;28364:2;28353:9;28349:18;28341:26;;28413:9;28407:4;28403:20;28399:1;28388:9;28384:17;28377:47;28441:131;28567:4;28441:131;:::i;:::-;28433:139;;28160:419;;;:::o;28585:148::-;28687:11;28724:3;28709:18;;28585:148;;;;:::o;28739:377::-;28845:3;28873:39;28906:5;28873:39;:::i;:::-;28928:89;29010:6;29005:3;28928:89;:::i;:::-;28921:96;;29026:52;29071:6;29066:3;29059:4;29052:5;29048:16;29026:52;:::i;:::-;29103:6;29098:3;29094:16;29087:23;;28849:267;28739:377;;;;:::o;29122:141::-;29171:4;29194:3;29186:11;;29217:3;29214:1;29207:14;29251:4;29248:1;29238:18;29230:26;;29122:141;;;:::o;29293:845::-;29396:3;29433:5;29427:12;29462:36;29488:9;29462:36;:::i;:::-;29514:89;29596:6;29591:3;29514:89;:::i;:::-;29507:96;;29634:1;29623:9;29619:17;29650:1;29645:137;;;;29796:1;29791:341;;;;29612:520;;29645:137;29729:4;29725:9;29714;29710:25;29705:3;29698:38;29765:6;29760:3;29756:16;29749:23;;29645:137;;29791:341;29858:38;29890:5;29858:38;:::i;:::-;29918:1;29932:154;29946:6;29943:1;29940:13;29932:154;;;30020:7;30014:14;30010:1;30005:3;30001:11;29994:35;30070:1;30061:7;30057:15;30046:26;;29968:4;29965:1;29961:12;29956:17;;29932:154;;;30115:6;30110:3;30106:16;30099:23;;29798:334;;29612:520;;29400:738;;29293:845;;;;:::o;30144:589::-;30369:3;30391:95;30482:3;30473:6;30391:95;:::i;:::-;30384:102;;30503:95;30594:3;30585:6;30503:95;:::i;:::-;30496:102;;30615:92;30703:3;30694:6;30615:92;:::i;:::-;30608:99;;30724:3;30717:10;;30144:589;;;;;;:::o;30739:225::-;30879:34;30875:1;30867:6;30863:14;30856:58;30948:8;30943:2;30935:6;30931:15;30924:33;30739:225;:::o;30970:366::-;31112:3;31133:67;31197:2;31192:3;31133:67;:::i;:::-;31126:74;;31209:93;31298:3;31209:93;:::i;:::-;31327:2;31322:3;31318:12;31311:19;;30970:366;;;:::o;31342:419::-;31508:4;31546:2;31535:9;31531:18;31523:26;;31595:9;31589:4;31585:20;31581:1;31570:9;31566:17;31559:47;31623:131;31749:4;31623:131;:::i;:::-;31615:139;;31342:419;;;:::o;31767:231::-;31907:34;31903:1;31895:6;31891:14;31884:58;31976:14;31971:2;31963:6;31959:15;31952:39;31767:231;:::o;32004:366::-;32146:3;32167:67;32231:2;32226:3;32167:67;:::i;:::-;32160:74;;32243:93;32332:3;32243:93;:::i;:::-;32361:2;32356:3;32352:12;32345:19;;32004:366;;;:::o;32376:419::-;32542:4;32580:2;32569:9;32565:18;32557:26;;32629:9;32623:4;32619:20;32615:1;32604:9;32600:17;32593:47;32657:131;32783:4;32657:131;:::i;:::-;32649:139;;32376:419;;;:::o;32801:228::-;32941:34;32937:1;32929:6;32925:14;32918:58;33010:11;33005:2;32997:6;32993:15;32986:36;32801:228;:::o;33035:366::-;33177:3;33198:67;33262:2;33257:3;33198:67;:::i;:::-;33191:74;;33274:93;33363:3;33274:93;:::i;:::-;33392:2;33387:3;33383:12;33376:19;;33035:366;;;:::o;33407:419::-;33573:4;33611:2;33600:9;33596:18;33588:26;;33660:9;33654:4;33650:20;33646:1;33635:9;33631:17;33624:47;33688:131;33814:4;33688:131;:::i;:::-;33680:139;;33407:419;;;:::o;33832:223::-;33972:34;33968:1;33960:6;33956:14;33949:58;34041:6;34036:2;34028:6;34024:15;34017:31;33832:223;:::o;34061:366::-;34203:3;34224:67;34288:2;34283:3;34224:67;:::i;:::-;34217:74;;34300:93;34389:3;34300:93;:::i;:::-;34418:2;34413:3;34409:12;34402:19;;34061:366;;;:::o;34433:419::-;34599:4;34637:2;34626:9;34622:18;34614:26;;34686:9;34680:4;34676:20;34672:1;34661:9;34657:17;34650:47;34714:131;34840:4;34714:131;:::i;:::-;34706:139;;34433:419;;;:::o;34858:191::-;34898:4;34918:20;34936:1;34918:20;:::i;:::-;34913:25;;34952:20;34970:1;34952:20;:::i;:::-;34947:25;;34991:1;34988;34985:8;34982:34;;;34996:18;;:::i;:::-;34982:34;35041:1;35038;35034:9;35026:17;;34858:191;;;;:::o;35055:237::-;35195:34;35191:1;35183:6;35179:14;35172:58;35264:20;35259:2;35251:6;35247:15;35240:45;35055:237;:::o;35298:366::-;35440:3;35461:67;35525:2;35520:3;35461:67;:::i;:::-;35454:74;;35537:93;35626:3;35537:93;:::i;:::-;35655:2;35650:3;35646:12;35639:19;;35298:366;;;:::o;35670:419::-;35836:4;35874:2;35863:9;35859:18;35851:26;;35923:9;35917:4;35913:20;35909:1;35898:9;35894:17;35887:47;35951:131;36077:4;35951:131;:::i;:::-;35943:139;;35670:419;;;:::o;36095:180::-;36143:77;36140:1;36133:88;36240:4;36237:1;36230:15;36264:4;36261:1;36254:15;36281:185;36321:1;36338:20;36356:1;36338:20;:::i;:::-;36333:25;;36372:20;36390:1;36372:20;:::i;:::-;36367:25;;36411:1;36401:35;;36416:18;;:::i;:::-;36401:35;36458:1;36455;36451:9;36446:14;;36281:185;;;;:::o;36472:176::-;36504:1;36521:20;36539:1;36521:20;:::i;:::-;36516:25;;36555:20;36573:1;36555:20;:::i;:::-;36550:25;;36594:1;36584:35;;36599:18;;:::i;:::-;36584:35;36640:1;36637;36633:9;36628:14;;36472:176;;;;:::o;36654:98::-;36705:6;36739:5;36733:12;36723:22;;36654:98;;;:::o;36758:168::-;36841:11;36875:6;36870:3;36863:19;36915:4;36910:3;36906:14;36891:29;;36758:168;;;;:::o;36932:360::-;37018:3;37046:38;37078:5;37046:38;:::i;:::-;37100:70;37163:6;37158:3;37100:70;:::i;:::-;37093:77;;37179:52;37224:6;37219:3;37212:4;37205:5;37201:16;37179:52;:::i;:::-;37256:29;37278:6;37256:29;:::i;:::-;37251:3;37247:39;37240:46;;37022:270;36932:360;;;;:::o;37298:640::-;37493:4;37531:3;37520:9;37516:19;37508:27;;37545:71;37613:1;37602:9;37598:17;37589:6;37545:71;:::i;:::-;37626:72;37694:2;37683:9;37679:18;37670:6;37626:72;:::i;:::-;37708;37776:2;37765:9;37761:18;37752:6;37708:72;:::i;:::-;37827:9;37821:4;37817:20;37812:2;37801:9;37797:18;37790:48;37855:76;37926:4;37917:6;37855:76;:::i;:::-;37847:84;;37298:640;;;;;;;:::o;37944:141::-;38000:5;38031:6;38025:13;38016:22;;38047:32;38073:5;38047:32;:::i;:::-;37944:141;;;;:::o;38091:349::-;38160:6;38209:2;38197:9;38188:7;38184:23;38180:32;38177:119;;;38215:79;;:::i;:::-;38177:119;38335:1;38360:63;38415:7;38406:6;38395:9;38391:22;38360:63;:::i;:::-;38350:73;;38306:127;38091:349;;;;:::o;38446:180::-;38494:77;38491:1;38484:88;38591:4;38588:1;38581:15;38615:4;38612:1;38605:15;38632:182;38772:34;38768:1;38760:6;38756:14;38749:58;38632:182;:::o;38820:366::-;38962:3;38983:67;39047:2;39042:3;38983:67;:::i;:::-;38976:74;;39059:93;39148:3;39059:93;:::i;:::-;39177:2;39172:3;39168:12;39161:19;;38820:366;;;:::o;39192:419::-;39358:4;39396:2;39385:9;39381:18;39373:26;;39445:9;39439:4;39435:20;39431:1;39420:9;39416:17;39409:47;39473:131;39599:4;39473:131;:::i;:::-;39465:139;;39192:419;;;:::o;39617:178::-;39757:30;39753:1;39745:6;39741:14;39734:54;39617:178;:::o;39801:366::-;39943:3;39964:67;40028:2;40023:3;39964:67;:::i;:::-;39957:74;;40040:93;40129:3;40040:93;:::i;:::-;40158:2;40153:3;40149:12;40142:19;;39801:366;;;:::o;40173:419::-;40339:4;40377:2;40366:9;40362:18;40354:26;;40426:9;40420:4;40416:20;40412:1;40401:9;40397:17;40390:47;40454:131;40580:4;40454:131;:::i;:::-;40446:139;;40173:419;;;:::o

Swarm Source

ipfs://3d25a2c2644bf05690693f8cc7739917b4be2ce0a29f06a89f6965640995cb5d
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.