ETH Price: $3,454.05 (-0.01%)
Gas: 5 Gwei

Token

VKNGZ (VKNGZ)
 

Overview

Max Total Supply

1,000 VKNGZ

Holders

611

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
txlink.eth
Balance
1 VKNGZ
0x49f2f1fc364586903cf20645e8dba1171936a8dd
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:
VKNGZ

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-07-04
*/

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



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 VKNGZ is ERC721A, Ownable {
  using Strings for uint256;
  uint256 public presalePrice = 0 ether;
  uint256 public mintPrice = 0.007 ether;
  uint256 public supply = 778;
  string private baseURI = "ipfs://QmUMWzwpCLZn7EYqRDRKAZ8LCbJWRNm7i7Z5cC1kSANhov/";
  bytes32 public wlMerkleRoot;
  uint8 public phase = 1;
  uint8 public maxBuy = 3;
  uint8 public wlMax = 1;

  mapping(address => uint8)  public walletBuys;

  constructor() ERC721A("VKNGZ", "VKNGZ") {
  }

  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 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 wlReserve(uint256 _supply) external onlyOwner {
      supply = _supply;
  }

  function changeWLRootHash(bytes32 _rootHash) external onlyOwner {
    wlMerkleRoot = _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[2] memory addresses = [
            0xf525E197105fEb63fA44FF24b87f284718eE3a9f,
            0xf525E197105fEb63fA44FF24b87f284718eE3a9f 
        ];

        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":"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":"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":"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"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"wlReserve","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60006008556618de76816d800060095561030a600a5560e0604052603660808181529062002bdc60a03980516200003f91600b9160209091019062000120565b50600d805462ffffff1916620103011790553480156200005e57600080fd5b506040805180820182526005808252642b25a723ad60d91b6020808401828152855180870190965292855284015281519192916200009f9160019162000120565b508051620000b590600290602084019062000120565b5050600160005550620000c833620000ce565b62000203565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012e90620001c6565b90600052602060002090601f0160209004810192826200015257600085556200019d565b82601f106200016d57805160ff19168380011785556200019d565b828001600101855582156200019d579182015b828111156200019d57825182559160200191906001019062000180565b50620001ab929150620001af565b5090565b5b80821115620001ab5760008155600101620001b0565b600181811c90821680620001db57607f821691505b60208210811415620001fd57634e487b7160e01b600052602260045260246000fd5b50919050565b6129c980620002136000396000f3fe60806040526004361061023a5760003560e01c806370db69d61161012e578063b88d4fde116100ab578063dfcf15b01161006f578063dfcf15b014610680578063e985e9c5146106a0578063f2fde38b146106e9578063f4a0a52814610709578063fc0ab6e21461072957600080fd5b8063b88d4fde146105d0578063c03afb59146105f0578063c87b56dd14610610578063dbdf2dc014610630578063dea96c981461065057600080fd5b80638da5cb5b116100f25780638da5cb5b1461055057806395d89b411461056e578063a0712d6814610583578063a22cb46514610596578063b1c9fe6e146105b657600080fd5b806370db69d6146104c0578063714c5398146104f1578063715018a614610506578063853828b61461051b5780638b9defa11461053057600080fd5b806340e87b48116101bc57806355f804b31161018057806355f804b3146104355780636352211e146104555780636817c76c146104755780636f9fb98a1461048b57806370a08231146104a057600080fd5b806340e87b481461039f57806342842e0e146103bf5780634f6ccce7146103df57806353f6fa79146103ff57806354c06aee1461041f57600080fd5b8063095ea7b311610203578063095ea7b31461030857806318160ddd1461032a57806323b872dd1461033f5780632f745c591461035f5780633549345e1461037f57600080fd5b80620e7fa81461023f57806301ffc9a714610268578063047fc9aa1461029857806306fdde03146102ae578063081812fc146102d0575b600080fd5b34801561024b57600080fd5b5061025560085481565b6040519081526020015b60405180910390f35b34801561027457600080fd5b50610288610283366004612225565b61073c565b604051901515815260200161025f565b3480156102a457600080fd5b50610255600a5481565b3480156102ba57600080fd5b506102c36107a9565b60405161025f91906122a1565b3480156102dc57600080fd5b506102f06102eb3660046122b4565b61083b565b6040516001600160a01b03909116815260200161025f565b34801561031457600080fd5b506103286103233660046122e9565b6108cb565b005b34801561033657600080fd5b506102556109e3565b34801561034b57600080fd5b5061032861035a366004612313565b6109f9565b34801561036b57600080fd5b5061025561037a3660046122e9565b610a04565b34801561038b57600080fd5b5061032861039a3660046122b4565b610b7c565b3480156103ab57600080fd5b506103286103ba3660046122b4565b610bab565b3480156103cb57600080fd5b506103286103da366004612313565b610bda565b3480156103eb57600080fd5b506102556103fa3660046122b4565b610bf5565b34801561040b57600080fd5b5061032861041a3660046122b4565b610c5d565b34801561042b57600080fd5b50610255600c5481565b34801561044157600080fd5b506103286104503660046123db565b610c8c565b34801561046157600080fd5b506102f06104703660046122b4565b610ccd565b34801561048157600080fd5b5061025560095481565b34801561049757600080fd5b50610255610cdf565b3480156104ac57600080fd5b506102556104bb366004612424565b610d11565b3480156104cc57600080fd5b50600d546104df90610100900460ff1681565b60405160ff909116815260200161025f565b3480156104fd57600080fd5b506102c3610da2565b34801561051257600080fd5b50610328610db1565b34801561052757600080fd5b50610328610de7565b34801561053c57600080fd5b50600d546104df9062010000900460ff1681565b34801561055c57600080fd5b506007546001600160a01b03166102f0565b34801561057a57600080fd5b506102c3610f5b565b6103286105913660046122b4565b610f6a565b3480156105a257600080fd5b506103286105b136600461243f565b6110fa565b3480156105c257600080fd5b50600d546104df9060ff1681565b3480156105dc57600080fd5b506103286105eb36600461247b565b6111bf565b3480156105fc57600080fd5b5061032861060b366004612508565b6111f2565b34801561061c57600080fd5b506102c361062b3660046122b4565b611232565b34801561063c57600080fd5b5061032861064b366004612508565b6112ff565b34801561065c57600080fd5b506104df61066b366004612424565b600e6020526000908152604090205460ff1681565b34801561068c57600080fd5b5061032861069b36600461256f565b611345565b3480156106ac57600080fd5b506102886106bb3660046125bb565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106f557600080fd5b50610328610704366004612424565b6113bc565b34801561071557600080fd5b506103286107243660046122b4565b611454565b6103286107373660046125ee565b611483565b60006001600160e01b031982166380ac58cd60e01b148061076d57506001600160e01b03198216635b5e139f60e01b145b8061078857506001600160e01b0319821663780e9d6360e01b145b806107a357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107b890612641565b80601f01602080910402602001604051908101604052809291908181526020018280546107e490612641565b80156108315780601f1061080657610100808354040283529160200191610831565b820191906000526020600020905b81548152906001019060200180831161081457829003601f168201915b5050505050905090565b6000610848826000541190565b6108af5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108d682610ccd565b9050806001600160a01b0316836001600160a01b031614156109455760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108a6565b336001600160a01b0382161480610961575061096181336106bb565b6109d35760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108a6565b6109de8383836116aa565b505050565b600060016000546109f49190612692565b905090565b6109de838383611706565b6000610a0f83610d11565b8210610a685760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108a6565b6000610a726109e3565b905060008060005b83811015610b1c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610acd57805192505b876001600160a01b0316836001600160a01b03161415610b095786841415610afb575093506107a392505050565b83610b05816126a9565b9450505b5080610b14816126a9565b915050610a7a565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108a6565b6007546001600160a01b03163314610ba65760405162461bcd60e51b81526004016108a6906126c4565b600855565b6007546001600160a01b03163314610bd55760405162461bcd60e51b81526004016108a6906126c4565b600a55565b6109de838383604051806020016040528060008152506111bf565b6000610bff6109e3565b8210610c595760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108a6565b5090565b6007546001600160a01b03163314610c875760405162461bcd60e51b81526004016108a6906126c4565b600c55565b6007546001600160a01b03163314610cb65760405162461bcd60e51b81526004016108a6906126c4565b8051610cc990600b90602084019061217f565b5050565b6000610cd882611a4d565b5192915050565b6007546000906001600160a01b03163314610d0c5760405162461bcd60e51b81526004016108a6906126c4565b504790565b60006001600160a01b038216610d7d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108a6565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b80546107b890612641565b6007546001600160a01b03163314610ddb5760405162461bcd60e51b81526004016108a6906126c4565b610de56000611b2d565b565b6007546001600160a01b03163314610e115760405162461bcd60e51b81526004016108a6906126c4565b4780610e555760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b60448201526064016108a6565b60408051808201825273f525e197105feb63fa44ff24b87f284718ee3a9f808252602080830191909152825160a0810184526032815260289181019190915261014a928101839052606081019290925260fa60808301529060005b60028163ffffffff161015610f55576000610ecd60016002612692565b8263ffffffff1614610f18576103e8838363ffffffff1660058110610ef457610ef46126f9565b6020020151610f099063ffffffff168761270f565b610f139190612744565b610f1a565b475b9050610f42848363ffffffff1660028110610f3757610f376126f9565b602002015182611b7f565b5080610f4d81612758565b915050610eb0565b50505050565b6060600280546107b890612641565b600d54600260ff9091161015610fb95760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b60448201526064016108a6565b600a5481610fc56109e3565b610fcf919061277c565b111561102f5760405162461bcd60e51b815260206004820152602960248201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604482015268616c20737570706c7960b81b60648201526084016108a6565b600d54336000908152600e602052604090205460ff6101009092048216916110599184911661277c565b111561109b5760405162461bcd60e51b8152602060048201526011602482015270109d5e481b1a5b5a5d081c995858da1959607a1b60448201526064016108a6565b806009546110a9919061270f565b3410156110ed5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016108a6565b6110f73382611c22565b50565b6001600160a01b0382163314156111535760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108a6565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111ca848484611706565b6111d684848484611c3c565b610f555760405162461bcd60e51b81526004016108a690612794565b6007546001600160a01b0316331461121c5760405162461bcd60e51b81526004016108a6906126c4565b600d805460ff191660ff92909216919091179055565b606061123f826000541190565b6112a35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a6565b6000600b80546112b290612641565b9050116112ce57604051806020016040528060008152506107a3565b600b6112d983611d3b565b6040516020016112ea929190612803565b60405160208183030381529060405292915050565b6007546001600160a01b031633146113295760405162461bcd60e51b81526004016108a6906126c4565b600d805460ff9092166101000261ff0019909216919091179055565b6007546001600160a01b0316331461136f5760405162461bcd60e51b81526004016108a6906126c4565b60005b82811015610f55576113aa84848381811061138f5761138f6126f9565b90506020020160208101906113a49190612424565b83611c22565b806113b4816126a9565b915050611372565b6007546001600160a01b031633146113e65760405162461bcd60e51b81526004016108a6906126c4565b6001600160a01b03811661144b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a6565b6110f781611b2d565b6007546001600160a01b0316331461147e5760405162461bcd60e51b81526004016108a6906126c4565b600955565b600d5460ff166001146114cf5760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b60448201526064016108a6565b600d54336000908152600e602052604090205460ff620100009092048216916114fa918691166128be565b60ff1611156115575760405162461bcd60e51b815260206004820152602360248201527f4d61782070726573616c65206d696e74656420666f7220746869732077616c6c60448201526265742160e81b60648201526084016108a6565b8260ff16600854611568919061270f565b3410156115ac5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016108a6565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061162683838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611e39565b6116635760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b60448201526064016108a6565b336000908152600e60205260408120805486929061168590849060ff166128be565b92506101000a81548160ff021916908360ff160217905550610f55338560ff16611c22565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061171182611a4d565b80519091506000906001600160a01b0316336001600160a01b0316148061174857503361173d8461083b565b6001600160a01b0316145b8061175a5750815161175a90336106bb565b9050806117c45760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108a6565b846001600160a01b031682600001516001600160a01b0316146118385760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108a6565b6001600160a01b03841661189c5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108a6565b6118ac60008484600001516116aa565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b9590921694909402179092559061197190859061277c565b6000818152600360205260409020549091506001600160a01b0316611a035761199b816000541190565b15611a035760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611a6c826000541190565b611acb5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108a6565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b1a579392505050565b5080611b25816128e3565b915050611acd565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611bcc576040519150601f19603f3d011682016040523d82523d6000602084013e611bd1565b606091505b50509050806109de5760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f207769746864726177204574686572000000000000000060448201526064016108a6565b610cc9828260405180602001604052806000815250611e4f565b60006001600160a01b0384163b15611d2f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c809033908990889088906004016128fa565b6020604051808303816000875af1925050508015611cbb575060408051601f3d908101601f19168201909252611cb891810190612937565b60015b611d15573d808015611ce9576040519150601f19603f3d011682016040523d82523d6000602084013e611cee565b606091505b508051611d0d5760405162461bcd60e51b81526004016108a690612794565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d33565b5060015b949350505050565b606081611d5f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d895780611d73816126a9565b9150611d829050600a83612744565b9150611d63565b60008167ffffffffffffffff811115611da457611da461234f565b6040519080825280601f01601f191660200182016040528015611dce576020820181803683370190505b5090505b8415611d3357611de3600183612692565b9150611df0600a86612954565b611dfb90603061277c565b60f81b818381518110611e1057611e106126f9565b60200101906001600160f81b031916908160001a905350611e32600a86612744565b9450611dd2565b600082611e46858461210b565b14949350505050565b6000546001600160a01b038416611eb25760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108a6565b611ebd816000541190565b15611f0a5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108a6565b60008311611f665760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016108a6565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611fc2908790612968565b6001600160801b03168152602001858360200151611fe09190612968565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156121005760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120c46000888488611c3c565b6120e05760405162461bcd60e51b81526004016108a690612794565b816120ea816126a9565b92505080806120f8906126a9565b915050612077565b506000819055611a45565b600081815b845181101561217757600085828151811061212d5761212d6126f9565b602002602001015190508083116121535760008381526020829052604090209250612164565b600081815260208490526040902092505b508061216f816126a9565b915050612110565b509392505050565b82805461218b90612641565b90600052602060002090601f0160209004810192826121ad57600085556121f3565b82601f106121c657805160ff19168380011785556121f3565b828001600101855582156121f3579182015b828111156121f35782518255916020019190600101906121d8565b50610c599291505b80821115610c5957600081556001016121fb565b6001600160e01b0319811681146110f757600080fd5b60006020828403121561223757600080fd5b81356122428161220f565b9392505050565b60005b8381101561226457818101518382015260200161224c565b83811115610f555750506000910152565b6000815180845261228d816020860160208601612249565b601f01601f19169290920160200192915050565b6020815260006122426020830184612275565b6000602082840312156122c657600080fd5b5035919050565b80356001600160a01b03811681146122e457600080fd5b919050565b600080604083850312156122fc57600080fd5b612305836122cd565b946020939093013593505050565b60008060006060848603121561232857600080fd5b612331846122cd565b925061233f602085016122cd565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156123805761238061234f565b604051601f8501601f19908116603f011681019082821181831017156123a8576123a861234f565b816040528093508581528686860111156123c157600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156123ed57600080fd5b813567ffffffffffffffff81111561240457600080fd5b8201601f8101841361241557600080fd5b611d3384823560208401612365565b60006020828403121561243657600080fd5b612242826122cd565b6000806040838503121561245257600080fd5b61245b836122cd565b91506020830135801515811461247057600080fd5b809150509250929050565b6000806000806080858703121561249157600080fd5b61249a856122cd565b93506124a8602086016122cd565b925060408501359150606085013567ffffffffffffffff8111156124cb57600080fd5b8501601f810187136124dc57600080fd5b6124eb87823560208401612365565b91505092959194509250565b803560ff811681146122e457600080fd5b60006020828403121561251a57600080fd5b612242826124f7565b60008083601f84011261253557600080fd5b50813567ffffffffffffffff81111561254d57600080fd5b6020830191508360208260051b850101111561256857600080fd5b9250929050565b60008060006040848603121561258457600080fd5b833567ffffffffffffffff81111561259b57600080fd5b6125a786828701612523565b909790965060209590950135949350505050565b600080604083850312156125ce57600080fd5b6125d7836122cd565b91506125e5602084016122cd565b90509250929050565b60008060006040848603121561260357600080fd5b61260c846124f7565b9250602084013567ffffffffffffffff81111561262857600080fd5b61263486828701612523565b9497909650939450505050565b600181811c9082168061265557607f821691505b6020821081141561267657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156126a4576126a461267c565b500390565b60006000198214156126bd576126bd61267c565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60008160001904831182151516156127295761272961267c565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826127535761275361272e565b500490565b600063ffffffff808316818114156127725761277261267c565b6001019392505050565b6000821982111561278f5761278f61267c565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600081516127f9818560208601612249565b9290920192915050565b600080845481600182811c91508083168061281f57607f831692505b602080841082141561283f57634e487b7160e01b86526022600452602486fd5b818015612853576001811461286457612891565b60ff19861689528489019650612891565b60008b81526020902060005b868110156128895781548b820152908501908301612870565b505084890196505b5050505050506128b56128a482866127e7565b64173539b7b760d91b815260050190565b95945050505050565b600060ff821660ff84168060ff038211156128db576128db61267c565b019392505050565b6000816128f2576128f261267c565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061292d90830184612275565b9695505050505050565b60006020828403121561294957600080fd5b81516122428161220f565b6000826129635761296361272e565b500690565b60006001600160801b0380831681851680830382111561298a5761298a61267c565b0194935050505056fea2646970667358221220a8f6b3afbcd1b53a75badfab31d91820165c1366957541d36d1f2e9861473dc064736f6c634300080c0033697066733a2f2f516d554d577a7770434c5a6e374559715244524b415a384c43624a57524e6d3769375a356343316b53414e686f762f

Deployed Bytecode

0x60806040526004361061023a5760003560e01c806370db69d61161012e578063b88d4fde116100ab578063dfcf15b01161006f578063dfcf15b014610680578063e985e9c5146106a0578063f2fde38b146106e9578063f4a0a52814610709578063fc0ab6e21461072957600080fd5b8063b88d4fde146105d0578063c03afb59146105f0578063c87b56dd14610610578063dbdf2dc014610630578063dea96c981461065057600080fd5b80638da5cb5b116100f25780638da5cb5b1461055057806395d89b411461056e578063a0712d6814610583578063a22cb46514610596578063b1c9fe6e146105b657600080fd5b806370db69d6146104c0578063714c5398146104f1578063715018a614610506578063853828b61461051b5780638b9defa11461053057600080fd5b806340e87b48116101bc57806355f804b31161018057806355f804b3146104355780636352211e146104555780636817c76c146104755780636f9fb98a1461048b57806370a08231146104a057600080fd5b806340e87b481461039f57806342842e0e146103bf5780634f6ccce7146103df57806353f6fa79146103ff57806354c06aee1461041f57600080fd5b8063095ea7b311610203578063095ea7b31461030857806318160ddd1461032a57806323b872dd1461033f5780632f745c591461035f5780633549345e1461037f57600080fd5b80620e7fa81461023f57806301ffc9a714610268578063047fc9aa1461029857806306fdde03146102ae578063081812fc146102d0575b600080fd5b34801561024b57600080fd5b5061025560085481565b6040519081526020015b60405180910390f35b34801561027457600080fd5b50610288610283366004612225565b61073c565b604051901515815260200161025f565b3480156102a457600080fd5b50610255600a5481565b3480156102ba57600080fd5b506102c36107a9565b60405161025f91906122a1565b3480156102dc57600080fd5b506102f06102eb3660046122b4565b61083b565b6040516001600160a01b03909116815260200161025f565b34801561031457600080fd5b506103286103233660046122e9565b6108cb565b005b34801561033657600080fd5b506102556109e3565b34801561034b57600080fd5b5061032861035a366004612313565b6109f9565b34801561036b57600080fd5b5061025561037a3660046122e9565b610a04565b34801561038b57600080fd5b5061032861039a3660046122b4565b610b7c565b3480156103ab57600080fd5b506103286103ba3660046122b4565b610bab565b3480156103cb57600080fd5b506103286103da366004612313565b610bda565b3480156103eb57600080fd5b506102556103fa3660046122b4565b610bf5565b34801561040b57600080fd5b5061032861041a3660046122b4565b610c5d565b34801561042b57600080fd5b50610255600c5481565b34801561044157600080fd5b506103286104503660046123db565b610c8c565b34801561046157600080fd5b506102f06104703660046122b4565b610ccd565b34801561048157600080fd5b5061025560095481565b34801561049757600080fd5b50610255610cdf565b3480156104ac57600080fd5b506102556104bb366004612424565b610d11565b3480156104cc57600080fd5b50600d546104df90610100900460ff1681565b60405160ff909116815260200161025f565b3480156104fd57600080fd5b506102c3610da2565b34801561051257600080fd5b50610328610db1565b34801561052757600080fd5b50610328610de7565b34801561053c57600080fd5b50600d546104df9062010000900460ff1681565b34801561055c57600080fd5b506007546001600160a01b03166102f0565b34801561057a57600080fd5b506102c3610f5b565b6103286105913660046122b4565b610f6a565b3480156105a257600080fd5b506103286105b136600461243f565b6110fa565b3480156105c257600080fd5b50600d546104df9060ff1681565b3480156105dc57600080fd5b506103286105eb36600461247b565b6111bf565b3480156105fc57600080fd5b5061032861060b366004612508565b6111f2565b34801561061c57600080fd5b506102c361062b3660046122b4565b611232565b34801561063c57600080fd5b5061032861064b366004612508565b6112ff565b34801561065c57600080fd5b506104df61066b366004612424565b600e6020526000908152604090205460ff1681565b34801561068c57600080fd5b5061032861069b36600461256f565b611345565b3480156106ac57600080fd5b506102886106bb3660046125bb565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106f557600080fd5b50610328610704366004612424565b6113bc565b34801561071557600080fd5b506103286107243660046122b4565b611454565b6103286107373660046125ee565b611483565b60006001600160e01b031982166380ac58cd60e01b148061076d57506001600160e01b03198216635b5e139f60e01b145b8061078857506001600160e01b0319821663780e9d6360e01b145b806107a357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107b890612641565b80601f01602080910402602001604051908101604052809291908181526020018280546107e490612641565b80156108315780601f1061080657610100808354040283529160200191610831565b820191906000526020600020905b81548152906001019060200180831161081457829003601f168201915b5050505050905090565b6000610848826000541190565b6108af5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108d682610ccd565b9050806001600160a01b0316836001600160a01b031614156109455760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108a6565b336001600160a01b0382161480610961575061096181336106bb565b6109d35760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108a6565b6109de8383836116aa565b505050565b600060016000546109f49190612692565b905090565b6109de838383611706565b6000610a0f83610d11565b8210610a685760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108a6565b6000610a726109e3565b905060008060005b83811015610b1c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610acd57805192505b876001600160a01b0316836001600160a01b03161415610b095786841415610afb575093506107a392505050565b83610b05816126a9565b9450505b5080610b14816126a9565b915050610a7a565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108a6565b6007546001600160a01b03163314610ba65760405162461bcd60e51b81526004016108a6906126c4565b600855565b6007546001600160a01b03163314610bd55760405162461bcd60e51b81526004016108a6906126c4565b600a55565b6109de838383604051806020016040528060008152506111bf565b6000610bff6109e3565b8210610c595760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108a6565b5090565b6007546001600160a01b03163314610c875760405162461bcd60e51b81526004016108a6906126c4565b600c55565b6007546001600160a01b03163314610cb65760405162461bcd60e51b81526004016108a6906126c4565b8051610cc990600b90602084019061217f565b5050565b6000610cd882611a4d565b5192915050565b6007546000906001600160a01b03163314610d0c5760405162461bcd60e51b81526004016108a6906126c4565b504790565b60006001600160a01b038216610d7d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108a6565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b80546107b890612641565b6007546001600160a01b03163314610ddb5760405162461bcd60e51b81526004016108a6906126c4565b610de56000611b2d565b565b6007546001600160a01b03163314610e115760405162461bcd60e51b81526004016108a6906126c4565b4780610e555760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b60448201526064016108a6565b60408051808201825273f525e197105feb63fa44ff24b87f284718ee3a9f808252602080830191909152825160a0810184526032815260289181019190915261014a928101839052606081019290925260fa60808301529060005b60028163ffffffff161015610f55576000610ecd60016002612692565b8263ffffffff1614610f18576103e8838363ffffffff1660058110610ef457610ef46126f9565b6020020151610f099063ffffffff168761270f565b610f139190612744565b610f1a565b475b9050610f42848363ffffffff1660028110610f3757610f376126f9565b602002015182611b7f565b5080610f4d81612758565b915050610eb0565b50505050565b6060600280546107b890612641565b600d54600260ff9091161015610fb95760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b60448201526064016108a6565b600a5481610fc56109e3565b610fcf919061277c565b111561102f5760405162461bcd60e51b815260206004820152602960248201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604482015268616c20737570706c7960b81b60648201526084016108a6565b600d54336000908152600e602052604090205460ff6101009092048216916110599184911661277c565b111561109b5760405162461bcd60e51b8152602060048201526011602482015270109d5e481b1a5b5a5d081c995858da1959607a1b60448201526064016108a6565b806009546110a9919061270f565b3410156110ed5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016108a6565b6110f73382611c22565b50565b6001600160a01b0382163314156111535760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108a6565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111ca848484611706565b6111d684848484611c3c565b610f555760405162461bcd60e51b81526004016108a690612794565b6007546001600160a01b0316331461121c5760405162461bcd60e51b81526004016108a6906126c4565b600d805460ff191660ff92909216919091179055565b606061123f826000541190565b6112a35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a6565b6000600b80546112b290612641565b9050116112ce57604051806020016040528060008152506107a3565b600b6112d983611d3b565b6040516020016112ea929190612803565b60405160208183030381529060405292915050565b6007546001600160a01b031633146113295760405162461bcd60e51b81526004016108a6906126c4565b600d805460ff9092166101000261ff0019909216919091179055565b6007546001600160a01b0316331461136f5760405162461bcd60e51b81526004016108a6906126c4565b60005b82811015610f55576113aa84848381811061138f5761138f6126f9565b90506020020160208101906113a49190612424565b83611c22565b806113b4816126a9565b915050611372565b6007546001600160a01b031633146113e65760405162461bcd60e51b81526004016108a6906126c4565b6001600160a01b03811661144b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a6565b6110f781611b2d565b6007546001600160a01b0316331461147e5760405162461bcd60e51b81526004016108a6906126c4565b600955565b600d5460ff166001146114cf5760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b60448201526064016108a6565b600d54336000908152600e602052604090205460ff620100009092048216916114fa918691166128be565b60ff1611156115575760405162461bcd60e51b815260206004820152602360248201527f4d61782070726573616c65206d696e74656420666f7220746869732077616c6c60448201526265742160e81b60648201526084016108a6565b8260ff16600854611568919061270f565b3410156115ac5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016108a6565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061162683838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611e39565b6116635760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b60448201526064016108a6565b336000908152600e60205260408120805486929061168590849060ff166128be565b92506101000a81548160ff021916908360ff160217905550610f55338560ff16611c22565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061171182611a4d565b80519091506000906001600160a01b0316336001600160a01b0316148061174857503361173d8461083b565b6001600160a01b0316145b8061175a5750815161175a90336106bb565b9050806117c45760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108a6565b846001600160a01b031682600001516001600160a01b0316146118385760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108a6565b6001600160a01b03841661189c5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108a6565b6118ac60008484600001516116aa565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b9590921694909402179092559061197190859061277c565b6000818152600360205260409020549091506001600160a01b0316611a035761199b816000541190565b15611a035760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611a6c826000541190565b611acb5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108a6565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b1a579392505050565b5080611b25816128e3565b915050611acd565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611bcc576040519150601f19603f3d011682016040523d82523d6000602084013e611bd1565b606091505b50509050806109de5760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f207769746864726177204574686572000000000000000060448201526064016108a6565b610cc9828260405180602001604052806000815250611e4f565b60006001600160a01b0384163b15611d2f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c809033908990889088906004016128fa565b6020604051808303816000875af1925050508015611cbb575060408051601f3d908101601f19168201909252611cb891810190612937565b60015b611d15573d808015611ce9576040519150601f19603f3d011682016040523d82523d6000602084013e611cee565b606091505b508051611d0d5760405162461bcd60e51b81526004016108a690612794565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d33565b5060015b949350505050565b606081611d5f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d895780611d73816126a9565b9150611d829050600a83612744565b9150611d63565b60008167ffffffffffffffff811115611da457611da461234f565b6040519080825280601f01601f191660200182016040528015611dce576020820181803683370190505b5090505b8415611d3357611de3600183612692565b9150611df0600a86612954565b611dfb90603061277c565b60f81b818381518110611e1057611e106126f9565b60200101906001600160f81b031916908160001a905350611e32600a86612744565b9450611dd2565b600082611e46858461210b565b14949350505050565b6000546001600160a01b038416611eb25760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108a6565b611ebd816000541190565b15611f0a5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108a6565b60008311611f665760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016108a6565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611fc2908790612968565b6001600160801b03168152602001858360200151611fe09190612968565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156121005760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120c46000888488611c3c565b6120e05760405162461bcd60e51b81526004016108a690612794565b816120ea816126a9565b92505080806120f8906126a9565b915050612077565b506000819055611a45565b600081815b845181101561217757600085828151811061212d5761212d6126f9565b602002602001015190508083116121535760008381526020829052604090209250612164565b600081815260208490526040902092505b508061216f816126a9565b915050612110565b509392505050565b82805461218b90612641565b90600052602060002090601f0160209004810192826121ad57600085556121f3565b82601f106121c657805160ff19168380011785556121f3565b828001600101855582156121f3579182015b828111156121f35782518255916020019190600101906121d8565b50610c599291505b80821115610c5957600081556001016121fb565b6001600160e01b0319811681146110f757600080fd5b60006020828403121561223757600080fd5b81356122428161220f565b9392505050565b60005b8381101561226457818101518382015260200161224c565b83811115610f555750506000910152565b6000815180845261228d816020860160208601612249565b601f01601f19169290920160200192915050565b6020815260006122426020830184612275565b6000602082840312156122c657600080fd5b5035919050565b80356001600160a01b03811681146122e457600080fd5b919050565b600080604083850312156122fc57600080fd5b612305836122cd565b946020939093013593505050565b60008060006060848603121561232857600080fd5b612331846122cd565b925061233f602085016122cd565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156123805761238061234f565b604051601f8501601f19908116603f011681019082821181831017156123a8576123a861234f565b816040528093508581528686860111156123c157600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156123ed57600080fd5b813567ffffffffffffffff81111561240457600080fd5b8201601f8101841361241557600080fd5b611d3384823560208401612365565b60006020828403121561243657600080fd5b612242826122cd565b6000806040838503121561245257600080fd5b61245b836122cd565b91506020830135801515811461247057600080fd5b809150509250929050565b6000806000806080858703121561249157600080fd5b61249a856122cd565b93506124a8602086016122cd565b925060408501359150606085013567ffffffffffffffff8111156124cb57600080fd5b8501601f810187136124dc57600080fd5b6124eb87823560208401612365565b91505092959194509250565b803560ff811681146122e457600080fd5b60006020828403121561251a57600080fd5b612242826124f7565b60008083601f84011261253557600080fd5b50813567ffffffffffffffff81111561254d57600080fd5b6020830191508360208260051b850101111561256857600080fd5b9250929050565b60008060006040848603121561258457600080fd5b833567ffffffffffffffff81111561259b57600080fd5b6125a786828701612523565b909790965060209590950135949350505050565b600080604083850312156125ce57600080fd5b6125d7836122cd565b91506125e5602084016122cd565b90509250929050565b60008060006040848603121561260357600080fd5b61260c846124f7565b9250602084013567ffffffffffffffff81111561262857600080fd5b61263486828701612523565b9497909650939450505050565b600181811c9082168061265557607f821691505b6020821081141561267657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156126a4576126a461267c565b500390565b60006000198214156126bd576126bd61267c565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60008160001904831182151516156127295761272961267c565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826127535761275361272e565b500490565b600063ffffffff808316818114156127725761277261267c565b6001019392505050565b6000821982111561278f5761278f61267c565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600081516127f9818560208601612249565b9290920192915050565b600080845481600182811c91508083168061281f57607f831692505b602080841082141561283f57634e487b7160e01b86526022600452602486fd5b818015612853576001811461286457612891565b60ff19861689528489019650612891565b60008b81526020902060005b868110156128895781548b820152908501908301612870565b505084890196505b5050505050506128b56128a482866127e7565b64173539b7b760d91b815260050190565b95945050505050565b600060ff821660ff84168060ff038211156128db576128db61267c565b019392505050565b6000816128f2576128f261267c565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061292d90830184612275565b9695505050505050565b60006020828403121561294957600080fd5b81516122428161220f565b6000826129635761296361272e565b500690565b60006001600160801b0380831681851680830382111561298a5761298a61267c565b0194935050505056fea2646970667358221220a8f6b3afbcd1b53a75badfab31d91820165c1366957541d36d1f2e9861473dc064736f6c634300080c0033

Deployed Bytecode Sourcemap

41380:3945:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41450:37;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;41450:37:0;;;;;;;;24309:372;;;;;;;;;;-1:-1:-1;24309:372:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;24309:372:0;582:187:1;41535:27:0;;;;;;;;;;;;;;;;25936:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27497:214::-;;;;;;;;;;-1:-1:-1;27497:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1896:32:1;;;1878:51;;1866:2;1851:18;27497:214:0;1732:203:1;27018:413:0;;;;;;;;;;-1:-1:-1;27018:413:0;;;;;:::i;:::-;;:::i;:::-;;22746:104;;;;;;;;;;;;;:::i;28373:162::-;;;;;;;;;;-1:-1:-1;28373:162:0;;;;;:::i;:::-;;:::i;23414:823::-;;;;;;;;;;-1:-1:-1;23414:823:0;;;;;:::i;:::-;;:::i;43755:101::-;;;;;;;;;;-1:-1:-1;43755:101:0;;;;;:::i;:::-;;:::i;44034:86::-;;;;;;;;;;-1:-1:-1;44034:86:0;;;;;:::i;:::-;;:::i;28606:177::-;;;;;;;;;;-1:-1:-1;28606:177:0;;;;;:::i;:::-;;:::i;22927:187::-;;;;;;;;;;-1:-1:-1;22927:187:0;;;;;:::i;:::-;;:::i;44126:101::-;;;;;;;;;;-1:-1:-1;44126:101:0;;;;;:::i;:::-;;:::i;41653:27::-;;;;;;;;;;;;;;;;43554:94;;;;;;;;;;-1:-1:-1;43554:94:0;;;;;:::i;:::-;;:::i;25745:124::-;;;;;;;;;;-1:-1:-1;25745:124:0;;;;;:::i;:::-;;:::i;41492:38::-;;;;;;;;;;;;;;;;44235:114;;;;;;;;;;;;;:::i;24745:221::-;;;;;;;;;;-1:-1:-1;24745:221:0;;;;;:::i;:::-;;:::i;41712:23::-;;;;;;;;;;-1:-1:-1;41712:23:0;;;;;;;;;;;;;;4665:4:1;4653:17;;;4635:36;;4623:2;4608:18;41712:23:0;4493:184:1;43363:85:0;;;;;;;;;;;;;:::i;38010:103::-;;;;;;;;;;;;;:::i;44355:733::-;;;;;;;;;;;;;:::i;41740:22::-;;;;;;;;;;-1:-1:-1;41740:22:0;;;;;;;;;;;37359:87;;;;;;;;;;-1:-1:-1;37432:6:0;;-1:-1:-1;;;;;37432:6:0;37359:87;;26105:104;;;;;;;;;;;;;:::i;42366:391::-;;;;;;:::i;:::-;;:::i;27783:288::-;;;;;;;;;;-1:-1:-1;27783:288:0;;;;;:::i;:::-;;:::i;41685:22::-;;;;;;;;;;-1:-1:-1;41685:22:0;;;;;;;;28854:355;;;;;;;;;;-1:-1:-1;28854:355:0;;;;;:::i;:::-;;:::i;43862:76::-;;;;;;;;;;-1:-1:-1;43862:76:0;;;;;:::i;:::-;;:::i;41872:288::-;;;;;;;;;;-1:-1:-1;41872:288:0;;;;;:::i;:::-;;:::i;43944:84::-;;;;;;;;;;-1:-1:-1;43944:84:0;;;;;:::i;:::-;;:::i;41769:44::-;;;;;;;;;;-1:-1:-1;41769:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;42166:194;;;;;;;;;;-1:-1:-1;42166:194:0;;;;;:::i;:::-;;:::i;28142:164::-;;;;;;;;;;-1:-1:-1;28142:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28263:25:0;;;28239:4;28263:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28142:164;38268:201;;;;;;;;;;-1:-1:-1;38268:201:0;;;;;:::i;:::-;;:::i;43654:95::-;;;;;;;;;;-1:-1:-1;43654:95:0;;;;;:::i;:::-;;:::i;42763:594::-;;;;;;:::i;:::-;;:::i;24309:372::-;24411:4;-1:-1:-1;;;;;;24448:40:0;;-1:-1:-1;;;24448:40:0;;:105;;-1:-1:-1;;;;;;;24505:48:0;;-1:-1:-1;;;24505:48:0;24448:105;:172;;;-1:-1:-1;;;;;;;24570:50:0;;-1:-1:-1;;;24570:50:0;24448:172;:225;;;-1:-1:-1;;;;;;;;;;13230:40:0;;;24637:36;24428:245;24309:372;-1:-1:-1;;24309:372:0:o;25936:100::-;25990:13;26023:5;26016:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25936:100;:::o;27497:214::-;27565:7;27593:16;27601:7;29521:4;29555:12;-1:-1:-1;29545:22:0;29464:111;27593:16;27585:74;;;;-1:-1:-1;;;27585:74:0;;8300:2:1;27585: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;;27585:74:0;;;;;;;;;-1:-1:-1;27679:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27679:24:0;;27497:214::o;27018:413::-;27091:13;27107:24;27123:7;27107:15;:24::i;:::-;27091:40;;27156:5;-1:-1:-1;;;;;27150:11:0;:2;-1:-1:-1;;;;;27150:11:0;;;27142:58;;;;-1:-1:-1;;;27142:58:0;;8714:2:1;27142: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;;27142:58:0;8512:398:1;27142:58:0;20792:10;-1:-1:-1;;;;;27235:21:0;;;;:62;;-1:-1:-1;27260:37:0;27277:5;20792:10;28142:164;:::i;27260:37::-;27213:169;;;;-1:-1:-1;;;27213:169:0;;9117:2:1;27213: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;;27213:169:0;8915:421:1;27213:169:0;27395:28;27404:2;27408:7;27417:5;27395:8;:28::i;:::-;27080:351;27018:413;;:::o;22746:104::-;22799:7;22841:1;22826:12;;:16;;;;:::i;:::-;22819:23;;22746:104;:::o;28373:162::-;28499:28;28509:4;28515:2;28519:7;28499:9;:28::i;23414:823::-;23503:7;23539:16;23549:5;23539:9;:16::i;:::-;23531:5;:24;23523:71;;;;-1:-1:-1;;;23523:71:0;;9805:2:1;23523: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;;23523:71:0;9603:398:1;23523:71:0;23605:22;23630:13;:11;:13::i;:::-;23605:38;;23654:19;23688:25;23742:9;23737:426;23761:14;23757:1;:18;23737:426;;;23797:31;23831:14;;;:11;:14;;;;;;;;;23797:48;;;;;;;;;-1:-1:-1;;;;;23797:48:0;;;;;-1:-1:-1;;;23797:48:0;;;;;;;;;;;;23864:28;23860:103;;23933:14;;;-1:-1:-1;23860:103:0;24002:5;-1:-1:-1;;;;;23981:26:0;:17;-1:-1:-1;;;;;23981:26:0;;23977:175;;;24047:5;24032:11;:20;24028:77;;;-1:-1:-1;24084:1:0;-1:-1:-1;24077:8:0;;-1:-1:-1;;;24077:8:0;24028:77;24123:13;;;;:::i;:::-;;;;23977:175;-1:-1:-1;23777:3:0;;;;:::i;:::-;;;;23737:426;;;-1:-1:-1;24173:56:0;;-1:-1:-1;;;24173:56:0;;10348:2:1;24173: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;;24173:56:0;10146:410:1;43755:101:0;37432:6;;-1:-1:-1;;;;;37432:6:0;20792:10;37579:23;37571:68;;;;-1:-1:-1;;;37571:68:0;;;;;;;:::i;:::-;43826:12:::1;:24:::0;43755:101::o;44034:86::-;37432:6;;-1:-1:-1;;;;;37432:6:0;20792:10;37579:23;37571:68;;;;-1:-1:-1;;;37571:68:0;;;;;;;:::i;:::-;44098:6:::1;:16:::0;44034:86::o;28606:177::-;28736:39;28753:4;28759:2;28763:7;28736:39;;;;;;;;;;;;:16;:39::i;22927:187::-;22994:7;23030:13;:11;:13::i;:::-;23022:5;:21;23014:69;;;;-1:-1:-1;;;23014:69:0;;11124:2:1;23014: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;;23014:69:0;10922:399:1;23014:69:0;-1:-1:-1;23101:5:0;22927:187::o;44126:101::-;37432:6;;-1:-1:-1;;;;;37432:6:0;20792:10;37579:23;37571:68;;;;-1:-1:-1;;;37571:68:0;;;;;;;:::i;:::-;44197:12:::1;:24:::0;44126:101::o;43554:94::-;37432:6;;-1:-1:-1;;;;;37432:6:0;20792:10;37579:23;37571:68;;;;-1:-1:-1;;;37571:68:0;;;;;;;:::i;:::-;43624:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43554:94:::0;:::o;25745:124::-;25809:7;25836:20;25848:7;25836:11;:20::i;:::-;:25;;25745:124;-1:-1:-1;;25745:124:0:o;44235:114::-;37432:6;;44299:7;;-1:-1:-1;;;;;37432:6:0;20792:10;37579:23;37571:68;;;;-1:-1:-1;;;37571:68:0;;;;;;;:::i;:::-;-1:-1:-1;44322:21:0::1;44235:114:::0;:::o;24745:221::-;24809:7;-1:-1:-1;;;;;24837:19:0;;24829:75;;;;-1:-1:-1;;;24829:75:0;;11528:2:1;24829: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;;24829:75:0;11326:407:1;24829:75:0;-1:-1:-1;;;;;;24930:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24930:27:0;;24745:221::o;43363:85::-;43406:13;43435:7;43428:14;;;;;:::i;38010:103::-;37432:6;;-1:-1:-1;;;;;37432:6:0;20792:10;37579:23;37571:68;;;;-1:-1:-1;;;37571:68:0;;;;;;;:::i;:::-;38075:30:::1;38102:1;38075:18;:30::i;:::-;38010:103::o:0;44355:733::-;37432:6;;-1:-1:-1;;;;;37432:6:0;20792:10;37579:23;37571:68;;;;-1:-1:-1;;;37571:68:0;;;;;;;:::i;:::-;44425:21:::1;44465:11:::0;44457:43:::1;;;::::0;-1:-1:-1;;;44457:43:0;;11940:2:1;44457:43:0::1;::::0;::::1;11922:21:1::0;11979:2;11959:18;;;11952:30;-1:-1:-1;;;11998:18:1;;;11991:49;12057:18;;44457:43:0::1;11738:343:1::0;44457:43:0::1;44521:156;::::0;;;;::::1;::::0;;44566:42:::1;44521:156:::0;;;::::1;::::0;;::::1;::::0;;;;44690:165;;::::1;::::0;::::1;::::0;;44738:2:::1;44690:165:::0;;44763:2:::1;44690:165:::0;;::::1;::::0;;;;44788:3:::1;44690:165:::0;;;;;;;;;;;;;44840:3:::1;44690:165:::0;;;;44521:156;:27:::1;44868:215;44891:16;44887:1;:20;;;44868:215;;;44929:14;44951:20;44970:1;44951:16;:20;:::i;:::-;44946:1;:25;;;:78;;45020:4;45008:6;45015:1;45008:9;;;;;;;;;:::i;:::-;;;;::::0;44998:19:::1;::::0;::::1;;:7:::0;:19:::1;:::i;:::-;:26;;;;:::i;:::-;44946:78;;;44974:21;44946:78;44929:95;;45039:32;45050:9;45060:1;45050:12;;;;;;;;;:::i;:::-;;;;;45064:6;45039:10;:32::i;:::-;-1:-1:-1::0;44909:3:0;::::1;::::0;::::1;:::i;:::-;;;;44868:215;;;;44396:692;;;44355:733::o:0;26105:104::-;26161:13;26194:7;26187:14;;;;;:::i;42366:391::-;42430:5;;42439:1;42430:5;;;;:10;;42422:43;;;;-1:-1:-1;;;42422:43:0;;13056:2:1;42422:43:0;;;13038:21:1;13095:2;13075:18;;;13068:30;-1:-1:-1;;;13114:18:1;;;13107:50;13174:18;;42422:43:0;12854:344:1;42422:43:0;42508:6;;42496:8;42480:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:34;;42472:88;;;;-1:-1:-1;;;42472:88:0;;13538:2:1;42472:88:0;;;13520:21:1;13577:2;13557:18;;;13550:30;13616:34;13596:18;;;13589:62;-1:-1:-1;;;13667:18:1;;;13660:39;13716:19;;42472:88:0;13336:405:1;42472:88:0;42612:6;;42586:10;42575:22;;;;:10;:22;;;;;;42612:6;;;;;;;;42575:33;;42600:8;;42575:22;:33;:::i;:::-;:43;;42567:73;;;;-1:-1:-1;;;42567:73:0;;13948:2:1;42567:73:0;;;13930:21:1;13987:2;13967:18;;;13960:30;-1:-1:-1;;;14006:18:1;;;13999:47;14063:18;;42567:73:0;13746:341:1;42567:73:0;42680:8;42668:9;;:20;;;;:::i;:::-;42655:9;:33;;42647:64;;;;-1:-1:-1;;;42647:64:0;;14294:2:1;42647:64:0;;;14276:21:1;14333:2;14313:18;;;14306:30;-1:-1:-1;;;14352:18:1;;;14345:48;14410:18;;42647:64:0;14092:342:1;42647:64:0;42720:31;42730:10;42742:8;42720:9;:31::i;:::-;42366:391;:::o;27783:288::-;-1:-1:-1;;;;;27878:24:0;;20792:10;27878:24;;27870:63;;;;-1:-1:-1;;;27870:63:0;;14641:2:1;27870:63:0;;;14623:21:1;14680:2;14660:18;;;14653:30;14719:28;14699:18;;;14692:56;14765:18;;27870:63:0;14439:350:1;27870:63:0;20792:10;27946:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27946:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27946:53:0;;;;;;;;;;28015:48;;722:41:1;;;27946:42:0;;20792:10;28015:48;;695:18:1;28015:48:0;;;;;;;27783:288;;:::o;28854:355::-;29013:28;29023:4;29029:2;29033:7;29013:9;:28::i;:::-;29074:48;29097:4;29103:2;29107:7;29116:5;29074:22;:48::i;:::-;29052:149;;;;-1:-1:-1;;;29052:149:0;;;;;;;:::i;43862:76::-;37432:6;;-1:-1:-1;;;;;37432:6:0;20792:10;37579:23;37571:68;;;;-1:-1:-1;;;37571:68:0;;;;;;;:::i;:::-;43918:5:::1;:14:::0;;-1:-1:-1;;43918:14:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;43862:76::o;41872:288::-;41945:13;41975:16;41983:7;29521:4;29555:12;-1:-1:-1;29545:22:0;29464:111;41975:16;41967:76;;;;-1:-1:-1;;;41967:76:0;;15416:2:1;41967:76:0;;;15398:21:1;15455:2;15435:18;;;15428:30;15494:34;15474:18;;;15467:62;-1:-1:-1;;;15545:18:1;;;15538:45;15600:19;;41967:76:0;15214:411:1;41967:76:0;42083:1;42065:7;42059:21;;;;;:::i;:::-;;;:25;:95;;;;;;;;;;;;;;;;;42111:7;42120:18;:7;:16;:18::i;:::-;42094:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42052:102;41872:288;-1:-1:-1;;41872:288:0:o;43944:84::-;37432:6;;-1:-1:-1;;;;;37432:6:0;20792:10;37579:23;37571:68;;;;-1:-1:-1;;;37571:68:0;;;;;;;:::i;:::-;44006:6:::1;:16:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;44006:16:0;;::::1;::::0;;;::::1;::::0;;43944:84::o;42166:194::-;37432:6;;-1:-1:-1;;;;;37432:6:0;20792:10;37579:23;37571:68;;;;-1:-1:-1;;;37571:68:0;;;;;;;:::i;:::-;42268:6:::1;42263:92;42278:19:::0;;::::1;42263:92;;;42313:34;42323:10;;42334:1;42323:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;42338:8;42313:9;:34::i;:::-;42299:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42263:92;;38268:201:::0;37432:6;;-1:-1:-1;;;;;37432:6:0;20792:10;37579:23;37571:68;;;;-1:-1:-1;;;37571:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38357:22:0;::::1;38349:73;;;::::0;-1:-1:-1;;;38349:73:0;;17572:2:1;38349:73:0::1;::::0;::::1;17554:21:1::0;17611:2;17591:18;;;17584:30;17650:34;17630:18;;;17623:62;-1:-1:-1;;;17701:18:1;;;17694:36;17747:19;;38349:73:0::1;17370:402:1::0;38349:73:0::1;38433:28;38452:8;38433:18;:28::i;43654:95::-:0;37432:6;;-1:-1:-1;;;;;37432:6:0;20792:10;37579:23;37571:68;;;;-1:-1:-1;;;37571:68:0;;;;;;;:::i;:::-;43722:9:::1;:21:::0;43654:95::o;42763:594::-;42899:5;;;;;:10;42891:43;;;;-1:-1:-1;;;42891:43:0;;13056:2:1;42891:43:0;;;13038:21:1;13095:2;13075:18;;;13068:30;-1:-1:-1;;;13114:18:1;;;13107:50;13174:18;;42891:43:0;12854:344:1;42891:43:0;42989:5;;42960:10;42949:22;;;;:10;:22;;;;;;42989:5;;;;;;;;42949:36;;42974:11;;42949:22;:36;:::i;:::-;:45;;;;42941:93;;;;-1:-1:-1;;;42941:93:0;;18188:2:1;42941:93:0;;;18170:21:1;18227:2;18207:18;;;18200:30;18266:34;18246:18;;;18239:62;-1:-1:-1;;;18317:18:1;;;18310:33;18360:19;;42941:93:0;17986:399:1;42941:93:0;43077:11;43062:26;;:12;;:26;;;;:::i;:::-;43049:9;:39;;43041:70;;;;-1:-1:-1;;;43041:70:0;;14294:2:1;43041:70:0;;;14276:21:1;14333:2;14313:18;;;14306:30;-1:-1:-1;;;14352:18:1;;;14345:48;14410:18;;43041:70:0;14092:342:1;43041:70:0;43149:28;;-1:-1:-1;;43166:10:0;18539:2:1;18535:15;18531:53;43149:28:0;;;18519:66:1;43124:12:0;;18601::1;;43149:28:0;;;;;;;;;;;;43139:39;;;;;;43124:54;;43193:52;43212:12;;43193:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;43226:12:0;;;-1:-1:-1;43240:4:0;;-1:-1:-1;43193:18:0;:52::i;:::-;43185:79;;;;-1:-1:-1;;;43185:79:0;;18826:2:1;43185:79:0;;;18808:21:1;18865:2;18845:18;;;18838:30;-1:-1:-1;;;18884:18:1;;;18877:44;18938:18;;43185:79:0;18624:338:1;43185:79:0;43284:10;43273:22;;;;:10;:22;;;;;:37;;43299:11;;43273:22;:37;;43299:11;;43273:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;43317:34;43327:10;43339:11;43317:34;;:9;:34::i;33508:196::-;33623:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33623:29:0;-1:-1:-1;;;;;33623:29:0;;;;;;;;;33668:28;;33623:24;;33668:28;;;;;;;33508:196;;;:::o;31607:1783::-;31722:35;31760:20;31772:7;31760:11;:20::i;:::-;31835:18;;31722:58;;-1:-1:-1;31793:22:0;;-1:-1:-1;;;;;31819:34:0;20792:10;-1:-1:-1;;;;;31819:34:0;;:87;;;-1:-1:-1;20792:10:0;31870:20;31882:7;31870:11;:20::i;:::-;-1:-1:-1;;;;;31870:36:0;;31819:87;:154;;;-1:-1:-1;31940:18:0;;31923:50;;20792:10;28142:164;:::i;31923:50::-;31793:181;;31995:17;31987:80;;;;-1:-1:-1;;;31987:80:0;;19169:2:1;31987: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;;31987:80:0;18967:414:1;31987:80:0;32110:4;-1:-1:-1;;;;;32088:26:0;:13;:18;;;-1:-1:-1;;;;;32088:26:0;;32080:77;;;;-1:-1:-1;;;32080:77:0;;19588:2:1;32080: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;;32080:77:0;19386:402:1;32080:77:0;-1:-1:-1;;;;;32176:16:0;;32168:66;;;;-1:-1:-1;;;32168:66:0;;19995:2:1;32168: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;;32168:66:0;19793:401:1;32168:66:0;32355:49;32372:1;32376:7;32385:13;:18;;;32355:8;:49::i;:::-;-1:-1:-1;;;;;32609:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;32609:31:0;;;-1:-1:-1;;;;;32609:31:0;;;-1:-1:-1;;32609:31:0;;;;;;;32655:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;32655:29:0;;;;;;;;;;;;;32731:43;;;;;;;;;;32757:15;32731:43;;;;;;;;;;32708:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;32708:66:0;;;;;;;-1:-1:-1;;;32708:66:0;;;;;;;;;;;;32609:18;33036:11;;32708:20;;33036:11;:::i;:::-;33103:1;33062:24;;;:11;:24;;;;;:29;33014:33;;-1:-1:-1;;;;;;33062:29:0;33058:227;;33126:20;33134:11;29521:4;29555:12;-1:-1:-1;29545:22:0;29464:111;33126:20;33122:152;;;33194:64;;;;;;;;33209:18;;-1:-1:-1;;;;;33194:64:0;;;;;;33229:28;;;;33194:64;;;;;;;;;;-1:-1:-1;33167:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;33167:91:0;-1:-1:-1;;;;;;33167:91:0;;;;;;;;;;;;33122:152;33321:7;33317:2;-1:-1:-1;;;;;33302:27:0;33311:4;-1:-1:-1;;;;;33302:27:0;;;;;;;;;;;33340:42;31711:1679;;;31607:1783;;;:::o;25211:472::-;-1:-1:-1;;;;;;;;;;;;;;;;;25314:16:0;25322:7;29521:4;29555:12;-1:-1:-1;29545:22:0;29464:111;25314:16;25306:71;;;;-1:-1:-1;;;25306:71:0;;20401:2:1;25306: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;;25306:71:0;20199:406:1;25306:71:0;25410:7;25390:216;25444:31;25478:17;;;:11;:17;;;;;;;;;25444:51;;;;;;;;;-1:-1:-1;;;;;25444:51:0;;;;;-1:-1:-1;;;25444:51:0;;;;;;;;;;;;25514:28;25510:85;;25570:9;25211:472;-1:-1:-1;;;25211:472:0:o;25510:85::-;-1:-1:-1;25421:6:0;;;;:::i;:::-;;;;25390:216;;38629:191;38722:6;;;-1:-1:-1;;;;;38739:17:0;;;-1:-1:-1;;;;;;38739:17:0;;;;;;;38772:40;;38722:6;;;38739:17;38722:6;;38772:40;;38703:16;;38772:40;38692:128;38629:191;:::o;45131:189::-;45206:12;45224:8;-1:-1:-1;;;;;45224:13:0;45246:7;45224:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45205:54;;;45278:7;45270:44;;;;-1:-1:-1;;;45270:44:0;;21579:2:1;45270:44:0;;;21561:21:1;21618:2;21598:18;;;21591:30;21657:26;21637:18;;;21630:54;21701:18;;45270:44:0;21377:348:1;29583:104:0;29652:27;29662:2;29666:8;29652:27;;;;;;;;;;;;:9;:27::i;34269:804::-;34424:4;-1:-1:-1;;;;;34445:13:0;;3300:20;3348:8;34441:625;;34481:72;;-1:-1:-1;;;34481:72:0;;-1:-1:-1;;;;;34481:36:0;;;;;:72;;20792:10;;34532:4;;34538:7;;34547:5;;34481:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34481:72:0;;;;;;;;-1:-1:-1;;34481:72:0;;;;;;;;;;;;:::i;:::-;;;34477:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34727:13:0;;34723:273;;34770:61;;-1:-1:-1;;;34770:61:0;;;;;;;:::i;34723:273::-;34946:6;34940:13;34931:6;34927:2;34923:15;34916:38;34477:534;-1:-1:-1;;;;;;34604:55:0;-1:-1:-1;;;34604:55:0;;-1:-1:-1;34597:62:0;;34441:625;-1:-1:-1;35050:4:0;34441:625;34269: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;;39886:190;40011:4;40064;40035:25;40048:5;40055:4;40035:12;:25::i;:::-;:33;;39886:190;-1:-1:-1;;;;39886:190:0:o;29964:1389::-;30087:20;30110:12;-1:-1:-1;;;;;30141:16:0;;30133:62;;;;-1:-1:-1;;;30133:62:0;;22808:2:1;30133: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;;30133:62:0;22606:397:1;30133:62:0;30340:21;30348:12;29521:4;29555:12;-1:-1:-1;29545:22:0;29464:111;30340:21;30339:22;30331:64;;;;-1:-1:-1;;;30331:64:0;;23210:2:1;30331:64:0;;;23192:21:1;23249:2;23229:18;;;23222:30;23288:31;23268:18;;;23261:59;23337:18;;30331:64:0;23008:353:1;30331:64:0;30425:1;30414:8;:12;30406:60;;;;-1:-1:-1;;;30406:60:0;;23568:2:1;30406: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;;30406:60:0;23366:399:1;30406:60:0;-1:-1:-1;;;;;30586:16:0;;30553:30;30586:16;;;:12;:16;;;;;;;;;30553:49;;;;;;;;;-1:-1:-1;;;;;30553:49:0;;;;;-1:-1:-1;;;30553:49:0;;;;;;;;;;;30632:135;;;;;;;;30658:19;;30553:49;;30632:135;;;30658:39;;30688:8;;30658:39;:::i;:::-;-1:-1:-1;;;;;30632:135:0;;;;;30747:8;30712:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;30632:135:0;;;;;;-1:-1:-1;;;;;30613:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;30613:154:0;;;;;;;;;;;;30806:43;;;;;;;;;;;30832:15;30806:43;;;;;;;;30778:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;30778:71:0;-1:-1:-1;;;;;;30778:71:0;;;;;;;;;;;;;;;;;;30790:12;;30910:325;30934:8;30930:1;:12;30910:325;;;30969:38;;30994:12;;-1:-1:-1;;;;;30969:38:0;;;30986:1;;30969:38;;30986:1;;30969:38;31048:59;31079:1;31083:2;31087:12;31101:5;31048:22;:59::i;:::-;31022:172;;;;-1:-1:-1;;;31022:172:0;;;;;;;:::i;:::-;31209:14;;;;:::i;:::-;;;;30944:3;;;;;:::i;:::-;;;;30910:325;;;-1:-1:-1;31247:12:0;:27;;;31285:60;44355:733;40437:675;40520:7;40563:4;40520:7;40578:497;40602:5;:12;40598:1;:16;40578:497;;;40636:20;40659:5;40665:1;40659:8;;;;;;;;:::i;:::-;;;;;;;40636:31;;40702:12;40686;:28;40682:382;;41188:13;41238:15;;;41274:4;41267:15;;;41321:4;41305:21;;40814:57;;40682:382;;;41188:13;41238:15;;;41274:4;41267:15;;;41321:4;41305:21;;40991:57;;40682:382;-1:-1:-1;40616:3:0;;;;:::i;:::-;;;;40578:497;;;-1:-1:-1;41092:12:0;40437:675;-1:-1:-1;;;40437:675:0:o;-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;2377:328::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:38;2644:2;2633:9;2629:18;2610:38;:::i;:::-;2600:48;;2695:2;2684:9;2680:18;2667:32;2657:42;;2377: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:347::-;4747:6;4755;4808:2;4796:9;4787:7;4783:23;4779:32;4776:52;;;4824:1;4821;4814:12;4776:52;4847:29;4866:9;4847:29;:::i;:::-;4837:39;;4926:2;4915:9;4911:18;4898:32;4973:5;4966:13;4959:21;4952:5;4949:32;4939:60;;4995:1;4992;4985:12;4939:60;5018:5;5008:15;;;4682:347;;;;;:::o;5034:667::-;5129:6;5137;5145;5153;5206:3;5194:9;5185:7;5181:23;5177:33;5174:53;;;5223:1;5220;5213:12;5174:53;5246:29;5265:9;5246:29;:::i;:::-;5236:39;;5294:38;5328:2;5317:9;5313:18;5294:38;:::i;:::-;5284:48;;5379:2;5368:9;5364:18;5351:32;5341:42;;5434:2;5423:9;5419:18;5406:32;5461:18;5453:6;5450:30;5447:50;;;5493:1;5490;5483:12;5447:50;5516:22;;5569:4;5561:13;;5557:27;-1:-1:-1;5547:55:1;;5598:1;5595;5588:12;5547:55;5621:74;5687:7;5682:2;5669:16;5664:2;5660;5656:11;5621:74;:::i;:::-;5611:84;;;5034:667;;;;;;;:::o;5706:156::-;5772:20;;5832:4;5821:16;;5811:27;;5801:55;;5852:1;5849;5842:12;5867:182;5924:6;5977:2;5965:9;5956:7;5952:23;5948:32;5945:52;;;5993:1;5990;5983:12;5945:52;6016:27;6033:9;6016:27;:::i;6054:367::-;6117:8;6127:6;6181:3;6174:4;6166:6;6162:17;6158:27;6148:55;;6199:1;6196;6189:12;6148:55;-1:-1:-1;6222:20:1;;6265:18;6254:30;;6251:50;;;6297:1;6294;6287:12;6251:50;6334:4;6326:6;6322:17;6310:29;;6394:3;6387:4;6377:6;6374:1;6370:14;6362:6;6358:27;6354:38;6351:47;6348:67;;;6411:1;6408;6401:12;6348:67;6054:367;;;;;:::o;6426:505::-;6521:6;6529;6537;6590:2;6578:9;6569:7;6565:23;6561:32;6558:52;;;6606:1;6603;6596:12;6558:52;6646:9;6633:23;6679:18;6671:6;6668:30;6665:50;;;6711:1;6708;6701:12;6665:50;6750:70;6812:7;6803:6;6792:9;6788:22;6750:70;:::i;:::-;6839:8;;6724:96;;-1:-1:-1;6921:2:1;6906:18;;;;6893:32;;6426:505;-1:-1:-1;;;;6426:505:1:o;6936:260::-;7004:6;7012;7065:2;7053:9;7044:7;7040:23;7036:32;7033:52;;;7081:1;7078;7071:12;7033:52;7104:29;7123:9;7104:29;:::i;:::-;7094:39;;7152:38;7186:2;7175:9;7171:18;7152:38;:::i;:::-;7142:48;;6936:260;;;;;:::o;7201:507::-;7294:6;7302;7310;7363:2;7351:9;7342:7;7338:23;7334:32;7331:52;;;7379:1;7376;7369:12;7331:52;7402:27;7419:9;7402:27;:::i;:::-;7392:37;;7480:2;7469:9;7465:18;7452:32;7507:18;7499:6;7496:30;7493:50;;;7539:1;7536;7529:12;7493:50;7578:70;7640:7;7631:6;7620:9;7616:22;7578:70;:::i;:::-;7201:507;;7667:8;;-1:-1:-1;7552:96:1;;-1:-1:-1;;;;7201:507:1: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;12086:127::-;12147:10;12142:3;12138:20;12135:1;12128:31;12178:4;12175:1;12168:15;12202:4;12199:1;12192:15;12218:168;12258:7;12324:1;12320;12316:6;12312:14;12309:1;12306:21;12301:1;12294:9;12287:17;12283:45;12280:71;;;12331:18;;:::i;:::-;-1:-1:-1;12371:9:1;;12218:168::o;12391:127::-;12452:10;12447:3;12443:20;12440:1;12433:31;12483:4;12480:1;12473:15;12507:4;12504:1;12497:15;12523:120;12563:1;12589;12579:35;;12594:18;;:::i;:::-;-1:-1:-1;12628:9:1;;12523:120::o;12648:201::-;12686:3;12714:10;12759:2;12752:5;12748:14;12786:2;12777:7;12774:15;12771:41;;;12792:18;;:::i;:::-;12841:1;12828:15;;12648:201;-1:-1:-1;;;12648:201:1:o;13203:128::-;13243:3;13274:1;13270:6;13267:1;13264:13;13261:39;;;13280:18;;:::i;:::-;-1:-1:-1;13316:9:1;;13203:128::o;14794:415::-;14996:2;14978:21;;;15035:2;15015:18;;;15008:30;15074:34;15069:2;15054:18;;15047:62;-1:-1:-1;;;15140:2:1;15125:18;;15118:49;15199:3;15184:19;;14794:415::o;15756:185::-;15798:3;15836:5;15830:12;15851:52;15896:6;15891:3;15884:4;15877:5;15873:16;15851:52;:::i;:::-;15919:16;;;;;15756:185;-1:-1:-1;;15756:185:1:o;16064:1301::-;16341:3;16370:1;16403:6;16397:13;16433:3;16455:1;16483:9;16479:2;16475:18;16465:28;;16543:2;16532:9;16528:18;16565;16555:61;;16609:4;16601:6;16597:17;16587:27;;16555:61;16635:2;16683;16675:6;16672:14;16652:18;16649:38;16646:165;;;-1:-1:-1;;;16710:33:1;;16766:4;16763:1;16756:15;16796:4;16717:3;16784:17;16646:165;16827:18;16854:104;;;;16972:1;16967:320;;;;16820:467;;16854:104;-1:-1:-1;;16887:24:1;;16875:37;;16932:16;;;;-1:-1:-1;16854:104:1;;16967:320;15703:1;15696:14;;;15740:4;15727:18;;17062:1;17076:165;17090:6;17087:1;17084:13;17076:165;;;17168:14;;17155:11;;;17148:35;17211:16;;;;17105:10;;17076:165;;;17080:3;;17270:6;17265:3;17261:16;17254:23;;16820:467;;;;;;;17303:56;17328:30;17354:3;17346:6;17328:30;:::i;:::-;-1:-1:-1;;;16006:20:1;;16051:1;16042:11;;15946:113;17303:56;17296:63;16064:1301;-1:-1:-1;;;;;16064:1301:1:o;17777:204::-;17815:3;17851:4;17848:1;17844:12;17883:4;17880:1;17876:12;17918:3;17912:4;17908:14;17903:3;17900:23;17897:49;;;17926:18;;:::i;:::-;17962:13;;17777:204;-1:-1:-1;;;17777:204: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://a8f6b3afbcd1b53a75badfab31d91820165c1366957541d36d1f2e9861473dc0
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.