ETH Price: $3,275.03 (-4.12%)
Gas: 11 Gwei

Token

Kool Rabbits (LaFemme)
 

Overview

Max Total Supply

758 LaFemme

Holders

412

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*兜几把哥们儿.eth
Balance
1 LaFemme
0x3303b6aed6f306a6d7cf5e8c8956befd8f1bd2e2
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:
KoolRabbits

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-22
*/

// 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/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/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/Counters.sol


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: contracts/1_Storage.sol

//SPDX-License-Identifier: MIT
pragma solidity 0.8.9;




contract KoolRabbits is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;
  
  Counters.Counter private supply;
  uint256 publicTokenId; 
  uint256 adminTokenId;
  uint public constant TEAM_RESERVED = 50;
  uint public constant MAX_SUPPLY = 3000;
  string public baseTokenURI;
  uint256 public price = 0.01 ether;
  bool public pause = true;
  uint256 startTime;
  mapping(address => bool) public whitelisted;
  mapping(address => uint) public pubMinted;
  mapping(address => uint) public preMinted;

  uint256 public presaleMaxMintAmountPerWallet = 1;
  uint256 public publicsaleMaxMintAmountPerWallet = 2;

  uint256 public PRESALE_PERIOD = 2 days;
  
  constructor() ERC721("Kool Rabbits", "LaFemme") {
    publicTokenId = TEAM_RESERVED;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }
    
  function mintNFT(uint _mintAmount) public payable {
    require(!pause, "Contract is paused!");
    require(_mintAmount > 0 && _mintAmount <= 2, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= MAX_SUPPLY, "Max supply exceeded!");
    if (msg.sender == owner()) {
      require(adminTokenId + _mintAmount <= TEAM_RESERVED, "Team amount exceeded");
      for (uint256 i = 0; i < _mintAmount; i++) {
        adminTokenId ++;
        supply.increment();
        _safeMint(msg.sender, adminTokenId);
      }
      return;
    }
    if(startTime + PRESALE_PERIOD > block.timestamp) {
      require(whitelisted[msg.sender] == true, "Only Whitelist members can mint NFTs at Freesale");
      require(preMinted[msg.sender] + _mintAmount <= presaleMaxMintAmountPerWallet, "Buyable Limit Exceeded");
      _mintLoop(msg.sender, _mintAmount);
      preMinted[msg.sender] += _mintAmount;
    } else {
      require(pubMinted[msg.sender] + _mintAmount <= publicsaleMaxMintAmountPerWallet, "pubmint exceed");
      require(msg.value >= price * _mintAmount, "price");
      _mintLoop(msg.sender, _mintAmount);
      pubMinted[msg.sender] += _mintAmount;
    }
  }
    
  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) {
      if (_exists(currentTokenId) == false) {
        currentTokenId++;
        continue;
      }
      address currentTokenOwner = ownerOf(currentTokenId);
      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function startSale() external onlyOwner {
    startTime = block.timestamp;
    pause = false;
  }

  function finishSale() public onlyOwner {
    pause = true;
  }

  function setWhitelistMembers(address[] memory wl) public onlyOwner {
      for (uint i = 0; i < wl.length; i ++) {
          whitelisted[wl[i]] = true;
      }
  }

  function withdraw() public onlyOwner {
      (bool ds, ) = payable(0x2F20D2cafaa1692e401791Be811700fb56f0930B).call{value: address(this).balance * 15 / 100}("");
      require(ds);
      (bool os, ) = payable(owner()).call{value: address(this).balance}("");
      require(os);
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      publicTokenId ++;
      _safeMint(_receiver, publicTokenId);
    }
  }

  function _baseURI() internal view virtual override returns (string memory) {
      return baseTokenURI;
  }
    
  function setBaseURI(string memory _baseTokenURI) public onlyOwner {
      baseTokenURI = _baseTokenURI;
  }

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

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

  function isPresale() public view returns (bool) {
    if (startTime + PRESALE_PERIOD > block.timestamp) {
      return true;
    }
    return false;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_RESERVED","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":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finishSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintNFT","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":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMaxMintAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pubMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicsaleMaxMintAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"wl","type":"address[]"}],"name":"setWhitelistMembers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052662386f26fc10000600b55600c805460ff1916600190811790915560115560026012556202a3006013553480156200003b57600080fd5b50604080518082018252600c81526b4b6f6f6c205261626269747360a01b6020808301918252835180850190945260078452664c6146656d6d6560c81b9084015281519192916200008f9160009162000123565b508051620000a590600190602084019062000123565b505050620000c2620000bc620000cd60201b60201c565b620000d1565b603260085562000206565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013190620001c9565b90600052602060002090601f016020900481019282620001555760008555620001a0565b82601f106200017057805160ff1916838001178555620001a0565b82800160010185558215620001a0579182015b82811115620001a057825182559160200191906001019062000183565b50620001ae929150620001b2565b5090565b5b80821115620001ae5760008155600101620001b3565b600181811c90821680620001de57607f821691505b602082108114156200020057634e487b7160e01b600052602260045260246000fd5b50919050565b6123f480620002166000396000f3fe60806040526004361061020f5760003560e01c80638f2b504111610118578063b66a0e5d116100a0578063d547cfb71161006f578063d547cfb7146105ae578063d936547e146105c3578063e985e9c5146105f3578063f2fde38b1461063c578063fc47cad81461065c57600080fd5b8063b66a0e5d14610543578063b88d4fde14610558578063bf4ecf0314610578578063c87b56dd1461058e57600080fd5b806395d89b41116100e757806395d89b41146104b5578063963c4177146104ca5780639a0d4f40146104f7578063a035b1fe1461050d578063a22cb4651461052357600080fd5b80638f2b5041146104585780638f86f5ea14610478578063926427441461048d57806395364a84146104a057600080fd5b8063438b63001161019b57806370a082311161016a57806370a08231146103d6578063715018a6146103f65780637ae84f7f1461040b5780638456cb59146104205780638da5cb5b1461043a57600080fd5b8063438b63001461035357806355f0eaf61461038057806355f804b3146103965780636352211e146103b657600080fd5b806318160ddd116101e257806318160ddd146102c557806323b872dd146102e857806332cb6b0c146103085780633ccfd60b1461031e57806342842e0e1461033357600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611d3d565b610689565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106db565b6040516102409190611db2565b34801561027757600080fd5b5061028b610286366004611dc5565b61076d565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611dfa565b610807565b005b3480156102d157600080fd5b506102da61091d565b604051908152602001610240565b3480156102f457600080fd5b506102c3610303366004611e24565b61092d565b34801561031457600080fd5b506102da610bb881565b34801561032a57600080fd5b506102c361095e565b34801561033f57600080fd5b506102c361034e366004611e24565b610a7a565b34801561035f57600080fd5b5061037361036e366004611e60565b610a95565b6040516102409190611e7b565b34801561038c57600080fd5b506102da60125481565b3480156103a257600080fd5b506102c36103b1366004611f5e565b610ba4565b3480156103c257600080fd5b5061028b6103d1366004611dc5565b610be1565b3480156103e257600080fd5b506102da6103f1366004611e60565b610c58565b34801561040257600080fd5b506102c3610cdf565b34801561041757600080fd5b506102da603281565b34801561042c57600080fd5b50600c546102349060ff1681565b34801561044657600080fd5b506006546001600160a01b031661028b565b34801561046457600080fd5b506102c3610473366004611fa7565b610d15565b34801561048457600080fd5b506102c3610da7565b6102c361049b366004611dc5565b610de0565b3480156104ac57600080fd5b5061023461118e565b3480156104c157600080fd5b5061025e6111b3565b3480156104d657600080fd5b506102da6104e5366004611e60565b60106020526000908152604090205481565b34801561050357600080fd5b506102da60135481565b34801561051957600080fd5b506102da600b5481565b34801561052f57600080fd5b506102c361053e366004612054565b6111c2565b34801561054f57600080fd5b506102c36111cd565b34801561056457600080fd5b506102c3610573366004612090565b611207565b34801561058457600080fd5b506102da60115481565b34801561059a57600080fd5b5061025e6105a9366004611dc5565b61123f565b3480156105ba57600080fd5b5061025e61131a565b3480156105cf57600080fd5b506102346105de366004611e60565b600e6020526000908152604090205460ff1681565b3480156105ff57600080fd5b5061023461060e36600461210c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064857600080fd5b506102c3610657366004611e60565b6113a8565b34801561066857600080fd5b506102da610677366004611e60565b600f6020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b14806106ba57506001600160e01b03198216635b5e139f60e01b145b806106d557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106ea9061213f565b80601f01602080910402602001604051908101604052809291908181526020018280546107169061213f565b80156107635780601f1061073857610100808354040283529160200191610763565b820191906000526020600020905b81548152906001019060200180831161074657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107eb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061081282610be1565b9050806001600160a01b0316836001600160a01b031614156108805760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107e2565b336001600160a01b038216148061089c575061089c813361060e565b61090e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107e2565b6109188383611440565b505050565b600061092860075490565b905090565b61093733826114ae565b6109535760405162461bcd60e51b81526004016107e29061217a565b6109188383836115a5565b6006546001600160a01b031633146109885760405162461bcd60e51b81526004016107e2906121cb565b6000732f20d2cafaa1692e401791be811700fb56f0930b60646109ac47600f612216565b6109b6919061224b565b604051600081818185875af1925050503d80600081146109f2576040519150601f19603f3d011682016040523d82523d6000602084013e6109f7565b606091505b5050905080610a0557600080fd5b6000610a196006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a63576040519150601f19603f3d011682016040523d82523d6000602084013e610a68565b606091505b5050905080610a7657600080fd5b5050565b61091883838360405180602001604052806000815250611207565b60606000610aa283610c58565b905060008167ffffffffffffffff811115610abf57610abf611ebf565b604051908082528060200260200182016040528015610ae8578160200160208202803683370190505b509050600160005b8381108015610b015750610bb88211155b15610b9a576000828152600260205260409020546001600160a01b0316610b345781610b2c8161225f565b925050610af0565b6000610b3f83610be1565b9050866001600160a01b0316816001600160a01b03161415610b875782848381518110610b6e57610b6e61227a565b602090810291909101015281610b838161225f565b9250505b82610b918161225f565b93505050610af0565b5090949350505050565b6006546001600160a01b03163314610bce5760405162461bcd60e51b81526004016107e2906121cb565b8051610a7690600a906020840190611c8e565b6000818152600260205260408120546001600160a01b0316806106d55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107e2565b60006001600160a01b038216610cc35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107e2565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610d095760405162461bcd60e51b81526004016107e2906121cb565b610d136000611745565b565b6006546001600160a01b03163314610d3f5760405162461bcd60e51b81526004016107e2906121cb565b60005b8151811015610a76576001600e6000848481518110610d6357610d6361227a565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610d9f8161225f565b915050610d42565b6006546001600160a01b03163314610dd15760405162461bcd60e51b81526004016107e2906121cb565b600c805460ff19166001179055565b600c5460ff1615610e295760405162461bcd60e51b8152602060048201526013602482015272436f6e7472616374206973207061757365642160681b60448201526064016107e2565b600081118015610e3a575060028111155b610e7d5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016107e2565b610bb881610e8a60075490565b610e949190612290565b1115610ed95760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016107e2565b6006546001600160a01b0316331415610f8d57603281600954610efc9190612290565b1115610f415760405162461bcd60e51b81526020600482015260146024820152731519585b48185b5bdd5b9d08195e18d95959195960621b60448201526064016107e2565b60005b81811015610a765760098054906000610f5c8361225f565b9190505550610f6f600780546001019055565b610f7b33600954611797565b80610f858161225f565b915050610f44565b42601354600d54610f9e9190612290565b11156110ba57336000908152600e602052604090205460ff1615156001146110215760405162461bcd60e51b815260206004820152603060248201527f4f6e6c792057686974656c697374206d656d626572732063616e206d696e742060448201526f4e465473206174204672656573616c6560801b60648201526084016107e2565b6011543360009081526010602052604090205461103f908390612290565b11156110865760405162461bcd60e51b8152602060048201526016602482015275109d5e58589b1948131a5b5a5d08115e18d95959195960521b60448201526064016107e2565b61109033826117b1565b33600090815260106020526040812080548392906110af908490612290565b9091555061118b9050565b601254336000908152600f60205260409020546110d8908390612290565b11156111175760405162461bcd60e51b815260206004820152600e60248201526d1c1d589b5a5b9d08195e18d9595960921b60448201526064016107e2565b80600b546111259190612216565b34101561115c5760405162461bcd60e51b8152602060048201526005602482015264707269636560d81b60448201526064016107e2565b61116633826117b1565b336000908152600f602052604081208054839290611185908490612290565b90915550505b50565b600042601354600d546111a19190612290565b11156111ad5750600190565b50600090565b6060600180546106ea9061213f565b610a763383836117fd565b6006546001600160a01b031633146111f75760405162461bcd60e51b81526004016107e2906121cb565b42600d55600c805460ff19169055565b61121133836114ae565b61122d5760405162461bcd60e51b81526004016107e29061217a565b611239848484846118cc565b50505050565b6000818152600260205260409020546060906001600160a01b03166112be5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107e2565b60006112c86118ff565b905060008151116112e85760405180602001604052806000815250611313565b806112f28461190e565b6040516020016113039291906122a8565b6040516020818303038152906040525b9392505050565b600a80546113279061213f565b80601f01602080910402602001604051908101604052809291908181526020018280546113539061213f565b80156113a05780601f10611375576101008083540402835291602001916113a0565b820191906000526020600020905b81548152906001019060200180831161138357829003601f168201915b505050505081565b6006546001600160a01b031633146113d25760405162461bcd60e51b81526004016107e2906121cb565b6001600160a01b0381166114375760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e2565b61118b81611745565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061147582610be1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115275760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107e2565b600061153283610be1565b9050806001600160a01b0316846001600160a01b0316148061156d5750836001600160a01b03166115628461076d565b6001600160a01b0316145b8061159d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115b882610be1565b6001600160a01b0316146116205760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107e2565b6001600160a01b0382166116825760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107e2565b61168d600082611440565b6001600160a01b03831660009081526003602052604081208054600192906116b69084906122e7565b90915550506001600160a01b03821660009081526003602052604081208054600192906116e4908490612290565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a76828260405180602001604052806000815250611a0c565b60005b81811015610918576117ca600780546001019055565b600880549060006117da8361225f565b91905055506117eb83600854611797565b806117f58161225f565b9150506117b4565b816001600160a01b0316836001600160a01b0316141561185f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107e2565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118d78484846115a5565b6118e384848484611a3f565b6112395760405162461bcd60e51b81526004016107e2906122fe565b6060600a80546106ea9061213f565b6060816119325750506040805180820190915260018152600360fc1b602082015290565b8160005b811561195c57806119468161225f565b91506119559050600a8361224b565b9150611936565b60008167ffffffffffffffff81111561197757611977611ebf565b6040519080825280601f01601f1916602001820160405280156119a1576020820181803683370190505b5090505b841561159d576119b66001836122e7565b91506119c3600a86612350565b6119ce906030612290565b60f81b8183815181106119e3576119e361227a565b60200101906001600160f81b031916908160001a905350611a05600a8661224b565b94506119a5565b611a168383611b4c565b611a236000848484611a3f565b6109185760405162461bcd60e51b81526004016107e2906122fe565b60006001600160a01b0384163b15611b4157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a83903390899088908890600401612364565b602060405180830381600087803b158015611a9d57600080fd5b505af1925050508015611acd575060408051601f3d908101601f19168201909252611aca918101906123a1565b60015b611b27573d808015611afb576040519150601f19603f3d011682016040523d82523d6000602084013e611b00565b606091505b508051611b1f5760405162461bcd60e51b81526004016107e2906122fe565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061159d565b506001949350505050565b6001600160a01b038216611ba25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107e2565b6000818152600260205260409020546001600160a01b031615611c075760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107e2565b6001600160a01b0382166000908152600360205260408120805460019290611c30908490612290565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611c9a9061213f565b90600052602060002090601f016020900481019282611cbc5760008555611d02565b82601f10611cd557805160ff1916838001178555611d02565b82800160010185558215611d02579182015b82811115611d02578251825591602001919060010190611ce7565b50611d0e929150611d12565b5090565b5b80821115611d0e5760008155600101611d13565b6001600160e01b03198116811461118b57600080fd5b600060208284031215611d4f57600080fd5b813561131381611d27565b60005b83811015611d75578181015183820152602001611d5d565b838111156112395750506000910152565b60008151808452611d9e816020860160208601611d5a565b601f01601f19169290920160200192915050565b6020815260006113136020830184611d86565b600060208284031215611dd757600080fd5b5035919050565b80356001600160a01b0381168114611df557600080fd5b919050565b60008060408385031215611e0d57600080fd5b611e1683611dde565b946020939093013593505050565b600080600060608486031215611e3957600080fd5b611e4284611dde565b9250611e5060208501611dde565b9150604084013590509250925092565b600060208284031215611e7257600080fd5b61131382611dde565b6020808252825182820181905260009190848201906040850190845b81811015611eb357835183529284019291840191600101611e97565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611efe57611efe611ebf565b604052919050565b600067ffffffffffffffff831115611f2057611f20611ebf565b611f33601f8401601f1916602001611ed5565b9050828152838383011115611f4757600080fd5b828260208301376000602084830101529392505050565b600060208284031215611f7057600080fd5b813567ffffffffffffffff811115611f8757600080fd5b8201601f81018413611f9857600080fd5b61159d84823560208401611f06565b60006020808385031215611fba57600080fd5b823567ffffffffffffffff80821115611fd257600080fd5b818501915085601f830112611fe657600080fd5b813581811115611ff857611ff8611ebf565b8060051b9150612009848301611ed5565b818152918301840191848101908884111561202357600080fd5b938501935b838510156120485761203985611dde565b82529385019390850190612028565b98975050505050505050565b6000806040838503121561206757600080fd5b61207083611dde565b91506020830135801515811461208557600080fd5b809150509250929050565b600080600080608085870312156120a657600080fd5b6120af85611dde565b93506120bd60208601611dde565b925060408501359150606085013567ffffffffffffffff8111156120e057600080fd5b8501601f810187136120f157600080fd5b61210087823560208401611f06565b91505092959194509250565b6000806040838503121561211f57600080fd5b61212883611dde565b915061213660208401611dde565b90509250929050565b600181811c9082168061215357607f821691505b6020821081141561217457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561223057612230612200565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261225a5761225a612235565b500490565b600060001982141561227357612273612200565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600082198211156122a3576122a3612200565b500190565b600083516122ba818460208801611d5a565b8351908301906122ce818360208801611d5a565b64173539b7b760d91b9101908152600501949350505050565b6000828210156122f9576122f9612200565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261235f5761235f612235565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061239790830184611d86565b9695505050505050565b6000602082840312156123b357600080fd5b815161131381611d2756fea26469706673582212200c4a7358b35d3a46f5b9292c16a82a9bbd5ed78f75f2b17847e7219875b5b58964736f6c63430008090033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80638f2b504111610118578063b66a0e5d116100a0578063d547cfb71161006f578063d547cfb7146105ae578063d936547e146105c3578063e985e9c5146105f3578063f2fde38b1461063c578063fc47cad81461065c57600080fd5b8063b66a0e5d14610543578063b88d4fde14610558578063bf4ecf0314610578578063c87b56dd1461058e57600080fd5b806395d89b41116100e757806395d89b41146104b5578063963c4177146104ca5780639a0d4f40146104f7578063a035b1fe1461050d578063a22cb4651461052357600080fd5b80638f2b5041146104585780638f86f5ea14610478578063926427441461048d57806395364a84146104a057600080fd5b8063438b63001161019b57806370a082311161016a57806370a08231146103d6578063715018a6146103f65780637ae84f7f1461040b5780638456cb59146104205780638da5cb5b1461043a57600080fd5b8063438b63001461035357806355f0eaf61461038057806355f804b3146103965780636352211e146103b657600080fd5b806318160ddd116101e257806318160ddd146102c557806323b872dd146102e857806332cb6b0c146103085780633ccfd60b1461031e57806342842e0e1461033357600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611d3d565b610689565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106db565b6040516102409190611db2565b34801561027757600080fd5b5061028b610286366004611dc5565b61076d565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611dfa565b610807565b005b3480156102d157600080fd5b506102da61091d565b604051908152602001610240565b3480156102f457600080fd5b506102c3610303366004611e24565b61092d565b34801561031457600080fd5b506102da610bb881565b34801561032a57600080fd5b506102c361095e565b34801561033f57600080fd5b506102c361034e366004611e24565b610a7a565b34801561035f57600080fd5b5061037361036e366004611e60565b610a95565b6040516102409190611e7b565b34801561038c57600080fd5b506102da60125481565b3480156103a257600080fd5b506102c36103b1366004611f5e565b610ba4565b3480156103c257600080fd5b5061028b6103d1366004611dc5565b610be1565b3480156103e257600080fd5b506102da6103f1366004611e60565b610c58565b34801561040257600080fd5b506102c3610cdf565b34801561041757600080fd5b506102da603281565b34801561042c57600080fd5b50600c546102349060ff1681565b34801561044657600080fd5b506006546001600160a01b031661028b565b34801561046457600080fd5b506102c3610473366004611fa7565b610d15565b34801561048457600080fd5b506102c3610da7565b6102c361049b366004611dc5565b610de0565b3480156104ac57600080fd5b5061023461118e565b3480156104c157600080fd5b5061025e6111b3565b3480156104d657600080fd5b506102da6104e5366004611e60565b60106020526000908152604090205481565b34801561050357600080fd5b506102da60135481565b34801561051957600080fd5b506102da600b5481565b34801561052f57600080fd5b506102c361053e366004612054565b6111c2565b34801561054f57600080fd5b506102c36111cd565b34801561056457600080fd5b506102c3610573366004612090565b611207565b34801561058457600080fd5b506102da60115481565b34801561059a57600080fd5b5061025e6105a9366004611dc5565b61123f565b3480156105ba57600080fd5b5061025e61131a565b3480156105cf57600080fd5b506102346105de366004611e60565b600e6020526000908152604090205460ff1681565b3480156105ff57600080fd5b5061023461060e36600461210c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064857600080fd5b506102c3610657366004611e60565b6113a8565b34801561066857600080fd5b506102da610677366004611e60565b600f6020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b14806106ba57506001600160e01b03198216635b5e139f60e01b145b806106d557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106ea9061213f565b80601f01602080910402602001604051908101604052809291908181526020018280546107169061213f565b80156107635780601f1061073857610100808354040283529160200191610763565b820191906000526020600020905b81548152906001019060200180831161074657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107eb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061081282610be1565b9050806001600160a01b0316836001600160a01b031614156108805760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107e2565b336001600160a01b038216148061089c575061089c813361060e565b61090e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107e2565b6109188383611440565b505050565b600061092860075490565b905090565b61093733826114ae565b6109535760405162461bcd60e51b81526004016107e29061217a565b6109188383836115a5565b6006546001600160a01b031633146109885760405162461bcd60e51b81526004016107e2906121cb565b6000732f20d2cafaa1692e401791be811700fb56f0930b60646109ac47600f612216565b6109b6919061224b565b604051600081818185875af1925050503d80600081146109f2576040519150601f19603f3d011682016040523d82523d6000602084013e6109f7565b606091505b5050905080610a0557600080fd5b6000610a196006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a63576040519150601f19603f3d011682016040523d82523d6000602084013e610a68565b606091505b5050905080610a7657600080fd5b5050565b61091883838360405180602001604052806000815250611207565b60606000610aa283610c58565b905060008167ffffffffffffffff811115610abf57610abf611ebf565b604051908082528060200260200182016040528015610ae8578160200160208202803683370190505b509050600160005b8381108015610b015750610bb88211155b15610b9a576000828152600260205260409020546001600160a01b0316610b345781610b2c8161225f565b925050610af0565b6000610b3f83610be1565b9050866001600160a01b0316816001600160a01b03161415610b875782848381518110610b6e57610b6e61227a565b602090810291909101015281610b838161225f565b9250505b82610b918161225f565b93505050610af0565b5090949350505050565b6006546001600160a01b03163314610bce5760405162461bcd60e51b81526004016107e2906121cb565b8051610a7690600a906020840190611c8e565b6000818152600260205260408120546001600160a01b0316806106d55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107e2565b60006001600160a01b038216610cc35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107e2565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610d095760405162461bcd60e51b81526004016107e2906121cb565b610d136000611745565b565b6006546001600160a01b03163314610d3f5760405162461bcd60e51b81526004016107e2906121cb565b60005b8151811015610a76576001600e6000848481518110610d6357610d6361227a565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610d9f8161225f565b915050610d42565b6006546001600160a01b03163314610dd15760405162461bcd60e51b81526004016107e2906121cb565b600c805460ff19166001179055565b600c5460ff1615610e295760405162461bcd60e51b8152602060048201526013602482015272436f6e7472616374206973207061757365642160681b60448201526064016107e2565b600081118015610e3a575060028111155b610e7d5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016107e2565b610bb881610e8a60075490565b610e949190612290565b1115610ed95760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016107e2565b6006546001600160a01b0316331415610f8d57603281600954610efc9190612290565b1115610f415760405162461bcd60e51b81526020600482015260146024820152731519585b48185b5bdd5b9d08195e18d95959195960621b60448201526064016107e2565b60005b81811015610a765760098054906000610f5c8361225f565b9190505550610f6f600780546001019055565b610f7b33600954611797565b80610f858161225f565b915050610f44565b42601354600d54610f9e9190612290565b11156110ba57336000908152600e602052604090205460ff1615156001146110215760405162461bcd60e51b815260206004820152603060248201527f4f6e6c792057686974656c697374206d656d626572732063616e206d696e742060448201526f4e465473206174204672656573616c6560801b60648201526084016107e2565b6011543360009081526010602052604090205461103f908390612290565b11156110865760405162461bcd60e51b8152602060048201526016602482015275109d5e58589b1948131a5b5a5d08115e18d95959195960521b60448201526064016107e2565b61109033826117b1565b33600090815260106020526040812080548392906110af908490612290565b9091555061118b9050565b601254336000908152600f60205260409020546110d8908390612290565b11156111175760405162461bcd60e51b815260206004820152600e60248201526d1c1d589b5a5b9d08195e18d9595960921b60448201526064016107e2565b80600b546111259190612216565b34101561115c5760405162461bcd60e51b8152602060048201526005602482015264707269636560d81b60448201526064016107e2565b61116633826117b1565b336000908152600f602052604081208054839290611185908490612290565b90915550505b50565b600042601354600d546111a19190612290565b11156111ad5750600190565b50600090565b6060600180546106ea9061213f565b610a763383836117fd565b6006546001600160a01b031633146111f75760405162461bcd60e51b81526004016107e2906121cb565b42600d55600c805460ff19169055565b61121133836114ae565b61122d5760405162461bcd60e51b81526004016107e29061217a565b611239848484846118cc565b50505050565b6000818152600260205260409020546060906001600160a01b03166112be5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107e2565b60006112c86118ff565b905060008151116112e85760405180602001604052806000815250611313565b806112f28461190e565b6040516020016113039291906122a8565b6040516020818303038152906040525b9392505050565b600a80546113279061213f565b80601f01602080910402602001604051908101604052809291908181526020018280546113539061213f565b80156113a05780601f10611375576101008083540402835291602001916113a0565b820191906000526020600020905b81548152906001019060200180831161138357829003601f168201915b505050505081565b6006546001600160a01b031633146113d25760405162461bcd60e51b81526004016107e2906121cb565b6001600160a01b0381166114375760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e2565b61118b81611745565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061147582610be1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115275760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107e2565b600061153283610be1565b9050806001600160a01b0316846001600160a01b0316148061156d5750836001600160a01b03166115628461076d565b6001600160a01b0316145b8061159d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115b882610be1565b6001600160a01b0316146116205760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107e2565b6001600160a01b0382166116825760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107e2565b61168d600082611440565b6001600160a01b03831660009081526003602052604081208054600192906116b69084906122e7565b90915550506001600160a01b03821660009081526003602052604081208054600192906116e4908490612290565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a76828260405180602001604052806000815250611a0c565b60005b81811015610918576117ca600780546001019055565b600880549060006117da8361225f565b91905055506117eb83600854611797565b806117f58161225f565b9150506117b4565b816001600160a01b0316836001600160a01b0316141561185f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107e2565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118d78484846115a5565b6118e384848484611a3f565b6112395760405162461bcd60e51b81526004016107e2906122fe565b6060600a80546106ea9061213f565b6060816119325750506040805180820190915260018152600360fc1b602082015290565b8160005b811561195c57806119468161225f565b91506119559050600a8361224b565b9150611936565b60008167ffffffffffffffff81111561197757611977611ebf565b6040519080825280601f01601f1916602001820160405280156119a1576020820181803683370190505b5090505b841561159d576119b66001836122e7565b91506119c3600a86612350565b6119ce906030612290565b60f81b8183815181106119e3576119e361227a565b60200101906001600160f81b031916908160001a905350611a05600a8661224b565b94506119a5565b611a168383611b4c565b611a236000848484611a3f565b6109185760405162461bcd60e51b81526004016107e2906122fe565b60006001600160a01b0384163b15611b4157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a83903390899088908890600401612364565b602060405180830381600087803b158015611a9d57600080fd5b505af1925050508015611acd575060408051601f3d908101601f19168201909252611aca918101906123a1565b60015b611b27573d808015611afb576040519150601f19603f3d011682016040523d82523d6000602084013e611b00565b606091505b508051611b1f5760405162461bcd60e51b81526004016107e2906122fe565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061159d565b506001949350505050565b6001600160a01b038216611ba25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107e2565b6000818152600260205260409020546001600160a01b031615611c075760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107e2565b6001600160a01b0382166000908152600360205260408120805460019290611c30908490612290565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611c9a9061213f565b90600052602060002090601f016020900481019282611cbc5760008555611d02565b82601f10611cd557805160ff1916838001178555611d02565b82800160010185558215611d02579182015b82811115611d02578251825591602001919060010190611ce7565b50611d0e929150611d12565b5090565b5b80821115611d0e5760008155600101611d13565b6001600160e01b03198116811461118b57600080fd5b600060208284031215611d4f57600080fd5b813561131381611d27565b60005b83811015611d75578181015183820152602001611d5d565b838111156112395750506000910152565b60008151808452611d9e816020860160208601611d5a565b601f01601f19169290920160200192915050565b6020815260006113136020830184611d86565b600060208284031215611dd757600080fd5b5035919050565b80356001600160a01b0381168114611df557600080fd5b919050565b60008060408385031215611e0d57600080fd5b611e1683611dde565b946020939093013593505050565b600080600060608486031215611e3957600080fd5b611e4284611dde565b9250611e5060208501611dde565b9150604084013590509250925092565b600060208284031215611e7257600080fd5b61131382611dde565b6020808252825182820181905260009190848201906040850190845b81811015611eb357835183529284019291840191600101611e97565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611efe57611efe611ebf565b604052919050565b600067ffffffffffffffff831115611f2057611f20611ebf565b611f33601f8401601f1916602001611ed5565b9050828152838383011115611f4757600080fd5b828260208301376000602084830101529392505050565b600060208284031215611f7057600080fd5b813567ffffffffffffffff811115611f8757600080fd5b8201601f81018413611f9857600080fd5b61159d84823560208401611f06565b60006020808385031215611fba57600080fd5b823567ffffffffffffffff80821115611fd257600080fd5b818501915085601f830112611fe657600080fd5b813581811115611ff857611ff8611ebf565b8060051b9150612009848301611ed5565b818152918301840191848101908884111561202357600080fd5b938501935b838510156120485761203985611dde565b82529385019390850190612028565b98975050505050505050565b6000806040838503121561206757600080fd5b61207083611dde565b91506020830135801515811461208557600080fd5b809150509250929050565b600080600080608085870312156120a657600080fd5b6120af85611dde565b93506120bd60208601611dde565b925060408501359150606085013567ffffffffffffffff8111156120e057600080fd5b8501601f810187136120f157600080fd5b61210087823560208401611f06565b91505092959194509250565b6000806040838503121561211f57600080fd5b61212883611dde565b915061213660208401611dde565b90509250929050565b600181811c9082168061215357607f821691505b6020821081141561217457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561223057612230612200565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261225a5761225a612235565b500490565b600060001982141561227357612273612200565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600082198211156122a3576122a3612200565b500190565b600083516122ba818460208801611d5a565b8351908301906122ce818360208801611d5a565b64173539b7b760d91b9101908152600501949350505050565b6000828210156122f9576122f9612200565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261235f5761235f612235565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061239790830184611d86565b9695505050505050565b6000602082840312156123b357600080fd5b815161131381611d2756fea26469706673582212200c4a7358b35d3a46f5b9292c16a82a9bbd5ed78f75f2b17847e7219875b5b58964736f6c63430008090033

Deployed Bytecode Sourcemap

37747:4547:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21212:305;;;;;;;;;;-1:-1:-1;21212:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;21212:305:0;;;;;;;;22157:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23716:221::-;;;;;;;;;;-1:-1:-1;23716:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;23716:221:0;1528:203:1;23239:411:0;;;;;;;;;;-1:-1:-1;23239:411:0;;;;;:::i;:::-;;:::i;:::-;;38557:89;;;;;;;;;;;;;:::i;:::-;;;2319:25:1;;;2307:2;2292:18;38557:89:0;2173:177:1;24466:339:0;;;;;;;;;;-1:-1:-1;24466:339:0;;;;;:::i;:::-;;:::i;37998:38::-;;;;;;;;;;;;38032:4;37998:38;;40951:285;;;;;;;;;;;;;:::i;24876:185::-;;;;;;;;;;-1:-1:-1;24876:185:0;;;;;:::i;:::-;;:::i;39860:736::-;;;;;;;;;;-1:-1:-1;39860:736:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;38356:51::-;;;;;;;;;;;;;;;;41593:109;;;;;;;;;;-1:-1:-1;41593:109:0;;;;;:::i;:::-;;:::i;21851:239::-;;;;;;;;;;-1:-1:-1;21851:239:0;;;;;:::i;:::-;;:::i;21581:208::-;;;;;;;;;;-1:-1:-1;21581:208:0;;;;;:::i;:::-;;:::i;35365:103::-;;;;;;;;;;;;;:::i;37954:39::-;;;;;;;;;;;;37991:2;37954:39;;38110:24;;;;;;;;;;-1:-1:-1;38110:24:0;;;;;;;;34714:87;;;;;;;;;;-1:-1:-1;34787:6:0;;-1:-1:-1;;;;;34787:6:0;34714:87;;40778:167;;;;;;;;;;-1:-1:-1;40778:167:0;;;;;:::i;:::-;;:::i;40708:64::-;;;;;;;;;;;;;:::i;38656:1194::-;;;;;;:::i;:::-;;:::i;42134:157::-;;;;;;;;;;;;;:::i;22326:104::-;;;;;;;;;;;;;:::i;38255:41::-;;;;;;;;;;-1:-1:-1;38255:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;38414:38;;;;;;;;;;;;;;;;38072:33;;;;;;;;;;;;;;;;24009:155;;;;;;;;;;-1:-1:-1;24009:155:0;;;;;:::i;:::-;;:::i;40602:100::-;;;;;;;;;;;;;:::i;25132:328::-;;;;;;;;;;-1:-1:-1;25132:328:0;;;;;:::i;:::-;;:::i;38303:48::-;;;;;;;;;;;;;;;;41708:420;;;;;;;;;;-1:-1:-1;41708:420:0;;;;;:::i;:::-;;:::i;38041:26::-;;;;;;;;;;;;;:::i;38161:43::-;;;;;;;;;;-1:-1:-1;38161:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24235:164;;;;;;;;;;-1:-1:-1;24235:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24356:25:0;;;24332:4;24356:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24235:164;35623:201;;;;;;;;;;-1:-1:-1;35623:201:0;;;;;:::i;:::-;;:::i;38209:41::-;;;;;;;;;;-1:-1:-1;38209:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;21212:305;21314:4;-1:-1:-1;;;;;;21351:40:0;;-1:-1:-1;;;21351:40:0;;:105;;-1:-1:-1;;;;;;;21408:48:0;;-1:-1:-1;;;21408:48:0;21351:105;:158;;;-1:-1:-1;;;;;;;;;;13197:40:0;;;21473:36;21331:178;21212:305;-1:-1:-1;;21212:305:0:o;22157:100::-;22211:13;22244:5;22237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22157:100;:::o;23716:221::-;23792:7;27059:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27059:16:0;23812:73;;;;-1:-1:-1;;;23812:73:0;;7629:2:1;23812:73:0;;;7611:21:1;7668:2;7648:18;;;7641:30;7707:34;7687:18;;;7680:62;-1:-1:-1;;;7758:18:1;;;7751:42;7810:19;;23812:73:0;;;;;;;;;-1:-1:-1;23905:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23905:24:0;;23716:221::o;23239:411::-;23320:13;23336:23;23351:7;23336:14;:23::i;:::-;23320:39;;23384:5;-1:-1:-1;;;;;23378:11:0;:2;-1:-1:-1;;;;;23378:11:0;;;23370:57;;;;-1:-1:-1;;;23370:57:0;;8042:2:1;23370:57:0;;;8024:21:1;8081:2;8061:18;;;8054:30;8120:34;8100:18;;;8093:62;-1:-1:-1;;;8171:18:1;;;8164:31;8212:19;;23370:57:0;7840:397:1;23370:57:0;19686:10;-1:-1:-1;;;;;23462:21:0;;;;:62;;-1:-1:-1;23487:37:0;23504:5;19686:10;24235:164;:::i;23487:37::-;23440:168;;;;-1:-1:-1;;;23440:168:0;;8444:2:1;23440:168:0;;;8426:21:1;8483:2;8463:18;;;8456:30;8522:34;8502:18;;;8495:62;8593:26;8573:18;;;8566:54;8637:19;;23440:168:0;8242:420:1;23440:168:0;23621:21;23630:2;23634:7;23621:8;:21::i;:::-;23309:341;23239:411;;:::o;38557:89::-;38601:7;38624:16;:6;37146:14;;37054:114;38624:16;38617:23;;38557:89;:::o;24466:339::-;24661:41;19686:10;24694:7;24661:18;:41::i;:::-;24653:103;;;;-1:-1:-1;;;24653:103:0;;;;;;;:::i;:::-;24769:28;24779:4;24785:2;24789:7;24769:9;:28::i;40951:285::-;34787:6;;-1:-1:-1;;;;;34787:6:0;19686:10;34934:23;34926:68;;;;-1:-1:-1;;;34926:68:0;;;;;;;:::i;:::-;40998:7:::1;41019:42;41104:3;41075:26;:21;41099:2;41075:26;:::i;:::-;:32;;;;:::i;:::-;41011:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40997:115;;;41129:2;41121:11;;;::::0;::::1;;41142:7;41163;34787:6:::0;;-1:-1:-1;;;;;34787:6:0;;34714:87;41163:7:::1;-1:-1:-1::0;;;;;41155:21:0::1;41184;41155:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41141:69;;;41227:2;41219:11;;;::::0;::::1;;40988:248;;40951:285::o:0;24876:185::-;25014:39;25031:4;25037:2;25041:7;25014:39;;;;;;;;;;;;:16;:39::i;39860:736::-;39935:16;39963:23;39989:17;39999:6;39989:9;:17::i;:::-;39963:43;;40013:30;40060:15;40046:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40046:30:0;-1:-1:-1;40013:63:0;-1:-1:-1;40108:1:0;40083:22;40152:410;40177:15;40159;:33;:65;;;;;38032:4;40196:14;:28;;40159:65;40152:410;;;27035:4;27059:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27059:16:0;40235:94;;40284:16;;;;:::i;:::-;;;;40311:8;;40235:94;40337:25;40365:23;40373:14;40365:7;:23::i;:::-;40337:51;;40422:6;-1:-1:-1;;;;;40401:27:0;:17;-1:-1:-1;;;;;40401:27:0;;40397:131;;;40474:14;40441:13;40455:15;40441:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;40501:17;;;;:::i;:::-;;;;40397:131;40538:16;;;;:::i;:::-;;;;40226:336;40152:410;;;-1:-1:-1;40577:13:0;;39860:736;-1:-1:-1;;;;39860:736:0:o;41593:109::-;34787:6;;-1:-1:-1;;;;;34787:6:0;19686:10;34934:23;34926:68;;;;-1:-1:-1;;;34926:68:0;;;;;;;:::i;:::-;41668:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;21851:239::-:0;21923:7;21959:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21959:16:0;21994:19;21986:73;;;;-1:-1:-1;;;21986:73:0;;10692:2:1;21986:73:0;;;10674:21:1;10731:2;10711:18;;;10704:30;10770:34;10750:18;;;10743:62;-1:-1:-1;;;10821:18:1;;;10814:39;10870:19;;21986:73:0;10490:405:1;21581:208:0;21653:7;-1:-1:-1;;;;;21681:19:0;;21673:74;;;;-1:-1:-1;;;21673:74:0;;11102:2:1;21673:74:0;;;11084:21:1;11141:2;11121:18;;;11114:30;11180:34;11160:18;;;11153:62;-1:-1:-1;;;11231:18:1;;;11224:40;11281:19;;21673:74:0;10900:406:1;21673:74:0;-1:-1:-1;;;;;;21765:16:0;;;;;:9;:16;;;;;;;21581:208::o;35365:103::-;34787:6;;-1:-1:-1;;;;;34787:6:0;19686:10;34934:23;34926:68;;;;-1:-1:-1;;;34926:68:0;;;;;;;:::i;:::-;35430:30:::1;35457:1;35430:18;:30::i;:::-;35365:103::o:0;40778:167::-;34787:6;;-1:-1:-1;;;;;34787:6:0;19686:10;34934:23;34926:68;;;;-1:-1:-1;;;34926:68:0;;;;;;;:::i;:::-;40859:6:::1;40854:86;40875:2;:9;40871:1;:13;40854:86;;;40926:4;40905:11;:18;40917:2;40920:1;40917:5;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;40905:18:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;40905:18:0;:25;;-1:-1:-1;;40905:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40886:4;::::1;::::0;::::1;:::i;:::-;;;;40854:86;;40708:64:::0;34787:6;;-1:-1:-1;;;;;34787:6:0;19686:10;34934:23;34926:68;;;;-1:-1:-1;;;34926:68:0;;;;;;;:::i;:::-;40754:5:::1;:12:::0;;-1:-1:-1;;40754:12:0::1;40762:4;40754:12;::::0;;40708:64::o;38656:1194::-;38722:5;;;;38721:6;38713:38;;;;-1:-1:-1;;;38713:38:0;;11513:2:1;38713:38:0;;;11495:21:1;11552:2;11532:18;;;11525:30;-1:-1:-1;;;11571:18:1;;;11564:49;11630:18;;38713:38:0;11311:343:1;38713:38:0;38780:1;38766:11;:15;:35;;;;;38800:1;38785:11;:16;;38766:35;38758:68;;;;-1:-1:-1;;;38758:68:0;;11861:2:1;38758:68:0;;;11843:21:1;11900:2;11880:18;;;11873:30;-1:-1:-1;;;11919:18:1;;;11912:50;11979:18;;38758:68:0;11659:344:1;38758:68:0;38032:4;38860:11;38841:16;:6;37146:14;;37054:114;38841:16;:30;;;;:::i;:::-;:44;;38833:77;;;;-1:-1:-1;;;38833:77:0;;12343:2:1;38833:77:0;;;12325:21:1;12382:2;12362:18;;;12355:30;-1:-1:-1;;;12401:18:1;;;12394:50;12461:18;;38833:77:0;12141:344:1;38833:77:0;34787:6;;-1:-1:-1;;;;;34787:6:0;38921:10;:21;38917:296;;;37991:2;38976:11;38961:12;;:26;;;;:::i;:::-;:43;;38953:76;;;;-1:-1:-1;;;38953:76:0;;12692:2:1;38953:76:0;;;12674:21:1;12731:2;12711:18;;;12704:30;-1:-1:-1;;;12750:18:1;;;12743:50;12810:18;;38953:76:0;12490:344:1;38953:76:0;39043:9;39038:153;39062:11;39058:1;:15;39038:153;;;39091:12;:15;;;:12;:15;;;:::i;:::-;;;;;;39117:18;:6;37265:19;;37283:1;37265:19;;;37176:127;39117:18;39146:35;39156:10;39168:12;;39146:9;:35::i;:::-;39075:3;;;;:::i;:::-;;;;39038:153;;38917:296;39251:15;39234:14;;39222:9;;:26;;;;:::i;:::-;:44;39219:626;;;39297:10;39285:23;;;;:11;:23;;;;;;;;:31;;:23;:31;39277:92;;;;-1:-1:-1;;;39277:92:0;;13041:2:1;39277:92:0;;;13023:21:1;13080:2;13060:18;;;13053:30;13119:34;13099:18;;;13092:62;-1:-1:-1;;;13170:18:1;;;13163:46;13226:19;;39277:92:0;12839:412:1;39277:92:0;39425:29;;39396:10;39386:21;;;;:9;:21;;;;;;:35;;39410:11;;39386:35;:::i;:::-;:68;;39378:103;;;;-1:-1:-1;;;39378:103:0;;13458:2:1;39378:103:0;;;13440:21:1;13497:2;13477:18;;;13470:30;-1:-1:-1;;;13516:18:1;;;13509:52;13578:18;;39378:103:0;13256:346:1;39378:103:0;39490:34;39500:10;39512:11;39490:9;:34::i;:::-;39543:10;39533:21;;;;:9;:21;;;;;:36;;39558:11;;39533:21;:36;;39558:11;;39533:36;:::i;:::-;;;;-1:-1:-1;39219:626:0;;-1:-1:-1;39219:626:0;;39639:32;;39610:10;39600:21;;;;:9;:21;;;;;;:35;;39624:11;;39600:35;:::i;:::-;:71;;39592:98;;;;-1:-1:-1;;;39592:98:0;;13809:2:1;39592:98:0;;;13791:21:1;13848:2;13828:18;;;13821:30;-1:-1:-1;;;13867:18:1;;;13860:44;13921:18;;39592:98:0;13607:338:1;39592:98:0;39728:11;39720:5;;:19;;;;:::i;:::-;39707:9;:32;;39699:50;;;;-1:-1:-1;;;39699:50:0;;14152:2:1;39699:50:0;;;14134:21:1;14191:1;14171:18;;;14164:29;-1:-1:-1;;;14209:18:1;;;14202:35;14254:18;;39699:50:0;13950:328:1;39699:50:0;39758:34;39768:10;39780:11;39758:9;:34::i;:::-;39811:10;39801:21;;;;:9;:21;;;;;:36;;39826:11;;39801:21;:36;;39826:11;;39801:36;:::i;:::-;;;;-1:-1:-1;;39219:626:0;38656:1194;:::o;42134:157::-;42176:4;42222:15;42205:14;;42193:9;;:26;;;;:::i;:::-;:44;42189:78;;;-1:-1:-1;42255:4:0;;42134:157::o;42189:78::-;-1:-1:-1;42280:5:0;;42134:157::o;22326:104::-;22382:13;22415:7;22408:14;;;;;:::i;24009:155::-;24104:52;19686:10;24137:8;24147;24104:18;:52::i;40602:100::-;34787:6;;-1:-1:-1;;;;;34787:6:0;19686:10;34934:23;34926:68;;;;-1:-1:-1;;;34926:68:0;;;;;;;:::i;:::-;40661:15:::1;40649:9;:27:::0;40683:5:::1;:13:::0;;-1:-1:-1;;40683:13:0::1;::::0;;40602:100::o;25132:328::-;25307:41;19686:10;25340:7;25307:18;:41::i;:::-;25299:103;;;;-1:-1:-1;;;25299:103:0;;;;;;;:::i;:::-;25413:39;25427:4;25433:2;25437:7;25446:5;25413:13;:39::i;:::-;25132:328;;;;:::o;41708:420::-;27035:4;27059:16;;;:7;:16;;;;;;41807:13;;-1:-1:-1;;;;;27059:16:0;41832:98;;;;-1:-1:-1;;;41832:98:0;;14485:2:1;41832:98:0;;;14467:21:1;14524:2;14504:18;;;14497:30;14563:34;14543:18;;;14536:62;-1:-1:-1;;;14614:18:1;;;14607:45;14669:19;;41832:98:0;14283:411:1;41832:98:0;41939:28;41970:10;:8;:10::i;:::-;41939:41;;42025:1;42000:14;41994:28;:32;:128;;;;;;;;;;;;;;;;;42062:14;42078:19;:8;:17;:19::i;:::-;42045:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41994:128;41987:135;41708:420;-1:-1:-1;;;41708:420:0:o;38041:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35623:201::-;34787:6;;-1:-1:-1;;;;;34787:6:0;19686:10;34934:23;34926:68;;;;-1:-1:-1;;;34926:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35712:22:0;::::1;35704:73;;;::::0;-1:-1:-1;;;35704:73:0;;15543:2:1;35704:73:0::1;::::0;::::1;15525:21:1::0;15582:2;15562:18;;;15555:30;15621:34;15601:18;;;15594:62;-1:-1:-1;;;15672:18:1;;;15665:36;15718:19;;35704:73:0::1;15341:402:1::0;35704:73:0::1;35788:28;35807:8;35788:18;:28::i;30952:174::-:0;31027:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31027:29:0;-1:-1:-1;;;;;31027:29:0;;;;;;;;:24;;31081:23;31027:24;31081:14;:23::i;:::-;-1:-1:-1;;;;;31072:46:0;;;;;;;;;;;30952:174;;:::o;27264:348::-;27357:4;27059:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27059:16:0;27374:73;;;;-1:-1:-1;;;27374:73:0;;15950:2:1;27374:73:0;;;15932:21:1;15989:2;15969:18;;;15962:30;16028:34;16008:18;;;16001:62;-1:-1:-1;;;16079:18:1;;;16072:42;16131:19;;27374:73:0;15748:408:1;27374:73:0;27458:13;27474:23;27489:7;27474:14;:23::i;:::-;27458:39;;27527:5;-1:-1:-1;;;;;27516:16:0;:7;-1:-1:-1;;;;;27516:16:0;;:51;;;;27560:7;-1:-1:-1;;;;;27536:31:0;:20;27548:7;27536:11;:20::i;:::-;-1:-1:-1;;;;;27536:31:0;;27516:51;:87;;;-1:-1:-1;;;;;;24356:25:0;;;24332:4;24356:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27571:32;27508:96;27264:348;-1:-1:-1;;;;27264:348:0:o;30256:578::-;30415:4;-1:-1:-1;;;;;30388:31:0;:23;30403:7;30388:14;:23::i;:::-;-1:-1:-1;;;;;30388:31:0;;30380:85;;;;-1:-1:-1;;;30380:85:0;;16363:2:1;30380:85:0;;;16345:21:1;16402:2;16382:18;;;16375:30;16441:34;16421:18;;;16414:62;-1:-1:-1;;;16492:18:1;;;16485:39;16541:19;;30380:85:0;16161:405:1;30380:85:0;-1:-1:-1;;;;;30484:16:0;;30476:65;;;;-1:-1:-1;;;30476:65:0;;16773:2:1;30476:65:0;;;16755:21:1;16812:2;16792:18;;;16785:30;16851:34;16831:18;;;16824:62;-1:-1:-1;;;16902:18:1;;;16895:34;16946:19;;30476:65:0;16571:400:1;30476:65:0;30658:29;30675:1;30679:7;30658:8;:29::i;:::-;-1:-1:-1;;;;;30700:15:0;;;;;;:9;:15;;;;;:20;;30719:1;;30700:15;:20;;30719:1;;30700:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30731:13:0;;;;;;:9;:13;;;;;:18;;30748:1;;30731:13;:18;;30748:1;;30731:18;:::i;:::-;;;;-1:-1:-1;;30760:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30760:21:0;-1:-1:-1;;;;;30760:21:0;;;;;;;;;30799:27;;30760:16;;30799:27;;;;;;;30256:578;;;:::o;35984:191::-;36077:6;;;-1:-1:-1;;;;;36094:17:0;;;-1:-1:-1;;;;;;36094:17:0;;;;;;;36127:40;;36077:6;;;36094:17;36077:6;;36127:40;;36058:16;;36127:40;36047:128;35984:191;:::o;27954:110::-;28030:26;28040:2;28044:7;28030:26;;;;;;;;;;;;:9;:26::i;41242:226::-;41322:9;41317:146;41341:11;41337:1;:15;41317:146;;;41368:18;:6;37265:19;;37283:1;37265:19;;;37176:127;41368:18;41395:13;:16;;;:13;:16;;;:::i;:::-;;;;;;41420:35;41430:9;41441:13;;41420:9;:35::i;:::-;41354:3;;;;:::i;:::-;;;;41317:146;;31268:315;31423:8;-1:-1:-1;;;;;31414:17:0;:5;-1:-1:-1;;;;;31414:17:0;;;31406:55;;;;-1:-1:-1;;;31406:55:0;;17308:2:1;31406:55:0;;;17290:21:1;17347:2;17327:18;;;17320:30;17386:27;17366:18;;;17359:55;17431:18;;31406:55:0;17106:349:1;31406:55:0;-1:-1:-1;;;;;31472:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31472:46:0;;;;;;;;;;31534:41;;540::1;;;31534::0;;513:18:1;31534:41:0;;;;;;;31268:315;;;:::o;26342:::-;26499:28;26509:4;26515:2;26519:7;26499:9;:28::i;:::-;26546:48;26569:4;26575:2;26579:7;26588:5;26546:22;:48::i;:::-;26538:111;;;;-1:-1:-1;;;26538:111:0;;;;;;;:::i;41474:109::-;41534:13;41565:12;41558:19;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;28291:321;28421:18;28427:2;28431:7;28421:5;:18::i;:::-;28472:54;28503:1;28507:2;28511:7;28520:5;28472:22;:54::i;:::-;28450:154;;;;-1:-1:-1;;;28450:154:0;;;;;;;:::i;32148:799::-;32303:4;-1:-1:-1;;;;;32324:13:0;;3267:20;3315:8;32320:620;;32360:72;;-1:-1:-1;;;32360:72:0;;-1:-1:-1;;;;;32360:36:0;;;;;:72;;19686:10;;32411:4;;32417:7;;32426:5;;32360:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32360:72:0;;;;;;;;-1:-1:-1;;32360:72:0;;;;;;;;;;;;:::i;:::-;;;32356:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32602:13:0;;32598:272;;32645:60;;-1:-1:-1;;;32645:60:0;;;;;;;:::i;32598:272::-;32820:6;32814:13;32805:6;32801:2;32797:15;32790:38;32356:529;-1:-1:-1;;;;;;32483:51:0;-1:-1:-1;;;32483:51:0;;-1:-1:-1;32476:58:0;;32320:620;-1:-1:-1;32924:4:0;32148:799;;;;;;:::o;28948:382::-;-1:-1:-1;;;;;29028:16:0;;29020:61;;;;-1:-1:-1;;;29020:61:0;;18946:2:1;29020:61:0;;;18928:21:1;;;18965:18;;;18958:30;19024:34;19004:18;;;18997:62;19076:18;;29020:61:0;18744:356:1;29020:61:0;27035:4;27059:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27059:16:0;:30;29092:58;;;;-1:-1:-1;;;29092:58:0;;19307:2:1;29092:58:0;;;19289:21:1;19346:2;19326:18;;;19319:30;19385;19365:18;;;19358:58;19433:18;;29092:58:0;19105:352:1;29092:58:0;-1:-1:-1;;;;;29221:13:0;;;;;;:9;:13;;;;;:18;;29238:1;;29221:13;:18;;29238:1;;29221:18;:::i;:::-;;;;-1:-1:-1;;29250:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29250:21:0;-1:-1:-1;;;;;29250:21:0;;;;;;;;29289:33;;29250:16;;;29289:33;;29250:16;;29289:33;28948:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:632::-;3050:2;3102:21;;;3172:13;;3075:18;;;3194:22;;;3021:4;;3050:2;3273:15;;;;3247:2;3232:18;;;3021:4;3316:169;3330:6;3327:1;3324:13;3316:169;;;3391:13;;3379:26;;3460:15;;;;3425:12;;;;3352:1;3345:9;3316:169;;;-1:-1:-1;3502:3:1;;2879:632;-1:-1:-1;;;;;;2879:632:1:o;3516:127::-;3577:10;3572:3;3568:20;3565:1;3558:31;3608:4;3605:1;3598:15;3632:4;3629:1;3622:15;3648:275;3719:2;3713:9;3784:2;3765:13;;-1:-1:-1;;3761:27:1;3749:40;;3819:18;3804:34;;3840:22;;;3801:62;3798:88;;;3866:18;;:::i;:::-;3902:2;3895:22;3648:275;;-1:-1:-1;3648:275:1:o;3928:407::-;3993:5;4027:18;4019:6;4016:30;4013:56;;;4049:18;;:::i;:::-;4087:57;4132:2;4111:15;;-1:-1:-1;;4107:29:1;4138:4;4103:40;4087:57;:::i;:::-;4078:66;;4167:6;4160:5;4153:21;4207:3;4198:6;4193:3;4189:16;4186:25;4183:45;;;4224:1;4221;4214:12;4183:45;4273:6;4268:3;4261:4;4254:5;4250:16;4237:43;4327:1;4320:4;4311:6;4304:5;4300:18;4296:29;4289:40;3928:407;;;;;:::o;4340:451::-;4409:6;4462:2;4450:9;4441:7;4437:23;4433:32;4430:52;;;4478:1;4475;4468:12;4430:52;4518:9;4505:23;4551:18;4543:6;4540:30;4537:50;;;4583:1;4580;4573:12;4537:50;4606:22;;4659:4;4651:13;;4647:27;-1:-1:-1;4637:55:1;;4688:1;4685;4678:12;4637:55;4711:74;4777:7;4772:2;4759:16;4754:2;4750;4746:11;4711:74;:::i;4796:952::-;4880:6;4911:2;4954;4942:9;4933:7;4929:23;4925:32;4922:52;;;4970:1;4967;4960:12;4922:52;5010:9;4997:23;5039:18;5080:2;5072:6;5069:14;5066:34;;;5096:1;5093;5086:12;5066:34;5134:6;5123:9;5119:22;5109:32;;5179:7;5172:4;5168:2;5164:13;5160:27;5150:55;;5201:1;5198;5191:12;5150:55;5237:2;5224:16;5259:2;5255;5252:10;5249:36;;;5265:18;;:::i;:::-;5311:2;5308:1;5304:10;5294:20;;5334:28;5358:2;5354;5350:11;5334:28;:::i;:::-;5396:15;;;5466:11;;;5462:20;;;5427:12;;;;5494:19;;;5491:39;;;5526:1;5523;5516:12;5491:39;5550:11;;;;5570:148;5586:6;5581:3;5578:15;5570:148;;;5652:23;5671:3;5652:23;:::i;:::-;5640:36;;5603:12;;;;5696;;;;5570:148;;;5737:5;4796:952;-1:-1:-1;;;;;;;;4796:952:1:o;5753:347::-;5818:6;5826;5879:2;5867:9;5858:7;5854:23;5850:32;5847:52;;;5895:1;5892;5885:12;5847:52;5918:29;5937:9;5918:29;:::i;:::-;5908:39;;5997:2;5986:9;5982:18;5969:32;6044:5;6037:13;6030:21;6023:5;6020:32;6010:60;;6066:1;6063;6056:12;6010:60;6089:5;6079:15;;;5753:347;;;;;:::o;6105:667::-;6200:6;6208;6216;6224;6277:3;6265:9;6256:7;6252:23;6248:33;6245:53;;;6294:1;6291;6284:12;6245:53;6317:29;6336:9;6317:29;:::i;:::-;6307:39;;6365:38;6399:2;6388:9;6384:18;6365:38;:::i;:::-;6355:48;;6450:2;6439:9;6435:18;6422:32;6412:42;;6505:2;6494:9;6490:18;6477:32;6532:18;6524:6;6521:30;6518:50;;;6564:1;6561;6554:12;6518:50;6587:22;;6640:4;6632:13;;6628:27;-1:-1:-1;6618:55:1;;6669:1;6666;6659:12;6618:55;6692:74;6758:7;6753:2;6740:16;6735:2;6731;6727:11;6692:74;:::i;:::-;6682:84;;;6105:667;;;;;;;:::o;6777:260::-;6845:6;6853;6906:2;6894:9;6885:7;6881:23;6877:32;6874:52;;;6922:1;6919;6912:12;6874:52;6945:29;6964:9;6945:29;:::i;:::-;6935:39;;6993:38;7027:2;7016:9;7012:18;6993:38;:::i;:::-;6983:48;;6777:260;;;;;:::o;7042:380::-;7121:1;7117:12;;;;7164;;;7185:61;;7239:4;7231:6;7227:17;7217:27;;7185:61;7292:2;7284:6;7281:14;7261:18;7258:38;7255:161;;;7338:10;7333:3;7329:20;7326:1;7319:31;7373:4;7370:1;7363:15;7401:4;7398:1;7391:15;7255:161;;7042:380;;;:::o;8667:413::-;8869:2;8851:21;;;8908:2;8888:18;;;8881:30;8947:34;8942:2;8927:18;;8920:62;-1:-1:-1;;;9013:2:1;8998:18;;8991:47;9070:3;9055:19;;8667:413::o;9085:356::-;9287:2;9269:21;;;9306:18;;;9299:30;9365:34;9360:2;9345:18;;9338:62;9432:2;9417:18;;9085:356::o;9446:127::-;9507:10;9502:3;9498:20;9495:1;9488:31;9538:4;9535:1;9528:15;9562:4;9559:1;9552:15;9578:168;9618:7;9684:1;9680;9676:6;9672:14;9669:1;9666:21;9661:1;9654:9;9647:17;9643:45;9640:71;;;9691:18;;:::i;:::-;-1:-1:-1;9731:9:1;;9578:168::o;9751:127::-;9812:10;9807:3;9803:20;9800:1;9793:31;9843:4;9840:1;9833:15;9867:4;9864:1;9857:15;9883:120;9923:1;9949;9939:35;;9954:18;;:::i;:::-;-1:-1:-1;9988:9:1;;9883:120::o;10218:135::-;10257:3;-1:-1:-1;;10278:17:1;;10275:43;;;10298:18;;:::i;:::-;-1:-1:-1;10345:1:1;10334:13;;10218:135::o;10358:127::-;10419:10;10414:3;10410:20;10407:1;10400:31;10450:4;10447:1;10440:15;10474:4;10471:1;10464:15;12008:128;12048:3;12079:1;12075:6;12072:1;12069:13;12066:39;;;12085:18;;:::i;:::-;-1:-1:-1;12121:9:1;;12008:128::o;14699:637::-;14979:3;15017:6;15011:13;15033:53;15079:6;15074:3;15067:4;15059:6;15055:17;15033:53;:::i;:::-;15149:13;;15108:16;;;;15171:57;15149:13;15108:16;15205:4;15193:17;;15171:57;:::i;:::-;-1:-1:-1;;;15250:20:1;;15279:22;;;15328:1;15317:13;;14699:637;-1:-1:-1;;;;14699:637:1:o;16976:125::-;17016:4;17044:1;17041;17038:8;17035:34;;;17049:18;;:::i;:::-;-1:-1:-1;17086:9:1;;16976:125::o;17460:414::-;17662:2;17644:21;;;17701:2;17681:18;;;17674:30;17740:34;17735:2;17720:18;;17713:62;-1:-1:-1;;;17806:2:1;17791:18;;17784:48;17864:3;17849:19;;17460:414::o;17879:112::-;17911:1;17937;17927:35;;17942:18;;:::i;:::-;-1:-1:-1;17976:9:1;;17879:112::o;17996:489::-;-1:-1:-1;;;;;18265:15:1;;;18247:34;;18317:15;;18312:2;18297:18;;18290:43;18364:2;18349:18;;18342:34;;;18412:3;18407:2;18392:18;;18385:31;;;18190:4;;18433:46;;18459:19;;18451:6;18433:46;:::i;:::-;18425:54;17996:489;-1:-1:-1;;;;;;17996:489:1:o;18490:249::-;18559:6;18612:2;18600:9;18591:7;18587:23;18583:32;18580:52;;;18628:1;18625;18618:12;18580:52;18660:9;18654:16;18679:30;18703:5;18679:30;:::i

Swarm Source

ipfs://0c4a7358b35d3a46f5b9292c16a82a9bbd5ed78f75f2b17847e7219875b5b589
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.