ETH Price: $3,133.70 (-8.41%)
Gas: 6 Gwei

Token

theonionz (ONION)
 

Overview

Max Total Supply

5,359 ONION

Holders

902

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 ONION
0xafe8f98b0605a98a7a7d49779ccd58cb36ac70b8
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:
theonionz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: Unlicense

/*
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@&# @& @ &#    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@# @& & &# &&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@&&&&@@@@@@@@@&      &@@       &@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@&  &@@@&  @@@&  &@@&   @@@&   @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@&       @@&   &@@&  @@@&  &@@&   @@@&   &#  @@@&  &@&&&&&&&&&&@@@@@@@@
@@@@@@@@@&  &@@@#  &&     @&  @@@&  &@@&   @@@&   &#   &@&  &&#######   @@@@@@@@
@@@@@@@@@&  &@@@#  &&   #  &  @@@&  &@@&   @@@&   &#    &&  &@@@@@&   &@@@@@@@@@
@@@@@@@@@&  &@@@#  &&   &&    @&      &@&#      @@&#  &     &@@@@#   @@@@@@@@@@@
@@@@@@@@@&  &@@@   &&   @@&   @@@@@@@@@@@@@@@@@@@@&#  @&    &@@&   &@@@@@@@@@@@@
@@@@@@@@@@&#     &@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&#  @@&&  &&          @@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&&&&&&&&&&&@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
*/


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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (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);

    /**
     * @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: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;



/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (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 currentIndex = 1;

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

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

    /**
     * @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;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; 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);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; 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 < currentIndex;
    }

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = 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.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = 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].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = 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 {}
}


// Ownable.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

//theonionz.sol

pragma solidity ^0.8.0;


contract theonionz is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;
    string public baseURI;
    uint256 public cost = 0.002 ether;
    uint256 public maxSupply = 5000;
    uint256 public maxFree = 1500;
    uint256 public maxperAddressFreeLimit = 2;
    uint256 public maxperAddressPublicMint = 20;

    mapping(address => uint256) public addressFreeMintedBalance;

    constructor() ERC721A("theonionz", "ONION") {
        setBaseURI("https://theonionz.s3.amazonaws.com/metadata/");

    }

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

    function mintFree(uint256 _mintAmount) public payable nonReentrant{
		uint256 s = totalSupply();
        uint256 addressFreeMintedCount = addressFreeMintedBalance[msg.sender];
        require(addressFreeMintedCount + _mintAmount <= maxperAddressFreeLimit, "Max onionz per address exceeded");
		require(_mintAmount > 0, "Cannot mint 0 Onionz" );
		require(s + _mintAmount <= maxFree, "Cannot exceed Onionz supply" );
		for (uint256 i = 0; i < _mintAmount; ++i) {
            addressFreeMintedBalance[msg.sender]++;

		}
        _safeMint(msg.sender, _mintAmount);
		delete s;
        delete addressFreeMintedCount;
	}


    function mint(uint256 _mintAmount) public payable nonReentrant {
        uint256 s = totalSupply();
        require(_mintAmount > 0, "Cannot mint 0 Onionz");
        require(_mintAmount <= maxperAddressPublicMint, "Cannot mint more Onionz" );
        require(s + _mintAmount <= maxSupply, "Cannot exceed Onionz supply");
        require(msg.value >= cost * _mintAmount);
        _safeMint(msg.sender, _mintAmount);
        delete s;
    }

    function gift(uint256[] calldata quantity, address[] calldata recipient)
        external
        onlyOwner{
        require(
            quantity.length == recipient.length,
            "Provide quantities and recipients"
        );
        uint256 totalQuantity = 0;
        uint256 s = totalSupply();
        for (uint256 i = 0; i < quantity.length; ++i) {
            totalQuantity += quantity[i];
        }
        require(s + totalQuantity <= maxSupply, "Too many Onionz");
        delete totalQuantity;
        for (uint256 i = 0; i < recipient.length; ++i) {
            _safeMint(recipient[i], quantity[i]);
        }
        delete s;
    }

    function tokenURI(uint256 tokenId)
        public view virtual override returns (string memory){
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json"))
                : "";
    }


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

    function setmaxSupply(uint256 _newMaxSupply) public onlyOwner {
        maxSupply = _newMaxSupply;
    }

    function setmaxFreeSupply(uint256 _newMaxFreeSupply) public onlyOwner {
               maxFree = _newMaxFreeSupply;
    }

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

    function setMaxperAddressPublicMint(uint256 _amount) public onlyOwner {
        maxperAddressPublicMint = _amount;
    }

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

    function withdrawAny(uint256 _amount) public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: _amount}("");
        require(success);
    }
}

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":"","type":"address"}],"name":"addressFreeMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressFreeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAny","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600160005566071afd498d0000600a55611388600b556105dc600c556002600d556014600e553480156200003757600080fd5b5060408051808201825260098152683a3432b7b734b7b73d60b91b60208083019182528351808501909452600584526427a724a7a760d91b9084015281519192916200008691600191620001b9565b5080516200009c906002906020840190620001b9565b505050620000b9620000b3620000eb60201b60201c565b620000ef565b6001600881905550620000e56040518060600160405280602c8152602001620027b5602c913962000141565b6200029c565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620001a05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001b5906009906020840190620001b9565b5050565b828054620001c7906200025f565b90600052602060002090601f016020900481019282620001eb576000855562000236565b82601f106200020657805160ff191683800117855562000236565b8280016001018555821562000236579182015b828111156200023657825182559160200191906001019062000219565b506200024492915062000248565b5090565b5b8082111562000244576000815560010162000249565b600181811c908216806200027457607f821691505b602082108114156200029657634e487b7160e01b600052602260045260246000fd5b50919050565b61250980620002ac6000396000f3fe60806040526004361061021a5760003560e01c80636352211e11610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146105d6578063d5abeb01146105f6578063dc4e66b51461060c578063e985e9c51461062c578063f2fde38b1461067557600080fd5b8063a0712d6814610550578063a22cb46514610563578063a414673314610583578063b88d4fde14610596578063bde12d73146105b657600080fd5b806377ad99f0116100f257806377ad99f0146104bd5780637c6b172d146104d05780638da5cb5b146104fd57806395d89b411461051b57806396ea3a471461053057600080fd5b80636352211e146104535780636c0360eb1461047357806370a0823114610488578063715018a6146104a857600080fd5b80632f745c59116101a657806344a0d68a1161017557806344a0d68a146103c7578063485a68a3146103e75780634f6ccce7146103fd57806355f804b31461041d57806356569a1d1461043d57600080fd5b80632f745c591461036957806334c8fd75146103895780633ccfd60b1461039f57806342842e0e146103a757600080fd5b8063095ea7b3116101ed578063095ea7b3146102d057806313faede6146102f057806318160ddd14610314578063228025e81461032957806323b872dd1461034957600080fd5b806301ffc9a71461021f578063022d67dd1461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a36600461218e565b610695565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004612211565b610702565b005b34801561028257600080fd5b5061028b61073a565b60405161024b91906122d2565b3480156102a457600080fd5b506102b86102b3366004612211565b6107cc565b6040516001600160a01b03909116815260200161024b565b3480156102dc57600080fd5b506102746102eb3660046120f8565b610857565b3480156102fc57600080fd5b50610306600a5481565b60405190815260200161024b565b34801561032057600080fd5b50600054610306565b34801561033557600080fd5b50610274610344366004612211565b61096f565b34801561035557600080fd5b50610274610364366004612004565b61099e565b34801561037557600080fd5b506103066103843660046120f8565b6109a9565b34801561039557600080fd5b50610306600e5481565b610274610b06565b3480156103b357600080fd5b506102746103c2366004612004565b610b88565b3480156103d357600080fd5b506102746103e2366004612211565b610ba3565b3480156103f357600080fd5b50610306600c5481565b34801561040957600080fd5b50610306610418366004612211565b610bd2565b34801561042957600080fd5b506102746104383660046121c8565b610c34565b34801561044957600080fd5b50610306600d5481565b34801561045f57600080fd5b506102b861046e366004612211565b610c75565b34801561047f57600080fd5b5061028b610c87565b34801561049457600080fd5b506103066104a3366004611fb6565b610d15565b3480156104b457600080fd5b50610274610da6565b6102746104cb366004612211565b610ddc565b3480156104dc57600080fd5b506103066104eb366004611fb6565b600f6020526000908152604090205481565b34801561050957600080fd5b506007546001600160a01b03166102b8565b34801561052757600080fd5b5061028b610e5b565b34801561053c57600080fd5b5061027461054b366004612122565b610e6a565b61027461055e366004612211565b610ffa565b34801561056f57600080fd5b5061027461057e3660046120bc565b611173565b610274610591366004612211565b611238565b3480156105a257600080fd5b506102746105b1366004612040565b6113f0565b3480156105c257600080fd5b506102746105d1366004612211565b611429565b3480156105e257600080fd5b5061028b6105f1366004612211565b611458565b34801561060257600080fd5b50610306600b5481565b34801561061857600080fd5b50610274610627366004612211565b611517565b34801561063857600080fd5b5061023f610647366004611fd1565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561068157600080fd5b50610274610690366004611fb6565b611546565b60006001600160e01b031982166380ac58cd60e01b14806106c657506001600160e01b03198216635b5e139f60e01b145b806106e157506001600160e01b0319821663780e9d6360e01b145b806106fc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146107355760405162461bcd60e51b815260040161072c906122e5565b60405180910390fd5b600e55565b606060018054610749906123fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610775906123fb565b80156107c25780601f10610797576101008083540402835291602001916107c2565b820191906000526020600020905b8154815290600101906020018083116107a557829003601f168201915b5050505050905090565b60006107d9826000541190565b61083b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161072c565b506000908152600560205260409020546001600160a01b031690565b600061086282610c75565b9050806001600160a01b0316836001600160a01b031614156108d15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161072c565b336001600160a01b03821614806108ed57506108ed8133610647565b61095f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161072c565b61096a8383836115de565b505050565b6007546001600160a01b031633146109995760405162461bcd60e51b815260040161072c906122e5565b600b55565b61096a83838361163a565b60006109b483610d15565b8210610a0d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161072c565b600080549080805b83811015610aa6576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a6857805192505b876001600160a01b0316836001600160a01b03161415610a9d5786841415610a96575093506106fc92505050565b6001909301925b50600101610a15565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161072c565b6007546001600160a01b03163314610b305760405162461bcd60e51b815260040161072c906122e5565b604051600090339047908381818185875af1925050503d8060008114610b72576040519150601f19603f3d011682016040523d82523d6000602084013e610b77565b606091505b5050905080610b8557600080fd5b50565b61096a838383604051806020016040528060008152506113f0565b6007546001600160a01b03163314610bcd5760405162461bcd60e51b815260040161072c906122e5565b600a55565b600080548210610c305760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161072c565b5090565b6007546001600160a01b03163314610c5e5760405162461bcd60e51b815260040161072c906122e5565b8051610c71906009906020840190611e48565b5050565b6000610c808261191f565b5192915050565b60098054610c94906123fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc0906123fb565b8015610d0d5780601f10610ce257610100808354040283529160200191610d0d565b820191906000526020600020905b815481529060010190602001808311610cf057829003601f168201915b505050505081565b60006001600160a01b038216610d815760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161072c565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610dd05760405162461bcd60e51b815260040161072c906122e5565b610dda60006119f6565b565b6007546001600160a01b03163314610e065760405162461bcd60e51b815260040161072c906122e5565b604051600090339083908381818185875af1925050503d8060008114610e48576040519150601f19603f3d011682016040523d82523d6000602084013e610e4d565b606091505b5050905080610c7157600080fd5b606060028054610749906123fb565b6007546001600160a01b03163314610e945760405162461bcd60e51b815260040161072c906122e5565b828114610eed5760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b606482015260840161072c565b600080610ef960005490565b905060005b85811015610f3c57868682818110610f1857610f18612491565b9050602002013583610f2a919061236d565b9250610f3581612436565b9050610efe565b50600b54610f4a838361236d565b1115610f8a5760405162461bcd60e51b815260206004820152600f60248201526e2a37b79036b0b73c9027b734b7b73d60891b604482015260640161072c565b6000915060005b83811015610ff157610fe1858583818110610fae57610fae612491565b9050602002016020810190610fc39190611fb6565b888884818110610fd557610fd5612491565b90506020020135611a48565b610fea81612436565b9050610f91565b50505050505050565b6002600854141561104d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161072c565b6002600855600054816110995760405162461bcd60e51b815260206004820152601460248201527321b0b73737ba1036b4b73a10181027b734b7b73d60611b604482015260640161072c565b600e548211156110eb5760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74206d696e74206d6f7265204f6e696f6e7a000000000000000000604482015260640161072c565b600b546110f8838361236d565b11156111465760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f7420657863656564204f6e696f6e7a20737570706c790000000000604482015260640161072c565b81600a546111549190612399565b34101561116057600080fd5b61116a3383611a48565b50506001600855565b6001600160a01b0382163314156111cc5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161072c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6002600854141561128b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161072c565b600260085560008054338252600f602052604090912054600d546112af848361236d565b11156112fd5760405162461bcd60e51b815260206004820152601f60248201527f4d6178206f6e696f6e7a20706572206164647265737320657863656564656400604482015260640161072c565b600083116113445760405162461bcd60e51b815260206004820152601460248201527321b0b73737ba1036b4b73a10181027b734b7b73d60611b604482015260640161072c565b600c54611351848461236d565b111561139f5760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f7420657863656564204f6e696f6e7a20737570706c790000000000604482015260640161072c565b60005b838110156113db57336000908152600f602052604081208054916113c583612436565b9190505550806113d490612436565b90506113a2565b506113e63384611a48565b5050600160085550565b6113fb84848461163a565b61140784848484611a62565b6114235760405162461bcd60e51b815260040161072c9061231a565b50505050565b6007546001600160a01b031633146114535760405162461bcd60e51b815260040161072c906122e5565b600c55565b6060611465826000541190565b6114bb5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b606482015260840161072c565b60006114c5611b70565b905060008151116114e55760405180602001604052806000815250611510565b806114ef84611b7f565b604051602001611500929190612256565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146115415760405162461bcd60e51b815260040161072c906122e5565b600d55565b6007546001600160a01b031633146115705760405162461bcd60e51b815260040161072c906122e5565b6001600160a01b0381166115d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072c565b610b85816119f6565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116458261191f565b80519091506000906001600160a01b0316336001600160a01b0316148061167c575033611671846107cc565b6001600160a01b0316145b8061168e5750815161168e9033610647565b9050806116f85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161072c565b846001600160a01b031682600001516001600160a01b03161461176c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161072c565b6001600160a01b0384166117d05760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161072c565b6117e060008484600001516115de565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166118d557611888816000541190565b156118d5578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080518082019091526000808252602082015261193e826000541190565b61199d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161072c565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156119ec579392505050565b506000190161199f565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c71828260405180602001604052806000815250611c7d565b60006001600160a01b0384163b15611b6457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611aa6903390899088908890600401612295565b602060405180830381600087803b158015611ac057600080fd5b505af1925050508015611af0575060408051601f3d908101601f19168201909252611aed918101906121ab565b60015b611b4a573d808015611b1e576040519150601f19603f3d011682016040523d82523d6000602084013e611b23565b606091505b508051611b425760405162461bcd60e51b815260040161072c9061231a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b68565b5060015b949350505050565b606060098054610749906123fb565b606081611ba35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bcd5780611bb781612436565b9150611bc69050600a83612385565b9150611ba7565b60008167ffffffffffffffff811115611be857611be86124a7565b6040519080825280601f01601f191660200182016040528015611c12576020820181803683370190505b5090505b8415611b6857611c276001836123b8565b9150611c34600a86612451565b611c3f90603061236d565b60f81b818381518110611c5457611c54612491565b60200101906001600160f81b031916908160001a905350611c76600a86612385565b9450611c16565b61096a83838360016000546001600160a01b038516611ce85760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161072c565b83611d465760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161072c565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611e3f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611e3357611e176000888488611a62565b611e335760405162461bcd60e51b815260040161072c9061231a565b60019182019101611dc4565b50600055611918565b828054611e54906123fb565b90600052602060002090601f016020900481019282611e765760008555611ebc565b82601f10611e8f57805160ff1916838001178555611ebc565b82800160010185558215611ebc579182015b82811115611ebc578251825591602001919060010190611ea1565b50610c309291505b80821115610c305760008155600101611ec4565b600067ffffffffffffffff80841115611ef357611ef36124a7565b604051601f8501601f19908116603f01168101908282118183101715611f1b57611f1b6124a7565b81604052809350858152868686011115611f3457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f6557600080fd5b919050565b60008083601f840112611f7c57600080fd5b50813567ffffffffffffffff811115611f9457600080fd5b6020830191508360208260051b8501011115611faf57600080fd5b9250929050565b600060208284031215611fc857600080fd5b61151082611f4e565b60008060408385031215611fe457600080fd5b611fed83611f4e565b9150611ffb60208401611f4e565b90509250929050565b60008060006060848603121561201957600080fd5b61202284611f4e565b925061203060208501611f4e565b9150604084013590509250925092565b6000806000806080858703121561205657600080fd5b61205f85611f4e565b935061206d60208601611f4e565b925060408501359150606085013567ffffffffffffffff81111561209057600080fd5b8501601f810187136120a157600080fd5b6120b087823560208401611ed8565b91505092959194509250565b600080604083850312156120cf57600080fd5b6120d883611f4e565b9150602083013580151581146120ed57600080fd5b809150509250929050565b6000806040838503121561210b57600080fd5b61211483611f4e565b946020939093013593505050565b6000806000806040858703121561213857600080fd5b843567ffffffffffffffff8082111561215057600080fd5b61215c88838901611f6a565b9096509450602087013591508082111561217557600080fd5b5061218287828801611f6a565b95989497509550505050565b6000602082840312156121a057600080fd5b8135611510816124bd565b6000602082840312156121bd57600080fd5b8151611510816124bd565b6000602082840312156121da57600080fd5b813567ffffffffffffffff8111156121f157600080fd5b8201601f8101841361220257600080fd5b611b6884823560208401611ed8565b60006020828403121561222357600080fd5b5035919050565b600081518084526122428160208601602086016123cf565b601f01601f19169290920160200192915050565b600083516122688184602088016123cf565b83519083019061227c8183602088016123cf565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122c89083018461222a565b9695505050505050565b602081526000611510602083018461222a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000821982111561238057612380612465565b500190565b6000826123945761239461247b565b500490565b60008160001904831182151516156123b3576123b3612465565b500290565b6000828210156123ca576123ca612465565b500390565b60005b838110156123ea5781810151838201526020016123d2565b838111156114235750506000910152565b600181811c9082168061240f57607f821691505b6020821081141561243057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561244a5761244a612465565b5060010190565b6000826124605761246061247b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b8557600080fdfea26469706673582212200cdc449c086e8bec8dbd955712528102eda11493b32f7486547065f9d14d7df564736f6c6343000807003368747470733a2f2f7468656f6e696f6e7a2e73332e616d617a6f6e6177732e636f6d2f6d657461646174612f

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636352211e11610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146105d6578063d5abeb01146105f6578063dc4e66b51461060c578063e985e9c51461062c578063f2fde38b1461067557600080fd5b8063a0712d6814610550578063a22cb46514610563578063a414673314610583578063b88d4fde14610596578063bde12d73146105b657600080fd5b806377ad99f0116100f257806377ad99f0146104bd5780637c6b172d146104d05780638da5cb5b146104fd57806395d89b411461051b57806396ea3a471461053057600080fd5b80636352211e146104535780636c0360eb1461047357806370a0823114610488578063715018a6146104a857600080fd5b80632f745c59116101a657806344a0d68a1161017557806344a0d68a146103c7578063485a68a3146103e75780634f6ccce7146103fd57806355f804b31461041d57806356569a1d1461043d57600080fd5b80632f745c591461036957806334c8fd75146103895780633ccfd60b1461039f57806342842e0e146103a757600080fd5b8063095ea7b3116101ed578063095ea7b3146102d057806313faede6146102f057806318160ddd14610314578063228025e81461032957806323b872dd1461034957600080fd5b806301ffc9a71461021f578063022d67dd1461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a36600461218e565b610695565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004612211565b610702565b005b34801561028257600080fd5b5061028b61073a565b60405161024b91906122d2565b3480156102a457600080fd5b506102b86102b3366004612211565b6107cc565b6040516001600160a01b03909116815260200161024b565b3480156102dc57600080fd5b506102746102eb3660046120f8565b610857565b3480156102fc57600080fd5b50610306600a5481565b60405190815260200161024b565b34801561032057600080fd5b50600054610306565b34801561033557600080fd5b50610274610344366004612211565b61096f565b34801561035557600080fd5b50610274610364366004612004565b61099e565b34801561037557600080fd5b506103066103843660046120f8565b6109a9565b34801561039557600080fd5b50610306600e5481565b610274610b06565b3480156103b357600080fd5b506102746103c2366004612004565b610b88565b3480156103d357600080fd5b506102746103e2366004612211565b610ba3565b3480156103f357600080fd5b50610306600c5481565b34801561040957600080fd5b50610306610418366004612211565b610bd2565b34801561042957600080fd5b506102746104383660046121c8565b610c34565b34801561044957600080fd5b50610306600d5481565b34801561045f57600080fd5b506102b861046e366004612211565b610c75565b34801561047f57600080fd5b5061028b610c87565b34801561049457600080fd5b506103066104a3366004611fb6565b610d15565b3480156104b457600080fd5b50610274610da6565b6102746104cb366004612211565b610ddc565b3480156104dc57600080fd5b506103066104eb366004611fb6565b600f6020526000908152604090205481565b34801561050957600080fd5b506007546001600160a01b03166102b8565b34801561052757600080fd5b5061028b610e5b565b34801561053c57600080fd5b5061027461054b366004612122565b610e6a565b61027461055e366004612211565b610ffa565b34801561056f57600080fd5b5061027461057e3660046120bc565b611173565b610274610591366004612211565b611238565b3480156105a257600080fd5b506102746105b1366004612040565b6113f0565b3480156105c257600080fd5b506102746105d1366004612211565b611429565b3480156105e257600080fd5b5061028b6105f1366004612211565b611458565b34801561060257600080fd5b50610306600b5481565b34801561061857600080fd5b50610274610627366004612211565b611517565b34801561063857600080fd5b5061023f610647366004611fd1565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561068157600080fd5b50610274610690366004611fb6565b611546565b60006001600160e01b031982166380ac58cd60e01b14806106c657506001600160e01b03198216635b5e139f60e01b145b806106e157506001600160e01b0319821663780e9d6360e01b145b806106fc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146107355760405162461bcd60e51b815260040161072c906122e5565b60405180910390fd5b600e55565b606060018054610749906123fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610775906123fb565b80156107c25780601f10610797576101008083540402835291602001916107c2565b820191906000526020600020905b8154815290600101906020018083116107a557829003601f168201915b5050505050905090565b60006107d9826000541190565b61083b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161072c565b506000908152600560205260409020546001600160a01b031690565b600061086282610c75565b9050806001600160a01b0316836001600160a01b031614156108d15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161072c565b336001600160a01b03821614806108ed57506108ed8133610647565b61095f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161072c565b61096a8383836115de565b505050565b6007546001600160a01b031633146109995760405162461bcd60e51b815260040161072c906122e5565b600b55565b61096a83838361163a565b60006109b483610d15565b8210610a0d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161072c565b600080549080805b83811015610aa6576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a6857805192505b876001600160a01b0316836001600160a01b03161415610a9d5786841415610a96575093506106fc92505050565b6001909301925b50600101610a15565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161072c565b6007546001600160a01b03163314610b305760405162461bcd60e51b815260040161072c906122e5565b604051600090339047908381818185875af1925050503d8060008114610b72576040519150601f19603f3d011682016040523d82523d6000602084013e610b77565b606091505b5050905080610b8557600080fd5b50565b61096a838383604051806020016040528060008152506113f0565b6007546001600160a01b03163314610bcd5760405162461bcd60e51b815260040161072c906122e5565b600a55565b600080548210610c305760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161072c565b5090565b6007546001600160a01b03163314610c5e5760405162461bcd60e51b815260040161072c906122e5565b8051610c71906009906020840190611e48565b5050565b6000610c808261191f565b5192915050565b60098054610c94906123fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc0906123fb565b8015610d0d5780601f10610ce257610100808354040283529160200191610d0d565b820191906000526020600020905b815481529060010190602001808311610cf057829003601f168201915b505050505081565b60006001600160a01b038216610d815760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161072c565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610dd05760405162461bcd60e51b815260040161072c906122e5565b610dda60006119f6565b565b6007546001600160a01b03163314610e065760405162461bcd60e51b815260040161072c906122e5565b604051600090339083908381818185875af1925050503d8060008114610e48576040519150601f19603f3d011682016040523d82523d6000602084013e610e4d565b606091505b5050905080610c7157600080fd5b606060028054610749906123fb565b6007546001600160a01b03163314610e945760405162461bcd60e51b815260040161072c906122e5565b828114610eed5760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b606482015260840161072c565b600080610ef960005490565b905060005b85811015610f3c57868682818110610f1857610f18612491565b9050602002013583610f2a919061236d565b9250610f3581612436565b9050610efe565b50600b54610f4a838361236d565b1115610f8a5760405162461bcd60e51b815260206004820152600f60248201526e2a37b79036b0b73c9027b734b7b73d60891b604482015260640161072c565b6000915060005b83811015610ff157610fe1858583818110610fae57610fae612491565b9050602002016020810190610fc39190611fb6565b888884818110610fd557610fd5612491565b90506020020135611a48565b610fea81612436565b9050610f91565b50505050505050565b6002600854141561104d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161072c565b6002600855600054816110995760405162461bcd60e51b815260206004820152601460248201527321b0b73737ba1036b4b73a10181027b734b7b73d60611b604482015260640161072c565b600e548211156110eb5760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74206d696e74206d6f7265204f6e696f6e7a000000000000000000604482015260640161072c565b600b546110f8838361236d565b11156111465760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f7420657863656564204f6e696f6e7a20737570706c790000000000604482015260640161072c565b81600a546111549190612399565b34101561116057600080fd5b61116a3383611a48565b50506001600855565b6001600160a01b0382163314156111cc5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161072c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6002600854141561128b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161072c565b600260085560008054338252600f602052604090912054600d546112af848361236d565b11156112fd5760405162461bcd60e51b815260206004820152601f60248201527f4d6178206f6e696f6e7a20706572206164647265737320657863656564656400604482015260640161072c565b600083116113445760405162461bcd60e51b815260206004820152601460248201527321b0b73737ba1036b4b73a10181027b734b7b73d60611b604482015260640161072c565b600c54611351848461236d565b111561139f5760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f7420657863656564204f6e696f6e7a20737570706c790000000000604482015260640161072c565b60005b838110156113db57336000908152600f602052604081208054916113c583612436565b9190505550806113d490612436565b90506113a2565b506113e63384611a48565b5050600160085550565b6113fb84848461163a565b61140784848484611a62565b6114235760405162461bcd60e51b815260040161072c9061231a565b50505050565b6007546001600160a01b031633146114535760405162461bcd60e51b815260040161072c906122e5565b600c55565b6060611465826000541190565b6114bb5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b606482015260840161072c565b60006114c5611b70565b905060008151116114e55760405180602001604052806000815250611510565b806114ef84611b7f565b604051602001611500929190612256565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146115415760405162461bcd60e51b815260040161072c906122e5565b600d55565b6007546001600160a01b031633146115705760405162461bcd60e51b815260040161072c906122e5565b6001600160a01b0381166115d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072c565b610b85816119f6565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116458261191f565b80519091506000906001600160a01b0316336001600160a01b0316148061167c575033611671846107cc565b6001600160a01b0316145b8061168e5750815161168e9033610647565b9050806116f85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161072c565b846001600160a01b031682600001516001600160a01b03161461176c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161072c565b6001600160a01b0384166117d05760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161072c565b6117e060008484600001516115de565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166118d557611888816000541190565b156118d5578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080518082019091526000808252602082015261193e826000541190565b61199d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161072c565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156119ec579392505050565b506000190161199f565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c71828260405180602001604052806000815250611c7d565b60006001600160a01b0384163b15611b6457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611aa6903390899088908890600401612295565b602060405180830381600087803b158015611ac057600080fd5b505af1925050508015611af0575060408051601f3d908101601f19168201909252611aed918101906121ab565b60015b611b4a573d808015611b1e576040519150601f19603f3d011682016040523d82523d6000602084013e611b23565b606091505b508051611b425760405162461bcd60e51b815260040161072c9061231a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b68565b5060015b949350505050565b606060098054610749906123fb565b606081611ba35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bcd5780611bb781612436565b9150611bc69050600a83612385565b9150611ba7565b60008167ffffffffffffffff811115611be857611be86124a7565b6040519080825280601f01601f191660200182016040528015611c12576020820181803683370190505b5090505b8415611b6857611c276001836123b8565b9150611c34600a86612451565b611c3f90603061236d565b60f81b818381518110611c5457611c54612491565b60200101906001600160f81b031916908160001a905350611c76600a86612385565b9450611c16565b61096a83838360016000546001600160a01b038516611ce85760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161072c565b83611d465760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161072c565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611e3f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611e3357611e176000888488611a62565b611e335760405162461bcd60e51b815260040161072c9061231a565b60019182019101611dc4565b50600055611918565b828054611e54906123fb565b90600052602060002090601f016020900481019282611e765760008555611ebc565b82601f10611e8f57805160ff1916838001178555611ebc565b82800160010185558215611ebc579182015b82811115611ebc578251825591602001919060010190611ea1565b50610c309291505b80821115610c305760008155600101611ec4565b600067ffffffffffffffff80841115611ef357611ef36124a7565b604051601f8501601f19908116603f01168101908282118183101715611f1b57611f1b6124a7565b81604052809350858152868686011115611f3457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f6557600080fd5b919050565b60008083601f840112611f7c57600080fd5b50813567ffffffffffffffff811115611f9457600080fd5b6020830191508360208260051b8501011115611faf57600080fd5b9250929050565b600060208284031215611fc857600080fd5b61151082611f4e565b60008060408385031215611fe457600080fd5b611fed83611f4e565b9150611ffb60208401611f4e565b90509250929050565b60008060006060848603121561201957600080fd5b61202284611f4e565b925061203060208501611f4e565b9150604084013590509250925092565b6000806000806080858703121561205657600080fd5b61205f85611f4e565b935061206d60208601611f4e565b925060408501359150606085013567ffffffffffffffff81111561209057600080fd5b8501601f810187136120a157600080fd5b6120b087823560208401611ed8565b91505092959194509250565b600080604083850312156120cf57600080fd5b6120d883611f4e565b9150602083013580151581146120ed57600080fd5b809150509250929050565b6000806040838503121561210b57600080fd5b61211483611f4e565b946020939093013593505050565b6000806000806040858703121561213857600080fd5b843567ffffffffffffffff8082111561215057600080fd5b61215c88838901611f6a565b9096509450602087013591508082111561217557600080fd5b5061218287828801611f6a565b95989497509550505050565b6000602082840312156121a057600080fd5b8135611510816124bd565b6000602082840312156121bd57600080fd5b8151611510816124bd565b6000602082840312156121da57600080fd5b813567ffffffffffffffff8111156121f157600080fd5b8201601f8101841361220257600080fd5b611b6884823560208401611ed8565b60006020828403121561222357600080fd5b5035919050565b600081518084526122428160208601602086016123cf565b601f01601f19169290920160200192915050565b600083516122688184602088016123cf565b83519083019061227c8183602088016123cf565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122c89083018461222a565b9695505050505050565b602081526000611510602083018461222a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000821982111561238057612380612465565b500190565b6000826123945761239461247b565b500490565b60008160001904831182151516156123b3576123b3612465565b500290565b6000828210156123ca576123ca612465565b500390565b60005b838110156123ea5781810151838201526020016123d2565b838111156114235750506000910152565b600181811c9082168061240f57607f821691505b6020821081141561243057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561244a5761244a612465565b5060010190565b6000826124605761246061247b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b8557600080fdfea26469706673582212200cdc449c086e8bec8dbd955712528102eda11493b32f7486547065f9d14d7df564736f6c63430008070033

Deployed Bytecode Sourcemap

44121:3914:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26027:372;;;;;;;;;;-1:-1:-1;26027:372:0;;;;;:::i;:::-;;:::i;:::-;;;7173:14:1;;7166:22;7148:41;;7136:2;7121:18;26027:372:0;;;;;;;;47406:122;;;;;;;;;;-1:-1:-1;47406:122:0;;;;;:::i;:::-;;:::i;:::-;;27913:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29475:214::-;;;;;;;;;;-1:-1:-1;29475:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6471:32:1;;;6453:51;;6441:2;6426:18;29475:214:0;6307:203:1;28996:413:0;;;;;;;;;;-1:-1:-1;28996:413:0;;;;;:::i;:::-;;:::i;44244:33::-;;;;;;;;;;;;;;;;;;;17785:25:1;;;17773:2;17758:18;44244:33:0;17639:177:1;24284:100:0;;;;;;;;;;-1:-1:-1;24337:7:0;24364:12;24284:100;;47049:106;;;;;;;;;;-1:-1:-1;47049:106:0;;;;;:::i;:::-;;:::i;30351:162::-;;;;;;;;;;-1:-1:-1;30351:162:0;;;;;:::i;:::-;;:::i;24948:1007::-;;;;;;;;;;-1:-1:-1;24948:1007:0;;;;;:::i;:::-;;:::i;44406:43::-;;;;;;;;;;;;;;;;47660:192;;;:::i;30584:177::-;;;;;;;;;;-1:-1:-1;30584:177:0;;;;;:::i;:::-;;:::i;46955:86::-;;;;;;;;;;-1:-1:-1;46955:86:0;;;;;:::i;:::-;;:::i;44322:29::-;;;;;;;;;;;;;;;;24461:187;;;;;;;;;;-1:-1:-1;24461:187:0;;;;;:::i;:::-;;:::i;47294:104::-;;;;;;;;;;-1:-1:-1;47294:104:0;;;;;:::i;:::-;;:::i;44358:41::-;;;;;;;;;;;;;;;;27722:124;;;;;;;;;;-1:-1:-1;27722:124:0;;;;;:::i;:::-;;:::i;44216:21::-;;;;;;;;;;;;;:::i;26463:221::-;;;;;;;;;;-1:-1:-1;26463:221:0;;;;;:::i;:::-;;:::i;40784:94::-;;;;;;;;;;;;;:::i;47860:172::-;;;;;;:::i;:::-;;:::i;44458:59::-;;;;;;;;;;-1:-1:-1;44458:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;40133:87;;;;;;;;;;-1:-1:-1;40206:6:0;;-1:-1:-1;;;;;40206:6:0;40133:87;;28082:104;;;;;;;;;;;;;:::i;45866:668::-;;;;;;;;;;-1:-1:-1;45866:668:0;;;;;:::i;:::-;;:::i;45412:446::-;;;;;;:::i;:::-;;:::i;29761:288::-;;;;;;;;;;-1:-1:-1;29761:288:0;;;;;:::i;:::-;;:::i;44773:629::-;;;;;;:::i;:::-;;:::i;30832:355::-;;;;;;;;;;-1:-1:-1;30832:355:0;;;;;:::i;:::-;;:::i;47163:123::-;;;;;;;;;;-1:-1:-1;47163:123:0;;;;;:::i;:::-;;:::i;46542:403::-;;;;;;;;;;-1:-1:-1;46542:403:0;;;;;:::i;:::-;;:::i;44284:31::-;;;;;;;;;;;;;;;;47536:118;;;;;;;;;;-1:-1:-1;47536:118:0;;;;;:::i;:::-;;:::i;30120:164::-;;;;;;;;;;-1:-1:-1;30120:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30241:25:0;;;30217:4;30241:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30120:164;41033:229;;;;;;;;;;-1:-1:-1;41033:229:0;;;;;:::i;:::-;;:::i;26027:372::-;26129:4;-1:-1:-1;;;;;;26166:40:0;;-1:-1:-1;;;26166:40:0;;:105;;-1:-1:-1;;;;;;;26223:48:0;;-1:-1:-1;;;26223:48:0;26166:105;:172;;;-1:-1:-1;;;;;;;26288:50:0;;-1:-1:-1;;;26288:50:0;26166:172;:225;;;-1:-1:-1;;;;;;;;;;15664:40:0;;;26355:36;26146:245;26027:372;-1:-1:-1;;26027:372:0:o;47406:122::-;40206:6;;-1:-1:-1;;;;;40206:6:0;4082:10;40353:23;40345:68;;;;-1:-1:-1;;;40345:68:0;;;;;;;:::i;:::-;;;;;;;;;47487:23:::1;:33:::0;47406:122::o;27913:100::-;27967:13;28000:5;27993:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27913:100;:::o;29475:214::-;29543:7;29571:16;29579:7;31499:4;31533:12;-1:-1:-1;31523:22:0;31442:111;29571:16;29563:74;;;;-1:-1:-1;;;29563:74:0;;17427:2:1;29563:74:0;;;17409:21:1;17466:2;17446:18;;;17439:30;17505:34;17485:18;;;17478:62;-1:-1:-1;;;17556:18:1;;;17549:43;17609:19;;29563:74:0;17225:409:1;29563:74:0;-1:-1:-1;29657:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29657:24:0;;29475:214::o;28996:413::-;29069:13;29085:24;29101:7;29085:15;:24::i;:::-;29069:40;;29134:5;-1:-1:-1;;;;;29128:11:0;:2;-1:-1:-1;;;;;29128:11:0;;;29120:58;;;;-1:-1:-1;;;29120:58:0;;14246:2:1;29120:58:0;;;14228:21:1;14285:2;14265:18;;;14258:30;14324:34;14304:18;;;14297:62;-1:-1:-1;;;14375:18:1;;;14368:32;14417:19;;29120:58:0;14044:398:1;29120:58:0;4082:10;-1:-1:-1;;;;;29213:21:0;;;;:62;;-1:-1:-1;29238:37:0;29255:5;4082:10;30120:164;:::i;29238:37::-;29191:169;;;;-1:-1:-1;;;29191:169:0;;11157:2:1;29191:169:0;;;11139:21:1;11196:2;11176:18;;;11169:30;11235:34;11215:18;;;11208:62;11306:27;11286:18;;;11279:55;11351:19;;29191:169:0;10955:421:1;29191:169:0;29373:28;29382:2;29386:7;29395:5;29373:8;:28::i;:::-;29058:351;28996:413;;:::o;47049:106::-;40206:6;;-1:-1:-1;;;;;40206:6:0;4082:10;40353:23;40345:68;;;;-1:-1:-1;;;40345:68:0;;;;;;;:::i;:::-;47122:9:::1;:25:::0;47049:106::o;30351:162::-;30477:28;30487:4;30493:2;30497:7;30477:9;:28::i;24948:1007::-;25037:7;25073:16;25083:5;25073:9;:16::i;:::-;25065:5;:24;25057:71;;;;-1:-1:-1;;;25057:71:0;;7626:2:1;25057:71:0;;;7608:21:1;7665:2;7645:18;;;7638:30;7704:34;7684:18;;;7677:62;-1:-1:-1;;;7755:18:1;;;7748:32;7797:19;;25057:71:0;7424:398:1;25057:71:0;25139:22;24364:12;;;25139:22;;25402:466;25422:14;25418:1;:18;25402:466;;;25462:31;25496:14;;;:11;:14;;;;;;;;;25462:48;;;;;;;;;-1:-1:-1;;;;;25462:48:0;;;;;-1:-1:-1;;;25462:48:0;;;;;;;;;;;;25533:28;25529:111;;25606:14;;;-1:-1:-1;25529:111:0;25683:5;-1:-1:-1;;;;;25662:26:0;:17;-1:-1:-1;;;;;25662:26:0;;25658:195;;;25732:5;25717:11;:20;25713:85;;;-1:-1:-1;25773:1:0;-1:-1:-1;25766:8:0;;-1:-1:-1;;;25766:8:0;25713:85;25820:13;;;;;25658:195;-1:-1:-1;25438:3:0;;25402:466;;;-1:-1:-1;25891:56:0;;-1:-1:-1;;;25891:56:0;;16236:2:1;25891:56:0;;;16218:21:1;16275:2;16255:18;;;16248:30;16314:34;16294:18;;;16287:62;-1:-1:-1;;;16365:18:1;;;16358:44;16419:19;;25891:56:0;16034:410:1;47660:192:0;40206:6;;-1:-1:-1;;;;;40206:6:0;4082:10;40353:23;40345:68;;;;-1:-1:-1;;;40345:68:0;;;;;;;:::i;:::-;47735:82:::1;::::0;47717:12:::1;::::0;47743:10:::1;::::0;47781:21:::1;::::0;47717:12;47735:82;47717:12;47735:82;47781:21;47743:10;47735:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47716:101;;;47836:7;47828:16;;;::::0;::::1;;47705:147;47660:192::o:0;30584:177::-;30714:39;30731:4;30737:2;30741:7;30714:39;;;;;;;;;;;;:16;:39::i;46955:86::-;40206:6;;-1:-1:-1;;;;;40206:6:0;4082:10;40353:23;40345:68;;;;-1:-1:-1;;;40345:68:0;;;;;;;:::i;:::-;47018:4:::1;:15:::0;46955:86::o;24461:187::-;24528:7;24364:12;;24556:5;:21;24548:69;;;;-1:-1:-1;;;24548:69:0;;9945:2:1;24548:69:0;;;9927:21:1;9984:2;9964:18;;;9957:30;10023:34;10003:18;;;9996:62;-1:-1:-1;;;10074:18:1;;;10067:33;10117:19;;24548:69:0;9743:399:1;24548:69:0;-1:-1:-1;24635:5:0;24461:187::o;47294:104::-;40206:6;;-1:-1:-1;;;;;40206:6:0;4082:10;40353:23;40345:68;;;;-1:-1:-1;;;40345:68:0;;;;;;;:::i;:::-;47369:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47294:104:::0;:::o;27722:124::-;27786:7;27813:20;27825:7;27813:11;:20::i;:::-;:25;;27722:124;-1:-1:-1;;27722:124:0:o;44216:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26463:221::-;26527:7;-1:-1:-1;;;;;26555:19:0;;26547:75;;;;-1:-1:-1;;;26547:75:0;;11583:2:1;26547:75:0;;;11565:21:1;11622:2;11602:18;;;11595:30;11661:34;11641:18;;;11634:62;-1:-1:-1;;;11712:18:1;;;11705:41;11763:19;;26547:75:0;11381:407:1;26547:75:0;-1:-1:-1;;;;;;26648:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26648:27:0;;26463:221::o;40784:94::-;40206:6;;-1:-1:-1;;;;;40206:6:0;4082:10;40353:23;40345:68;;;;-1:-1:-1;;;40345:68:0;;;;;;;:::i;:::-;40849:21:::1;40867:1;40849:9;:21::i;:::-;40784:94::o:0;47860:172::-;40206:6;;-1:-1:-1;;;;;40206:6:0;4082:10;40353:23;40345:68;;;;-1:-1:-1;;;40345:68:0;;;;;;;:::i;:::-;47953:44:::1;::::0;47935:12:::1;::::0;47961:10:::1;::::0;47985:7;;47935:12;47953:44;47935:12;47953:44;47985:7;47961:10;47953:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47934:63;;;48016:7;48008:16;;;::::0;::::1;28082:104:::0;28138:13;28171:7;28164:14;;;;;:::i;45866:668::-;40206:6;;-1:-1:-1;;;;;40206:6:0;4082:10;40353:23;40345:68;;;;-1:-1:-1;;;40345:68:0;;;;;;;:::i;:::-;46008:35;;::::1;45986:118;;;::::0;-1:-1:-1;;;45986:118:0;;10755:2:1;45986:118:0::1;::::0;::::1;10737:21:1::0;10794:2;10774:18;;;10767:30;10833:34;10813:18;;;10806:62;-1:-1:-1;;;10884:18:1;;;10877:31;10925:19;;45986:118:0::1;10553:397:1::0;45986:118:0::1;46115:21;46151:9:::0;46163:13:::1;24337:7:::0;24364:12;;24284:100;46163:13:::1;46151:25;;46192:9;46187:101;46207:19:::0;;::::1;46187:101;;;46265:8;;46274:1;46265:11;;;;;;;:::i;:::-;;;;;;;46248:28;;;;;:::i;:::-;::::0;-1:-1:-1;46228:3:0::1;::::0;::::1;:::i;:::-;;;46187:101;;;-1:-1:-1::0;46327:9:0::1;::::0;46306:17:::1;46310:13:::0;46306:1;:17:::1;:::i;:::-;:30;;46298:58;;;::::0;-1:-1:-1;;;46298:58:0;;8783:2:1;46298:58:0::1;::::0;::::1;8765:21:1::0;8822:2;8802:18;;;8795:30;-1:-1:-1;;;8841:18:1;;;8834:45;8896:18;;46298:58:0::1;8581:339:1::0;46298:58:0::1;46367:20;;;46403:9;46398:110;46418:20:::0;;::::1;46398:110;;;46460:36;46470:9;;46480:1;46470:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;46484:8;;46493:1;46484:11;;;;;;;:::i;:::-;;;;;;;46460:9;:36::i;:::-;46440:3;::::0;::::1;:::i;:::-;;;46398:110;;;-1:-1:-1::0;;;;;;;45866:668:0:o;45412:446::-;43128:1;43724:7;;:19;;43716:63;;;;-1:-1:-1;;;43716:63:0;;16651:2:1;43716:63:0;;;16633:21:1;16690:2;16670:18;;;16663:30;16729:33;16709:18;;;16702:61;16780:18;;43716:63:0;16449:355:1;43716:63:0;43128:1;43857:7;:18;45486:9:::1;24364:12:::0;45530:15;45522:48:::1;;;::::0;-1:-1:-1;;;45522:48:0;;13123:2:1;45522:48:0::1;::::0;::::1;13105:21:1::0;13162:2;13142:18;;;13135:30;-1:-1:-1;;;13181:18:1;;;13174:50;13241:18;;45522:48:0::1;12921:344:1::0;45522:48:0::1;45604:23;;45589:11;:38;;45581:75;;;::::0;-1:-1:-1;;;45581:75:0;;8029:2:1;45581:75:0::1;::::0;::::1;8011:21:1::0;8068:2;8048:18;;;8041:30;8107:25;8087:18;;;8080:53;8150:18;;45581:75:0::1;7827:347:1::0;45581:75:0::1;45694:9;::::0;45675:15:::1;45679:11:::0;45675:1;:15:::1;:::i;:::-;:28;;45667:68;;;::::0;-1:-1:-1;;;45667:68:0;;15880:2:1;45667:68:0::1;::::0;::::1;15862:21:1::0;15919:2;15899:18;;;15892:30;15958:29;15938:18;;;15931:57;16005:18;;45667:68:0::1;15678:351:1::0;45667:68:0::1;45774:11;45767:4;;:18;;;;:::i;:::-;45754:9;:31;;45746:40;;;::::0;::::1;;45797:34;45807:10;45819:11;45797:9;:34::i;:::-;-1:-1:-1::0;;43084:1:0;44036:7;:22;45412:446::o;29761:288::-;-1:-1:-1;;;;;29856:24:0;;4082:10;29856:24;;29848:63;;;;-1:-1:-1;;;29848:63:0;;13472:2:1;29848:63:0;;;13454:21:1;13511:2;13491:18;;;13484:30;13550:28;13530:18;;;13523:56;13596:18;;29848:63:0;13270:350:1;29848:63:0;4082:10;29924:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29924:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29924:53:0;;;;;;;;;;29993:48;;7148:41:1;;;29924:42:0;;4082:10;29993:48;;7121:18:1;29993:48:0;;;;;;;29761:288;;:::o;44773:629::-;43128:1;43724:7;;:19;;43716:63;;;;-1:-1:-1;;;43716:63:0;;16651:2:1;43716:63:0;;;16633:21:1;16690:2;16670:18;;;16663:30;16729:33;16709:18;;;16702:61;16780:18;;43716:63:0;16449:355:1;43716:63:0;43128:1;43857:7;:18;44844:9:::1;24364:12:::0;;44938:10:::1;44913:36:::0;;:24:::1;:36;::::0;;;;;;45008:22:::1;::::0;44968:36:::1;44993:11:::0;44913:36;44968::::1;:::i;:::-;:62;;44960:106;;;::::0;-1:-1:-1;;;44960:106:0;;12402:2:1;44960:106:0::1;::::0;::::1;12384:21:1::0;12441:2;12421:18;;;12414:30;12480:33;12460:18;;;12453:61;12531:18;;44960:106:0::1;12200:355:1::0;44960:106:0::1;45093:1;45079:11;:15;45071:49;;;::::0;-1:-1:-1;;;45071:49:0;;13123:2:1;45071:49:0::1;::::0;::::1;13105:21:1::0;13162:2;13142:18;;;13135:30;-1:-1:-1;;;13181:18:1;;;13174:50;13241:18;;45071:49:0::1;12921:344:1::0;45071:49:0::1;45152:7;::::0;45133:15:::1;45137:11:::0;45133:1;:15:::1;:::i;:::-;:26;;45125:67;;;::::0;-1:-1:-1;;;45125:67:0;;15880:2:1;45125:67:0::1;::::0;::::1;15862:21:1::0;15919:2;15899:18;;;15892:30;15958:29;15938:18;;;15931:57;16005:18;;45125:67:0::1;15678:351:1::0;45125:67:0::1;45202:9;45197:103;45221:11;45217:1;:15;45197:103;;;45279:10;45254:36;::::0;;;:24:::1;:36;::::0;;;;:38;;;::::1;::::0;::::1;:::i;:::-;;;;;;45234:3;;;;:::i;:::-;;;45197:103;;;;45310:34;45320:10;45332:11;45310:9;:34::i;:::-;-1:-1:-1::0;;43084:1:0;44036:7;:22;-1:-1:-1;44773:629:0:o;30832:355::-;30991:28;31001:4;31007:2;31011:7;30991:9;:28::i;:::-;31052:48;31075:4;31081:2;31085:7;31094:5;31052:22;:48::i;:::-;31030:149;;;;-1:-1:-1;;;31030:149:0;;;;;;;:::i;:::-;30832:355;;;;:::o;47163:123::-;40206:6;;-1:-1:-1;;;;;40206:6:0;4082:10;40353:23;40345:68;;;;-1:-1:-1;;;40345:68:0;;;;;;;:::i;:::-;47251:7:::1;:27:::0;47163:123::o;46542:403::-;46624:13;46657:16;46665:7;31499:4;31533:12;-1:-1:-1;31523:22:0;31442:111;46657:16;46649:62;;;;-1:-1:-1;;;46649:62:0;;8381:2:1;46649:62:0;;;8363:21:1;8420:2;8400:18;;;8393:30;8459:34;8439:18;;;8432:62;-1:-1:-1;;;8510:18:1;;;8503:31;8551:19;;46649:62:0;8179:397:1;46649:62:0;46722:28;46753:10;:8;:10::i;:::-;46722:41;;46825:1;46800:14;46794:28;:32;:143;;;;;;;;;;;;;;;;;46870:14;46886:18;:7;:16;:18::i;:::-;46853:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46794:143;46774:163;46542:403;-1:-1:-1;;;46542:403:0:o;47536:118::-;40206:6;;-1:-1:-1;;;;;40206:6:0;4082:10;40353:23;40345:68;;;;-1:-1:-1;;;40345:68:0;;;;;;;:::i;:::-;47614:22:::1;:32:::0;47536:118::o;41033:229::-;40206:6;;-1:-1:-1;;;;;40206:6:0;4082:10;40353:23;40345:68;;;;-1:-1:-1;;;40345:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41136:22:0;::::1;41114:110;;;::::0;-1:-1:-1;;;41114:110:0;;9127:2:1;41114:110:0::1;::::0;::::1;9109:21:1::0;9166:2;9146:18;;;9139:30;9205:34;9185:18;;;9178:62;-1:-1:-1;;;9256:18:1;;;9249:36;9302:19;;41114:110:0::1;8925:402:1::0;41114:110:0::1;41235:19;41245:8;41235:9;:19::i;36362:196::-:0;36477:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36477:29:0;-1:-1:-1;;;;;36477:29:0;;;;;;;;;36522:28;;36477:24;;36522:28;;;;;;;36362:196;;;:::o;34242:2002::-;34357:35;34395:20;34407:7;34395:11;:20::i;:::-;34470:18;;34357:58;;-1:-1:-1;34428:22:0;;-1:-1:-1;;;;;34454:34:0;4082:10;-1:-1:-1;;;;;34454:34:0;;:87;;;-1:-1:-1;4082:10:0;34505:20;34517:7;34505:11;:20::i;:::-;-1:-1:-1;;;;;34505:36:0;;34454:87;:154;;;-1:-1:-1;34575:18:0;;34558:50;;4082:10;30120:164;:::i;34558:50::-;34428:181;;34630:17;34622:80;;;;-1:-1:-1;;;34622:80:0;;13827:2:1;34622:80:0;;;13809:21:1;13866:2;13846:18;;;13839:30;13905:34;13885:18;;;13878:62;-1:-1:-1;;;13956:18:1;;;13949:48;14014:19;;34622:80:0;13625:414:1;34622:80:0;34745:4;-1:-1:-1;;;;;34723:26:0;:13;:18;;;-1:-1:-1;;;;;34723:26:0;;34715:77;;;;-1:-1:-1;;;34715:77:0;;11995:2:1;34715:77:0;;;11977:21:1;12034:2;12014:18;;;12007:30;12073:34;12053:18;;;12046:62;-1:-1:-1;;;12124:18:1;;;12117:36;12170:19;;34715:77:0;11793:402:1;34715:77:0;-1:-1:-1;;;;;34811:16:0;;34803:66;;;;-1:-1:-1;;;34803:66:0;;10349:2:1;34803:66:0;;;10331:21:1;10388:2;10368:18;;;10361:30;10427:34;10407:18;;;10400:62;-1:-1:-1;;;10478:18:1;;;10471:35;10523:19;;34803:66:0;10147:401:1;34803:66:0;34990:49;35007:1;35011:7;35020:13;:18;;;34990:8;:49::i;:::-;-1:-1:-1;;;;;35335:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;35335:31:0;;;-1:-1:-1;;;;;35335:31:0;;;-1:-1:-1;;35335:31:0;;;;;;;35381:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35381:29:0;;;;;;;;;;;;;35427:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;35472:61:0;;;;-1:-1:-1;;;35517:15:0;35472:61;;;;;;35807:11;;;35837:24;;;;;:29;35807:11;;35837:29;35833:295;;35905:20;35913:11;31499:4;31533:12;-1:-1:-1;31523:22:0;31442:111;35905:20;35901:212;;;35982:18;;;35950:24;;;:11;:24;;;;;;;;:50;;36065:28;;;;36023:70;;-1:-1:-1;;;36023:70:0;-1:-1:-1;;;;;;36023:70:0;;;-1:-1:-1;;;;;35950:50:0;;;36023:70;;;;;;;35901:212;35310:829;36175:7;36171:2;-1:-1:-1;;;;;36156:27:0;36165:4;-1:-1:-1;;;;;36156:27:0;;;;;;;;;;;36194:42;34346:1898;;34242:2002;;;:::o;27123:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;27226:16:0;27234:7;31499:4;31533:12;-1:-1:-1;31523:22:0;31442:111;27226:16;27218:71;;;;-1:-1:-1;;;27218:71:0;;9534:2:1;27218:71:0;;;9516:21:1;9573:2;9553:18;;;9546:30;9612:34;9592:18;;;9585:62;-1:-1:-1;;;9663:18:1;;;9656:40;9713:19;;27218:71:0;9332:406:1;27218:71:0;27347:7;27327:245;27394:31;27428:17;;;:11;:17;;;;;;;;;27394:51;;;;;;;;;-1:-1:-1;;;;;27394:51:0;;;;;-1:-1:-1;;;27394:51:0;;;;;;;;;;;;27468:28;27464:93;;27528:9;27123:537;-1:-1:-1;;;27123:537:0:o;27464:93::-;-1:-1:-1;;;27367:6:0;27327:245;;41270:173;41345:6;;;-1:-1:-1;;;;;41362:17:0;;;-1:-1:-1;;;;;;41362:17:0;;;;;;;41395:40;;41345:6;;;41362:17;41345:6;;41395:40;;41326:16;;41395:40;41315:128;41270:173;:::o;31561:104::-;31630:27;31640:2;31644:8;31630:27;;;;;;;;;;;;:9;:27::i;37123:804::-;37278:4;-1:-1:-1;;;;;37299:13:0;;5744:19;:23;37295:625;;37335:72;;-1:-1:-1;;;37335:72:0;;-1:-1:-1;;;;;37335:36:0;;;;;:72;;4082:10;;37386:4;;37392:7;;37401:5;;37335:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37335:72:0;;;;;;;;-1:-1:-1;;37335:72:0;;;;;;;;;;;;:::i;:::-;;;37331:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37581:13:0;;37577:273;;37624:61;;-1:-1:-1;;;37624:61:0;;;;;;;:::i;37577:273::-;37800:6;37794:13;37785:6;37781:2;37777:15;37770:38;37331:534;-1:-1:-1;;;;;;37458:55:0;-1:-1:-1;;;37458:55:0;;-1:-1:-1;37451:62:0;;37295:625;-1:-1:-1;37904:4:0;37295:625;37123:804;;;;;;:::o;44657:108::-;44717:13;44750:7;44743:14;;;;;:::i;1564:723::-;1620:13;1841:10;1837:53;;-1:-1:-1;;1868:10:0;;;;;;;;;;;;-1:-1:-1;;;1868:10:0;;;;;1564:723::o;1837:53::-;1915:5;1900:12;1956:78;1963:9;;1956:78;;1989:8;;;;:::i;:::-;;-1:-1:-1;2012:10:0;;-1:-1:-1;2020:2:0;2012:10;;:::i;:::-;;;1956:78;;;2044:19;2076:6;2066:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2066:17:0;;2044:39;;2094:154;2101:10;;2094:154;;2128:11;2138:1;2128:11;;:::i;:::-;;-1:-1:-1;2197:10:0;2205:2;2197:5;:10;:::i;:::-;2184:24;;:2;:24;:::i;:::-;2171:39;;2154:6;2161;2154:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2154:56:0;;;;;;;;-1:-1:-1;2225:11:0;2234:2;2225:11;;:::i;:::-;;;2094:154;;32028:163;32151:32;32157:2;32161:8;32171:5;32178:4;32589:20;32612:12;-1:-1:-1;;;;;32643:16:0;;32635:62;;;;-1:-1:-1;;;32635:62:0;;15069:2:1;32635:62:0;;;15051:21:1;15108:2;15088:18;;;15081:30;15147:34;15127:18;;;15120:62;-1:-1:-1;;;15198:18:1;;;15191:31;15239:19;;32635:62:0;14867:397:1;32635:62:0;32716:13;32708:66;;;;-1:-1:-1;;;32708:66:0;;15471:2:1;32708:66:0;;;15453:21:1;15510:2;15490:18;;;15483:30;15549:34;15529:18;;;15522:62;-1:-1:-1;;;15600:18:1;;;15593:38;15648:19;;32708:66:0;15269:404:1;32708:66:0;-1:-1:-1;;;;;33126:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;33126:45:0;;-1:-1:-1;;;;;33126:45:0;;;;;;;;;;33186:50;;;;;;;;;;;;;;33253:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;33303:66:0;;;;-1:-1:-1;;;33353:15:0;33303:66;;;;;;;33253:25;;33438:415;33458:8;33454:1;:12;33438:415;;;33497:38;;33522:12;;-1:-1:-1;;;;;33497:38:0;;;33514:1;;33497:38;;33514:1;;33497:38;33558:4;33554:249;;;33621:59;33652:1;33656:2;33660:12;33674:5;33621:22;:59::i;:::-;33587:196;;;;-1:-1:-1;;;33587:196:0;;;;;;;:::i;:::-;33823:14;;;;;33468:3;33438:415;;;-1:-1:-1;33869:12:0;:27;33920:60;30832:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;1039:18;1028:30;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:186::-;1259:6;1312:2;1300:9;1291:7;1287:23;1283:32;1280:52;;;1328:1;1325;1318:12;1280:52;1351:29;1370:9;1351:29;:::i;1391:260::-;1459:6;1467;1520:2;1508:9;1499:7;1495:23;1491:32;1488:52;;;1536:1;1533;1526:12;1488:52;1559:29;1578:9;1559:29;:::i;:::-;1549:39;;1607:38;1641:2;1630:9;1626:18;1607:38;:::i;:::-;1597:48;;1391:260;;;;;:::o;1656:328::-;1733:6;1741;1749;1802:2;1790:9;1781:7;1777:23;1773:32;1770:52;;;1818:1;1815;1808:12;1770:52;1841:29;1860:9;1841:29;:::i;:::-;1831:39;;1889:38;1923:2;1912:9;1908:18;1889:38;:::i;:::-;1879:48;;1974:2;1963:9;1959:18;1946:32;1936:42;;1656:328;;;;;:::o;1989:666::-;2084:6;2092;2100;2108;2161:3;2149:9;2140:7;2136:23;2132:33;2129:53;;;2178:1;2175;2168:12;2129:53;2201:29;2220:9;2201:29;:::i;:::-;2191:39;;2249:38;2283:2;2272:9;2268:18;2249:38;:::i;:::-;2239:48;;2334:2;2323:9;2319:18;2306:32;2296:42;;2389:2;2378:9;2374:18;2361:32;2416:18;2408:6;2405:30;2402:50;;;2448:1;2445;2438:12;2402:50;2471:22;;2524:4;2516:13;;2512:27;-1:-1:-1;2502:55:1;;2553:1;2550;2543:12;2502:55;2576:73;2641:7;2636:2;2623:16;2618:2;2614;2610:11;2576:73;:::i;:::-;2566:83;;;1989:666;;;;;;;:::o;2660:347::-;2725:6;2733;2786:2;2774:9;2765:7;2761:23;2757:32;2754:52;;;2802:1;2799;2792:12;2754:52;2825:29;2844:9;2825:29;:::i;:::-;2815:39;;2904:2;2893:9;2889:18;2876:32;2951:5;2944:13;2937:21;2930:5;2927:32;2917:60;;2973:1;2970;2963:12;2917:60;2996:5;2986:15;;;2660:347;;;;;:::o;3012:254::-;3080:6;3088;3141:2;3129:9;3120:7;3116:23;3112:32;3109:52;;;3157:1;3154;3147:12;3109:52;3180:29;3199:9;3180:29;:::i;:::-;3170:39;3256:2;3241:18;;;;3228:32;;-1:-1:-1;;;3012:254:1:o;3271:773::-;3393:6;3401;3409;3417;3470:2;3458:9;3449:7;3445:23;3441:32;3438:52;;;3486:1;3483;3476:12;3438:52;3526:9;3513:23;3555:18;3596:2;3588:6;3585:14;3582:34;;;3612:1;3609;3602:12;3582:34;3651:70;3713:7;3704:6;3693:9;3689:22;3651:70;:::i;:::-;3740:8;;-1:-1:-1;3625:96:1;-1:-1:-1;3828:2:1;3813:18;;3800:32;;-1:-1:-1;3844:16:1;;;3841:36;;;3873:1;3870;3863:12;3841:36;;3912:72;3976:7;3965:8;3954:9;3950:24;3912:72;:::i;:::-;3271:773;;;;-1:-1:-1;4003:8:1;-1:-1:-1;;;;3271:773:1:o;4049:245::-;4107:6;4160:2;4148:9;4139:7;4135:23;4131:32;4128:52;;;4176:1;4173;4166:12;4128:52;4215:9;4202:23;4234:30;4258:5;4234:30;:::i;4299:249::-;4368:6;4421:2;4409:9;4400:7;4396:23;4392:32;4389:52;;;4437:1;4434;4427:12;4389:52;4469:9;4463:16;4488:30;4512:5;4488:30;:::i;4553:450::-;4622:6;4675:2;4663:9;4654:7;4650:23;4646:32;4643:52;;;4691:1;4688;4681:12;4643:52;4731:9;4718:23;4764:18;4756:6;4753:30;4750:50;;;4796:1;4793;4786:12;4750:50;4819:22;;4872:4;4864:13;;4860:27;-1:-1:-1;4850:55:1;;4901:1;4898;4891:12;4850:55;4924:73;4989:7;4984:2;4971:16;4966:2;4962;4958:11;4924:73;:::i;5008:180::-;5067:6;5120:2;5108:9;5099:7;5095:23;5091:32;5088:52;;;5136:1;5133;5126:12;5088:52;-1:-1:-1;5159:23:1;;5008:180;-1:-1:-1;5008:180:1:o;5193:257::-;5234:3;5272:5;5266:12;5299:6;5294:3;5287:19;5315:63;5371:6;5364:4;5359:3;5355:14;5348:4;5341:5;5337:16;5315:63;:::i;:::-;5432:2;5411:15;-1:-1:-1;;5407:29:1;5398:39;;;;5439:4;5394:50;;5193:257;-1:-1:-1;;5193:257:1:o;5455:637::-;5735:3;5773:6;5767:13;5789:53;5835:6;5830:3;5823:4;5815:6;5811:17;5789:53;:::i;:::-;5905:13;;5864:16;;;;5927:57;5905:13;5864:16;5961:4;5949:17;;5927:57;:::i;:::-;-1:-1:-1;;;6006:20:1;;6035:22;;;6084:1;6073:13;;5455:637;-1:-1:-1;;;;5455:637:1:o;6515:488::-;-1:-1:-1;;;;;6784:15:1;;;6766:34;;6836:15;;6831:2;6816:18;;6809:43;6883:2;6868:18;;6861:34;;;6931:3;6926:2;6911:18;;6904:31;;;6709:4;;6952:45;;6977:19;;6969:6;6952:45;:::i;:::-;6944:53;6515:488;-1:-1:-1;;;;;;6515:488:1:o;7200:219::-;7349:2;7338:9;7331:21;7312:4;7369:44;7409:2;7398:9;7394:18;7386:6;7369:44;:::i;12560:356::-;12762:2;12744:21;;;12781:18;;;12774:30;12840:34;12835:2;12820:18;;12813:62;12907:2;12892:18;;12560:356::o;14447:415::-;14649:2;14631:21;;;14688:2;14668:18;;;14661:30;14727:34;14722:2;14707:18;;14700:62;-1:-1:-1;;;14793:2:1;14778:18;;14771:49;14852:3;14837:19;;14447:415::o;17821:128::-;17861:3;17892:1;17888:6;17885:1;17882:13;17879:39;;;17898:18;;:::i;:::-;-1:-1:-1;17934:9:1;;17821:128::o;17954:120::-;17994:1;18020;18010:35;;18025:18;;:::i;:::-;-1:-1:-1;18059:9:1;;17954:120::o;18079:168::-;18119:7;18185:1;18181;18177:6;18173:14;18170:1;18167:21;18162:1;18155:9;18148:17;18144:45;18141:71;;;18192:18;;:::i;:::-;-1:-1:-1;18232:9:1;;18079:168::o;18252:125::-;18292:4;18320:1;18317;18314:8;18311:34;;;18325:18;;:::i;:::-;-1:-1:-1;18362:9:1;;18252:125::o;18382:258::-;18454:1;18464:113;18478:6;18475:1;18472:13;18464:113;;;18554:11;;;18548:18;18535:11;;;18528:39;18500:2;18493:10;18464:113;;;18595:6;18592:1;18589:13;18586:48;;;-1:-1:-1;;18630:1:1;18612:16;;18605:27;18382:258::o;18645:380::-;18724:1;18720:12;;;;18767;;;18788:61;;18842:4;18834:6;18830:17;18820:27;;18788:61;18895:2;18887:6;18884:14;18864:18;18861:38;18858:161;;;18941:10;18936:3;18932:20;18929:1;18922:31;18976:4;18973:1;18966:15;19004:4;19001:1;18994:15;18858:161;;18645:380;;;:::o;19030:135::-;19069:3;-1:-1:-1;;19090:17:1;;19087:43;;;19110:18;;:::i;:::-;-1:-1:-1;19157:1:1;19146:13;;19030:135::o;19170:112::-;19202:1;19228;19218:35;;19233:18;;:::i;:::-;-1:-1:-1;19267:9:1;;19170:112::o;19287:127::-;19348:10;19343:3;19339:20;19336:1;19329:31;19379:4;19376:1;19369:15;19403:4;19400:1;19393:15;19419:127;19480:10;19475:3;19471:20;19468:1;19461:31;19511:4;19508:1;19501:15;19535:4;19532:1;19525:15;19551:127;19612:10;19607:3;19603:20;19600:1;19593:31;19643:4;19640:1;19633:15;19667:4;19664:1;19657:15;19683:127;19744:10;19739:3;19735:20;19732:1;19725:31;19775:4;19772:1;19765:15;19799:4;19796:1;19789:15;19815:131;-1:-1:-1;;;;;;19889:32:1;;19879:43;;19869:71;;19936:1;19933;19926:12

Swarm Source

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