ETH Price: $2,454.76 (-4.51%)

Token

KickFlipNFT (KF)
 

Overview

Max Total Supply

20 KF

Holders

12

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

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

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-15
*/

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

// File: KickFlipToken.sol


pragma solidity ^0.8.0;




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

  uint256 public constant MAX_PER_MINT = 50;
  address payable public teamAddr;

  uint256 public price;
  uint256 public maxSupply;

  bool public revealed;
  string public tokenBaseURI;
  bool public saleLive;


  constructor(address _teamAddr, string memory _tokenBaseURI) ERC721("KickFlipNFT", "KF") {
    teamAddr = payable(_teamAddr);
    tokenBaseURI = _tokenBaseURI;
    maxSupply = 4000;
    price = 0.07 ether;
  }

  function toggleSaleStatus() external onlyOwner {
    saleLive = !saleLive;
  }

  function setTokenBaseURI(string calldata URI) external onlyOwner {
    tokenBaseURI = URI;
  }

  function setMaxSupply(uint256 _maxSupply) external onlyOwner {
    require(_maxSupply >= totalSupply(), "Cant set max supply lower than already sold tokens!");

    maxSupply = _maxSupply;
  }

  function setTeamAddr(address _addr) external onlyOwner {
    teamAddr = payable(_addr);
  }

  function setPrice(uint256 _price) external onlyOwner {
    price = _price;
  }

  function reveal() external onlyOwner {
    require(!revealed, "Already revealed!");
    revealed = true;
  }

  function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
    require(_exists(tokenId), "Unexistent token");

    string memory sequenceId;

    if (revealed) {
      sequenceId = tokenId.toString();
    } else {
      sequenceId = "-1";
    }

    return string(abi.encodePacked(tokenBaseURI, sequenceId));
  }

  function mint(uint amount) external payable {
    require(saleLive, "Sale is not active");
    require(totalSupply() + amount <= maxSupply, "That amount of tokens is not available");
    require(amount > 0 && amount <= MAX_PER_MINT, "Invalid amount");
    require(price * amount <= msg.value, "Insufficient ETH");

    teamAddr.transfer(msg.value);

    for(uint i = 0; i < amount; i++)
      _safeMint(msg.sender, totalSupply() + 1);
  }

  function gift(address[] calldata receivers) external onlyOwner {
    require(totalSupply() + receivers.length <= maxSupply, "That amount of tokens is not available");

    for (uint256 i = 0; i < receivers.length; i++) {
      _safeMint(receivers[i], totalSupply() + 1);
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_teamAddr","type":"address"},{"internalType":"string","name":"_tokenBaseURI","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":[],"name":"MAX_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","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":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setTeamAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setTokenBaseURI","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":[],"name":"teamAddr","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenBaseURI","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"}]

60806040523480156200001157600080fd5b5060405162004a8b38038062004a8b833981810160405281019062000037919062000383565b6040518060400160405280600b81526020017f4b69636b466c69704e46540000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4b460000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb9291906200023e565b508060019080519060200190620000d49291906200023e565b505050620000f7620000eb6200017060201b60201c565b6200017860201b60201c565b81600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600f9080519060200190620001509291906200023e565b50610fa0600d8190555066f8b0a10e470000600c819055505050620005bb565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024c90620004b2565b90600052602060002090601f016020900481019282620002705760008555620002bc565b82601f106200028b57805160ff1916838001178555620002bc565b82800160010185558215620002bc579182015b82811115620002bb5782518255916020019190600101906200029e565b5b509050620002cb9190620002cf565b5090565b5b80821115620002ea576000816000905550600101620002d0565b5090565b600062000305620002ff8462000412565b620003e9565b90508281526020810184848401111562000324576200032362000581565b5b620003318482856200047c565b509392505050565b6000815190506200034a81620005a1565b92915050565b600082601f8301126200036857620003676200057c565b5b81516200037a848260208601620002ee565b91505092915050565b600080604083850312156200039d576200039c6200058b565b5b6000620003ad8582860162000339565b925050602083015167ffffffffffffffff811115620003d157620003d062000586565b5b620003df8582860162000350565b9150509250929050565b6000620003f562000408565b9050620004038282620004e8565b919050565b6000604051905090565b600067ffffffffffffffff82111562000430576200042f6200054d565b5b6200043b8262000590565b9050602081019050919050565b600062000455826200045c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200049c5780820151818401526020810190506200047f565b83811115620004ac576000848401525b50505050565b60006002820490506001821680620004cb57607f821691505b60208210811415620004e257620004e16200051e565b5b50919050565b620004f38262000590565b810181811067ffffffffffffffff821117156200051557620005146200054d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620005ac8162000448565b8114620005b857600080fd5b50565b6144c080620005cb6000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106ea578063d5abeb0114610727578063e081b78114610752578063e985e9c51461077d578063f2fde38b146107ba576101f9565b8063a22cb46514610658578063a475b5dd14610681578063b88d4fde14610698578063c8162068146106c1576101f9565b806391b7f5ed116100dc57806391b7f5ed146105bd57806395d89b41146105e6578063a035b1fe14610611578063a0712d681461063c576101f9565b806370a0823114610515578063715018a6146105525780638da5cb5b146105695780638ef79e9114610594576101f9565b806323b872dd116101905780634e99b8001161015f5780634e99b8001461041c5780634f6ccce71461044757806351830227146104845780636352211e146104af5780636f8b44b0146104ec576101f9565b806323b872dd146103625780632f745c591461038b57806342842e0e146103c85780634a5ff749146103f1576101f9565b8063095ea7b3116101cc578063095ea7b3146102ba57806309d42b30146102e3578063163e1e611461030e57806318160ddd14610337576101f9565b806301ffc9a7146101fe578063049c5c491461023b57806306fdde0314610252578063081812fc1461027d575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612ff3565b6107e3565b6040516102329190613613565b60405180910390f35b34801561024757600080fd5b5061025061085d565b005b34801561025e57600080fd5b50610267610905565b604051610274919061362e565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f919061309a565b610997565b6040516102b19190613591565b60405180910390f35b3480156102c657600080fd5b506102e160048036038101906102dc9190612f66565b610a1c565b005b3480156102ef57600080fd5b506102f8610b34565b6040516103059190613950565b60405180910390f35b34801561031a57600080fd5b5061033560048036038101906103309190612fa6565b610b39565b005b34801561034357600080fd5b5061034c610c79565b6040516103599190613950565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190612e50565b610c86565b005b34801561039757600080fd5b506103b260048036038101906103ad9190612f66565b610ce6565b6040516103bf9190613950565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190612e50565b610d8b565b005b3480156103fd57600080fd5b50610406610dab565b60405161041391906135ac565b60405180910390f35b34801561042857600080fd5b50610431610dd1565b60405161043e919061362e565b60405180910390f35b34801561045357600080fd5b5061046e6004803603810190610469919061309a565b610e5f565b60405161047b9190613950565b60405180910390f35b34801561049057600080fd5b50610499610ed0565b6040516104a69190613613565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d1919061309a565b610ee3565b6040516104e39190613591565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e919061309a565b610f95565b005b34801561052157600080fd5b5061053c60048036038101906105379190612de3565b611065565b6040516105499190613950565b60405180910390f35b34801561055e57600080fd5b5061056761111d565b005b34801561057557600080fd5b5061057e6111a5565b60405161058b9190613591565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b6919061304d565b6111cf565b005b3480156105c957600080fd5b506105e460048036038101906105df919061309a565b611261565b005b3480156105f257600080fd5b506105fb6112e7565b604051610608919061362e565b60405180910390f35b34801561061d57600080fd5b50610626611379565b6040516106339190613950565b60405180910390f35b6106566004803603810190610651919061309a565b61137f565b005b34801561066457600080fd5b5061067f600480360381019061067a9190612f26565b61156d565b005b34801561068d57600080fd5b50610696611583565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190612ea3565b61166c565b005b3480156106cd57600080fd5b506106e860048036038101906106e39190612de3565b6116ce565b005b3480156106f657600080fd5b50610711600480360381019061070c919061309a565b61178e565b60405161071e919061362e565b60405180910390f35b34801561073357600080fd5b5061073c611863565b6040516107499190613950565b60405180910390f35b34801561075e57600080fd5b50610767611869565b6040516107749190613613565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190612e10565b61187c565b6040516107b19190613613565b60405180910390f35b3480156107c657600080fd5b506107e160048036038101906107dc9190612de3565b611910565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610856575061085582611a08565b5b9050919050565b610865611aea565b73ffffffffffffffffffffffffffffffffffffffff166108836111a5565b73ffffffffffffffffffffffffffffffffffffffff16146108d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d090613850565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b60606000805461091490613bf6565b80601f016020809104026020016040519081016040528092919081815260200182805461094090613bf6565b801561098d5780601f106109625761010080835404028352916020019161098d565b820191906000526020600020905b81548152906001019060200180831161097057829003601f168201915b5050505050905090565b60006109a282611af2565b6109e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d890613830565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2782610ee3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8f906138b0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab7611aea565b73ffffffffffffffffffffffffffffffffffffffff161480610ae65750610ae581610ae0611aea565b61187c565b5b610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c906137b0565b60405180910390fd5b610b2f8383611b5e565b505050565b603281565b610b41611aea565b73ffffffffffffffffffffffffffffffffffffffff16610b5f6111a5565b73ffffffffffffffffffffffffffffffffffffffff1614610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90613850565b60405180910390fd5b600d5482829050610bc4610c79565b610bce9190613a19565b1115610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c06906136b0565b60405180910390fd5b60005b82829050811015610c7457610c61838383818110610c3357610c32613d8f565b5b9050602002016020810190610c489190612de3565b6001610c52610c79565b610c5c9190613a19565b611c17565b8080610c6c90613c59565b915050610c12565b505050565b6000600880549050905090565b610c97610c91611aea565b82611c35565b610cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd906138d0565b60405180910390fd5b610ce1838383611d13565b505050565b6000610cf183611065565b8210610d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2990613670565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610da68383836040518060200160405280600081525061166c565b505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f8054610dde90613bf6565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0a90613bf6565b8015610e575780601f10610e2c57610100808354040283529160200191610e57565b820191906000526020600020905b815481529060010190602001808311610e3a57829003601f168201915b505050505081565b6000610e69610c79565b8210610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea1906138f0565b60405180910390fd5b60088281548110610ebe57610ebd613d8f565b5b90600052602060002001549050919050565b600e60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f83906137f0565b60405180910390fd5b80915050919050565b610f9d611aea565b73ffffffffffffffffffffffffffffffffffffffff16610fbb6111a5565b73ffffffffffffffffffffffffffffffffffffffff1614611011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100890613850565b60405180910390fd5b611019610c79565b81101561105b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105290613930565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd906137d0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611125611aea565b73ffffffffffffffffffffffffffffffffffffffff166111436111a5565b73ffffffffffffffffffffffffffffffffffffffff1614611199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119090613850565b60405180910390fd5b6111a36000611f6f565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111d7611aea565b73ffffffffffffffffffffffffffffffffffffffff166111f56111a5565b73ffffffffffffffffffffffffffffffffffffffff161461124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290613850565b60405180910390fd5b8181600f919061125c929190612bbb565b505050565b611269611aea565b73ffffffffffffffffffffffffffffffffffffffff166112876111a5565b73ffffffffffffffffffffffffffffffffffffffff16146112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d490613850565b60405180910390fd5b80600c8190555050565b6060600180546112f690613bf6565b80601f016020809104026020016040519081016040528092919081815260200182805461132290613bf6565b801561136f5780601f106113445761010080835404028352916020019161136f565b820191906000526020600020905b81548152906001019060200180831161135257829003601f168201915b5050505050905090565b600c5481565b601060009054906101000a900460ff166113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c590613770565b60405180910390fd5b600d54816113da610c79565b6113e49190613a19565b1115611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c906136b0565b60405180910390fd5b600081118015611436575060328111155b611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c90613710565b60405180910390fd5b3481600c546114849190613aa0565b11156114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc90613650565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801561152d573d6000803e3d6000fd5b5060005b8181101561156957611556336001611547610c79565b6115519190613a19565b611c17565b808061156190613c59565b915050611531565b5050565b61157f611578611aea565b8383612035565b5050565b61158b611aea565b73ffffffffffffffffffffffffffffffffffffffff166115a96111a5565b73ffffffffffffffffffffffffffffffffffffffff16146115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690613850565b60405180910390fd5b600e60009054906101000a900460ff161561164f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164690613890565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b61167d611677611aea565b83611c35565b6116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b3906138d0565b60405180910390fd5b6116c8848484846121a2565b50505050565b6116d6611aea565b73ffffffffffffffffffffffffffffffffffffffff166116f46111a5565b73ffffffffffffffffffffffffffffffffffffffff161461174a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174190613850565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606061179982611af2565b6117d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cf90613910565b60405180910390fd5b6060600e60009054906101000a900460ff16156117ff576117f8836121fe565b9050611838565b6040518060400160405280600281526020017f2d3100000000000000000000000000000000000000000000000000000000000081525090505b600f8160405160200161184c92919061356d565b604051602081830303815290604052915050919050565b600d5481565b601060009054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611918611aea565b73ffffffffffffffffffffffffffffffffffffffff166119366111a5565b73ffffffffffffffffffffffffffffffffffffffff161461198c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198390613850565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f3906136d0565b60405180910390fd5b611a0581611f6f565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ad357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ae35750611ae28261235f565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bd183610ee3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611c318282604051806020016040528060008152506123c9565b5050565b6000611c4082611af2565b611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7690613790565b60405180910390fd5b6000611c8a83610ee3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611cf957508373ffffffffffffffffffffffffffffffffffffffff16611ce184610997565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d0a5750611d09818561187c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d3382610ee3565b73ffffffffffffffffffffffffffffffffffffffff1614611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8090613870565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df090613730565b60405180910390fd5b611e04838383612424565b611e0f600082611b5e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e5f9190613afa565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eb69190613a19565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209b90613750565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121959190613613565b60405180910390a3505050565b6121ad848484611d13565b6121b984848484612538565b6121f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ef90613690565b60405180910390fd5b50505050565b60606000821415612246576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061235a565b600082905060005b6000821461227857808061226190613c59565b915050600a826122719190613a6f565b915061224e565b60008167ffffffffffffffff81111561229457612293613dbe565b5b6040519080825280601f01601f1916602001820160405280156122c65781602001600182028036833780820191505090505b5090505b60008514612353576001826122df9190613afa565b9150600a856122ee9190613ca2565b60306122fa9190613a19565b60f81b8183815181106123105761230f613d8f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561234c9190613a6f565b94506122ca565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123d383836126cf565b6123e06000848484612538565b61241f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241690613690565b60405180910390fd5b505050565b61242f83838361289d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124725761246d816128a2565b6124b1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124b0576124af83826128eb565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124f4576124ef81612a58565b612533565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612532576125318282612b29565b5b5b505050565b60006125598473ffffffffffffffffffffffffffffffffffffffff16612ba8565b156126c2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612582611aea565b8786866040518563ffffffff1660e01b81526004016125a494939291906135c7565b602060405180830381600087803b1580156125be57600080fd5b505af19250505080156125ef57506040513d601f19601f820116820180604052508101906125ec9190613020565b60015b612672573d806000811461261f576040519150601f19603f3d011682016040523d82523d6000602084013e612624565b606091505b5060008151141561266a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266190613690565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126c7565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561273f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273690613810565b60405180910390fd5b61274881611af2565b15612788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277f906136f0565b60405180910390fd5b61279460008383612424565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127e49190613a19565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016128f884611065565b6129029190613afa565b90506000600760008481526020019081526020016000205490508181146129e7576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612a6c9190613afa565b9050600060096000848152602001908152602001600020549050600060088381548110612a9c57612a9b613d8f565b5b906000526020600020015490508060088381548110612abe57612abd613d8f565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612b0d57612b0c613d60565b5b6001900381819060005260206000200160009055905550505050565b6000612b3483611065565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612bc790613bf6565b90600052602060002090601f016020900481019282612be95760008555612c30565b82601f10612c0257803560ff1916838001178555612c30565b82800160010185558215612c30579182015b82811115612c2f578235825591602001919060010190612c14565b5b509050612c3d9190612c41565b5090565b5b80821115612c5a576000816000905550600101612c42565b5090565b6000612c71612c6c84613990565b61396b565b905082815260208101848484011115612c8d57612c8c613dfc565b5b612c98848285613bb4565b509392505050565b600081359050612caf8161442e565b92915050565b60008083601f840112612ccb57612cca613df2565b5b8235905067ffffffffffffffff811115612ce857612ce7613ded565b5b602083019150836020820283011115612d0457612d03613df7565b5b9250929050565b600081359050612d1a81614445565b92915050565b600081359050612d2f8161445c565b92915050565b600081519050612d448161445c565b92915050565b600082601f830112612d5f57612d5e613df2565b5b8135612d6f848260208601612c5e565b91505092915050565b60008083601f840112612d8e57612d8d613df2565b5b8235905067ffffffffffffffff811115612dab57612daa613ded565b5b602083019150836001820283011115612dc757612dc6613df7565b5b9250929050565b600081359050612ddd81614473565b92915050565b600060208284031215612df957612df8613e06565b5b6000612e0784828501612ca0565b91505092915050565b60008060408385031215612e2757612e26613e06565b5b6000612e3585828601612ca0565b9250506020612e4685828601612ca0565b9150509250929050565b600080600060608486031215612e6957612e68613e06565b5b6000612e7786828701612ca0565b9350506020612e8886828701612ca0565b9250506040612e9986828701612dce565b9150509250925092565b60008060008060808587031215612ebd57612ebc613e06565b5b6000612ecb87828801612ca0565b9450506020612edc87828801612ca0565b9350506040612eed87828801612dce565b925050606085013567ffffffffffffffff811115612f0e57612f0d613e01565b5b612f1a87828801612d4a565b91505092959194509250565b60008060408385031215612f3d57612f3c613e06565b5b6000612f4b85828601612ca0565b9250506020612f5c85828601612d0b565b9150509250929050565b60008060408385031215612f7d57612f7c613e06565b5b6000612f8b85828601612ca0565b9250506020612f9c85828601612dce565b9150509250929050565b60008060208385031215612fbd57612fbc613e06565b5b600083013567ffffffffffffffff811115612fdb57612fda613e01565b5b612fe785828601612cb5565b92509250509250929050565b60006020828403121561300957613008613e06565b5b600061301784828501612d20565b91505092915050565b60006020828403121561303657613035613e06565b5b600061304484828501612d35565b91505092915050565b6000806020838503121561306457613063613e06565b5b600083013567ffffffffffffffff81111561308257613081613e01565b5b61308e85828601612d78565b92509250509250929050565b6000602082840312156130b0576130af613e06565b5b60006130be84828501612dce565b91505092915050565b6130d081613b40565b82525050565b6130df81613b2e565b82525050565b6130ee81613b52565b82525050565b60006130ff826139d6565b61310981856139ec565b9350613119818560208601613bc3565b61312281613e0b565b840191505092915050565b6000613138826139e1565b61314281856139fd565b9350613152818560208601613bc3565b61315b81613e0b565b840191505092915050565b6000613171826139e1565b61317b8185613a0e565b935061318b818560208601613bc3565b80840191505092915050565b600081546131a481613bf6565b6131ae8186613a0e565b945060018216600081146131c957600181146131da5761320d565b60ff1983168652818601935061320d565b6131e3856139c1565b60005b83811015613205578154818901526001820191506020810190506131e6565b838801955050505b50505092915050565b60006132236010836139fd565b915061322e82613e1c565b602082019050919050565b6000613246602b836139fd565b915061325182613e45565b604082019050919050565b60006132696032836139fd565b915061327482613e94565b604082019050919050565b600061328c6026836139fd565b915061329782613ee3565b604082019050919050565b60006132af6026836139fd565b91506132ba82613f32565b604082019050919050565b60006132d2601c836139fd565b91506132dd82613f81565b602082019050919050565b60006132f5600e836139fd565b915061330082613faa565b602082019050919050565b60006133186024836139fd565b915061332382613fd3565b604082019050919050565b600061333b6019836139fd565b915061334682614022565b602082019050919050565b600061335e6012836139fd565b91506133698261404b565b602082019050919050565b6000613381602c836139fd565b915061338c82614074565b604082019050919050565b60006133a46038836139fd565b91506133af826140c3565b604082019050919050565b60006133c7602a836139fd565b91506133d282614112565b604082019050919050565b60006133ea6029836139fd565b91506133f582614161565b604082019050919050565b600061340d6020836139fd565b9150613418826141b0565b602082019050919050565b6000613430602c836139fd565b915061343b826141d9565b604082019050919050565b60006134536020836139fd565b915061345e82614228565b602082019050919050565b60006134766029836139fd565b915061348182614251565b604082019050919050565b60006134996011836139fd565b91506134a4826142a0565b602082019050919050565b60006134bc6021836139fd565b91506134c7826142c9565b604082019050919050565b60006134df6031836139fd565b91506134ea82614318565b604082019050919050565b6000613502602c836139fd565b915061350d82614367565b604082019050919050565b60006135256010836139fd565b9150613530826143b6565b602082019050919050565b60006135486033836139fd565b9150613553826143df565b604082019050919050565b61356781613baa565b82525050565b60006135798285613197565b91506135858284613166565b91508190509392505050565b60006020820190506135a660008301846130d6565b92915050565b60006020820190506135c160008301846130c7565b92915050565b60006080820190506135dc60008301876130d6565b6135e960208301866130d6565b6135f6604083018561355e565b818103606083015261360881846130f4565b905095945050505050565b600060208201905061362860008301846130e5565b92915050565b60006020820190508181036000830152613648818461312d565b905092915050565b6000602082019050818103600083015261366981613216565b9050919050565b6000602082019050818103600083015261368981613239565b9050919050565b600060208201905081810360008301526136a98161325c565b9050919050565b600060208201905081810360008301526136c98161327f565b9050919050565b600060208201905081810360008301526136e9816132a2565b9050919050565b60006020820190508181036000830152613709816132c5565b9050919050565b60006020820190508181036000830152613729816132e8565b9050919050565b600060208201905081810360008301526137498161330b565b9050919050565b600060208201905081810360008301526137698161332e565b9050919050565b6000602082019050818103600083015261378981613351565b9050919050565b600060208201905081810360008301526137a981613374565b9050919050565b600060208201905081810360008301526137c981613397565b9050919050565b600060208201905081810360008301526137e9816133ba565b9050919050565b60006020820190508181036000830152613809816133dd565b9050919050565b6000602082019050818103600083015261382981613400565b9050919050565b6000602082019050818103600083015261384981613423565b9050919050565b6000602082019050818103600083015261386981613446565b9050919050565b6000602082019050818103600083015261388981613469565b9050919050565b600060208201905081810360008301526138a98161348c565b9050919050565b600060208201905081810360008301526138c9816134af565b9050919050565b600060208201905081810360008301526138e9816134d2565b9050919050565b60006020820190508181036000830152613909816134f5565b9050919050565b6000602082019050818103600083015261392981613518565b9050919050565b600060208201905081810360008301526139498161353b565b9050919050565b6000602082019050613965600083018461355e565b92915050565b6000613975613986565b90506139818282613c28565b919050565b6000604051905090565b600067ffffffffffffffff8211156139ab576139aa613dbe565b5b6139b482613e0b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a2482613baa565b9150613a2f83613baa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a6457613a63613cd3565b5b828201905092915050565b6000613a7a82613baa565b9150613a8583613baa565b925082613a9557613a94613d02565b5b828204905092915050565b6000613aab82613baa565b9150613ab683613baa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613aef57613aee613cd3565b5b828202905092915050565b6000613b0582613baa565b9150613b1083613baa565b925082821015613b2357613b22613cd3565b5b828203905092915050565b6000613b3982613b8a565b9050919050565b6000613b4b82613b8a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613be1578082015181840152602081019050613bc6565b83811115613bf0576000848401525b50505050565b60006002820490506001821680613c0e57607f821691505b60208210811415613c2257613c21613d31565b5b50919050565b613c3182613e0b565b810181811067ffffffffffffffff82111715613c5057613c4f613dbe565b5b80604052505050565b6000613c6482613baa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c9757613c96613cd3565b5b600182019050919050565b6000613cad82613baa565b9150613cb883613baa565b925082613cc857613cc7613d02565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e73756666696369656e742045544800000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f5468617420616d6f756e74206f6620746f6b656e73206973206e6f742061766160008201527f696c61626c650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f416c72656164792072657665616c656421000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f556e6578697374656e7420746f6b656e00000000000000000000000000000000600082015250565b7f43616e7420736574206d617820737570706c79206c6f776572207468616e206160008201527f6c726561647920736f6c6420746f6b656e732100000000000000000000000000602082015250565b61443781613b2e565b811461444257600080fd5b50565b61444e81613b52565b811461445957600080fd5b50565b61446581613b5e565b811461447057600080fd5b50565b61447c81613baa565b811461448757600080fd5b5056fea264697066735822122064f70e77e8693929ea13e5d23a622e2716a1db841e6c6c077ad389a53ac1f3cd64736f6c6343000807003300000000000000000000000073246984fbd4c6a303f7978d8ed3699347a744000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f6170692e6b69636b666c69706e66742e636f6d2f6d657461646174612f000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106ea578063d5abeb0114610727578063e081b78114610752578063e985e9c51461077d578063f2fde38b146107ba576101f9565b8063a22cb46514610658578063a475b5dd14610681578063b88d4fde14610698578063c8162068146106c1576101f9565b806391b7f5ed116100dc57806391b7f5ed146105bd57806395d89b41146105e6578063a035b1fe14610611578063a0712d681461063c576101f9565b806370a0823114610515578063715018a6146105525780638da5cb5b146105695780638ef79e9114610594576101f9565b806323b872dd116101905780634e99b8001161015f5780634e99b8001461041c5780634f6ccce71461044757806351830227146104845780636352211e146104af5780636f8b44b0146104ec576101f9565b806323b872dd146103625780632f745c591461038b57806342842e0e146103c85780634a5ff749146103f1576101f9565b8063095ea7b3116101cc578063095ea7b3146102ba57806309d42b30146102e3578063163e1e611461030e57806318160ddd14610337576101f9565b806301ffc9a7146101fe578063049c5c491461023b57806306fdde0314610252578063081812fc1461027d575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612ff3565b6107e3565b6040516102329190613613565b60405180910390f35b34801561024757600080fd5b5061025061085d565b005b34801561025e57600080fd5b50610267610905565b604051610274919061362e565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f919061309a565b610997565b6040516102b19190613591565b60405180910390f35b3480156102c657600080fd5b506102e160048036038101906102dc9190612f66565b610a1c565b005b3480156102ef57600080fd5b506102f8610b34565b6040516103059190613950565b60405180910390f35b34801561031a57600080fd5b5061033560048036038101906103309190612fa6565b610b39565b005b34801561034357600080fd5b5061034c610c79565b6040516103599190613950565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190612e50565b610c86565b005b34801561039757600080fd5b506103b260048036038101906103ad9190612f66565b610ce6565b6040516103bf9190613950565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190612e50565b610d8b565b005b3480156103fd57600080fd5b50610406610dab565b60405161041391906135ac565b60405180910390f35b34801561042857600080fd5b50610431610dd1565b60405161043e919061362e565b60405180910390f35b34801561045357600080fd5b5061046e6004803603810190610469919061309a565b610e5f565b60405161047b9190613950565b60405180910390f35b34801561049057600080fd5b50610499610ed0565b6040516104a69190613613565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d1919061309a565b610ee3565b6040516104e39190613591565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e919061309a565b610f95565b005b34801561052157600080fd5b5061053c60048036038101906105379190612de3565b611065565b6040516105499190613950565b60405180910390f35b34801561055e57600080fd5b5061056761111d565b005b34801561057557600080fd5b5061057e6111a5565b60405161058b9190613591565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b6919061304d565b6111cf565b005b3480156105c957600080fd5b506105e460048036038101906105df919061309a565b611261565b005b3480156105f257600080fd5b506105fb6112e7565b604051610608919061362e565b60405180910390f35b34801561061d57600080fd5b50610626611379565b6040516106339190613950565b60405180910390f35b6106566004803603810190610651919061309a565b61137f565b005b34801561066457600080fd5b5061067f600480360381019061067a9190612f26565b61156d565b005b34801561068d57600080fd5b50610696611583565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190612ea3565b61166c565b005b3480156106cd57600080fd5b506106e860048036038101906106e39190612de3565b6116ce565b005b3480156106f657600080fd5b50610711600480360381019061070c919061309a565b61178e565b60405161071e919061362e565b60405180910390f35b34801561073357600080fd5b5061073c611863565b6040516107499190613950565b60405180910390f35b34801561075e57600080fd5b50610767611869565b6040516107749190613613565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190612e10565b61187c565b6040516107b19190613613565b60405180910390f35b3480156107c657600080fd5b506107e160048036038101906107dc9190612de3565b611910565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610856575061085582611a08565b5b9050919050565b610865611aea565b73ffffffffffffffffffffffffffffffffffffffff166108836111a5565b73ffffffffffffffffffffffffffffffffffffffff16146108d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d090613850565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b60606000805461091490613bf6565b80601f016020809104026020016040519081016040528092919081815260200182805461094090613bf6565b801561098d5780601f106109625761010080835404028352916020019161098d565b820191906000526020600020905b81548152906001019060200180831161097057829003601f168201915b5050505050905090565b60006109a282611af2565b6109e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d890613830565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2782610ee3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8f906138b0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab7611aea565b73ffffffffffffffffffffffffffffffffffffffff161480610ae65750610ae581610ae0611aea565b61187c565b5b610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c906137b0565b60405180910390fd5b610b2f8383611b5e565b505050565b603281565b610b41611aea565b73ffffffffffffffffffffffffffffffffffffffff16610b5f6111a5565b73ffffffffffffffffffffffffffffffffffffffff1614610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90613850565b60405180910390fd5b600d5482829050610bc4610c79565b610bce9190613a19565b1115610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c06906136b0565b60405180910390fd5b60005b82829050811015610c7457610c61838383818110610c3357610c32613d8f565b5b9050602002016020810190610c489190612de3565b6001610c52610c79565b610c5c9190613a19565b611c17565b8080610c6c90613c59565b915050610c12565b505050565b6000600880549050905090565b610c97610c91611aea565b82611c35565b610cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd906138d0565b60405180910390fd5b610ce1838383611d13565b505050565b6000610cf183611065565b8210610d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2990613670565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610da68383836040518060200160405280600081525061166c565b505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f8054610dde90613bf6565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0a90613bf6565b8015610e575780601f10610e2c57610100808354040283529160200191610e57565b820191906000526020600020905b815481529060010190602001808311610e3a57829003601f168201915b505050505081565b6000610e69610c79565b8210610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea1906138f0565b60405180910390fd5b60088281548110610ebe57610ebd613d8f565b5b90600052602060002001549050919050565b600e60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f83906137f0565b60405180910390fd5b80915050919050565b610f9d611aea565b73ffffffffffffffffffffffffffffffffffffffff16610fbb6111a5565b73ffffffffffffffffffffffffffffffffffffffff1614611011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100890613850565b60405180910390fd5b611019610c79565b81101561105b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105290613930565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd906137d0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611125611aea565b73ffffffffffffffffffffffffffffffffffffffff166111436111a5565b73ffffffffffffffffffffffffffffffffffffffff1614611199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119090613850565b60405180910390fd5b6111a36000611f6f565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111d7611aea565b73ffffffffffffffffffffffffffffffffffffffff166111f56111a5565b73ffffffffffffffffffffffffffffffffffffffff161461124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290613850565b60405180910390fd5b8181600f919061125c929190612bbb565b505050565b611269611aea565b73ffffffffffffffffffffffffffffffffffffffff166112876111a5565b73ffffffffffffffffffffffffffffffffffffffff16146112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d490613850565b60405180910390fd5b80600c8190555050565b6060600180546112f690613bf6565b80601f016020809104026020016040519081016040528092919081815260200182805461132290613bf6565b801561136f5780601f106113445761010080835404028352916020019161136f565b820191906000526020600020905b81548152906001019060200180831161135257829003601f168201915b5050505050905090565b600c5481565b601060009054906101000a900460ff166113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c590613770565b60405180910390fd5b600d54816113da610c79565b6113e49190613a19565b1115611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c906136b0565b60405180910390fd5b600081118015611436575060328111155b611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c90613710565b60405180910390fd5b3481600c546114849190613aa0565b11156114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc90613650565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801561152d573d6000803e3d6000fd5b5060005b8181101561156957611556336001611547610c79565b6115519190613a19565b611c17565b808061156190613c59565b915050611531565b5050565b61157f611578611aea565b8383612035565b5050565b61158b611aea565b73ffffffffffffffffffffffffffffffffffffffff166115a96111a5565b73ffffffffffffffffffffffffffffffffffffffff16146115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690613850565b60405180910390fd5b600e60009054906101000a900460ff161561164f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164690613890565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b61167d611677611aea565b83611c35565b6116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b3906138d0565b60405180910390fd5b6116c8848484846121a2565b50505050565b6116d6611aea565b73ffffffffffffffffffffffffffffffffffffffff166116f46111a5565b73ffffffffffffffffffffffffffffffffffffffff161461174a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174190613850565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606061179982611af2565b6117d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cf90613910565b60405180910390fd5b6060600e60009054906101000a900460ff16156117ff576117f8836121fe565b9050611838565b6040518060400160405280600281526020017f2d3100000000000000000000000000000000000000000000000000000000000081525090505b600f8160405160200161184c92919061356d565b604051602081830303815290604052915050919050565b600d5481565b601060009054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611918611aea565b73ffffffffffffffffffffffffffffffffffffffff166119366111a5565b73ffffffffffffffffffffffffffffffffffffffff161461198c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198390613850565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f3906136d0565b60405180910390fd5b611a0581611f6f565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ad357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ae35750611ae28261235f565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bd183610ee3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611c318282604051806020016040528060008152506123c9565b5050565b6000611c4082611af2565b611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7690613790565b60405180910390fd5b6000611c8a83610ee3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611cf957508373ffffffffffffffffffffffffffffffffffffffff16611ce184610997565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d0a5750611d09818561187c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d3382610ee3565b73ffffffffffffffffffffffffffffffffffffffff1614611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8090613870565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df090613730565b60405180910390fd5b611e04838383612424565b611e0f600082611b5e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e5f9190613afa565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eb69190613a19565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209b90613750565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121959190613613565b60405180910390a3505050565b6121ad848484611d13565b6121b984848484612538565b6121f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ef90613690565b60405180910390fd5b50505050565b60606000821415612246576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061235a565b600082905060005b6000821461227857808061226190613c59565b915050600a826122719190613a6f565b915061224e565b60008167ffffffffffffffff81111561229457612293613dbe565b5b6040519080825280601f01601f1916602001820160405280156122c65781602001600182028036833780820191505090505b5090505b60008514612353576001826122df9190613afa565b9150600a856122ee9190613ca2565b60306122fa9190613a19565b60f81b8183815181106123105761230f613d8f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561234c9190613a6f565b94506122ca565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123d383836126cf565b6123e06000848484612538565b61241f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241690613690565b60405180910390fd5b505050565b61242f83838361289d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124725761246d816128a2565b6124b1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124b0576124af83826128eb565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124f4576124ef81612a58565b612533565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612532576125318282612b29565b5b5b505050565b60006125598473ffffffffffffffffffffffffffffffffffffffff16612ba8565b156126c2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612582611aea565b8786866040518563ffffffff1660e01b81526004016125a494939291906135c7565b602060405180830381600087803b1580156125be57600080fd5b505af19250505080156125ef57506040513d601f19601f820116820180604052508101906125ec9190613020565b60015b612672573d806000811461261f576040519150601f19603f3d011682016040523d82523d6000602084013e612624565b606091505b5060008151141561266a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266190613690565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126c7565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561273f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273690613810565b60405180910390fd5b61274881611af2565b15612788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277f906136f0565b60405180910390fd5b61279460008383612424565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127e49190613a19565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016128f884611065565b6129029190613afa565b90506000600760008481526020019081526020016000205490508181146129e7576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612a6c9190613afa565b9050600060096000848152602001908152602001600020549050600060088381548110612a9c57612a9b613d8f565b5b906000526020600020015490508060088381548110612abe57612abd613d8f565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612b0d57612b0c613d60565b5b6001900381819060005260206000200160009055905550505050565b6000612b3483611065565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612bc790613bf6565b90600052602060002090601f016020900481019282612be95760008555612c30565b82601f10612c0257803560ff1916838001178555612c30565b82800160010185558215612c30579182015b82811115612c2f578235825591602001919060010190612c14565b5b509050612c3d9190612c41565b5090565b5b80821115612c5a576000816000905550600101612c42565b5090565b6000612c71612c6c84613990565b61396b565b905082815260208101848484011115612c8d57612c8c613dfc565b5b612c98848285613bb4565b509392505050565b600081359050612caf8161442e565b92915050565b60008083601f840112612ccb57612cca613df2565b5b8235905067ffffffffffffffff811115612ce857612ce7613ded565b5b602083019150836020820283011115612d0457612d03613df7565b5b9250929050565b600081359050612d1a81614445565b92915050565b600081359050612d2f8161445c565b92915050565b600081519050612d448161445c565b92915050565b600082601f830112612d5f57612d5e613df2565b5b8135612d6f848260208601612c5e565b91505092915050565b60008083601f840112612d8e57612d8d613df2565b5b8235905067ffffffffffffffff811115612dab57612daa613ded565b5b602083019150836001820283011115612dc757612dc6613df7565b5b9250929050565b600081359050612ddd81614473565b92915050565b600060208284031215612df957612df8613e06565b5b6000612e0784828501612ca0565b91505092915050565b60008060408385031215612e2757612e26613e06565b5b6000612e3585828601612ca0565b9250506020612e4685828601612ca0565b9150509250929050565b600080600060608486031215612e6957612e68613e06565b5b6000612e7786828701612ca0565b9350506020612e8886828701612ca0565b9250506040612e9986828701612dce565b9150509250925092565b60008060008060808587031215612ebd57612ebc613e06565b5b6000612ecb87828801612ca0565b9450506020612edc87828801612ca0565b9350506040612eed87828801612dce565b925050606085013567ffffffffffffffff811115612f0e57612f0d613e01565b5b612f1a87828801612d4a565b91505092959194509250565b60008060408385031215612f3d57612f3c613e06565b5b6000612f4b85828601612ca0565b9250506020612f5c85828601612d0b565b9150509250929050565b60008060408385031215612f7d57612f7c613e06565b5b6000612f8b85828601612ca0565b9250506020612f9c85828601612dce565b9150509250929050565b60008060208385031215612fbd57612fbc613e06565b5b600083013567ffffffffffffffff811115612fdb57612fda613e01565b5b612fe785828601612cb5565b92509250509250929050565b60006020828403121561300957613008613e06565b5b600061301784828501612d20565b91505092915050565b60006020828403121561303657613035613e06565b5b600061304484828501612d35565b91505092915050565b6000806020838503121561306457613063613e06565b5b600083013567ffffffffffffffff81111561308257613081613e01565b5b61308e85828601612d78565b92509250509250929050565b6000602082840312156130b0576130af613e06565b5b60006130be84828501612dce565b91505092915050565b6130d081613b40565b82525050565b6130df81613b2e565b82525050565b6130ee81613b52565b82525050565b60006130ff826139d6565b61310981856139ec565b9350613119818560208601613bc3565b61312281613e0b565b840191505092915050565b6000613138826139e1565b61314281856139fd565b9350613152818560208601613bc3565b61315b81613e0b565b840191505092915050565b6000613171826139e1565b61317b8185613a0e565b935061318b818560208601613bc3565b80840191505092915050565b600081546131a481613bf6565b6131ae8186613a0e565b945060018216600081146131c957600181146131da5761320d565b60ff1983168652818601935061320d565b6131e3856139c1565b60005b83811015613205578154818901526001820191506020810190506131e6565b838801955050505b50505092915050565b60006132236010836139fd565b915061322e82613e1c565b602082019050919050565b6000613246602b836139fd565b915061325182613e45565b604082019050919050565b60006132696032836139fd565b915061327482613e94565b604082019050919050565b600061328c6026836139fd565b915061329782613ee3565b604082019050919050565b60006132af6026836139fd565b91506132ba82613f32565b604082019050919050565b60006132d2601c836139fd565b91506132dd82613f81565b602082019050919050565b60006132f5600e836139fd565b915061330082613faa565b602082019050919050565b60006133186024836139fd565b915061332382613fd3565b604082019050919050565b600061333b6019836139fd565b915061334682614022565b602082019050919050565b600061335e6012836139fd565b91506133698261404b565b602082019050919050565b6000613381602c836139fd565b915061338c82614074565b604082019050919050565b60006133a46038836139fd565b91506133af826140c3565b604082019050919050565b60006133c7602a836139fd565b91506133d282614112565b604082019050919050565b60006133ea6029836139fd565b91506133f582614161565b604082019050919050565b600061340d6020836139fd565b9150613418826141b0565b602082019050919050565b6000613430602c836139fd565b915061343b826141d9565b604082019050919050565b60006134536020836139fd565b915061345e82614228565b602082019050919050565b60006134766029836139fd565b915061348182614251565b604082019050919050565b60006134996011836139fd565b91506134a4826142a0565b602082019050919050565b60006134bc6021836139fd565b91506134c7826142c9565b604082019050919050565b60006134df6031836139fd565b91506134ea82614318565b604082019050919050565b6000613502602c836139fd565b915061350d82614367565b604082019050919050565b60006135256010836139fd565b9150613530826143b6565b602082019050919050565b60006135486033836139fd565b9150613553826143df565b604082019050919050565b61356781613baa565b82525050565b60006135798285613197565b91506135858284613166565b91508190509392505050565b60006020820190506135a660008301846130d6565b92915050565b60006020820190506135c160008301846130c7565b92915050565b60006080820190506135dc60008301876130d6565b6135e960208301866130d6565b6135f6604083018561355e565b818103606083015261360881846130f4565b905095945050505050565b600060208201905061362860008301846130e5565b92915050565b60006020820190508181036000830152613648818461312d565b905092915050565b6000602082019050818103600083015261366981613216565b9050919050565b6000602082019050818103600083015261368981613239565b9050919050565b600060208201905081810360008301526136a98161325c565b9050919050565b600060208201905081810360008301526136c98161327f565b9050919050565b600060208201905081810360008301526136e9816132a2565b9050919050565b60006020820190508181036000830152613709816132c5565b9050919050565b60006020820190508181036000830152613729816132e8565b9050919050565b600060208201905081810360008301526137498161330b565b9050919050565b600060208201905081810360008301526137698161332e565b9050919050565b6000602082019050818103600083015261378981613351565b9050919050565b600060208201905081810360008301526137a981613374565b9050919050565b600060208201905081810360008301526137c981613397565b9050919050565b600060208201905081810360008301526137e9816133ba565b9050919050565b60006020820190508181036000830152613809816133dd565b9050919050565b6000602082019050818103600083015261382981613400565b9050919050565b6000602082019050818103600083015261384981613423565b9050919050565b6000602082019050818103600083015261386981613446565b9050919050565b6000602082019050818103600083015261388981613469565b9050919050565b600060208201905081810360008301526138a98161348c565b9050919050565b600060208201905081810360008301526138c9816134af565b9050919050565b600060208201905081810360008301526138e9816134d2565b9050919050565b60006020820190508181036000830152613909816134f5565b9050919050565b6000602082019050818103600083015261392981613518565b9050919050565b600060208201905081810360008301526139498161353b565b9050919050565b6000602082019050613965600083018461355e565b92915050565b6000613975613986565b90506139818282613c28565b919050565b6000604051905090565b600067ffffffffffffffff8211156139ab576139aa613dbe565b5b6139b482613e0b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a2482613baa565b9150613a2f83613baa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a6457613a63613cd3565b5b828201905092915050565b6000613a7a82613baa565b9150613a8583613baa565b925082613a9557613a94613d02565b5b828204905092915050565b6000613aab82613baa565b9150613ab683613baa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613aef57613aee613cd3565b5b828202905092915050565b6000613b0582613baa565b9150613b1083613baa565b925082821015613b2357613b22613cd3565b5b828203905092915050565b6000613b3982613b8a565b9050919050565b6000613b4b82613b8a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613be1578082015181840152602081019050613bc6565b83811115613bf0576000848401525b50505050565b60006002820490506001821680613c0e57607f821691505b60208210811415613c2257613c21613d31565b5b50919050565b613c3182613e0b565b810181811067ffffffffffffffff82111715613c5057613c4f613dbe565b5b80604052505050565b6000613c6482613baa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c9757613c96613cd3565b5b600182019050919050565b6000613cad82613baa565b9150613cb883613baa565b925082613cc857613cc7613d02565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e73756666696369656e742045544800000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f5468617420616d6f756e74206f6620746f6b656e73206973206e6f742061766160008201527f696c61626c650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f416c72656164792072657665616c656421000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f556e6578697374656e7420746f6b656e00000000000000000000000000000000600082015250565b7f43616e7420736574206d617820737570706c79206c6f776572207468616e206160008201527f6c726561647920736f6c6420746f6b656e732100000000000000000000000000602082015250565b61443781613b2e565b811461444257600080fd5b50565b61444e81613b52565b811461445957600080fd5b50565b61446581613b5e565b811461447057600080fd5b50565b61447c81613baa565b811461448757600080fd5b5056fea264697066735822122064f70e77e8693929ea13e5d23a622e2716a1db841e6c6c077ad389a53ac1f3cd64736f6c63430008070033

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

00000000000000000000000073246984fbd4c6a303f7978d8ed3699347a744000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f6170692e6b69636b666c69706e66742e636f6d2f6d657461646174612f000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _teamAddr (address): 0x73246984FBD4C6A303f7978D8ed3699347A74400
Arg [1] : _tokenBaseURI (string): https://api.kickflipnft.com/metadata/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 00000000000000000000000073246984fbd4c6a303f7978d8ed3699347a74400
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000025
Arg [3] : 68747470733a2f2f6170692e6b69636b666c69706e66742e636f6d2f6d657461
Arg [4] : 646174612f000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46647:2329:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35736:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47180:80;;;;;;;;;;;;;:::i;:::-;;23230:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24789:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24312:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46736:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48687:286;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36376:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25539:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36044:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25949:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46782:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46901:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36566:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46876:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22924:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47368:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22654:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43597:103;;;;;;;;;;;;;:::i;:::-;;42946:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47266:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47669:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23399:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46820:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48233:448;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25082:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47755:111;;;;;;;;;;;;;:::i;:::-;;26205:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47570:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47872:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46845:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46932:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25308:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43855:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35736:224;35838:4;35877:35;35862:50;;;:11;:50;;;;:90;;;;35916:36;35940:11;35916:23;:36::i;:::-;35862:90;35855:97;;35736:224;;;:::o;47180:80::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47246:8:::1;;;;;;;;;;;47245:9;47234:8;;:20;;;;;;;;;;;;;;;;;;47180:80::o:0;23230:100::-;23284:13;23317:5;23310:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23230:100;:::o;24789:221::-;24865:7;24893:16;24901:7;24893;:16::i;:::-;24885:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24978:15;:24;24994:7;24978:24;;;;;;;;;;;;;;;;;;;;;24971:31;;24789:221;;;:::o;24312:411::-;24393:13;24409:23;24424:7;24409:14;:23::i;:::-;24393:39;;24457:5;24451:11;;:2;:11;;;;24443:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;24551:5;24535:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24560:37;24577:5;24584:12;:10;:12::i;:::-;24560:16;:37::i;:::-;24535:62;24513:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24694:21;24703:2;24707:7;24694:8;:21::i;:::-;24382:341;24312:411;;:::o;46736:41::-;46775:2;46736:41;:::o;48687:286::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48801:9:::1;;48781;;:16;;48765:13;:11;:13::i;:::-;:32;;;;:::i;:::-;:45;;48757:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;48867:9;48862:106;48886:9;;:16;;48882:1;:20;48862:106;;;48918:42;48928:9;;48938:1;48928:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;48958:1;48942:13;:11;:13::i;:::-;:17;;;;:::i;:::-;48918:9;:42::i;:::-;48904:3;;;;;:::i;:::-;;;;48862:106;;;;48687:286:::0;;:::o;36376:113::-;36437:7;36464:10;:17;;;;36457:24;;36376:113;:::o;25539:339::-;25734:41;25753:12;:10;:12::i;:::-;25767:7;25734:18;:41::i;:::-;25726:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25842:28;25852:4;25858:2;25862:7;25842:9;:28::i;:::-;25539:339;;;:::o;36044:256::-;36141:7;36177:23;36194:5;36177:16;:23::i;:::-;36169:5;:31;36161:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36266:12;:19;36279:5;36266:19;;;;;;;;;;;;;;;:26;36286:5;36266:26;;;;;;;;;;;;36259:33;;36044:256;;;;:::o;25949:185::-;26087:39;26104:4;26110:2;26114:7;26087:39;;;;;;;;;;;;:16;:39::i;:::-;25949:185;;;:::o;46782:31::-;;;;;;;;;;;;;:::o;46901:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36566:233::-;36641:7;36677:30;:28;:30::i;:::-;36669:5;:38;36661:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;36774:10;36785:5;36774:17;;;;;;;;:::i;:::-;;;;;;;;;;36767:24;;36566:233;;;:::o;46876:20::-;;;;;;;;;;;;;:::o;22924:239::-;22996:7;23016:13;23032:7;:16;23040:7;23032:16;;;;;;;;;;;;;;;;;;;;;23016:32;;23084:1;23067:19;;:5;:19;;;;23059:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23150:5;23143:12;;;22924:239;;;:::o;47368:196::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47458:13:::1;:11;:13::i;:::-;47444:10;:27;;47436:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;47548:10;47536:9;:22;;;;47368:196:::0;:::o;22654:208::-;22726:7;22771:1;22754:19;;:5;:19;;;;22746:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22838:9;:16;22848:5;22838:16;;;;;;;;;;;;;;;;22831:23;;22654:208;;;:::o;43597:103::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43662:30:::1;43689:1;43662:18;:30::i;:::-;43597:103::o:0;42946:87::-;42992:7;43019:6;;;;;;;;;;;43012:13;;42946:87;:::o;47266:96::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47353:3:::1;;47338:12;:18;;;;;;;:::i;:::-;;47266:96:::0;;:::o;47669:80::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47737:6:::1;47729:5;:14;;;;47669:80:::0;:::o;23399:104::-;23455:13;23488:7;23481:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23399:104;:::o;46820:20::-;;;;:::o;48233:448::-;48292:8;;;;;;;;;;;48284:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;48364:9;;48354:6;48338:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;48330:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;48440:1;48431:6;:10;:36;;;;;46775:2;48445:6;:22;;48431:36;48423:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;48519:9;48509:6;48501:5;;:14;;;;:::i;:::-;:27;;48493:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;48558:8;;;;;;;;;;;:17;;:28;48576:9;48558:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48599:6;48595:80;48615:6;48611:1;:10;48595:80;;;48635:40;48645:10;48673:1;48657:13;:11;:13::i;:::-;:17;;;;:::i;:::-;48635:9;:40::i;:::-;48623:3;;;;;:::i;:::-;;;;48595:80;;;;48233:448;:::o;25082:155::-;25177:52;25196:12;:10;:12::i;:::-;25210:8;25220;25177:18;:52::i;:::-;25082:155;;:::o;47755:111::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47808:8:::1;;;;;;;;;;;47807:9;47799:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;47856:4;47845:8;;:15;;;;;;;;;;;;;;;;;;47755:111::o:0;26205:328::-;26380:41;26399:12;:10;:12::i;:::-;26413:7;26380:18;:41::i;:::-;26372:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26486:39;26500:4;26506:2;26510:7;26519:5;26486:13;:39::i;:::-;26205:328;;;;:::o;47570:93::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47651:5:::1;47632:8;;:25;;;;;;;;;;;;;;;;;;47570:93:::0;:::o;47872:355::-;47945:13;47975:16;47983:7;47975;:16::i;:::-;47967:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;48021:24;48058:8;;;;;;;;;;;48054:102;;;48090:18;:7;:16;:18::i;:::-;48077:31;;48054:102;;;48131:17;;;;;;;;;;;;;;;;;;;48054:102;48195:12;48209:10;48178:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48164:57;;;47872:355;;;:::o;46845:24::-;;;;:::o;46932:20::-;;;;;;;;;;;;;:::o;25308:164::-;25405:4;25429:18;:25;25448:5;25429:25;;;;;;;;;;;;;;;:35;25455:8;25429:35;;;;;;;;;;;;;;;;;;;;;;;;;25422:42;;25308:164;;;;:::o;43855:201::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43964:1:::1;43944:22;;:8;:22;;;;43936:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44020:28;44039:8;44020:18;:28::i;:::-;43855:201:::0;:::o;22285:305::-;22387:4;22439:25;22424:40;;;:11;:40;;;;:105;;;;22496:33;22481:48;;;:11;:48;;;;22424:105;:158;;;;22546:36;22570:11;22546:23;:36::i;:::-;22424:158;22404:178;;22285:305;;;:::o;20679:98::-;20732:7;20759:10;20752:17;;20679:98;:::o;28043:127::-;28108:4;28160:1;28132:30;;:7;:16;28140:7;28132:16;;;;;;;;;;;;;;;;;;;;;:30;;;;28125:37;;28043:127;;;:::o;32025:174::-;32127:2;32100:15;:24;32116:7;32100:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32183:7;32179:2;32145:46;;32154:23;32169:7;32154:14;:23::i;:::-;32145:46;;;;;;;;;;;;32025:174;;:::o;29027:110::-;29103:26;29113:2;29117:7;29103:26;;;;;;;;;;;;:9;:26::i;:::-;29027:110;;:::o;28337:348::-;28430:4;28455:16;28463:7;28455;:16::i;:::-;28447:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28531:13;28547:23;28562:7;28547:14;:23::i;:::-;28531:39;;28600:5;28589:16;;:7;:16;;;:51;;;;28633:7;28609:31;;:20;28621:7;28609:11;:20::i;:::-;:31;;;28589:51;:87;;;;28644:32;28661:5;28668:7;28644:16;:32::i;:::-;28589:87;28581:96;;;28337:348;;;;:::o;31329:578::-;31488:4;31461:31;;:23;31476:7;31461:14;:23::i;:::-;:31;;;31453:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31571:1;31557:16;;:2;:16;;;;31549:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31627:39;31648:4;31654:2;31658:7;31627:20;:39::i;:::-;31731:29;31748:1;31752:7;31731:8;:29::i;:::-;31792:1;31773:9;:15;31783:4;31773:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31821:1;31804:9;:13;31814:2;31804:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31852:2;31833:7;:16;31841:7;31833:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31891:7;31887:2;31872:27;;31881:4;31872:27;;;;;;;;;;;;31329:578;;;:::o;44216:191::-;44290:16;44309:6;;;;;;;;;;;44290:25;;44335:8;44326:6;;:17;;;;;;;;;;;;;;;;;;44390:8;44359:40;;44380:8;44359:40;;;;;;;;;;;;44279:128;44216:191;:::o;32341:315::-;32496:8;32487:17;;:5;:17;;;;32479:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;32583:8;32545:18;:25;32564:5;32545:25;;;;;;;;;;;;;;;:35;32571:8;32545:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32629:8;32607:41;;32622:5;32607:41;;;32639:8;32607:41;;;;;;:::i;:::-;;;;;;;;32341:315;;;:::o;27415:::-;27572:28;27582:4;27588:2;27592:7;27572:9;:28::i;:::-;27619:48;27642:4;27648:2;27652:7;27661:5;27619:22;:48::i;:::-;27611:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;27415:315;;;;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;13088:157::-;13173:4;13212:25;13197:40;;;:11;:40;;;;13190:47;;13088:157;;;:::o;29364:321::-;29494:18;29500:2;29504:7;29494:5;:18::i;:::-;29545:54;29576:1;29580:2;29584:7;29593:5;29545:22;:54::i;:::-;29523:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;29364:321;;;:::o;37412:589::-;37556:45;37583:4;37589:2;37593:7;37556:26;:45::i;:::-;37634:1;37618:18;;:4;:18;;;37614:187;;;37653:40;37685:7;37653:31;:40::i;:::-;37614:187;;;37723:2;37715:10;;:4;:10;;;37711:90;;37742:47;37775:4;37781:7;37742:32;:47::i;:::-;37711:90;37614:187;37829:1;37815:16;;:2;:16;;;37811:183;;;37848:45;37885:7;37848:36;:45::i;:::-;37811:183;;;37921:4;37915:10;;:2;:10;;;37911:83;;37942:40;37970:2;37974:7;37942:27;:40::i;:::-;37911:83;37811:183;37412:589;;;:::o;33221:799::-;33376:4;33397:15;:2;:13;;;:15::i;:::-;33393:620;;;33449:2;33433:36;;;33470:12;:10;:12::i;:::-;33484:4;33490:7;33499:5;33433:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33429:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33692:1;33675:6;:13;:18;33671:272;;;33718:60;;;;;;;;;;:::i;:::-;;;;;;;;33671:272;33893:6;33887:13;33878:6;33874:2;33870:15;33863:38;33429:529;33566:41;;;33556:51;;;:6;:51;;;;33549:58;;;;;33393:620;33997:4;33990:11;;33221:799;;;;;;;:::o;30021:382::-;30115:1;30101:16;;:2;:16;;;;30093:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30174:16;30182:7;30174;:16::i;:::-;30173:17;30165:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30236:45;30265:1;30269:2;30273:7;30236:20;:45::i;:::-;30311:1;30294:9;:13;30304:2;30294:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30342:2;30323:7;:16;30331:7;30323:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30387:7;30383:2;30362:33;;30379:1;30362:33;;;;;;;;;;;;30021:382;;:::o;34592:126::-;;;;:::o;38724:164::-;38828:10;:17;;;;38801:15;:24;38817:7;38801:24;;;;;;;;;;;:44;;;;38856:10;38872:7;38856:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38724:164;:::o;39515:988::-;39781:22;39831:1;39806:22;39823:4;39806:16;:22::i;:::-;:26;;;;:::i;:::-;39781:51;;39843:18;39864:17;:26;39882:7;39864:26;;;;;;;;;;;;39843:47;;40011:14;39997:10;:28;39993:328;;40042:19;40064:12;:18;40077:4;40064:18;;;;;;;;;;;;;;;:34;40083:14;40064:34;;;;;;;;;;;;40042:56;;40148:11;40115:12;:18;40128:4;40115:18;;;;;;;;;;;;;;;:30;40134:10;40115:30;;;;;;;;;;;:44;;;;40265:10;40232:17;:30;40250:11;40232:30;;;;;;;;;;;:43;;;;40027:294;39993:328;40417:17;:26;40435:7;40417:26;;;;;;;;;;;40410:33;;;40461:12;:18;40474:4;40461:18;;;;;;;;;;;;;;;:34;40480:14;40461:34;;;;;;;;;;;40454:41;;;39596:907;;39515:988;;:::o;40798:1079::-;41051:22;41096:1;41076:10;:17;;;;:21;;;;:::i;:::-;41051:46;;41108:18;41129:15;:24;41145:7;41129:24;;;;;;;;;;;;41108:45;;41480:19;41502:10;41513:14;41502:26;;;;;;;;:::i;:::-;;;;;;;;;;41480:48;;41566:11;41541:10;41552;41541:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;41677:10;41646:15;:28;41662:11;41646:28;;;;;;;;;;;:41;;;;41818:15;:24;41834:7;41818:24;;;;;;;;;;;41811:31;;;41853:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40869:1008;;;40798:1079;:::o;38302:221::-;38387:14;38404:20;38421:2;38404:16;:20::i;:::-;38387:37;;38462:7;38435:12;:16;38448:2;38435:16;;;;;;;;;;;;;;;:24;38452:6;38435:24;;;;;;;;;;;:34;;;;38509:6;38480:17;:26;38498:7;38480:26;;;;;;;;;;;:35;;;;38376:147;38302:221;;:::o;2944:387::-;3004:4;3212:12;3279:7;3267:20;3259:28;;3322:1;3315:4;:8;3308:15;;;2944:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:122;;726:79;;:::i;:::-;685:122;839:6;826:20;816:30;;869:18;861:6;858:30;855:117;;;891:79;;:::i;:::-;855:117;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:128;;;1066:79;;:::i;:::-;1019:128;585:568;;;;;:::o;1159:133::-;1202:5;1240:6;1227:20;1218:29;;1256:30;1280:5;1256:30;:::i;:::-;1159:133;;;;:::o;1298:137::-;1343:5;1381:6;1368:20;1359:29;;1397:32;1423:5;1397:32;:::i;:::-;1298:137;;;;:::o;1441:141::-;1497:5;1528:6;1522:13;1513:22;;1544:32;1570:5;1544:32;:::i;:::-;1441:141;;;;:::o;1601:338::-;1656:5;1705:3;1698:4;1690:6;1686:17;1682:27;1672:122;;1713:79;;:::i;:::-;1672:122;1830:6;1817:20;1855:78;1929:3;1921:6;1914:4;1906:6;1902:17;1855:78;:::i;:::-;1846:87;;1662:277;1601:338;;;;:::o;1959:553::-;2017:8;2027:6;2077:3;2070:4;2062:6;2058:17;2054:27;2044:122;;2085:79;;:::i;:::-;2044:122;2198:6;2185:20;2175:30;;2228:18;2220:6;2217:30;2214:117;;;2250:79;;:::i;:::-;2214:117;2364:4;2356:6;2352:17;2340:29;;2418:3;2410:4;2402:6;2398:17;2388:8;2384:32;2381:41;2378:128;;;2425:79;;:::i;:::-;2378:128;1959:553;;;;;:::o;2518:139::-;2564:5;2602:6;2589:20;2580:29;;2618:33;2645:5;2618:33;:::i;:::-;2518:139;;;;:::o;2663:329::-;2722:6;2771:2;2759:9;2750:7;2746:23;2742:32;2739:119;;;2777:79;;:::i;:::-;2739:119;2897:1;2922:53;2967:7;2958:6;2947:9;2943:22;2922:53;:::i;:::-;2912:63;;2868:117;2663:329;;;;:::o;2998:474::-;3066:6;3074;3123:2;3111:9;3102:7;3098:23;3094:32;3091:119;;;3129:79;;:::i;:::-;3091:119;3249:1;3274:53;3319:7;3310:6;3299:9;3295:22;3274:53;:::i;:::-;3264:63;;3220:117;3376:2;3402:53;3447:7;3438:6;3427:9;3423:22;3402:53;:::i;:::-;3392:63;;3347:118;2998:474;;;;;:::o;3478:619::-;3555:6;3563;3571;3620:2;3608:9;3599:7;3595:23;3591:32;3588:119;;;3626:79;;:::i;:::-;3588:119;3746:1;3771:53;3816:7;3807:6;3796:9;3792:22;3771:53;:::i;:::-;3761:63;;3717:117;3873:2;3899:53;3944:7;3935:6;3924:9;3920:22;3899:53;:::i;:::-;3889:63;;3844:118;4001:2;4027:53;4072:7;4063:6;4052:9;4048:22;4027:53;:::i;:::-;4017:63;;3972:118;3478:619;;;;;:::o;4103:943::-;4198:6;4206;4214;4222;4271:3;4259:9;4250:7;4246:23;4242:33;4239:120;;;4278:79;;:::i;:::-;4239:120;4398:1;4423:53;4468:7;4459:6;4448:9;4444:22;4423:53;:::i;:::-;4413:63;;4369:117;4525:2;4551:53;4596:7;4587:6;4576:9;4572:22;4551:53;:::i;:::-;4541:63;;4496:118;4653:2;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4624:118;4809:2;4798:9;4794:18;4781:32;4840:18;4832:6;4829:30;4826:117;;;4862:79;;:::i;:::-;4826:117;4967:62;5021:7;5012:6;5001:9;4997:22;4967:62;:::i;:::-;4957:72;;4752:287;4103:943;;;;;;;:::o;5052:468::-;5117:6;5125;5174:2;5162:9;5153:7;5149:23;5145:32;5142:119;;;5180:79;;:::i;:::-;5142:119;5300:1;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5271:117;5427:2;5453:50;5495:7;5486:6;5475:9;5471:22;5453:50;:::i;:::-;5443:60;;5398:115;5052:468;;;;;:::o;5526:474::-;5594:6;5602;5651:2;5639:9;5630:7;5626:23;5622:32;5619:119;;;5657:79;;:::i;:::-;5619:119;5777:1;5802:53;5847:7;5838:6;5827:9;5823:22;5802:53;:::i;:::-;5792:63;;5748:117;5904:2;5930:53;5975:7;5966:6;5955:9;5951:22;5930:53;:::i;:::-;5920:63;;5875:118;5526:474;;;;;:::o;6006:559::-;6092:6;6100;6149:2;6137:9;6128:7;6124:23;6120:32;6117:119;;;6155:79;;:::i;:::-;6117:119;6303:1;6292:9;6288:17;6275:31;6333:18;6325:6;6322:30;6319:117;;;6355:79;;:::i;:::-;6319:117;6468:80;6540:7;6531:6;6520:9;6516:22;6468:80;:::i;:::-;6450:98;;;;6246:312;6006:559;;;;;:::o;6571:327::-;6629:6;6678:2;6666:9;6657:7;6653:23;6649:32;6646:119;;;6684:79;;:::i;:::-;6646:119;6804:1;6829:52;6873:7;6864:6;6853:9;6849:22;6829:52;:::i;:::-;6819:62;;6775:116;6571:327;;;;:::o;6904:349::-;6973:6;7022:2;7010:9;7001:7;6997:23;6993:32;6990:119;;;7028:79;;:::i;:::-;6990:119;7148:1;7173:63;7228:7;7219:6;7208:9;7204:22;7173:63;:::i;:::-;7163:73;;7119:127;6904:349;;;;:::o;7259:529::-;7330:6;7338;7387:2;7375:9;7366:7;7362:23;7358:32;7355:119;;;7393:79;;:::i;:::-;7355:119;7541:1;7530:9;7526:17;7513:31;7571:18;7563:6;7560:30;7557:117;;;7593:79;;:::i;:::-;7557:117;7706:65;7763:7;7754:6;7743:9;7739:22;7706:65;:::i;:::-;7688:83;;;;7484:297;7259:529;;;;;:::o;7794:329::-;7853:6;7902:2;7890:9;7881:7;7877:23;7873:32;7870:119;;;7908:79;;:::i;:::-;7870:119;8028:1;8053:53;8098:7;8089:6;8078:9;8074:22;8053:53;:::i;:::-;8043:63;;7999:117;7794:329;;;;:::o;8129:142::-;8232:32;8258:5;8232:32;:::i;:::-;8227:3;8220:45;8129:142;;:::o;8277:118::-;8364:24;8382:5;8364:24;:::i;:::-;8359:3;8352:37;8277:118;;:::o;8401:109::-;8482:21;8497:5;8482:21;:::i;:::-;8477:3;8470:34;8401:109;;:::o;8516:360::-;8602:3;8630:38;8662:5;8630:38;:::i;:::-;8684:70;8747:6;8742:3;8684:70;:::i;:::-;8677:77;;8763:52;8808:6;8803:3;8796:4;8789:5;8785:16;8763:52;:::i;:::-;8840:29;8862:6;8840:29;:::i;:::-;8835:3;8831:39;8824:46;;8606:270;8516:360;;;;:::o;8882:364::-;8970:3;8998:39;9031:5;8998:39;:::i;:::-;9053:71;9117:6;9112:3;9053:71;:::i;:::-;9046:78;;9133:52;9178:6;9173:3;9166:4;9159:5;9155:16;9133:52;:::i;:::-;9210:29;9232:6;9210:29;:::i;:::-;9205:3;9201:39;9194:46;;8974:272;8882:364;;;;:::o;9252:377::-;9358:3;9386:39;9419:5;9386:39;:::i;:::-;9441:89;9523:6;9518:3;9441:89;:::i;:::-;9434:96;;9539:52;9584:6;9579:3;9572:4;9565:5;9561:16;9539:52;:::i;:::-;9616:6;9611:3;9607:16;9600:23;;9362:267;9252:377;;;;:::o;9659:845::-;9762:3;9799:5;9793:12;9828:36;9854:9;9828:36;:::i;:::-;9880:89;9962:6;9957:3;9880:89;:::i;:::-;9873:96;;10000:1;9989:9;9985:17;10016:1;10011:137;;;;10162:1;10157:341;;;;9978:520;;10011:137;10095:4;10091:9;10080;10076:25;10071:3;10064:38;10131:6;10126:3;10122:16;10115:23;;10011:137;;10157:341;10224:38;10256:5;10224:38;:::i;:::-;10284:1;10298:154;10312:6;10309:1;10306:13;10298:154;;;10386:7;10380:14;10376:1;10371:3;10367:11;10360:35;10436:1;10427:7;10423:15;10412:26;;10334:4;10331:1;10327:12;10322:17;;10298:154;;;10481:6;10476:3;10472:16;10465:23;;10164:334;;9978:520;;9766:738;;9659:845;;;;:::o;10510:366::-;10652:3;10673:67;10737:2;10732:3;10673:67;:::i;:::-;10666:74;;10749:93;10838:3;10749:93;:::i;:::-;10867:2;10862:3;10858:12;10851:19;;10510:366;;;:::o;10882:::-;11024:3;11045:67;11109:2;11104:3;11045:67;:::i;:::-;11038:74;;11121:93;11210:3;11121:93;:::i;:::-;11239:2;11234:3;11230:12;11223:19;;10882:366;;;:::o;11254:::-;11396:3;11417:67;11481:2;11476:3;11417:67;:::i;:::-;11410:74;;11493:93;11582:3;11493:93;:::i;:::-;11611:2;11606:3;11602:12;11595:19;;11254:366;;;:::o;11626:::-;11768:3;11789:67;11853:2;11848:3;11789:67;:::i;:::-;11782:74;;11865:93;11954:3;11865:93;:::i;:::-;11983:2;11978:3;11974:12;11967:19;;11626:366;;;:::o;11998:::-;12140:3;12161:67;12225:2;12220:3;12161:67;:::i;:::-;12154:74;;12237:93;12326:3;12237:93;:::i;:::-;12355:2;12350:3;12346:12;12339:19;;11998:366;;;:::o;12370:::-;12512:3;12533:67;12597:2;12592:3;12533:67;:::i;:::-;12526:74;;12609:93;12698:3;12609:93;:::i;:::-;12727:2;12722:3;12718:12;12711:19;;12370:366;;;:::o;12742:::-;12884:3;12905:67;12969:2;12964:3;12905:67;:::i;:::-;12898:74;;12981:93;13070:3;12981:93;:::i;:::-;13099:2;13094:3;13090:12;13083:19;;12742:366;;;:::o;13114:::-;13256:3;13277:67;13341:2;13336:3;13277:67;:::i;:::-;13270:74;;13353:93;13442:3;13353:93;:::i;:::-;13471:2;13466:3;13462:12;13455:19;;13114:366;;;:::o;13486:::-;13628:3;13649:67;13713:2;13708:3;13649:67;:::i;:::-;13642:74;;13725:93;13814:3;13725:93;:::i;:::-;13843:2;13838:3;13834:12;13827:19;;13486:366;;;:::o;13858:::-;14000:3;14021:67;14085:2;14080:3;14021:67;:::i;:::-;14014:74;;14097:93;14186:3;14097:93;:::i;:::-;14215:2;14210:3;14206:12;14199:19;;13858:366;;;:::o;14230:::-;14372:3;14393:67;14457:2;14452:3;14393:67;:::i;:::-;14386:74;;14469:93;14558:3;14469:93;:::i;:::-;14587:2;14582:3;14578:12;14571:19;;14230:366;;;:::o;14602:::-;14744:3;14765:67;14829:2;14824:3;14765:67;:::i;:::-;14758:74;;14841:93;14930:3;14841:93;:::i;:::-;14959:2;14954:3;14950:12;14943:19;;14602:366;;;:::o;14974:::-;15116:3;15137:67;15201:2;15196:3;15137:67;:::i;:::-;15130:74;;15213:93;15302:3;15213:93;:::i;:::-;15331:2;15326:3;15322:12;15315:19;;14974:366;;;:::o;15346:::-;15488:3;15509:67;15573:2;15568:3;15509:67;:::i;:::-;15502:74;;15585:93;15674:3;15585:93;:::i;:::-;15703:2;15698:3;15694:12;15687:19;;15346:366;;;:::o;15718:::-;15860:3;15881:67;15945:2;15940:3;15881:67;:::i;:::-;15874:74;;15957:93;16046:3;15957:93;:::i;:::-;16075:2;16070:3;16066:12;16059:19;;15718:366;;;:::o;16090:::-;16232:3;16253:67;16317:2;16312:3;16253:67;:::i;:::-;16246:74;;16329:93;16418:3;16329:93;:::i;:::-;16447:2;16442:3;16438:12;16431:19;;16090:366;;;:::o;16462:::-;16604:3;16625:67;16689:2;16684:3;16625:67;:::i;:::-;16618:74;;16701:93;16790:3;16701:93;:::i;:::-;16819:2;16814:3;16810:12;16803:19;;16462:366;;;:::o;16834:::-;16976:3;16997:67;17061:2;17056:3;16997:67;:::i;:::-;16990:74;;17073:93;17162:3;17073:93;:::i;:::-;17191:2;17186:3;17182:12;17175:19;;16834:366;;;:::o;17206:::-;17348:3;17369:67;17433:2;17428:3;17369:67;:::i;:::-;17362:74;;17445:93;17534:3;17445:93;:::i;:::-;17563:2;17558:3;17554:12;17547:19;;17206:366;;;:::o;17578:::-;17720:3;17741:67;17805:2;17800:3;17741:67;:::i;:::-;17734:74;;17817:93;17906:3;17817:93;:::i;:::-;17935:2;17930:3;17926:12;17919:19;;17578:366;;;:::o;17950:::-;18092:3;18113:67;18177:2;18172:3;18113:67;:::i;:::-;18106:74;;18189:93;18278:3;18189:93;:::i;:::-;18307:2;18302:3;18298:12;18291:19;;17950:366;;;:::o;18322:::-;18464:3;18485:67;18549:2;18544:3;18485:67;:::i;:::-;18478:74;;18561:93;18650:3;18561:93;:::i;:::-;18679:2;18674:3;18670:12;18663:19;;18322:366;;;:::o;18694:::-;18836:3;18857:67;18921:2;18916:3;18857:67;:::i;:::-;18850:74;;18933:93;19022:3;18933:93;:::i;:::-;19051:2;19046:3;19042:12;19035:19;;18694:366;;;:::o;19066:::-;19208:3;19229:67;19293:2;19288:3;19229:67;:::i;:::-;19222:74;;19305:93;19394:3;19305:93;:::i;:::-;19423:2;19418:3;19414:12;19407:19;;19066:366;;;:::o;19438:118::-;19525:24;19543:5;19525:24;:::i;:::-;19520:3;19513:37;19438:118;;:::o;19562:429::-;19739:3;19761:92;19849:3;19840:6;19761:92;:::i;:::-;19754:99;;19870:95;19961:3;19952:6;19870:95;:::i;:::-;19863:102;;19982:3;19975:10;;19562:429;;;;;:::o;19997:222::-;20090:4;20128:2;20117:9;20113:18;20105:26;;20141:71;20209:1;20198:9;20194:17;20185:6;20141:71;:::i;:::-;19997:222;;;;:::o;20225:254::-;20334:4;20372:2;20361:9;20357:18;20349:26;;20385:87;20469:1;20458:9;20454:17;20445:6;20385:87;:::i;:::-;20225:254;;;;:::o;20485:640::-;20680:4;20718:3;20707:9;20703:19;20695:27;;20732:71;20800:1;20789:9;20785:17;20776:6;20732:71;:::i;:::-;20813:72;20881:2;20870:9;20866:18;20857:6;20813:72;:::i;:::-;20895;20963:2;20952:9;20948:18;20939:6;20895:72;:::i;:::-;21014:9;21008:4;21004:20;20999:2;20988:9;20984:18;20977:48;21042:76;21113:4;21104:6;21042:76;:::i;:::-;21034:84;;20485:640;;;;;;;:::o;21131:210::-;21218:4;21256:2;21245:9;21241:18;21233:26;;21269:65;21331:1;21320:9;21316:17;21307:6;21269:65;:::i;:::-;21131:210;;;;:::o;21347:313::-;21460:4;21498:2;21487:9;21483:18;21475:26;;21547:9;21541:4;21537:20;21533:1;21522:9;21518:17;21511:47;21575:78;21648:4;21639:6;21575:78;:::i;:::-;21567:86;;21347:313;;;;:::o;21666:419::-;21832:4;21870:2;21859:9;21855:18;21847:26;;21919:9;21913:4;21909:20;21905:1;21894:9;21890:17;21883:47;21947:131;22073:4;21947:131;:::i;:::-;21939:139;;21666:419;;;:::o;22091:::-;22257:4;22295:2;22284:9;22280:18;22272:26;;22344:9;22338:4;22334:20;22330:1;22319:9;22315:17;22308:47;22372:131;22498:4;22372:131;:::i;:::-;22364:139;;22091:419;;;:::o;22516:::-;22682:4;22720:2;22709:9;22705:18;22697:26;;22769:9;22763:4;22759:20;22755:1;22744:9;22740:17;22733:47;22797:131;22923:4;22797:131;:::i;:::-;22789:139;;22516:419;;;:::o;22941:::-;23107:4;23145:2;23134:9;23130:18;23122:26;;23194:9;23188:4;23184:20;23180:1;23169:9;23165:17;23158:47;23222:131;23348:4;23222:131;:::i;:::-;23214:139;;22941:419;;;:::o;23366:::-;23532:4;23570:2;23559:9;23555:18;23547:26;;23619:9;23613:4;23609:20;23605:1;23594:9;23590:17;23583:47;23647:131;23773:4;23647:131;:::i;:::-;23639:139;;23366:419;;;:::o;23791:::-;23957:4;23995:2;23984:9;23980:18;23972:26;;24044:9;24038:4;24034:20;24030:1;24019:9;24015:17;24008:47;24072:131;24198:4;24072:131;:::i;:::-;24064:139;;23791:419;;;:::o;24216:::-;24382:4;24420:2;24409:9;24405:18;24397:26;;24469:9;24463:4;24459:20;24455:1;24444:9;24440:17;24433:47;24497:131;24623:4;24497:131;:::i;:::-;24489:139;;24216:419;;;:::o;24641:::-;24807:4;24845:2;24834:9;24830:18;24822:26;;24894:9;24888:4;24884:20;24880:1;24869:9;24865:17;24858:47;24922:131;25048:4;24922:131;:::i;:::-;24914:139;;24641:419;;;:::o;25066:::-;25232:4;25270:2;25259:9;25255:18;25247:26;;25319:9;25313:4;25309:20;25305:1;25294:9;25290:17;25283:47;25347:131;25473:4;25347:131;:::i;:::-;25339:139;;25066:419;;;:::o;25491:::-;25657:4;25695:2;25684:9;25680:18;25672:26;;25744:9;25738:4;25734:20;25730:1;25719:9;25715:17;25708:47;25772:131;25898:4;25772:131;:::i;:::-;25764:139;;25491:419;;;:::o;25916:::-;26082:4;26120:2;26109:9;26105:18;26097:26;;26169:9;26163:4;26159:20;26155:1;26144:9;26140:17;26133:47;26197:131;26323:4;26197:131;:::i;:::-;26189:139;;25916:419;;;:::o;26341:::-;26507:4;26545:2;26534:9;26530:18;26522:26;;26594:9;26588:4;26584:20;26580:1;26569:9;26565:17;26558:47;26622:131;26748:4;26622:131;:::i;:::-;26614:139;;26341:419;;;:::o;26766:::-;26932:4;26970:2;26959:9;26955:18;26947:26;;27019:9;27013:4;27009:20;27005:1;26994:9;26990:17;26983:47;27047:131;27173:4;27047:131;:::i;:::-;27039:139;;26766:419;;;:::o;27191:::-;27357:4;27395:2;27384:9;27380:18;27372:26;;27444:9;27438:4;27434:20;27430:1;27419:9;27415:17;27408:47;27472:131;27598:4;27472:131;:::i;:::-;27464:139;;27191:419;;;:::o;27616:::-;27782:4;27820:2;27809:9;27805:18;27797:26;;27869:9;27863:4;27859:20;27855:1;27844:9;27840:17;27833:47;27897:131;28023:4;27897:131;:::i;:::-;27889:139;;27616:419;;;:::o;28041:::-;28207:4;28245:2;28234:9;28230:18;28222:26;;28294:9;28288:4;28284:20;28280:1;28269:9;28265:17;28258:47;28322:131;28448:4;28322:131;:::i;:::-;28314:139;;28041:419;;;:::o;28466:::-;28632:4;28670:2;28659:9;28655:18;28647:26;;28719:9;28713:4;28709:20;28705:1;28694:9;28690:17;28683:47;28747:131;28873:4;28747:131;:::i;:::-;28739:139;;28466:419;;;:::o;28891:::-;29057:4;29095:2;29084:9;29080:18;29072:26;;29144:9;29138:4;29134:20;29130:1;29119:9;29115:17;29108:47;29172:131;29298:4;29172:131;:::i;:::-;29164:139;;28891:419;;;:::o;29316:::-;29482:4;29520:2;29509:9;29505:18;29497:26;;29569:9;29563:4;29559:20;29555:1;29544:9;29540:17;29533:47;29597:131;29723:4;29597:131;:::i;:::-;29589:139;;29316:419;;;:::o;29741:::-;29907:4;29945:2;29934:9;29930:18;29922:26;;29994:9;29988:4;29984:20;29980:1;29969:9;29965:17;29958:47;30022:131;30148:4;30022:131;:::i;:::-;30014:139;;29741:419;;;:::o;30166:::-;30332:4;30370:2;30359:9;30355:18;30347:26;;30419:9;30413:4;30409:20;30405:1;30394:9;30390:17;30383:47;30447:131;30573:4;30447:131;:::i;:::-;30439:139;;30166:419;;;:::o;30591:::-;30757:4;30795:2;30784:9;30780:18;30772:26;;30844:9;30838:4;30834:20;30830:1;30819:9;30815:17;30808:47;30872:131;30998:4;30872:131;:::i;:::-;30864:139;;30591:419;;;:::o;31016:::-;31182:4;31220:2;31209:9;31205:18;31197:26;;31269:9;31263:4;31259:20;31255:1;31244:9;31240:17;31233:47;31297:131;31423:4;31297:131;:::i;:::-;31289:139;;31016:419;;;:::o;31441:::-;31607:4;31645:2;31634:9;31630:18;31622:26;;31694:9;31688:4;31684:20;31680:1;31669:9;31665:17;31658:47;31722:131;31848:4;31722:131;:::i;:::-;31714:139;;31441:419;;;:::o;31866:222::-;31959:4;31997:2;31986:9;31982:18;31974:26;;32010:71;32078:1;32067:9;32063:17;32054:6;32010:71;:::i;:::-;31866:222;;;;:::o;32094:129::-;32128:6;32155:20;;:::i;:::-;32145:30;;32184:33;32212:4;32204:6;32184:33;:::i;:::-;32094:129;;;:::o;32229:75::-;32262:6;32295:2;32289:9;32279:19;;32229:75;:::o;32310:307::-;32371:4;32461:18;32453:6;32450:30;32447:56;;;32483:18;;:::i;:::-;32447:56;32521:29;32543:6;32521:29;:::i;:::-;32513:37;;32605:4;32599;32595:15;32587:23;;32310:307;;;:::o;32623:141::-;32672:4;32695:3;32687:11;;32718:3;32715:1;32708:14;32752:4;32749:1;32739:18;32731:26;;32623:141;;;:::o;32770:98::-;32821:6;32855:5;32849:12;32839:22;;32770:98;;;:::o;32874:99::-;32926:6;32960:5;32954:12;32944:22;;32874:99;;;:::o;32979:168::-;33062:11;33096:6;33091:3;33084:19;33136:4;33131:3;33127:14;33112:29;;32979:168;;;;:::o;33153:169::-;33237:11;33271:6;33266:3;33259:19;33311:4;33306:3;33302:14;33287:29;;33153:169;;;;:::o;33328:148::-;33430:11;33467:3;33452:18;;33328:148;;;;:::o;33482:305::-;33522:3;33541:20;33559:1;33541:20;:::i;:::-;33536:25;;33575:20;33593:1;33575:20;:::i;:::-;33570:25;;33729:1;33661:66;33657:74;33654:1;33651:81;33648:107;;;33735:18;;:::i;:::-;33648:107;33779:1;33776;33772:9;33765:16;;33482:305;;;;:::o;33793:185::-;33833:1;33850:20;33868:1;33850:20;:::i;:::-;33845:25;;33884:20;33902:1;33884:20;:::i;:::-;33879:25;;33923:1;33913:35;;33928:18;;:::i;:::-;33913:35;33970:1;33967;33963:9;33958:14;;33793:185;;;;:::o;33984:348::-;34024:7;34047:20;34065:1;34047:20;:::i;:::-;34042:25;;34081:20;34099:1;34081:20;:::i;:::-;34076:25;;34269:1;34201:66;34197:74;34194:1;34191:81;34186:1;34179:9;34172:17;34168:105;34165:131;;;34276:18;;:::i;:::-;34165:131;34324:1;34321;34317:9;34306:20;;33984:348;;;;:::o;34338:191::-;34378:4;34398:20;34416:1;34398:20;:::i;:::-;34393:25;;34432:20;34450:1;34432:20;:::i;:::-;34427:25;;34471:1;34468;34465:8;34462:34;;;34476:18;;:::i;:::-;34462:34;34521:1;34518;34514:9;34506:17;;34338:191;;;;:::o;34535:96::-;34572:7;34601:24;34619:5;34601:24;:::i;:::-;34590:35;;34535:96;;;:::o;34637:104::-;34682:7;34711:24;34729:5;34711:24;:::i;:::-;34700:35;;34637:104;;;:::o;34747:90::-;34781:7;34824:5;34817:13;34810:21;34799:32;;34747:90;;;:::o;34843:149::-;34879:7;34919:66;34912:5;34908:78;34897:89;;34843:149;;;:::o;34998:126::-;35035:7;35075:42;35068:5;35064:54;35053:65;;34998:126;;;:::o;35130:77::-;35167:7;35196:5;35185:16;;35130:77;;;:::o;35213:154::-;35297:6;35292:3;35287;35274:30;35359:1;35350:6;35345:3;35341:16;35334:27;35213:154;;;:::o;35373:307::-;35441:1;35451:113;35465:6;35462:1;35459:13;35451:113;;;35550:1;35545:3;35541:11;35535:18;35531:1;35526:3;35522:11;35515:39;35487:2;35484:1;35480:10;35475:15;;35451:113;;;35582:6;35579:1;35576:13;35573:101;;;35662:1;35653:6;35648:3;35644:16;35637:27;35573:101;35422:258;35373:307;;;:::o;35686:320::-;35730:6;35767:1;35761:4;35757:12;35747:22;;35814:1;35808:4;35804:12;35835:18;35825:81;;35891:4;35883:6;35879:17;35869:27;;35825:81;35953:2;35945:6;35942:14;35922:18;35919:38;35916:84;;;35972:18;;:::i;:::-;35916:84;35737:269;35686:320;;;:::o;36012:281::-;36095:27;36117:4;36095:27;:::i;:::-;36087:6;36083:40;36225:6;36213:10;36210:22;36189:18;36177:10;36174:34;36171:62;36168:88;;;36236:18;;:::i;:::-;36168:88;36276:10;36272:2;36265:22;36055:238;36012:281;;:::o;36299:233::-;36338:3;36361:24;36379:5;36361:24;:::i;:::-;36352:33;;36407:66;36400:5;36397:77;36394:103;;;36477:18;;:::i;:::-;36394:103;36524:1;36517:5;36513:13;36506:20;;36299:233;;;:::o;36538:176::-;36570:1;36587:20;36605:1;36587:20;:::i;:::-;36582:25;;36621:20;36639:1;36621:20;:::i;:::-;36616:25;;36660:1;36650:35;;36665:18;;:::i;:::-;36650:35;36706:1;36703;36699:9;36694:14;;36538:176;;;;:::o;36720:180::-;36768:77;36765:1;36758:88;36865:4;36862:1;36855:15;36889:4;36886:1;36879:15;36906:180;36954:77;36951:1;36944:88;37051:4;37048:1;37041:15;37075:4;37072:1;37065:15;37092:180;37140:77;37137:1;37130:88;37237:4;37234:1;37227:15;37261:4;37258:1;37251:15;37278:180;37326:77;37323:1;37316:88;37423:4;37420:1;37413:15;37447:4;37444:1;37437:15;37464:180;37512:77;37509:1;37502:88;37609:4;37606:1;37599:15;37633:4;37630:1;37623:15;37650:180;37698:77;37695:1;37688:88;37795:4;37792:1;37785:15;37819:4;37816:1;37809:15;37836:117;37945:1;37942;37935:12;37959:117;38068:1;38065;38058:12;38082:117;38191:1;38188;38181:12;38205:117;38314:1;38311;38304:12;38328:117;38437:1;38434;38427:12;38451:117;38560:1;38557;38550:12;38574:102;38615:6;38666:2;38662:7;38657:2;38650:5;38646:14;38642:28;38632:38;;38574:102;;;:::o;38682:166::-;38822:18;38818:1;38810:6;38806:14;38799:42;38682:166;:::o;38854:230::-;38994:34;38990:1;38982:6;38978:14;38971:58;39063:13;39058:2;39050:6;39046:15;39039:38;38854:230;:::o;39090:237::-;39230:34;39226:1;39218:6;39214:14;39207:58;39299:20;39294:2;39286:6;39282:15;39275:45;39090:237;:::o;39333:225::-;39473:34;39469:1;39461:6;39457:14;39450:58;39542:8;39537:2;39529:6;39525:15;39518:33;39333:225;:::o;39564:::-;39704:34;39700:1;39692:6;39688:14;39681:58;39773:8;39768:2;39760:6;39756:15;39749:33;39564:225;:::o;39795:178::-;39935:30;39931:1;39923:6;39919:14;39912:54;39795:178;:::o;39979:164::-;40119:16;40115:1;40107:6;40103:14;40096:40;39979:164;:::o;40149:223::-;40289:34;40285:1;40277:6;40273:14;40266:58;40358:6;40353:2;40345:6;40341:15;40334:31;40149:223;:::o;40378:175::-;40518:27;40514:1;40506:6;40502:14;40495:51;40378:175;:::o;40559:168::-;40699:20;40695:1;40687:6;40683:14;40676:44;40559:168;:::o;40733:231::-;40873:34;40869:1;40861:6;40857:14;40850:58;40942:14;40937:2;40929:6;40925:15;40918:39;40733:231;:::o;40970:243::-;41110:34;41106:1;41098:6;41094:14;41087:58;41179:26;41174:2;41166:6;41162:15;41155:51;40970:243;:::o;41219:229::-;41359:34;41355:1;41347:6;41343:14;41336:58;41428:12;41423:2;41415:6;41411:15;41404:37;41219:229;:::o;41454:228::-;41594:34;41590:1;41582:6;41578:14;41571:58;41663:11;41658:2;41650:6;41646:15;41639:36;41454:228;:::o;41688:182::-;41828:34;41824:1;41816:6;41812:14;41805:58;41688:182;:::o;41876:231::-;42016:34;42012:1;42004:6;42000:14;41993:58;42085:14;42080:2;42072:6;42068:15;42061:39;41876:231;:::o;42113:182::-;42253:34;42249:1;42241:6;42237:14;42230:58;42113:182;:::o;42301:228::-;42441:34;42437:1;42429:6;42425:14;42418:58;42510:11;42505:2;42497:6;42493:15;42486:36;42301:228;:::o;42535:167::-;42675:19;42671:1;42663:6;42659:14;42652:43;42535:167;:::o;42708:220::-;42848:34;42844:1;42836:6;42832:14;42825:58;42917:3;42912:2;42904:6;42900:15;42893:28;42708:220;:::o;42934:236::-;43074:34;43070:1;43062:6;43058:14;43051:58;43143:19;43138:2;43130:6;43126:15;43119:44;42934:236;:::o;43176:231::-;43316:34;43312:1;43304:6;43300:14;43293:58;43385:14;43380:2;43372:6;43368:15;43361:39;43176:231;:::o;43413:166::-;43553:18;43549:1;43541:6;43537:14;43530:42;43413:166;:::o;43585:238::-;43725:34;43721:1;43713:6;43709:14;43702:58;43794:21;43789:2;43781:6;43777:15;43770:46;43585:238;:::o;43829:122::-;43902:24;43920:5;43902:24;:::i;:::-;43895:5;43892:35;43882:63;;43941:1;43938;43931:12;43882:63;43829:122;:::o;43957:116::-;44027:21;44042:5;44027:21;:::i;:::-;44020:5;44017:32;44007:60;;44063:1;44060;44053:12;44007:60;43957:116;:::o;44079:120::-;44151:23;44168:5;44151:23;:::i;:::-;44144:5;44141:34;44131:62;;44189:1;44186;44179:12;44131:62;44079:120;:::o;44205:122::-;44278:24;44296:5;44278:24;:::i;:::-;44271:5;44268:35;44258:63;;44317:1;44314;44307:12;44258:63;44205:122;:::o

Swarm Source

ipfs://64f70e77e8693929ea13e5d23a622e2716a1db841e6c6c077ad389a53ac1f3cd
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.