ETH Price: $2,604.71 (-0.64%)

Token

Karuti (KARUTI)
 

Overview

Max Total Supply

1,000 KARUTI

Holders

421

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
goosetaf.eth
Balance
2 KARUTI
0x10395cbe4fe6200ea7e472fdec06f6a03a8c481c
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:
Karuti

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-07
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _nextTokenId;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _nextTokenId = 1;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        for (uint256 curr = tokenId; ; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _nextTokenId;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _nextTokenId;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );
            updatedIndex++;
        }

        _nextTokenId = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) 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);
    }
}

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


pragma solidity ^0.8.0;

contract Karuti is ERC721A, Ownable {
  using Strings for uint256;
  uint256 public presalePrice = 0.06 ether;
  uint256 public mintPrice = 0.09 ether;
  uint256 public supply = 7777;
  string private baseURI = "ipfs://QmUMWzwpCLZn7EYqRDRKAZ8LCbJWRNm7i7Z5cC1kSANhov/";
  bytes32 public wlMerkleRoot;
  bytes32 public ogMerkleRoot;
  uint8 public phase = 1;
  uint8 public maxBuy = 10;
  uint8 public ogMax = 10;
  uint8 public wlMax = 2;

  mapping(address => uint8)  public walletBuys;

  constructor() ERC721A("Karuti", "KARUTI") {
  }

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

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

  function mintForAddress(address[] calldata _addresses, uint256 quantity) public onlyOwner {
    for (uint i=0; i<_addresses.length; i++) {
      _safeMint(_addresses[i], quantity);
    }
  }

  function mint(uint256 quantity) external payable {
    require(phase >= 2, "Sale has not started");
    require(totalSupply() + quantity <= supply, "You can't mint more then the total supply");
    require(walletBuys[msg.sender] + quantity <= maxBuy, "Buy limit reached");
    require(msg.value >= mintPrice * quantity, "Insufficient funds");

    _safeMint(msg.sender, quantity);
  }

  function wlMint(uint8 _mintAmount, bytes32[] calldata _merkleProof) public payable {
    // Verify whitelist requirements
    require(phase == 1, "Sale has not started");
    require(walletBuys[msg.sender] + _mintAmount <= wlMax, "Max presale minted for this wallet!");
    require(msg.value >= presalePrice * _mintAmount, "Insufficient funds");
    
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    require(MerkleProof.verify(_merkleProof, wlMerkleRoot, leaf), "Invalid proof!");

    walletBuys[msg.sender] += _mintAmount;
    _safeMint(msg.sender, _mintAmount);
  }

  function ogMint(uint8 _mintAmount, bytes32[] calldata _merkleProof) public payable {
    // Verify og-list requirements
    require(phase >= 1, "Sale has not started");
    require(walletBuys[msg.sender] + _mintAmount <= ogMax, "Max presale minted for this wallet!");
    require(msg.value >= presalePrice * _mintAmount, "Insufficient funds");
    
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    require(MerkleProof.verify(_merkleProof, ogMerkleRoot, leaf), "Invalid proof!");

    walletBuys[msg.sender] += _mintAmount;
    _safeMint(msg.sender, _mintAmount);
  }

  function getBaseURI() public view returns (string memory) {
    return baseURI;
  }

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

  function setBaseURI(string memory baseURI_) external onlyOwner {
    baseURI = baseURI_;
  }

  function setMintPrice (uint256 _newPrice) external onlyOwner {
    mintPrice = _newPrice;
  }

  function setPresalePrice (uint256 _newPrice) external onlyOwner {
    presalePrice = _newPrice;
  }

  function setPhase(uint8 _phase) public onlyOwner {
    phase = _phase;
  }

  function setMaxBuy(uint8 _maxBuy) external onlyOwner {
      maxBuy = _maxBuy;
  }

  function updateSupply(uint256 _supply) external onlyOwner {
      supply = _supply;
  }

  function changeWLRootHash(bytes32 _rootHash) external onlyOwner {
    wlMerkleRoot = _rootHash;
  }

  function changeOGRootHash(bytes32 _rootHash) external onlyOwner {
    ogMerkleRoot = _rootHash;
  }

  function getContractBalance () external view onlyOwner returns (uint256) {
    return address(this).balance;
  }

  function withdrawAll() external onlyOwner{
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");
        
        address[5] memory addresses = [
            0x739cC4746e106d050f757bCeCE2AAfC9F2EAaA28,
            0xC32056234D7C6E867529d984C74340017De552Fd,
            0xedE2Ec0FAA773FCBe7fBdE304A0d3ACc125f099F,
            0x356952dB5AccEF8D8Bc3bC70ffdF2dd6dAC52F07,
            0x79fb397632146b75De437465ad31631d45110917 
        ];

        uint32[5] memory shares = [
            uint32(50),
            uint32(40),
            uint32(330),
            uint32(330),
            uint32(250)
        ];

        for (uint32 i = 0; i < addresses.length; i++) {
            uint256 amount = i == addresses.length - 1 ? address(this).balance : balance * shares[i] / 1000;
            _widthdraw(addresses[i], amount);
        }
  }
 
  //Withdraw balance from contract
  function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{ value: _amount }("");
        require(success, "Failed to withdraw Ether");
  }

}

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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootHash","type":"bytes32"}],"name":"changeOGRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootHash","type":"bytes32"}],"name":"changeWLRootHash","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":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxBuy","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogMax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"ogMint","outputs":[],"stateMutability":"payable","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":"phase","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxBuy","type":"uint8"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_phase","type":"uint8"}],"name":"setPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"updateSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletBuys","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlMax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"wlMint","outputs":[],"stateMutability":"payable","type":"function"}]

66d529ae9e86000060085567013fbe85edc90000600955611e61600a5560e0604052603660808181529062002e1260a03980516200004691600b916020909101906200013f565b50600e805463ffffffff191663020a0a011790553480156200006757600080fd5b50604051806040016040528060068152602001654b617275746960d01b815250604051806040016040528060068152602001654b415255544960d01b8152508160019080519060200190620000be9291906200013f565b508051620000d49060029060208401906200013f565b5050600160005550620000e733620000ed565b62000222565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014d90620001e5565b90600052602060002090601f016020900481019282620001715760008555620001bc565b82601f106200018c57805160ff1916838001178555620001bc565b82800160010185558215620001bc579182015b82811115620001bc5782518255916020019190600101906200019f565b50620001ca929150620001ce565b5090565b5b80821115620001ca5760008155600101620001cf565b600181811c90821680620001fa57607f821691505b602082108114156200021c57634e487b7160e01b600052602260045260246000fd5b50919050565b612be080620002326000396000f3fe6080604052600436106102665760003560e01c806370db69d611610144578063b1c9fe6e116100b6578063dea96c981161007a578063dea96c98146106e6578063dfcf15b014610716578063e985e9c514610736578063f2fde38b1461077f578063f4a0a5281461079f578063fc0ab6e2146107bf57600080fd5b8063b1c9fe6e1461064c578063b88d4fde14610666578063c03afb5914610686578063c87b56dd146106a6578063dbdf2dc0146106c657600080fd5b806387abdc2a1161010857806387abdc2a146105a55780638b9defa1146105c55780638da5cb5b146105e657806395d89b4114610604578063a0712d6814610619578063a22cb4651461062c57600080fd5b806370db69d614610522578063714c539814610553578063715018a614610568578063842e481c1461057d578063853828b61461059057600080fd5b806342842e0e116101dd5780635ae1250b116101a15780635ae1250b146104775780636352211e146104975780636817c76c146104b75780636bd08049146104cd5780636f9fb98a146104ed57806370a082311461050257600080fd5b806342842e0e146103e15780634f6ccce71461040157806353f6fa791461042157806354c06aee1461044157806355f804b31461045757600080fd5b8063095ea7b31161022f578063095ea7b3146103345780630a3025301461035657806318160ddd1461036c57806323b872dd146103815780632f745c59146103a15780633549345e146103c157600080fd5b80620e7fa81461026b57806301ffc9a714610294578063047fc9aa146102c457806306fdde03146102da578063081812fc146102fc575b600080fd5b34801561027757600080fd5b5061028160085481565b6040519081526020015b60405180910390f35b3480156102a057600080fd5b506102b46102af36600461239f565b6107d2565b604051901515815260200161028b565b3480156102d057600080fd5b50610281600a5481565b3480156102e657600080fd5b506102ef61083f565b60405161028b919061241b565b34801561030857600080fd5b5061031c61031736600461242e565b6108d1565b6040516001600160a01b03909116815260200161028b565b34801561034057600080fd5b5061035461034f366004612463565b610961565b005b34801561036257600080fd5b50610281600d5481565b34801561037857600080fd5b50610281610a79565b34801561038d57600080fd5b5061035461039c36600461248d565b610a8f565b3480156103ad57600080fd5b506102816103bc366004612463565b610a9a565b3480156103cd57600080fd5b506103546103dc36600461242e565b610c12565b3480156103ed57600080fd5b506103546103fc36600461248d565b610c41565b34801561040d57600080fd5b5061028161041c36600461242e565b610c5c565b34801561042d57600080fd5b5061035461043c36600461242e565b610cc4565b34801561044d57600080fd5b50610281600c5481565b34801561046357600080fd5b50610354610472366004612555565b610cf3565b34801561048357600080fd5b5061035461049236600461242e565b610d34565b3480156104a357600080fd5b5061031c6104b236600461242e565b610d63565b3480156104c357600080fd5b5061028160095481565b3480156104d957600080fd5b506103546104e836600461242e565b610d75565b3480156104f957600080fd5b50610281610da4565b34801561050e57600080fd5b5061028161051d36600461259e565b610dd6565b34801561052e57600080fd5b50600e5461054190610100900460ff1681565b60405160ff909116815260200161028b565b34801561055f57600080fd5b506102ef610e67565b34801561057457600080fd5b50610354610e76565b61035461058b366004612616565b610eac565b34801561059c57600080fd5b50610354611054565b3480156105b157600080fd5b50600e546105419062010000900460ff1681565b3480156105d157600080fd5b50600e54610541906301000000900460ff1681565b3480156105f257600080fd5b506007546001600160a01b031661031c565b34801561061057600080fd5b506102ef61122c565b61035461062736600461242e565b61123b565b34801561063857600080fd5b50610354610647366004612669565b61137f565b34801561065857600080fd5b50600e546105419060ff1681565b34801561067257600080fd5b506103546106813660046126a5565b611444565b34801561069257600080fd5b506103546106a1366004612721565b611477565b3480156106b257600080fd5b506102ef6106c136600461242e565b6114b7565b3480156106d257600080fd5b506103546106e1366004612721565b611584565b3480156106f257600080fd5b5061054161070136600461259e565b600f6020526000908152604090205460ff1681565b34801561072257600080fd5b5061035461073136600461273c565b6115ca565b34801561074257600080fd5b506102b4610751366004612788565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561078b57600080fd5b5061035461079a36600461259e565b611641565b3480156107ab57600080fd5b506103546107ba36600461242e565b6116d9565b6103546107cd366004612616565b611708565b60006001600160e01b031982166380ac58cd60e01b148061080357506001600160e01b03198216635b5e139f60e01b145b8061081e57506001600160e01b0319821663780e9d6360e01b145b8061083957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461084e906127bb565b80601f016020809104026020016040519081016040528092919081815260200182805461087a906127bb565b80156108c75780601f1061089c576101008083540402835291602001916108c7565b820191906000526020600020905b8154815290600101906020018083116108aa57829003601f168201915b5050505050905090565b60006108de826000541190565b6109455760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061096c82610d63565b9050806001600160a01b0316836001600160a01b031614156109db5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161093c565b336001600160a01b03821614806109f757506109f78133610751565b610a695760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161093c565b610a74838383611824565b505050565b60006001600054610a8a919061280c565b905090565b610a74838383611880565b6000610aa583610dd6565b8210610afe5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161093c565b6000610b08610a79565b905060008060005b83811015610bb2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b6357805192505b876001600160a01b0316836001600160a01b03161415610b9f5786841415610b915750935061083992505050565b83610b9b81612823565b9450505b5080610baa81612823565b915050610b10565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161093c565b6007546001600160a01b03163314610c3c5760405162461bcd60e51b815260040161093c9061283e565b600855565b610a7483838360405180602001604052806000815250611444565b6000610c66610a79565b8210610cc05760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161093c565b5090565b6007546001600160a01b03163314610cee5760405162461bcd60e51b815260040161093c9061283e565b600c55565b6007546001600160a01b03163314610d1d5760405162461bcd60e51b815260040161093c9061283e565b8051610d3090600b9060208401906122f9565b5050565b6007546001600160a01b03163314610d5e5760405162461bcd60e51b815260040161093c9061283e565b600d55565b6000610d6e82611bc7565b5192915050565b6007546001600160a01b03163314610d9f5760405162461bcd60e51b815260040161093c9061283e565b600a55565b6007546000906001600160a01b03163314610dd15760405162461bcd60e51b815260040161093c9061283e565b504790565b60006001600160a01b038216610e425760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161093c565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b805461084e906127bb565b6007546001600160a01b03163314610ea05760405162461bcd60e51b815260040161093c9061283e565b610eaa6000611ca7565b565b600e54600160ff9091161015610ed45760405162461bcd60e51b815260040161093c90612873565b600e54336000908152600f602052604090205460ff62010000909204821691610eff918691166128a1565b60ff161115610f205760405162461bcd60e51b815260040161093c906128c6565b8260ff16600854610f319190612909565b341015610f505760405162461bcd60e51b815260040161093c90612928565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610fca83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611cf9565b6110075760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b604482015260640161093c565b336000908152600f60205260408120805486929061102990849060ff166128a1565b92506101000a81548160ff021916908360ff16021790555061104e338560ff16611d0f565b50505050565b6007546001600160a01b0316331461107e5760405162461bcd60e51b815260040161093c9061283e565b47806110c25760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b604482015260640161093c565b6040805160a0808201835273739cc4746e106d050f757bcece2aafc9f2eaaa28825273c32056234d7c6e867529d984c74340017de552fd60208084019190915273ede2ec0faa773fcbe7fbde304a0d3acc125f099f8385015273356952db5accef8d8bc3bc70ffdf2dd6dac52f076060808501919091527379fb397632146b75de437465ad31631d45110917608080860191909152855193840186526032845260289284019290925261014a94830185905282019390935260fa928101929092529060005b60058163ffffffff16101561104e5760006111a46001600561280c565b8263ffffffff16146111ef576103e8838363ffffffff16600581106111cb576111cb612954565b60200201516111e09063ffffffff1687612909565b6111ea9190612980565b6111f1565b475b9050611219848363ffffffff166005811061120e5761120e612954565b602002015182611d29565b508061122481612994565b915050611187565b60606002805461084e906127bb565b600e54600260ff90911610156112635760405162461bcd60e51b815260040161093c90612873565b600a548161126f610a79565b61127991906129b8565b11156112d95760405162461bcd60e51b815260206004820152602960248201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604482015268616c20737570706c7960b81b606482015260840161093c565b600e54336000908152600f602052604090205460ff610100909204821691611303918491166129b8565b11156113455760405162461bcd60e51b8152602060048201526011602482015270109d5e481b1a5b5a5d081c995858da1959607a1b604482015260640161093c565b806009546113539190612909565b3410156113725760405162461bcd60e51b815260040161093c90612928565b61137c3382611d0f565b50565b6001600160a01b0382163314156113d85760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161093c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61144f848484611880565b61145b84848484611dcc565b61104e5760405162461bcd60e51b815260040161093c906129d0565b6007546001600160a01b031633146114a15760405162461bcd60e51b815260040161093c9061283e565b600e805460ff191660ff92909216919091179055565b60606114c4826000541190565b6115285760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161093c565b6000600b8054611537906127bb565b9050116115535760405180602001604052806000815250610839565b600b61155e83611ecb565b60405160200161156f929190612a3f565b60405160208183030381529060405292915050565b6007546001600160a01b031633146115ae5760405162461bcd60e51b815260040161093c9061283e565b600e805460ff9092166101000261ff0019909216919091179055565b6007546001600160a01b031633146115f45760405162461bcd60e51b815260040161093c9061283e565b60005b8281101561104e5761162f84848381811061161457611614612954565b9050602002016020810190611629919061259e565b83611d0f565b8061163981612823565b9150506115f7565b6007546001600160a01b0316331461166b5760405162461bcd60e51b815260040161093c9061283e565b6001600160a01b0381166116d05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093c565b61137c81611ca7565b6007546001600160a01b031633146117035760405162461bcd60e51b815260040161093c9061283e565b600955565b600e5460ff1660011461172d5760405162461bcd60e51b815260040161093c90612873565b600e54336000908152600f602052604090205460ff6301000000909204821691611759918691166128a1565b60ff16111561177a5760405162461bcd60e51b815260040161093c906128c6565b8260ff1660085461178b9190612909565b3410156117aa5760405162461bcd60e51b815260040161093c90612928565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610fca83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611cf9565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061188b82611bc7565b80519091506000906001600160a01b0316336001600160a01b031614806118c25750336118b7846108d1565b6001600160a01b0316145b806118d4575081516118d49033610751565b90508061193e5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161093c565b846001600160a01b031682600001516001600160a01b0316146119b25760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161093c565b6001600160a01b038416611a165760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161093c565b611a266000848460000151611824565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611aeb9085906129b8565b6000818152600360205260409020549091506001600160a01b0316611b7d57611b15816000541190565b15611b7d5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611be6826000541190565b611c455760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161093c565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c94579392505050565b5080611c9f81612afa565b915050611c47565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611d068584611fc9565b14949350505050565b610d3082826040518060200160405280600081525061203d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611d76576040519150601f19603f3d011682016040523d82523d6000602084013e611d7b565b606091505b5050905080610a745760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2077697468647261772045746865720000000000000000604482015260640161093c565b60006001600160a01b0384163b15611ebf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e10903390899088908890600401612b11565b6020604051808303816000875af1925050508015611e4b575060408051601f3d908101601f19168201909252611e4891810190612b4e565b60015b611ea5573d808015611e79576040519150601f19603f3d011682016040523d82523d6000602084013e611e7e565b606091505b508051611e9d5760405162461bcd60e51b815260040161093c906129d0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ec3565b5060015b949350505050565b606081611eef5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f195780611f0381612823565b9150611f129050600a83612980565b9150611ef3565b60008167ffffffffffffffff811115611f3457611f346124c9565b6040519080825280601f01601f191660200182016040528015611f5e576020820181803683370190505b5090505b8415611ec357611f7360018361280c565b9150611f80600a86612b6b565b611f8b9060306129b8565b60f81b818381518110611fa057611fa0612954565b60200101906001600160f81b031916908160001a905350611fc2600a86612980565b9450611f62565b600081815b8451811015612035576000858281518110611feb57611feb612954565b602002602001015190508083116120115760008381526020829052604090209250612022565b600081815260208490526040902092505b508061202d81612823565b915050611fce565b509392505050565b6000546001600160a01b0384166120a05760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161093c565b6120ab816000541190565b156120f85760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161093c565b600083116121545760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b606482015260840161093c565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906121b0908790612b7f565b6001600160801b031681526020018583602001516121ce9190612b7f565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122ee5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122b26000888488611dcc565b6122ce5760405162461bcd60e51b815260040161093c906129d0565b816122d881612823565b92505080806122e690612823565b915050612265565b506000819055611bbf565b828054612305906127bb565b90600052602060002090601f016020900481019282612327576000855561236d565b82601f1061234057805160ff191683800117855561236d565b8280016001018555821561236d579182015b8281111561236d578251825591602001919060010190612352565b50610cc09291505b80821115610cc05760008155600101612375565b6001600160e01b03198116811461137c57600080fd5b6000602082840312156123b157600080fd5b81356123bc81612389565b9392505050565b60005b838110156123de5781810151838201526020016123c6565b8381111561104e5750506000910152565b600081518084526124078160208601602086016123c3565b601f01601f19169290920160200192915050565b6020815260006123bc60208301846123ef565b60006020828403121561244057600080fd5b5035919050565b80356001600160a01b038116811461245e57600080fd5b919050565b6000806040838503121561247657600080fd5b61247f83612447565b946020939093013593505050565b6000806000606084860312156124a257600080fd5b6124ab84612447565b92506124b960208501612447565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156124fa576124fa6124c9565b604051601f8501601f19908116603f01168101908282118183101715612522576125226124c9565b8160405280935085815286868601111561253b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561256757600080fd5b813567ffffffffffffffff81111561257e57600080fd5b8201601f8101841361258f57600080fd5b611ec3848235602084016124df565b6000602082840312156125b057600080fd5b6123bc82612447565b803560ff8116811461245e57600080fd5b60008083601f8401126125dc57600080fd5b50813567ffffffffffffffff8111156125f457600080fd5b6020830191508360208260051b850101111561260f57600080fd5b9250929050565b60008060006040848603121561262b57600080fd5b612634846125b9565b9250602084013567ffffffffffffffff81111561265057600080fd5b61265c868287016125ca565b9497909650939450505050565b6000806040838503121561267c57600080fd5b61268583612447565b91506020830135801515811461269a57600080fd5b809150509250929050565b600080600080608085870312156126bb57600080fd5b6126c485612447565b93506126d260208601612447565b925060408501359150606085013567ffffffffffffffff8111156126f557600080fd5b8501601f8101871361270657600080fd5b612715878235602084016124df565b91505092959194509250565b60006020828403121561273357600080fd5b6123bc826125b9565b60008060006040848603121561275157600080fd5b833567ffffffffffffffff81111561276857600080fd5b612774868287016125ca565b909790965060209590950135949350505050565b6000806040838503121561279b57600080fd5b6127a483612447565b91506127b260208401612447565b90509250929050565b600181811c908216806127cf57607f821691505b602082108114156127f057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561281e5761281e6127f6565b500390565b6000600019821415612837576128376127f6565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526014908201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b604082015260600190565b600060ff821660ff84168060ff038211156128be576128be6127f6565b019392505050565b60208082526023908201527f4d61782070726573616c65206d696e74656420666f7220746869732077616c6c60408201526265742160e81b606082015260800190565b6000816000190483118215151615612923576129236127f6565b500290565b602080825260129082015271496e73756666696369656e742066756e647360701b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b60008261298f5761298f61296a565b500490565b600063ffffffff808316818114156129ae576129ae6127f6565b6001019392505050565b600082198211156129cb576129cb6127f6565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008151612a358185602086016123c3565b9290920192915050565b600080845481600182811c915080831680612a5b57607f831692505b6020808410821415612a7b57634e487b7160e01b86526022600452602486fd5b818015612a8f5760018114612aa057612acd565b60ff19861689528489019650612acd565b60008b81526020902060005b86811015612ac55781548b820152908501908301612aac565b505084890196505b505050505050612af1612ae08286612a23565b64173539b7b760d91b815260050190565b95945050505050565b600081612b0957612b096127f6565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b44908301846123ef565b9695505050505050565b600060208284031215612b6057600080fd5b81516123bc81612389565b600082612b7a57612b7a61296a565b500690565b60006001600160801b03808316818516808303821115612ba157612ba16127f6565b0194935050505056fea2646970667358221220747a80614149ee20a9d826592243fcd210a6e530b0399e826f8504ab5e2e0bda64736f6c634300080c0033697066733a2f2f516d554d577a7770434c5a6e374559715244524b415a384c43624a57524e6d3769375a356343316b53414e686f762f

Deployed Bytecode

0x6080604052600436106102665760003560e01c806370db69d611610144578063b1c9fe6e116100b6578063dea96c981161007a578063dea96c98146106e6578063dfcf15b014610716578063e985e9c514610736578063f2fde38b1461077f578063f4a0a5281461079f578063fc0ab6e2146107bf57600080fd5b8063b1c9fe6e1461064c578063b88d4fde14610666578063c03afb5914610686578063c87b56dd146106a6578063dbdf2dc0146106c657600080fd5b806387abdc2a1161010857806387abdc2a146105a55780638b9defa1146105c55780638da5cb5b146105e657806395d89b4114610604578063a0712d6814610619578063a22cb4651461062c57600080fd5b806370db69d614610522578063714c539814610553578063715018a614610568578063842e481c1461057d578063853828b61461059057600080fd5b806342842e0e116101dd5780635ae1250b116101a15780635ae1250b146104775780636352211e146104975780636817c76c146104b75780636bd08049146104cd5780636f9fb98a146104ed57806370a082311461050257600080fd5b806342842e0e146103e15780634f6ccce71461040157806353f6fa791461042157806354c06aee1461044157806355f804b31461045757600080fd5b8063095ea7b31161022f578063095ea7b3146103345780630a3025301461035657806318160ddd1461036c57806323b872dd146103815780632f745c59146103a15780633549345e146103c157600080fd5b80620e7fa81461026b57806301ffc9a714610294578063047fc9aa146102c457806306fdde03146102da578063081812fc146102fc575b600080fd5b34801561027757600080fd5b5061028160085481565b6040519081526020015b60405180910390f35b3480156102a057600080fd5b506102b46102af36600461239f565b6107d2565b604051901515815260200161028b565b3480156102d057600080fd5b50610281600a5481565b3480156102e657600080fd5b506102ef61083f565b60405161028b919061241b565b34801561030857600080fd5b5061031c61031736600461242e565b6108d1565b6040516001600160a01b03909116815260200161028b565b34801561034057600080fd5b5061035461034f366004612463565b610961565b005b34801561036257600080fd5b50610281600d5481565b34801561037857600080fd5b50610281610a79565b34801561038d57600080fd5b5061035461039c36600461248d565b610a8f565b3480156103ad57600080fd5b506102816103bc366004612463565b610a9a565b3480156103cd57600080fd5b506103546103dc36600461242e565b610c12565b3480156103ed57600080fd5b506103546103fc36600461248d565b610c41565b34801561040d57600080fd5b5061028161041c36600461242e565b610c5c565b34801561042d57600080fd5b5061035461043c36600461242e565b610cc4565b34801561044d57600080fd5b50610281600c5481565b34801561046357600080fd5b50610354610472366004612555565b610cf3565b34801561048357600080fd5b5061035461049236600461242e565b610d34565b3480156104a357600080fd5b5061031c6104b236600461242e565b610d63565b3480156104c357600080fd5b5061028160095481565b3480156104d957600080fd5b506103546104e836600461242e565b610d75565b3480156104f957600080fd5b50610281610da4565b34801561050e57600080fd5b5061028161051d36600461259e565b610dd6565b34801561052e57600080fd5b50600e5461054190610100900460ff1681565b60405160ff909116815260200161028b565b34801561055f57600080fd5b506102ef610e67565b34801561057457600080fd5b50610354610e76565b61035461058b366004612616565b610eac565b34801561059c57600080fd5b50610354611054565b3480156105b157600080fd5b50600e546105419062010000900460ff1681565b3480156105d157600080fd5b50600e54610541906301000000900460ff1681565b3480156105f257600080fd5b506007546001600160a01b031661031c565b34801561061057600080fd5b506102ef61122c565b61035461062736600461242e565b61123b565b34801561063857600080fd5b50610354610647366004612669565b61137f565b34801561065857600080fd5b50600e546105419060ff1681565b34801561067257600080fd5b506103546106813660046126a5565b611444565b34801561069257600080fd5b506103546106a1366004612721565b611477565b3480156106b257600080fd5b506102ef6106c136600461242e565b6114b7565b3480156106d257600080fd5b506103546106e1366004612721565b611584565b3480156106f257600080fd5b5061054161070136600461259e565b600f6020526000908152604090205460ff1681565b34801561072257600080fd5b5061035461073136600461273c565b6115ca565b34801561074257600080fd5b506102b4610751366004612788565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561078b57600080fd5b5061035461079a36600461259e565b611641565b3480156107ab57600080fd5b506103546107ba36600461242e565b6116d9565b6103546107cd366004612616565b611708565b60006001600160e01b031982166380ac58cd60e01b148061080357506001600160e01b03198216635b5e139f60e01b145b8061081e57506001600160e01b0319821663780e9d6360e01b145b8061083957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461084e906127bb565b80601f016020809104026020016040519081016040528092919081815260200182805461087a906127bb565b80156108c75780601f1061089c576101008083540402835291602001916108c7565b820191906000526020600020905b8154815290600101906020018083116108aa57829003601f168201915b5050505050905090565b60006108de826000541190565b6109455760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061096c82610d63565b9050806001600160a01b0316836001600160a01b031614156109db5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161093c565b336001600160a01b03821614806109f757506109f78133610751565b610a695760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161093c565b610a74838383611824565b505050565b60006001600054610a8a919061280c565b905090565b610a74838383611880565b6000610aa583610dd6565b8210610afe5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161093c565b6000610b08610a79565b905060008060005b83811015610bb2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b6357805192505b876001600160a01b0316836001600160a01b03161415610b9f5786841415610b915750935061083992505050565b83610b9b81612823565b9450505b5080610baa81612823565b915050610b10565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161093c565b6007546001600160a01b03163314610c3c5760405162461bcd60e51b815260040161093c9061283e565b600855565b610a7483838360405180602001604052806000815250611444565b6000610c66610a79565b8210610cc05760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161093c565b5090565b6007546001600160a01b03163314610cee5760405162461bcd60e51b815260040161093c9061283e565b600c55565b6007546001600160a01b03163314610d1d5760405162461bcd60e51b815260040161093c9061283e565b8051610d3090600b9060208401906122f9565b5050565b6007546001600160a01b03163314610d5e5760405162461bcd60e51b815260040161093c9061283e565b600d55565b6000610d6e82611bc7565b5192915050565b6007546001600160a01b03163314610d9f5760405162461bcd60e51b815260040161093c9061283e565b600a55565b6007546000906001600160a01b03163314610dd15760405162461bcd60e51b815260040161093c9061283e565b504790565b60006001600160a01b038216610e425760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161093c565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b805461084e906127bb565b6007546001600160a01b03163314610ea05760405162461bcd60e51b815260040161093c9061283e565b610eaa6000611ca7565b565b600e54600160ff9091161015610ed45760405162461bcd60e51b815260040161093c90612873565b600e54336000908152600f602052604090205460ff62010000909204821691610eff918691166128a1565b60ff161115610f205760405162461bcd60e51b815260040161093c906128c6565b8260ff16600854610f319190612909565b341015610f505760405162461bcd60e51b815260040161093c90612928565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610fca83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611cf9565b6110075760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b604482015260640161093c565b336000908152600f60205260408120805486929061102990849060ff166128a1565b92506101000a81548160ff021916908360ff16021790555061104e338560ff16611d0f565b50505050565b6007546001600160a01b0316331461107e5760405162461bcd60e51b815260040161093c9061283e565b47806110c25760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b604482015260640161093c565b6040805160a0808201835273739cc4746e106d050f757bcece2aafc9f2eaaa28825273c32056234d7c6e867529d984c74340017de552fd60208084019190915273ede2ec0faa773fcbe7fbde304a0d3acc125f099f8385015273356952db5accef8d8bc3bc70ffdf2dd6dac52f076060808501919091527379fb397632146b75de437465ad31631d45110917608080860191909152855193840186526032845260289284019290925261014a94830185905282019390935260fa928101929092529060005b60058163ffffffff16101561104e5760006111a46001600561280c565b8263ffffffff16146111ef576103e8838363ffffffff16600581106111cb576111cb612954565b60200201516111e09063ffffffff1687612909565b6111ea9190612980565b6111f1565b475b9050611219848363ffffffff166005811061120e5761120e612954565b602002015182611d29565b508061122481612994565b915050611187565b60606002805461084e906127bb565b600e54600260ff90911610156112635760405162461bcd60e51b815260040161093c90612873565b600a548161126f610a79565b61127991906129b8565b11156112d95760405162461bcd60e51b815260206004820152602960248201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604482015268616c20737570706c7960b81b606482015260840161093c565b600e54336000908152600f602052604090205460ff610100909204821691611303918491166129b8565b11156113455760405162461bcd60e51b8152602060048201526011602482015270109d5e481b1a5b5a5d081c995858da1959607a1b604482015260640161093c565b806009546113539190612909565b3410156113725760405162461bcd60e51b815260040161093c90612928565b61137c3382611d0f565b50565b6001600160a01b0382163314156113d85760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161093c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61144f848484611880565b61145b84848484611dcc565b61104e5760405162461bcd60e51b815260040161093c906129d0565b6007546001600160a01b031633146114a15760405162461bcd60e51b815260040161093c9061283e565b600e805460ff191660ff92909216919091179055565b60606114c4826000541190565b6115285760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161093c565b6000600b8054611537906127bb565b9050116115535760405180602001604052806000815250610839565b600b61155e83611ecb565b60405160200161156f929190612a3f565b60405160208183030381529060405292915050565b6007546001600160a01b031633146115ae5760405162461bcd60e51b815260040161093c9061283e565b600e805460ff9092166101000261ff0019909216919091179055565b6007546001600160a01b031633146115f45760405162461bcd60e51b815260040161093c9061283e565b60005b8281101561104e5761162f84848381811061161457611614612954565b9050602002016020810190611629919061259e565b83611d0f565b8061163981612823565b9150506115f7565b6007546001600160a01b0316331461166b5760405162461bcd60e51b815260040161093c9061283e565b6001600160a01b0381166116d05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093c565b61137c81611ca7565b6007546001600160a01b031633146117035760405162461bcd60e51b815260040161093c9061283e565b600955565b600e5460ff1660011461172d5760405162461bcd60e51b815260040161093c90612873565b600e54336000908152600f602052604090205460ff6301000000909204821691611759918691166128a1565b60ff16111561177a5760405162461bcd60e51b815260040161093c906128c6565b8260ff1660085461178b9190612909565b3410156117aa5760405162461bcd60e51b815260040161093c90612928565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610fca83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611cf9565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061188b82611bc7565b80519091506000906001600160a01b0316336001600160a01b031614806118c25750336118b7846108d1565b6001600160a01b0316145b806118d4575081516118d49033610751565b90508061193e5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161093c565b846001600160a01b031682600001516001600160a01b0316146119b25760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161093c565b6001600160a01b038416611a165760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161093c565b611a266000848460000151611824565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611aeb9085906129b8565b6000818152600360205260409020549091506001600160a01b0316611b7d57611b15816000541190565b15611b7d5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611be6826000541190565b611c455760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161093c565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c94579392505050565b5080611c9f81612afa565b915050611c47565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611d068584611fc9565b14949350505050565b610d3082826040518060200160405280600081525061203d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611d76576040519150601f19603f3d011682016040523d82523d6000602084013e611d7b565b606091505b5050905080610a745760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2077697468647261772045746865720000000000000000604482015260640161093c565b60006001600160a01b0384163b15611ebf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e10903390899088908890600401612b11565b6020604051808303816000875af1925050508015611e4b575060408051601f3d908101601f19168201909252611e4891810190612b4e565b60015b611ea5573d808015611e79576040519150601f19603f3d011682016040523d82523d6000602084013e611e7e565b606091505b508051611e9d5760405162461bcd60e51b815260040161093c906129d0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ec3565b5060015b949350505050565b606081611eef5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f195780611f0381612823565b9150611f129050600a83612980565b9150611ef3565b60008167ffffffffffffffff811115611f3457611f346124c9565b6040519080825280601f01601f191660200182016040528015611f5e576020820181803683370190505b5090505b8415611ec357611f7360018361280c565b9150611f80600a86612b6b565b611f8b9060306129b8565b60f81b818381518110611fa057611fa0612954565b60200101906001600160f81b031916908160001a905350611fc2600a86612980565b9450611f62565b600081815b8451811015612035576000858281518110611feb57611feb612954565b602002602001015190508083116120115760008381526020829052604090209250612022565b600081815260208490526040902092505b508061202d81612823565b915050611fce565b509392505050565b6000546001600160a01b0384166120a05760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161093c565b6120ab816000541190565b156120f85760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161093c565b600083116121545760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b606482015260840161093c565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906121b0908790612b7f565b6001600160801b031681526020018583602001516121ce9190612b7f565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122ee5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122b26000888488611dcc565b6122ce5760405162461bcd60e51b815260040161093c906129d0565b816122d881612823565b92505080806122e690612823565b915050612265565b506000819055611bbf565b828054612305906127bb565b90600052602060002090601f016020900481019282612327576000855561236d565b82601f1061234057805160ff191683800117855561236d565b8280016001018555821561236d579182015b8281111561236d578251825591602001919060010190612352565b50610cc09291505b80821115610cc05760008155600101612375565b6001600160e01b03198116811461137c57600080fd5b6000602082840312156123b157600080fd5b81356123bc81612389565b9392505050565b60005b838110156123de5781810151838201526020016123c6565b8381111561104e5750506000910152565b600081518084526124078160208601602086016123c3565b601f01601f19169290920160200192915050565b6020815260006123bc60208301846123ef565b60006020828403121561244057600080fd5b5035919050565b80356001600160a01b038116811461245e57600080fd5b919050565b6000806040838503121561247657600080fd5b61247f83612447565b946020939093013593505050565b6000806000606084860312156124a257600080fd5b6124ab84612447565b92506124b960208501612447565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156124fa576124fa6124c9565b604051601f8501601f19908116603f01168101908282118183101715612522576125226124c9565b8160405280935085815286868601111561253b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561256757600080fd5b813567ffffffffffffffff81111561257e57600080fd5b8201601f8101841361258f57600080fd5b611ec3848235602084016124df565b6000602082840312156125b057600080fd5b6123bc82612447565b803560ff8116811461245e57600080fd5b60008083601f8401126125dc57600080fd5b50813567ffffffffffffffff8111156125f457600080fd5b6020830191508360208260051b850101111561260f57600080fd5b9250929050565b60008060006040848603121561262b57600080fd5b612634846125b9565b9250602084013567ffffffffffffffff81111561265057600080fd5b61265c868287016125ca565b9497909650939450505050565b6000806040838503121561267c57600080fd5b61268583612447565b91506020830135801515811461269a57600080fd5b809150509250929050565b600080600080608085870312156126bb57600080fd5b6126c485612447565b93506126d260208601612447565b925060408501359150606085013567ffffffffffffffff8111156126f557600080fd5b8501601f8101871361270657600080fd5b612715878235602084016124df565b91505092959194509250565b60006020828403121561273357600080fd5b6123bc826125b9565b60008060006040848603121561275157600080fd5b833567ffffffffffffffff81111561276857600080fd5b612774868287016125ca565b909790965060209590950135949350505050565b6000806040838503121561279b57600080fd5b6127a483612447565b91506127b260208401612447565b90509250929050565b600181811c908216806127cf57607f821691505b602082108114156127f057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561281e5761281e6127f6565b500390565b6000600019821415612837576128376127f6565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526014908201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b604082015260600190565b600060ff821660ff84168060ff038211156128be576128be6127f6565b019392505050565b60208082526023908201527f4d61782070726573616c65206d696e74656420666f7220746869732077616c6c60408201526265742160e81b606082015260800190565b6000816000190483118215151615612923576129236127f6565b500290565b602080825260129082015271496e73756666696369656e742066756e647360701b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b60008261298f5761298f61296a565b500490565b600063ffffffff808316818114156129ae576129ae6127f6565b6001019392505050565b600082198211156129cb576129cb6127f6565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008151612a358185602086016123c3565b9290920192915050565b600080845481600182811c915080831680612a5b57607f831692505b6020808410821415612a7b57634e487b7160e01b86526022600452602486fd5b818015612a8f5760018114612aa057612acd565b60ff19861689528489019650612acd565b60008b81526020902060005b86811015612ac55781548b820152908501908301612aac565b505084890196505b505050505050612af1612ae08286612a23565b64173539b7b760d91b815260050190565b95945050505050565b600081612b0957612b096127f6565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b44908301846123ef565b9695505050505050565b600060208284031215612b6057600080fd5b81516123bc81612389565b600082612b7a57612b7a61296a565b500690565b60006001600160801b03808316818516808303821115612ba157612ba16127f6565b0194935050505056fea2646970667358221220747a80614149ee20a9d826592243fcd210a6e530b0399e826f8504ab5e2e0bda64736f6c634300080c0033

Deployed Bytecode Sourcemap

41404:4889:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41475:40;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;41475:40:0;;;;;;;;24333:372;;;;;;;;;;-1:-1:-1;24333:372:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;24333:372:0;582:187:1;41562:28:0;;;;;;;;;;;;;;;;25960:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27521:214::-;;;;;;;;;;-1:-1:-1;27521:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1896:32:1;;;1878:51;;1866:2;1851:18;27521:214:0;1732:203:1;27042:413:0;;;;;;;;;;-1:-1:-1;27042:413:0;;;;;:::i;:::-;;:::i;:::-;;41713:27;;;;;;;;;;;;;;;;22770:104;;;;;;;;;;;;;:::i;28397:162::-;;;;;;;;;;-1:-1:-1;28397:162:0;;;;;:::i;:::-;;:::i;23438:823::-;;;;;;;;;;-1:-1:-1;23438:823:0;;;;;:::i;:::-;;:::i;44444:101::-;;;;;;;;;;-1:-1:-1;44444:101:0;;;;;:::i;:::-;;:::i;28630:177::-;;;;;;;;;;-1:-1:-1;28630:177:0;;;;;:::i;:::-;;:::i;22951:187::-;;;;;;;;;;-1:-1:-1;22951:187:0;;;;;:::i;:::-;;:::i;44818:101::-;;;;;;;;;;-1:-1:-1;44818:101:0;;;;;:::i;:::-;;:::i;41681:27::-;;;;;;;;;;;;;;;;44243:94;;;;;;;;;;-1:-1:-1;44243:94:0;;;;;:::i;:::-;;:::i;44925:101::-;;;;;;;;;;-1:-1:-1;44925:101:0;;;;;:::i;:::-;;:::i;25769:124::-;;;;;;;;;;-1:-1:-1;25769:124:0;;;;;:::i;:::-;;:::i;41520:37::-;;;;;;;;;;;;;;;;44723:89;;;;;;;;;;-1:-1:-1;44723:89:0;;;;;:::i;:::-;;:::i;45032:114::-;;;;;;;;;;;;;:::i;24769:221::-;;;;;;;;;;-1:-1:-1;24769:221:0;;;;;:::i;:::-;;:::i;41772:24::-;;;;;;;;;;-1:-1:-1;41772:24:0;;;;;;;;;;;;;;4665:4:1;4653:17;;;4635:36;;4623:2;4608:18;41772:24:0;4493:184:1;44052:85:0;;;;;;;;;;;;;:::i;38034:103::-;;;;;;;;;;;;;:::i;43454:592::-;;;;;;:::i;:::-;;:::i;45152:904::-;;;;;;;;;;;;;:::i;41801:23::-;;;;;;;;;;-1:-1:-1;41801:23:0;;;;;;;;;;;41829:22;;;;;;;;;;-1:-1:-1;41829:22:0;;;;;;;;;;;37383:87;;;;;;;;;;-1:-1:-1;37456:6:0;;-1:-1:-1;;;;;37456:6:0;37383:87;;26129:104;;;;;;;;;;;;;:::i;42457:391::-;;;;;;:::i;:::-;;:::i;27807:288::-;;;;;;;;;;-1:-1:-1;27807:288:0;;;;;:::i;:::-;;:::i;41745:22::-;;;;;;;;;;-1:-1:-1;41745:22:0;;;;;;;;28878:355;;;;;;;;;;-1:-1:-1;28878:355:0;;;;;:::i;:::-;;:::i;44551:76::-;;;;;;;;;;-1:-1:-1;44551:76:0;;;;;:::i;:::-;;:::i;41963:288::-;;;;;;;;;;-1:-1:-1;41963:288:0;;;;;:::i;:::-;;:::i;44633:84::-;;;;;;;;;;-1:-1:-1;44633:84:0;;;;;:::i;:::-;;:::i;41858:44::-;;;;;;;;;;-1:-1:-1;41858:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;42257:194;;;;;;;;;;-1:-1:-1;42257:194:0;;;;;:::i;:::-;;:::i;28166:164::-;;;;;;;;;;-1:-1:-1;28166:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28287:25:0;;;28263:4;28287:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28166:164;38292:201;;;;;;;;;;-1:-1:-1;38292:201:0;;;;;:::i;:::-;;:::i;44343:95::-;;;;;;;;;;-1:-1:-1;44343:95:0;;;;;:::i;:::-;;:::i;42854:594::-;;;;;;:::i;:::-;;:::i;24333:372::-;24435:4;-1:-1:-1;;;;;;24472:40:0;;-1:-1:-1;;;24472:40:0;;:105;;-1:-1:-1;;;;;;;24529:48:0;;-1:-1:-1;;;24529:48:0;24472:105;:172;;;-1:-1:-1;;;;;;;24594:50:0;;-1:-1:-1;;;24594:50:0;24472:172;:225;;;-1:-1:-1;;;;;;;;;;13230:40:0;;;24661:36;24452:245;24333:372;-1:-1:-1;;24333:372:0:o;25960:100::-;26014:13;26047:5;26040:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25960:100;:::o;27521:214::-;27589:7;27617:16;27625:7;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;27617:16;27609:74;;;;-1:-1:-1;;;27609:74:0;;8300:2:1;27609:74:0;;;8282:21:1;8339:2;8319:18;;;8312:30;8378:34;8358:18;;;8351:62;-1:-1:-1;;;8429:18:1;;;8422:43;8482:19;;27609:74:0;;;;;;;;;-1:-1:-1;27703:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27703:24:0;;27521:214::o;27042:413::-;27115:13;27131:24;27147:7;27131:15;:24::i;:::-;27115:40;;27180:5;-1:-1:-1;;;;;27174:11:0;:2;-1:-1:-1;;;;;27174:11:0;;;27166:58;;;;-1:-1:-1;;;27166:58:0;;8714:2:1;27166:58:0;;;8696:21:1;8753:2;8733:18;;;8726:30;8792:34;8772:18;;;8765:62;-1:-1:-1;;;8843:18:1;;;8836:32;8885:19;;27166:58:0;8512:398:1;27166:58:0;20792:10;-1:-1:-1;;;;;27259:21:0;;;;:62;;-1:-1:-1;27284:37:0;27301:5;20792:10;28166:164;:::i;27284:37::-;27237:169;;;;-1:-1:-1;;;27237:169:0;;9117:2:1;27237:169:0;;;9099:21:1;9156:2;9136:18;;;9129:30;9195:34;9175:18;;;9168:62;9266:27;9246:18;;;9239:55;9311:19;;27237:169:0;8915:421:1;27237:169:0;27419:28;27428:2;27432:7;27441:5;27419:8;:28::i;:::-;27104:351;27042:413;;:::o;22770:104::-;22823:7;22865:1;22850:12;;:16;;;;:::i;:::-;22843:23;;22770:104;:::o;28397:162::-;28523:28;28533:4;28539:2;28543:7;28523:9;:28::i;23438:823::-;23527:7;23563:16;23573:5;23563:9;:16::i;:::-;23555:5;:24;23547:71;;;;-1:-1:-1;;;23547:71:0;;9805:2:1;23547:71:0;;;9787:21:1;9844:2;9824:18;;;9817:30;9883:34;9863:18;;;9856:62;-1:-1:-1;;;9934:18:1;;;9927:32;9976:19;;23547:71:0;9603:398:1;23547:71:0;23629:22;23654:13;:11;:13::i;:::-;23629:38;;23678:19;23712:25;23766:9;23761:426;23785:14;23781:1;:18;23761:426;;;23821:31;23855:14;;;:11;:14;;;;;;;;;23821:48;;;;;;;;;-1:-1:-1;;;;;23821:48:0;;;;;-1:-1:-1;;;23821:48:0;;;;;;;;;;;;23888:28;23884:103;;23957:14;;;-1:-1:-1;23884:103:0;24026:5;-1:-1:-1;;;;;24005:26:0;:17;-1:-1:-1;;;;;24005:26:0;;24001:175;;;24071:5;24056:11;:20;24052:77;;;-1:-1:-1;24108:1:0;-1:-1:-1;24101:8:0;;-1:-1:-1;;;24101:8:0;24052:77;24147:13;;;;:::i;:::-;;;;24001:175;-1:-1:-1;23801:3:0;;;;:::i;:::-;;;;23761:426;;;-1:-1:-1;24197:56:0;;-1:-1:-1;;;24197:56:0;;10348:2:1;24197:56:0;;;10330:21:1;10387:2;10367:18;;;10360:30;10426:34;10406:18;;;10399:62;-1:-1:-1;;;10477:18:1;;;10470:44;10531:19;;24197:56:0;10146:410:1;44444:101:0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44515:12:::1;:24:::0;44444:101::o;28630:177::-;28760:39;28777:4;28783:2;28787:7;28760:39;;;;;;;;;;;;:16;:39::i;22951:187::-;23018:7;23054:13;:11;:13::i;:::-;23046:5;:21;23038:69;;;;-1:-1:-1;;;23038:69:0;;11124:2:1;23038:69:0;;;11106:21:1;11163:2;11143:18;;;11136:30;11202:34;11182:18;;;11175:62;-1:-1:-1;;;11253:18:1;;;11246:33;11296:19;;23038:69:0;10922:399:1;23038:69:0;-1:-1:-1;23125:5:0;22951:187::o;44818:101::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44889:12:::1;:24:::0;44818:101::o;44243:94::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44313:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44243:94:::0;:::o;44925:101::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44996:12:::1;:24:::0;44925:101::o;25769:124::-;25833:7;25860:20;25872:7;25860:11;:20::i;:::-;:25;;25769:124;-1:-1:-1;;25769:124:0:o;44723:89::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44790:6:::1;:16:::0;44723:89::o;45032:114::-;37456:6;;45096:7;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;-1:-1:-1;45119:21:0::1;45032:114:::0;:::o;24769:221::-;24833:7;-1:-1:-1;;;;;24861:19:0;;24853:75;;;;-1:-1:-1;;;24853:75:0;;11528:2:1;24853:75:0;;;11510:21:1;11567:2;11547:18;;;11540:30;11606:34;11586:18;;;11579:62;-1:-1:-1;;;11657:18:1;;;11650:41;11708:19;;24853:75:0;11326:407:1;24853:75:0;-1:-1:-1;;;;;;24954:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24954:27:0;;24769:221::o;44052:85::-;44095:13;44124:7;44117:14;;;;;:::i;38034:103::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;38099:30:::1;38126:1;38099:18;:30::i;:::-;38034:103::o:0;43454:592::-;43588:5;;43597:1;43588:5;;;;:10;;43580:43;;;;-1:-1:-1;;;43580:43:0;;;;;;;:::i;:::-;43678:5;;43649:10;43638:22;;;;:10;:22;;;;;;43678:5;;;;;;;;43638:36;;43663:11;;43638:22;:36;:::i;:::-;:45;;;;43630:93;;;;-1:-1:-1;;;43630:93:0;;;;;;;:::i;:::-;43766:11;43751:26;;:12;;:26;;;;:::i;:::-;43738:9;:39;;43730:70;;;;-1:-1:-1;;;43730:70:0;;;;;;;:::i;:::-;43838:28;;-1:-1:-1;;43855:10:0;13369:2:1;13365:15;13361:53;43838:28:0;;;13349:66:1;43813:12:0;;13431::1;;43838:28:0;;;;;;;;;;;;43828:39;;;;;;43813:54;;43882:52;43901:12;;43882:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;43915:12:0;;;-1:-1:-1;43929:4:0;;-1:-1:-1;43882:18:0;:52::i;:::-;43874:79;;;;-1:-1:-1;;;43874:79:0;;13656:2:1;43874:79:0;;;13638:21:1;13695:2;13675:18;;;13668:30;-1:-1:-1;;;13714:18:1;;;13707:44;13768:18;;43874:79:0;13454:338:1;43874:79:0;43973:10;43962:22;;;;:10;:22;;;;;:37;;43988:11;;43962:22;:37;;43988:11;;43962:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;44006:34;44016:10;44028:11;44006:34;;:9;:34::i;:::-;43537:509;43454:592;;;:::o;45152:904::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;45222:21:::1;45262:11:::0;45254:43:::1;;;::::0;-1:-1:-1;;;45254:43:0;;13999:2:1;45254:43:0::1;::::0;::::1;13981:21:1::0;14038:2;14018:18;;;14011:30;-1:-1:-1;;;14057:18:1;;;14050:49;14116:18;;45254:43:0::1;13797:343:1::0;45254:43:0::1;45318:327;::::0;;::::1;::::0;;::::1;::::0;;45363:42:::1;45318:327:::0;;45420:42:::1;45318:327;::::0;;::::1;::::0;;;;45477:42:::1;45318:327:::0;;;;45534:42:::1;45318:327:::0;;;;;;;;45591:42:::1;45318:327:::0;;;;;;;;45658:165;;;;::::1;::::0;;45706:2:::1;45658:165:::0;;45731:2:::1;45658:165:::0;;::::1;::::0;;;;45756:3:::1;45658:165:::0;;;;;;;;;;;;45808:3:::1;45658:165:::0;;;;;;;45318:327;:27:::1;45836:215;45859:16;45855:1;:20;;;45836:215;;;45897:14;45919:20;45938:1;45919:16;:20;:::i;:::-;45914:1;:25;;;:78;;45988:4;45976:6;45983:1;45976:9;;;;;;;;;:::i;:::-;;;;::::0;45966:19:::1;::::0;::::1;;:7:::0;:19:::1;:::i;:::-;:26;;;;:::i;:::-;45914:78;;;45942:21;45914:78;45897:95;;46007:32;46018:9;46028:1;46018:12;;;;;;;;;:::i;:::-;;;;;46032:6;46007:10;:32::i;:::-;-1:-1:-1::0;45877:3:0;::::1;::::0;::::1;:::i;:::-;;;;45836:215;;26129:104:::0;26185:13;26218:7;26211:14;;;;;:::i;42457:391::-;42521:5;;42530:1;42521:5;;;;:10;;42513:43;;;;-1:-1:-1;;;42513:43:0;;;;;;;:::i;:::-;42599:6;;42587:8;42571:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:34;;42563:88;;;;-1:-1:-1;;;42563:88:0;;15075:2:1;42563:88:0;;;15057:21:1;15114:2;15094:18;;;15087:30;15153:34;15133:18;;;15126:62;-1:-1:-1;;;15204:18:1;;;15197:39;15253:19;;42563:88:0;14873:405:1;42563:88:0;42703:6;;42677:10;42666:22;;;;:10;:22;;;;;;42703:6;;;;;;;;42666:33;;42691:8;;42666:22;:33;:::i;:::-;:43;;42658:73;;;;-1:-1:-1;;;42658:73:0;;15485:2:1;42658:73:0;;;15467:21:1;15524:2;15504:18;;;15497:30;-1:-1:-1;;;15543:18:1;;;15536:47;15600:18;;42658:73:0;15283:341:1;42658:73:0;42771:8;42759:9;;:20;;;;:::i;:::-;42746:9;:33;;42738:64;;;;-1:-1:-1;;;42738:64:0;;;;;;;:::i;:::-;42811:31;42821:10;42833:8;42811:9;:31::i;:::-;42457:391;:::o;27807:288::-;-1:-1:-1;;;;;27902:24:0;;20792:10;27902:24;;27894:63;;;;-1:-1:-1;;;27894:63:0;;15831:2:1;27894:63:0;;;15813:21:1;15870:2;15850:18;;;15843:30;15909:28;15889:18;;;15882:56;15955:18;;27894:63:0;15629:350:1;27894:63:0;20792:10;27970:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27970:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27970:53:0;;;;;;;;;;28039:48;;722:41:1;;;27970:42:0;;20792:10;28039:48;;695:18:1;28039:48:0;;;;;;;27807:288;;:::o;28878:355::-;29037:28;29047:4;29053:2;29057:7;29037:9;:28::i;:::-;29098:48;29121:4;29127:2;29131:7;29140:5;29098:22;:48::i;:::-;29076:149;;;;-1:-1:-1;;;29076:149:0;;;;;;;:::i;44551:76::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44607:5:::1;:14:::0;;-1:-1:-1;;44607:14:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;44551:76::o;41963:288::-;42036:13;42066:16;42074:7;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;42066:16;42058:76;;;;-1:-1:-1;;;42058:76:0;;16606:2:1;42058:76:0;;;16588:21:1;16645:2;16625:18;;;16618:30;16684:34;16664:18;;;16657:62;-1:-1:-1;;;16735:18:1;;;16728:45;16790:19;;42058:76:0;16404:411:1;42058:76:0;42174:1;42156:7;42150:21;;;;;:::i;:::-;;;:25;:95;;;;;;;;;;;;;;;;;42202:7;42211:18;:7;:16;:18::i;:::-;42185:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42143:102;41963:288;-1:-1:-1;;41963:288:0:o;44633:84::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44695:6:::1;:16:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;44695:16:0;;::::1;::::0;;;::::1;::::0;;44633:84::o;42257:194::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;42359:6:::1;42354:92;42369:19:::0;;::::1;42354:92;;;42404:34;42414:10;;42425:1;42414:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;42429:8;42404:9;:34::i;:::-;42390:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42354:92;;38292:201:::0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38381:22:0;::::1;38373:73;;;::::0;-1:-1:-1;;;38373:73:0;;18762:2:1;38373:73:0::1;::::0;::::1;18744:21:1::0;18801:2;18781:18;;;18774:30;18840:34;18820:18;;;18813:62;-1:-1:-1;;;18891:18:1;;;18884:36;18937:19;;38373:73:0::1;18560:402:1::0;38373:73:0::1;38457:28;38476:8;38457:18;:28::i;44343:95::-:0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44411:9:::1;:21:::0;44343:95::o;42854:594::-;42990:5;;;;;:10;42982:43;;;;-1:-1:-1;;;42982:43:0;;;;;;;:::i;:::-;43080:5;;43051:10;43040:22;;;;:10;:22;;;;;;43080:5;;;;;;;;43040:36;;43065:11;;43040:22;:36;:::i;:::-;:45;;;;43032:93;;;;-1:-1:-1;;;43032:93:0;;;;;;;:::i;:::-;43168:11;43153:26;;:12;;:26;;;;:::i;:::-;43140:9;:39;;43132:70;;;;-1:-1:-1;;;43132:70:0;;;;;;;:::i;:::-;43240:28;;-1:-1:-1;;43257:10:0;13369:2:1;13365:15;13361:53;43240:28:0;;;13349:66:1;43215:12:0;;13431::1;;43240:28:0;;;;;;;;;;;;43230:39;;;;;;43215:54;;43284:52;43303:12;;43284:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;43317:12:0;;;-1:-1:-1;43331:4:0;;-1:-1:-1;43284:18:0;:52::i;33532:196::-;33647:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33647:29:0;-1:-1:-1;;;;;33647:29:0;;;;;;;;;33692:28;;33647:24;;33692:28;;;;;;;33532:196;;;:::o;31631:1783::-;31746:35;31784:20;31796:7;31784:11;:20::i;:::-;31859:18;;31746:58;;-1:-1:-1;31817:22:0;;-1:-1:-1;;;;;31843:34:0;20792:10;-1:-1:-1;;;;;31843:34:0;;:87;;;-1:-1:-1;20792:10:0;31894:20;31906:7;31894:11;:20::i;:::-;-1:-1:-1;;;;;31894:36:0;;31843:87;:154;;;-1:-1:-1;31964:18:0;;31947:50;;20792:10;28166:164;:::i;31947:50::-;31817:181;;32019:17;32011:80;;;;-1:-1:-1;;;32011:80:0;;19169:2:1;32011:80:0;;;19151:21:1;19208:2;19188:18;;;19181:30;19247:34;19227:18;;;19220:62;-1:-1:-1;;;19298:18:1;;;19291:48;19356:19;;32011:80:0;18967:414:1;32011:80:0;32134:4;-1:-1:-1;;;;;32112:26:0;:13;:18;;;-1:-1:-1;;;;;32112:26:0;;32104:77;;;;-1:-1:-1;;;32104:77:0;;19588:2:1;32104:77:0;;;19570:21:1;19627:2;19607:18;;;19600:30;19666:34;19646:18;;;19639:62;-1:-1:-1;;;19717:18:1;;;19710:36;19763:19;;32104:77:0;19386:402:1;32104:77:0;-1:-1:-1;;;;;32200:16:0;;32192:66;;;;-1:-1:-1;;;32192:66:0;;19995:2:1;32192:66:0;;;19977:21:1;20034:2;20014:18;;;20007:30;20073:34;20053:18;;;20046:62;-1:-1:-1;;;20124:18:1;;;20117:35;20169:19;;32192:66:0;19793:401:1;32192:66:0;32379:49;32396:1;32400:7;32409:13;:18;;;32379:8;:49::i;:::-;-1:-1:-1;;;;;32633:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;32633:31:0;;;-1:-1:-1;;;;;32633:31:0;;;-1:-1:-1;;32633:31:0;;;;;;;32679:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;32679:29:0;;;;;;;;;;;;;32755:43;;;;;;;;;;32781:15;32755:43;;;;;;;;;;32732:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;32732:66:0;;;;;;;-1:-1:-1;;;32732:66:0;;;;;;;;;;;;32633:18;33060:11;;32732:20;;33060:11;:::i;:::-;33127:1;33086:24;;;:11;:24;;;;;:29;33038:33;;-1:-1:-1;;;;;;33086:29:0;33082:227;;33150:20;33158:11;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;33150:20;33146:152;;;33218:64;;;;;;;;33233:18;;-1:-1:-1;;;;;33218:64:0;;;;;;33253:28;;;;33218:64;;;;;;;;;;-1:-1:-1;33191:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;33191:91:0;-1:-1:-1;;;;;;33191:91:0;;;;;;;;;;;;33146:152;33345:7;33341:2;-1:-1:-1;;;;;33326:27:0;33335:4;-1:-1:-1;;;;;33326:27:0;;;;;;;;;;;33364:42;31735:1679;;;31631:1783;;;:::o;25235:472::-;-1:-1:-1;;;;;;;;;;;;;;;;;25338:16:0;25346:7;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;25338:16;25330:71;;;;-1:-1:-1;;;25330:71:0;;20401:2:1;25330:71:0;;;20383:21:1;20440:2;20420:18;;;20413:30;20479:34;20459:18;;;20452:62;-1:-1:-1;;;20530:18:1;;;20523:40;20580:19;;25330:71:0;20199:406:1;25330:71:0;25434:7;25414:216;25468:31;25502:17;;;:11;:17;;;;;;;;;25468:51;;;;;;;;;-1:-1:-1;;;;;25468:51:0;;;;;-1:-1:-1;;;25468:51:0;;;;;;;;;;;;25538:28;25534:85;;25594:9;25235:472;-1:-1:-1;;;25235:472:0:o;25534:85::-;-1:-1:-1;25445:6:0;;;;:::i;:::-;;;;25414:216;;38653:191;38746:6;;;-1:-1:-1;;;;;38763:17:0;;;-1:-1:-1;;;;;;38763:17:0;;;;;;;38796:40;;38746:6;;;38763:17;38746:6;;38796:40;;38727:16;;38796:40;38716:128;38653:191;:::o;39910:190::-;40035:4;40088;40059:25;40072:5;40079:4;40059:12;:25::i;:::-;:33;;39910:190;-1:-1:-1;;;;39910:190:0:o;29607:104::-;29676:27;29686:2;29690:8;29676:27;;;;;;;;;;;;:9;:27::i;46099:189::-;46174:12;46192:8;-1:-1:-1;;;;;46192:13:0;46214:7;46192:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46173:54;;;46246:7;46238:44;;;;-1:-1:-1;;;46238:44:0;;21579:2:1;46238:44:0;;;21561:21:1;21618:2;21598:18;;;21591:30;21657:26;21637:18;;;21630:54;21701:18;;46238:44:0;21377:348:1;34293:804:0;34448:4;-1:-1:-1;;;;;34469:13:0;;3300:20;3348:8;34465:625;;34505:72;;-1:-1:-1;;;34505:72:0;;-1:-1:-1;;;;;34505:36:0;;;;;:72;;20792:10;;34556:4;;34562:7;;34571:5;;34505:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34505:72:0;;;;;;;;-1:-1:-1;;34505:72:0;;;;;;;;;;;;:::i;:::-;;;34501:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34751:13:0;;34747:273;;34794:61;;-1:-1:-1;;;34794:61:0;;;;;;;:::i;34747:273::-;34970:6;34964:13;34955:6;34951:2;34947:15;34940:38;34501:534;-1:-1:-1;;;;;;34628:55:0;-1:-1:-1;;;34628:55:0;;-1:-1:-1;34621:62:0;;34465:625;-1:-1:-1;35074:4:0;34465:625;34293:804;;;;;;:::o;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;40461:675;40544:7;40587:4;40544:7;40602:497;40626:5;:12;40622:1;:16;40602:497;;;40660:20;40683:5;40689:1;40683:8;;;;;;;;:::i;:::-;;;;;;;40660:31;;40726:12;40710;:28;40706:382;;41212:13;41262:15;;;41298:4;41291:15;;;41345:4;41329:21;;40838:57;;40706:382;;;41212:13;41262:15;;;41298:4;41291:15;;;41345:4;41329:21;;41015:57;;40706:382;-1:-1:-1;40640:3:0;;;;:::i;:::-;;;;40602:497;;;-1:-1:-1;41116:12:0;40461:675;-1:-1:-1;;;40461:675:0:o;29988:1389::-;30111:20;30134:12;-1:-1:-1;;;;;30165:16:0;;30157:62;;;;-1:-1:-1;;;30157:62:0;;22808:2:1;30157:62:0;;;22790:21:1;22847:2;22827:18;;;22820:30;22886:34;22866:18;;;22859:62;-1:-1:-1;;;22937:18:1;;;22930:31;22978:19;;30157:62:0;22606:397:1;30157:62:0;30364:21;30372:12;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;30364:21;30363:22;30355:64;;;;-1:-1:-1;;;30355:64:0;;23210:2:1;30355:64:0;;;23192:21:1;23249:2;23229:18;;;23222:30;23288:31;23268:18;;;23261:59;23337:18;;30355:64:0;23008:353:1;30355:64:0;30449:1;30438:8;:12;30430:60;;;;-1:-1:-1;;;30430:60:0;;23568:2:1;30430:60:0;;;23550:21:1;23607:2;23587:18;;;23580:30;23646:34;23626:18;;;23619:62;-1:-1:-1;;;23697:18:1;;;23690:33;23740:19;;30430:60:0;23366:399:1;30430:60:0;-1:-1:-1;;;;;30610:16:0;;30577:30;30610:16;;;:12;:16;;;;;;;;;30577:49;;;;;;;;;-1:-1:-1;;;;;30577:49:0;;;;;-1:-1:-1;;;30577:49:0;;;;;;;;;;;30656:135;;;;;;;;30682:19;;30577:49;;30656:135;;;30682:39;;30712:8;;30682:39;:::i;:::-;-1:-1:-1;;;;;30656:135:0;;;;;30771:8;30736:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;30656:135:0;;;;;;-1:-1:-1;;;;;30637:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;30637:154:0;;;;;;;;;;;;30830:43;;;;;;;;;;;30856:15;30830:43;;;;;;;;30802:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;30802:71:0;-1:-1:-1;;;;;;30802:71:0;;;;;;;;;;;;;;;;;;30814:12;;30934:325;30958:8;30954:1;:12;30934:325;;;30993:38;;31018:12;;-1:-1:-1;;;;;30993:38:0;;;31010:1;;30993:38;;31010:1;;30993:38;31072:59;31103:1;31107:2;31111:12;31125:5;31072:22;:59::i;:::-;31046:172;;;;-1:-1:-1;;;31046:172:0;;;;;;;:::i;:::-;31233:14;;;;:::i;:::-;;;;30968:3;;;;;:::i;:::-;;;;30934:325;;;-1:-1:-1;31271:12:0;:27;;;31309:60;43454:592;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;:::-;566:5;332:245;-1:-1:-1;;;332:245:1:o;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:269::-;1090:3;1128:5;1122:12;1155:6;1150:3;1143:19;1171:63;1227:6;1220:4;1215:3;1211:14;1204:4;1197:5;1193:16;1171:63;:::i;:::-;1288:2;1267:15;-1:-1:-1;;1263:29:1;1254:39;;;;1295:4;1250:50;;1037:269;-1:-1:-1;;1037:269:1:o;1311:231::-;1460:2;1449:9;1442:21;1423:4;1480:56;1532:2;1521:9;1517:18;1509:6;1480:56;:::i;1547:180::-;1606:6;1659:2;1647:9;1638:7;1634:23;1630:32;1627:52;;;1675:1;1672;1665:12;1627:52;-1:-1:-1;1698:23:1;;1547:180;-1:-1:-1;1547:180:1:o;1940:173::-;2008:20;;-1:-1:-1;;;;;2057:31:1;;2047:42;;2037:70;;2103:1;2100;2093:12;2037:70;1940:173;;;:::o;2118:254::-;2186:6;2194;2247:2;2235:9;2226:7;2222:23;2218:32;2215:52;;;2263:1;2260;2253:12;2215:52;2286:29;2305:9;2286:29;:::i;:::-;2276:39;2362:2;2347:18;;;;2334:32;;-1:-1:-1;;;2118:254:1:o;2559:328::-;2636:6;2644;2652;2705:2;2693:9;2684:7;2680:23;2676:32;2673:52;;;2721:1;2718;2711:12;2673:52;2744:29;2763:9;2744:29;:::i;:::-;2734:39;;2792:38;2826:2;2815:9;2811:18;2792:38;:::i;:::-;2782:48;;2877:2;2866:9;2862:18;2849:32;2839:42;;2559:328;;;;;:::o;3077:127::-;3138:10;3133:3;3129:20;3126:1;3119:31;3169:4;3166:1;3159:15;3193:4;3190:1;3183:15;3209:632;3274:5;3304:18;3345:2;3337:6;3334:14;3331:40;;;3351:18;;:::i;:::-;3426:2;3420:9;3394:2;3480:15;;-1:-1:-1;;3476:24:1;;;3502:2;3472:33;3468:42;3456:55;;;3526:18;;;3546:22;;;3523:46;3520:72;;;3572:18;;:::i;:::-;3612:10;3608:2;3601:22;3641:6;3632:15;;3671:6;3663;3656:22;3711:3;3702:6;3697:3;3693:16;3690:25;3687:45;;;3728:1;3725;3718:12;3687:45;3778:6;3773:3;3766:4;3758:6;3754:17;3741:44;3833:1;3826:4;3817:6;3809;3805:19;3801:30;3794:41;;;;3209:632;;;;;:::o;3846:451::-;3915:6;3968:2;3956:9;3947:7;3943:23;3939:32;3936:52;;;3984:1;3981;3974:12;3936:52;4024:9;4011:23;4057:18;4049:6;4046:30;4043:50;;;4089:1;4086;4079:12;4043:50;4112:22;;4165:4;4157:13;;4153:27;-1:-1:-1;4143:55:1;;4194:1;4191;4184:12;4143:55;4217:74;4283:7;4278:2;4265:16;4260:2;4256;4252:11;4217:74;:::i;4302:186::-;4361:6;4414:2;4402:9;4393:7;4389:23;4385:32;4382:52;;;4430:1;4427;4420:12;4382:52;4453:29;4472:9;4453:29;:::i;4682:156::-;4748:20;;4808:4;4797:16;;4787:27;;4777:55;;4828:1;4825;4818:12;4843:367;4906:8;4916:6;4970:3;4963:4;4955:6;4951:17;4947:27;4937:55;;4988:1;4985;4978:12;4937:55;-1:-1:-1;5011:20:1;;5054:18;5043:30;;5040:50;;;5086:1;5083;5076:12;5040:50;5123:4;5115:6;5111:17;5099:29;;5183:3;5176:4;5166:6;5163:1;5159:14;5151:6;5147:27;5143:38;5140:47;5137:67;;;5200:1;5197;5190:12;5137:67;4843:367;;;;;:::o;5215:507::-;5308:6;5316;5324;5377:2;5365:9;5356:7;5352:23;5348:32;5345:52;;;5393:1;5390;5383:12;5345:52;5416:27;5433:9;5416:27;:::i;:::-;5406:37;;5494:2;5483:9;5479:18;5466:32;5521:18;5513:6;5510:30;5507:50;;;5553:1;5550;5543:12;5507:50;5592:70;5654:7;5645:6;5634:9;5630:22;5592:70;:::i;:::-;5215:507;;5681:8;;-1:-1:-1;5566:96:1;;-1:-1:-1;;;;5215:507:1:o;5727:347::-;5792:6;5800;5853:2;5841:9;5832:7;5828:23;5824:32;5821:52;;;5869:1;5866;5859:12;5821:52;5892:29;5911:9;5892:29;:::i;:::-;5882:39;;5971:2;5960:9;5956:18;5943:32;6018:5;6011:13;6004:21;5997:5;5994:32;5984:60;;6040:1;6037;6030:12;5984:60;6063:5;6053:15;;;5727:347;;;;;:::o;6079:667::-;6174:6;6182;6190;6198;6251:3;6239:9;6230:7;6226:23;6222:33;6219:53;;;6268:1;6265;6258:12;6219:53;6291:29;6310:9;6291:29;:::i;:::-;6281:39;;6339:38;6373:2;6362:9;6358:18;6339:38;:::i;:::-;6329:48;;6424:2;6413:9;6409:18;6396:32;6386:42;;6479:2;6468:9;6464:18;6451:32;6506:18;6498:6;6495:30;6492:50;;;6538:1;6535;6528:12;6492:50;6561:22;;6614:4;6606:13;;6602:27;-1:-1:-1;6592:55:1;;6643:1;6640;6633:12;6592:55;6666:74;6732:7;6727:2;6714:16;6709:2;6705;6701:11;6666:74;:::i;:::-;6656:84;;;6079:667;;;;;;;:::o;6751:182::-;6808:6;6861:2;6849:9;6840:7;6836:23;6832:32;6829:52;;;6877:1;6874;6867:12;6829:52;6900:27;6917:9;6900:27;:::i;6938:505::-;7033:6;7041;7049;7102:2;7090:9;7081:7;7077:23;7073:32;7070:52;;;7118:1;7115;7108:12;7070:52;7158:9;7145:23;7191:18;7183:6;7180:30;7177:50;;;7223:1;7220;7213:12;7177:50;7262:70;7324:7;7315:6;7304:9;7300:22;7262:70;:::i;:::-;7351:8;;7236:96;;-1:-1:-1;7433:2:1;7418:18;;;;7405:32;;6938:505;-1:-1:-1;;;;6938:505:1:o;7448:260::-;7516:6;7524;7577:2;7565:9;7556:7;7552:23;7548:32;7545:52;;;7593:1;7590;7583:12;7545:52;7616:29;7635:9;7616:29;:::i;:::-;7606:39;;7664:38;7698:2;7687:9;7683:18;7664:38;:::i;:::-;7654:48;;7448:260;;;;;:::o;7713:380::-;7792:1;7788:12;;;;7835;;;7856:61;;7910:4;7902:6;7898:17;7888:27;;7856:61;7963:2;7955:6;7952:14;7932:18;7929:38;7926:161;;;8009:10;8004:3;8000:20;7997:1;7990:31;8044:4;8041:1;8034:15;8072:4;8069:1;8062:15;7926:161;;7713:380;;;:::o;9341:127::-;9402:10;9397:3;9393:20;9390:1;9383:31;9433:4;9430:1;9423:15;9457:4;9454:1;9447:15;9473:125;9513:4;9541:1;9538;9535:8;9532:34;;;9546:18;;:::i;:::-;-1:-1:-1;9583:9:1;;9473:125::o;10006:135::-;10045:3;-1:-1:-1;;10066:17:1;;10063:43;;;10086:18;;:::i;:::-;-1:-1:-1;10133:1:1;10122:13;;10006:135::o;10561:356::-;10763:2;10745:21;;;10782:18;;;10775:30;10841:34;10836:2;10821:18;;10814:62;10908:2;10893:18;;10561:356::o;11738:344::-;11940:2;11922:21;;;11979:2;11959:18;;;11952:30;-1:-1:-1;;;12013:2:1;11998:18;;11991:50;12073:2;12058:18;;11738:344::o;12087:204::-;12125:3;12161:4;12158:1;12154:12;12193:4;12190:1;12186:12;12228:3;12222:4;12218:14;12213:3;12210:23;12207:49;;;12236:18;;:::i;:::-;12272:13;;12087:204;-1:-1:-1;;;12087:204:1:o;12296:399::-;12498:2;12480:21;;;12537:2;12517:18;;;12510:30;12576:34;12571:2;12556:18;;12549:62;-1:-1:-1;;;12642:2:1;12627:18;;12620:33;12685:3;12670:19;;12296:399::o;12700:168::-;12740:7;12806:1;12802;12798:6;12794:14;12791:1;12788:21;12783:1;12776:9;12769:17;12765:45;12762:71;;;12813:18;;:::i;:::-;-1:-1:-1;12853:9:1;;12700:168::o;12873:342::-;13075:2;13057:21;;;13114:2;13094:18;;;13087:30;-1:-1:-1;;;13148:2:1;13133:18;;13126:48;13206:2;13191:18;;12873:342::o;14145:127::-;14206:10;14201:3;14197:20;14194:1;14187:31;14237:4;14234:1;14227:15;14261:4;14258:1;14251:15;14277:127;14338:10;14333:3;14329:20;14326:1;14319:31;14369:4;14366:1;14359:15;14393:4;14390:1;14383:15;14409:120;14449:1;14475;14465:35;;14480:18;;:::i;:::-;-1:-1:-1;14514:9:1;;14409:120::o;14534:201::-;14572:3;14600:10;14645:2;14638:5;14634:14;14672:2;14663:7;14660:15;14657:41;;;14678:18;;:::i;:::-;14727:1;14714:15;;14534:201;-1:-1:-1;;;14534:201:1:o;14740:128::-;14780:3;14811:1;14807:6;14804:1;14801:13;14798:39;;;14817:18;;:::i;:::-;-1:-1:-1;14853:9:1;;14740:128::o;15984:415::-;16186:2;16168:21;;;16225:2;16205:18;;;16198:30;16264:34;16259:2;16244:18;;16237:62;-1:-1:-1;;;16330:2:1;16315:18;;16308:49;16389:3;16374:19;;15984:415::o;16946:185::-;16988:3;17026:5;17020:12;17041:52;17086:6;17081:3;17074:4;17067:5;17063:16;17041:52;:::i;:::-;17109:16;;;;;16946:185;-1:-1:-1;;16946:185:1:o;17254:1301::-;17531:3;17560:1;17593:6;17587:13;17623:3;17645:1;17673:9;17669:2;17665:18;17655:28;;17733:2;17722:9;17718:18;17755;17745:61;;17799:4;17791:6;17787:17;17777:27;;17745:61;17825:2;17873;17865:6;17862:14;17842:18;17839:38;17836:165;;;-1:-1:-1;;;17900:33:1;;17956:4;17953:1;17946:15;17986:4;17907:3;17974:17;17836:165;18017:18;18044:104;;;;18162:1;18157:320;;;;18010:467;;18044:104;-1:-1:-1;;18077:24:1;;18065:37;;18122:16;;;;-1:-1:-1;18044:104:1;;18157:320;16893:1;16886:14;;;16930:4;16917:18;;18252:1;18266:165;18280:6;18277:1;18274:13;18266:165;;;18358:14;;18345:11;;;18338:35;18401:16;;;;18295:10;;18266:165;;;18270:3;;18460:6;18455:3;18451:16;18444:23;;18010:467;;;;;;;18493:56;18518:30;18544:3;18536:6;18518:30;:::i;:::-;-1:-1:-1;;;17196:20:1;;17241:1;17232:11;;17136:113;18493:56;18486:63;17254:1301;-1:-1:-1;;;;;17254:1301:1:o;20610:136::-;20649:3;20677:5;20667:39;;20686:18;;:::i;:::-;-1:-1:-1;;;20722:18:1;;20610:136::o;21730:500::-;-1:-1:-1;;;;;21999:15:1;;;21981:34;;22051:15;;22046:2;22031:18;;22024:43;22098:2;22083:18;;22076:34;;;22146:3;22141:2;22126:18;;22119:31;;;21924:4;;22167:57;;22204:19;;22196:6;22167:57;:::i;:::-;22159:65;21730:500;-1:-1:-1;;;;;;21730:500:1:o;22235:249::-;22304:6;22357:2;22345:9;22336:7;22332:23;22328:32;22325:52;;;22373:1;22370;22363:12;22325:52;22405:9;22399:16;22424:30;22448:5;22424:30;:::i;22489:112::-;22521:1;22547;22537:35;;22552:18;;:::i;:::-;-1:-1:-1;22586:9:1;;22489:112::o;23770:253::-;23810:3;-1:-1:-1;;;;;23899:2:1;23896:1;23892:10;23929:2;23926:1;23922:10;23960:3;23956:2;23952:12;23947:3;23944:21;23941:47;;;23968:18;;:::i;:::-;24004:13;;23770:253;-1:-1:-1;;;;23770:253:1:o

Swarm Source

ipfs://747a80614149ee20a9d826592243fcd210a6e530b0399e826f8504ab5e2e0bda
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.