ETH Price: $3,463.61 (-1.51%)
Gas: 4 Gwei

Token

TrippiestApeTribe (TAT)
 

Overview

Max Total Supply

4,444 TAT

Holders

1,402

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TAT
0x995606723ecb1cc2fe9a29fc29dd509c07652622
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:
TrippiestApeTribe

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: contracts/TrippiestApeTribe.sol



/**
 * @title TrippiestApeTribe contract
*/

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

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 making 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;
    }
}

// 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/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [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/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}


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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (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);
}


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;

    // 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 virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public 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 {}
}

contract TrippiestApeTribe is ERC721A, Ownable, ReentrancyGuard {

  string public        baseURI;
  uint public          price             = 0.0069 ether;
  uint public          maxPerTx          = 30;
  uint public          maxPerWallet      = 90;
  uint public          totalFree         = 1000;
  uint public          maxSupply         = 4444;
  uint public          nextOwnerToExplicitlySet;
  bool public          mintEnabled;

  constructor() ERC721A("TrippiestApeTribe", "TAT"){}

  function mint(uint256 amt) external payable
  {
    uint cost = price;
    if(totalSupply() + amt < totalFree + 1) {
      cost = 0;
    }
    require(msg.sender == tx.origin,"Be yourself, honey.");
    require(msg.value == amt * cost,"Please send the exact amount.");
    require(totalSupply() + amt < maxSupply + 1,"No more Apes available");
    require(mintEnabled, "Minting is not live yet.");
    require(numberMinted(msg.sender) + amt <= maxPerWallet,"Too many per wallet!");
    require( amt < maxPerTx + 1, "Max per TX reached.");

    _safeMint(msg.sender, amt);
  }

  function toggleMinting() external onlyOwner {
      mintEnabled = !mintEnabled;
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

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

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

  function setTotalFree(uint256 totalFree_) external onlyOwner {
      totalFree = totalFree_;
  }

  function setMaxPerTx(uint256 maxPerTx_) external onlyOwner {
      maxPerTx = maxPerTx_;
  }

  function setMaxPerWallet(uint256 maxPerWallet_) external onlyOwner {
      maxPerWallet = maxPerWallet_;
  }

  function setmaxSupply(uint256 maxSupply_) external onlyOwner {
      maxSupply = maxSupply_;
  }

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

  function withdraw() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

  function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }


  /**
    * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
    */
  function _setOwnersExplicit(uint256 quantity) internal {
      require(quantity != 0, "quantity must be nonzero");
      require(currentIndex != 0, "no tokens minted yet");
      uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet;
      require(_nextOwnerToExplicitlySet < currentIndex, "all ownerships have been set");

      // Index underflow is impossible.
      // Counter or index overflow is incredibly unrealistic.
      unchecked {
          uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1;

          // Set the end index to be the last token index
          if (endIndex + 1 > currentIndex) {
              endIndex = currentIndex - 1;
          }

          for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) {
              if (_ownerships[i].addr == address(0)) {
                  TokenOwnership memory ownership = ownershipOf(i);
                  _ownerships[i].addr = ownership.addr;
                  _ownerships[i].startTimestamp = ownership.startTimestamp;
              }
          }

          nextOwnerToExplicitlySet = endIndex + 1;
      }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalFree_","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","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":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"nonpayable","type":"function"}]

60806040526618838370f34000600a55601e600b55605a600c556103e8600d5561115c600e553480156200003257600080fd5b506040805180820182526011815270547269707069657374417065547269626560781b60208083019182528351808501909452600384526215105560ea1b90840152815191929162000087916001916200011b565b5080516200009d9060029060208401906200011b565b505050620000ba620000b4620000c560201b60201c565b620000c9565b6001600855620001fe565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012990620001c1565b90600052602060002090601f0160209004810192826200014d576000855562000198565b82601f106200016857805160ff191683800117855562000198565b8280016001018555821562000198579182015b82811115620001985782518255916020019190600101906200017b565b50620001a6929150620001aa565b5090565b5b80821115620001a65760008155600101620001ab565b600281046001821680620001d657607f821691505b60208210811415620001f857634e487b7160e01b600052602260045260246000fd5b50919050565b61289e806200020e6000396000f3fe6080604052600436106102305760003560e01c8063715018a61161012e578063c6f6f216116100ab578063dc33e6811161006f578063dc33e6811461061a578063e268e4d31461063a578063e985e9c51461065a578063f2fde38b1461067a578063f968adbe1461069a57610230565b8063c6f6f2161461059b578063c87b56dd146105bb578063d1239730146105db578063d5abeb01146105f0578063d7224ba01461060557610230565b806395d89b41116100f257806395d89b411461051e578063a035b1fe14610533578063a0712d6814610548578063a22cb4651461055b578063b88d4fde1461057b57610230565b8063715018a6146104925780637d55094d146104a75780638da5cb5b146104bc57806391b7f5ed146104d15780639231ab2a146104f157610230565b8063333e44e6116101bc57806355f804b31161018057806355f804b3146103fd578063563aaf111461041d5780636352211e1461043d5780636c0360eb1461045d57806370a082311461047257610230565b8063333e44e61461037e5780633ccfd60b1461039357806342842e0e146103a8578063453c2310146103c85780634f6ccce7146103dd57610230565b806318160ddd1161020357806318160ddd146102dc578063228025e8146102fe57806323b872dd1461031e5780632d20fb601461033e5780632f745c591461035e57610230565b806301ffc9a71461023557806306fdde031461026b578063081812fc1461028d578063095ea7b3146102ba575b600080fd5b34801561024157600080fd5b50610255610250366004611dd9565b6106af565b6040516102629190611f45565b60405180910390f35b34801561027757600080fd5b50610280610712565b6040516102629190611f50565b34801561029957600080fd5b506102ad6102a8366004611e7e565b6107a4565b6040516102629190611ef4565b3480156102c657600080fd5b506102da6102d5366004611db0565b6107f0565b005b3480156102e857600080fd5b506102f1610889565b604051610262919061270f565b34801561030a57600080fd5b506102da610319366004611e7e565b61088f565b34801561032a57600080fd5b506102da610339366004611c6f565b6108d3565b34801561034a57600080fd5b506102da610359366004611e7e565b6108de565b34801561036a57600080fd5b506102f1610379366004611db0565b610956565b34801561038a57600080fd5b506102f1610a41565b34801561039f57600080fd5b506102da610a47565b3480156103b457600080fd5b506102da6103c3366004611c6f565b610b24565b3480156103d457600080fd5b506102f1610b3f565b3480156103e957600080fd5b506102f16103f8366004611e7e565b610b45565b34801561040957600080fd5b506102da610418366004611e11565b610b71565b34801561042957600080fd5b506102da610438366004611e7e565b610bbc565b34801561044957600080fd5b506102ad610458366004611e7e565b610c00565b34801561046957600080fd5b50610280610c12565b34801561047e57600080fd5b506102f161048d366004611c23565b610ca0565b34801561049e57600080fd5b506102da610ced565b3480156104b357600080fd5b506102da610d38565b3480156104c857600080fd5b506102ad610d8b565b3480156104dd57600080fd5b506102da6104ec366004611e7e565b610d9a565b3480156104fd57600080fd5b5061051161050c366004611e7e565b610dde565b60405161026291906126e5565b34801561052a57600080fd5b50610280610def565b34801561053f57600080fd5b506102f1610dfe565b6102da610556366004611e7e565b610e04565b34801561056757600080fd5b506102da610576366004611d76565b610f48565b34801561058757600080fd5b506102da610596366004611caa565b611016565b3480156105a757600080fd5b506102da6105b6366004611e7e565b61104f565b3480156105c757600080fd5b506102806105d6366004611e7e565b611093565b3480156105e757600080fd5b50610255611117565b3480156105fc57600080fd5b506102f1611120565b34801561061157600080fd5b506102f1611126565b34801561062657600080fd5b506102f1610635366004611c23565b61112c565b34801561064657600080fd5b506102da610655366004611e7e565b611137565b34801561066657600080fd5b50610255610675366004611c3d565b61117b565b34801561068657600080fd5b506102da610695366004611c23565b6111a9565b3480156106a657600080fd5b506102f161121a565b60006001600160e01b031982166380ac58cd60e01b14806106e057506001600160e01b03198216635b5e139f60e01b145b806106fb57506001600160e01b0319821663780e9d6360e01b145b8061070a575061070a82611220565b90505b919050565b606060018054610721906127a6565b80601f016020809104026020016040519081016040528092919081815260200182805461074d906127a6565b801561079a5780601f1061076f5761010080835404028352916020019161079a565b820191906000526020600020905b81548152906001019060200180831161077d57829003601f168201915b5050505050905090565b60006107af82611239565b6107d45760405162461bcd60e51b81526004016107cb90612698565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107fb82610c00565b9050806001600160a01b0316836001600160a01b0316141561082f5760405162461bcd60e51b81526004016107cb9061246e565b806001600160a01b0316610841611240565b6001600160a01b0316148061085d575061085d81610675611240565b6108795760405162461bcd60e51b81526004016107cb906121ce565b610884838383611244565b505050565b60005490565b610897611240565b6001600160a01b03166108a8610d8b565b6001600160a01b0316146108ce5760405162461bcd60e51b81526004016107cb906122f3565b600e55565b6108848383836112a0565b6108e6611240565b6001600160a01b03166108f7610d8b565b6001600160a01b03161461091d5760405162461bcd60e51b81526004016107cb906122f3565b600260085414156109405760405162461bcd60e51b81526004016107cb90612661565b600260085561094e8161150d565b506001600855565b600061096183610ca0565b821061097f5760405162461bcd60e51b81526004016107cb90611f63565b6000610989610889565b905060008060005b83811015610a22576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109e457805192505b876001600160a01b0316836001600160a01b03161415610a195786841415610a1257509350610a3b92505050565b6001909301925b50600101610991565b5060405162461bcd60e51b81526004016107cb90612613565b92915050565b600d5481565b610a4f611240565b6001600160a01b0316610a60610d8b565b6001600160a01b031614610a865760405162461bcd60e51b81526004016107cb906122f3565b60026008541415610aa95760405162461bcd60e51b81526004016107cb90612661565b600260085560405160009033904790610ac190611ef1565b60006040518083038185875af1925050503d8060008114610afe576040519150601f19603f3d011682016040523d82523d6000602084013e610b03565b606091505b505090508061094e5760405162461bcd60e51b81526004016107cb906124b0565b61088483838360405180602001604052806000815250611016565b600c5481565b6000610b4f610889565b8210610b6d5760405162461bcd60e51b81526004016107cb906120be565b5090565b610b79611240565b6001600160a01b0316610b8a610d8b565b6001600160a01b031614610bb05760405162461bcd60e51b81526004016107cb906122f3565b61088460098383611b60565b610bc4611240565b6001600160a01b0316610bd5610d8b565b6001600160a01b031614610bfb5760405162461bcd60e51b81526004016107cb906122f3565b600d55565b6000610c0b82611626565b5192915050565b60098054610c1f906127a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4b906127a6565b8015610c985780601f10610c6d57610100808354040283529160200191610c98565b820191906000526020600020905b815481529060010190602001808311610c7b57829003601f168201915b505050505081565b60006001600160a01b038216610cc85760405162461bcd60e51b81526004016107cb90612262565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610cf5611240565b6001600160a01b0316610d06610d8b565b6001600160a01b031614610d2c5760405162461bcd60e51b81526004016107cb906122f3565b610d3660006116ae565b565b610d40611240565b6001600160a01b0316610d51610d8b565b6001600160a01b031614610d775760405162461bcd60e51b81526004016107cb906122f3565b6010805460ff19811660ff90911615179055565b6007546001600160a01b031690565b610da2611240565b6001600160a01b0316610db3610d8b565b6001600160a01b031614610dd95760405162461bcd60e51b81526004016107cb906122f3565b600a55565b610de6611be0565b61070a82611626565b606060028054610721906127a6565b600a5481565b600a54600d54610e15906001612718565b82610e1e610889565b610e289190612718565b1015610e32575060005b333214610e515760405162461bcd60e51b81526004016107cb90611feb565b610e5b8183612744565b3414610e795760405162461bcd60e51b81526004016107cb90612437565b600e54610e87906001612718565b82610e90610889565b610e9a9190612718565b10610eb75760405162461bcd60e51b81526004016107cb9061252d565b60105460ff16610ed95760405162461bcd60e51b81526004016107cb90612328565b600c5482610ee63361112c565b610ef09190612718565b1115610f0e5760405162461bcd60e51b81526004016107cb90612090565b600b54610f1c906001612718565b8210610f3a5760405162461bcd60e51b81526004016107cb906125e6565b610f443383611700565b5050565b610f50611240565b6001600160a01b0316826001600160a01b03161415610f815760405162461bcd60e51b81526004016107cb906123ae565b8060066000610f8e611240565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610fd2611240565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161100a9190611f45565b60405180910390a35050565b6110218484846112a0565b61102d8484848461171a565b6110495760405162461bcd60e51b81526004016107cb906124da565b50505050565b611057611240565b6001600160a01b0316611068610d8b565b6001600160a01b03161461108e5760405162461bcd60e51b81526004016107cb906122f3565b600b55565b606061109e82611239565b6110ba5760405162461bcd60e51b81526004016107cb9061235f565b60006110c4611836565b90508051600014156110e55760405180602001604052806000815250611110565b806110ef84611845565b604051602001611100929190611ec2565b6040516020818303038152906040525b9392505050565b60105460ff1681565b600e5481565b600f5481565b600061070a82611960565b61113f611240565b6001600160a01b0316611150610d8b565b6001600160a01b0316146111765760405162461bcd60e51b81526004016107cb906122f3565b600c55565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6111b1611240565b6001600160a01b03166111c2610d8b565b6001600160a01b0316146111e85760405162461bcd60e51b81526004016107cb906122f3565b6001600160a01b03811661120e5760405162461bcd60e51b81526004016107cb90611fa5565b611217816116ae565b50565b600b5481565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112ab82611626565b9050600081600001516001600160a01b03166112c5611240565b6001600160a01b031614806112fa57506112dd611240565b6001600160a01b03166112ef846107a4565b6001600160a01b0316145b8061130e5750815161130e90610675611240565b90508061132d5760405162461bcd60e51b81526004016107cb906123e5565b846001600160a01b031682600001516001600160a01b0316146113625760405162461bcd60e51b81526004016107cb906122ad565b6001600160a01b0384166113885760405162461bcd60e51b81526004016107cb90612101565b6113958585856001611049565b6113a56000848460000151611244565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790559086018083529120549091166114b75761145981611239565b156114b7578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46115068585856001611049565b5050505050565b8061152a5760405162461bcd60e51b81526004016107cb9061222b565b6000546115495760405162461bcd60e51b81526004016107cb90612062565b600f54600054811061156d5760405162461bcd60e51b81526004016107cb90612197565b60005482820160001981019110156115885750600054600019015b815b81811161161b576000818152600360205260409020546001600160a01b03166116135760006115b882611626565b805160008481526003602090815260409091208054919093015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039093166001600160a01b03199092169190911791909116179055505b60010161158a565b50600101600f555050565b61162e611be0565b61163782611239565b6116535760405162461bcd60e51b81526004016107cb90612018565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116a457915061070d9050565b5060001901611655565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f448282604051806020016040528060008152506119b4565b600061172e846001600160a01b03166119c1565b1561182a57836001600160a01b031663150b7a0261174a611240565b8786866040518563ffffffff1660e01b815260040161176c9493929190611f08565b602060405180830381600087803b15801561178657600080fd5b505af19250505080156117b6575060408051601f3d908101601f191682019092526117b391810190611df5565b60015b611810573d8080156117e4576040519150601f19603f3d011682016040523d82523d6000602084013e6117e9565b606091505b5080516118085760405162461bcd60e51b81526004016107cb906124da565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061182e565b5060015b949350505050565b606060098054610721906127a6565b60608161186a57506040805180820190915260018152600360fc1b602082015261070d565b8160005b8115611894578061187e816127e1565b915061188d9050600a83612730565b915061186e565b60008167ffffffffffffffff8111156118bd57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118e7576020820181803683370190505b5090505b841561182e576118fc600183612763565b9150611909600a866127fc565b611914906030612718565b60f81b81838151811061193757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611959600a86612730565b94506118eb565b60006001600160a01b0382166119885760405162461bcd60e51b81526004016107cb90612146565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b61088483838360016119f2565b600080826001600160a01b0316803b806020016040519081016040528181526000908060200190933c511192915050565b6000546001600160a01b038516611a1b5760405162461bcd60e51b81526004016107cb9061255d565b83611a385760405162461bcd60e51b81526004016107cb9061259e565b611a456000868387611049565b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526003909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b85811015611b4e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611b4257611b26600088848861171a565b611b425760405162461bcd60e51b81526004016107cb906124da565b60019182019101611ad3565b50600090815561150690868387611049565b828054611b6c906127a6565b90600052602060002090601f016020900481019282611b8e5760008555611bd4565b82601f10611ba75782800160ff19823516178555611bd4565b82800160010185558215611bd4579182015b82811115611bd4578235825591602001919060010190611bb9565b50610b6d929150611bf7565b604080518082019091526000808252602082015290565b5b80821115610b6d5760008155600101611bf8565b80356001600160a01b038116811461070d57600080fd5b600060208284031215611c34578081fd5b61111082611c0c565b60008060408385031215611c4f578081fd5b611c5883611c0c565b9150611c6660208401611c0c565b90509250929050565b600080600060608486031215611c83578081fd5b611c8c84611c0c565b9250611c9a60208501611c0c565b9150604084013590509250925092565b60008060008060808587031215611cbf578081fd5b611cc885611c0c565b93506020611cd7818701611c0c565b935060408601359250606086013567ffffffffffffffff80821115611cfa578384fd5b818801915088601f830112611d0d578384fd5b813581811115611d1f57611d1f61283c565b604051601f8201601f1916810185018381118282101715611d4257611d4261283c565b60405281815283820185018b1015611d58578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215611d88578182fd5b611d9183611c0c565b915060208301358015158114611da5578182fd5b809150509250929050565b60008060408385031215611dc2578182fd5b611dcb83611c0c565b946020939093013593505050565b600060208284031215611dea578081fd5b813561111081612852565b600060208284031215611e06578081fd5b815161111081612852565b60008060208385031215611e23578182fd5b823567ffffffffffffffff80821115611e3a578384fd5b818501915085601f830112611e4d578384fd5b813581811115611e5b578485fd5b866020828501011115611e6c578485fd5b60209290920196919550909350505050565b600060208284031215611e8f578081fd5b5035919050565b60008151808452611eae81602086016020860161277a565b601f01601f19169290920160200192915050565b60008351611ed481846020880161277a565b835190830190611ee881836020880161277a565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f3b90830184611e96565b9695505050505050565b901515815260200190565b6000602082526111106020830184611e96565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601390820152722132903cb7bab939b2b63316103437b732bc9760691b604082015260600190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b6020808252601490820152731b9bc81d1bdad95b9cc81b5a5b9d1959081e595d60621b604082015260600190565b602080825260149082015273546f6f206d616e79207065722077616c6c65742160601b604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601c908201527f616c6c206f776e657273686970732068617665206265656e2073657400000000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526018908201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526018908201527f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252601d908201527f506c656173652073656e642074686520657861637420616d6f756e742e000000604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601690820152754e6f206d6f7265204170657320617661696c61626c6560501b604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243373231413a207175616e74697479206d75737420626520677265617465604082015267072207468616e20360c41b606082015260800190565b60208082526013908201527226b0bc103832b9102a2c103932b0b1b432b21760691b604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b81516001600160a01b0316815260209182015167ffffffffffffffff169181019190915260400190565b90815260200190565b6000821982111561272b5761272b612810565b500190565b60008261273f5761273f612826565b500490565b600081600019048311821515161561275e5761275e612810565b500290565b60008282101561277557612775612810565b500390565b60005b8381101561279557818101518382015260200161277d565b838111156110495750506000910152565b6002810460018216806127ba57607f821691505b602082108114156127db57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127f5576127f5612810565b5060010190565b60008261280b5761280b612826565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461121757600080fdfea264697066735822122093367a46dc45e6e2ef95ae5eb8670311cb22a65d42189637414cc51970bf419a64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063715018a61161012e578063c6f6f216116100ab578063dc33e6811161006f578063dc33e6811461061a578063e268e4d31461063a578063e985e9c51461065a578063f2fde38b1461067a578063f968adbe1461069a57610230565b8063c6f6f2161461059b578063c87b56dd146105bb578063d1239730146105db578063d5abeb01146105f0578063d7224ba01461060557610230565b806395d89b41116100f257806395d89b411461051e578063a035b1fe14610533578063a0712d6814610548578063a22cb4651461055b578063b88d4fde1461057b57610230565b8063715018a6146104925780637d55094d146104a75780638da5cb5b146104bc57806391b7f5ed146104d15780639231ab2a146104f157610230565b8063333e44e6116101bc57806355f804b31161018057806355f804b3146103fd578063563aaf111461041d5780636352211e1461043d5780636c0360eb1461045d57806370a082311461047257610230565b8063333e44e61461037e5780633ccfd60b1461039357806342842e0e146103a8578063453c2310146103c85780634f6ccce7146103dd57610230565b806318160ddd1161020357806318160ddd146102dc578063228025e8146102fe57806323b872dd1461031e5780632d20fb601461033e5780632f745c591461035e57610230565b806301ffc9a71461023557806306fdde031461026b578063081812fc1461028d578063095ea7b3146102ba575b600080fd5b34801561024157600080fd5b50610255610250366004611dd9565b6106af565b6040516102629190611f45565b60405180910390f35b34801561027757600080fd5b50610280610712565b6040516102629190611f50565b34801561029957600080fd5b506102ad6102a8366004611e7e565b6107a4565b6040516102629190611ef4565b3480156102c657600080fd5b506102da6102d5366004611db0565b6107f0565b005b3480156102e857600080fd5b506102f1610889565b604051610262919061270f565b34801561030a57600080fd5b506102da610319366004611e7e565b61088f565b34801561032a57600080fd5b506102da610339366004611c6f565b6108d3565b34801561034a57600080fd5b506102da610359366004611e7e565b6108de565b34801561036a57600080fd5b506102f1610379366004611db0565b610956565b34801561038a57600080fd5b506102f1610a41565b34801561039f57600080fd5b506102da610a47565b3480156103b457600080fd5b506102da6103c3366004611c6f565b610b24565b3480156103d457600080fd5b506102f1610b3f565b3480156103e957600080fd5b506102f16103f8366004611e7e565b610b45565b34801561040957600080fd5b506102da610418366004611e11565b610b71565b34801561042957600080fd5b506102da610438366004611e7e565b610bbc565b34801561044957600080fd5b506102ad610458366004611e7e565b610c00565b34801561046957600080fd5b50610280610c12565b34801561047e57600080fd5b506102f161048d366004611c23565b610ca0565b34801561049e57600080fd5b506102da610ced565b3480156104b357600080fd5b506102da610d38565b3480156104c857600080fd5b506102ad610d8b565b3480156104dd57600080fd5b506102da6104ec366004611e7e565b610d9a565b3480156104fd57600080fd5b5061051161050c366004611e7e565b610dde565b60405161026291906126e5565b34801561052a57600080fd5b50610280610def565b34801561053f57600080fd5b506102f1610dfe565b6102da610556366004611e7e565b610e04565b34801561056757600080fd5b506102da610576366004611d76565b610f48565b34801561058757600080fd5b506102da610596366004611caa565b611016565b3480156105a757600080fd5b506102da6105b6366004611e7e565b61104f565b3480156105c757600080fd5b506102806105d6366004611e7e565b611093565b3480156105e757600080fd5b50610255611117565b3480156105fc57600080fd5b506102f1611120565b34801561061157600080fd5b506102f1611126565b34801561062657600080fd5b506102f1610635366004611c23565b61112c565b34801561064657600080fd5b506102da610655366004611e7e565b611137565b34801561066657600080fd5b50610255610675366004611c3d565b61117b565b34801561068657600080fd5b506102da610695366004611c23565b6111a9565b3480156106a657600080fd5b506102f161121a565b60006001600160e01b031982166380ac58cd60e01b14806106e057506001600160e01b03198216635b5e139f60e01b145b806106fb57506001600160e01b0319821663780e9d6360e01b145b8061070a575061070a82611220565b90505b919050565b606060018054610721906127a6565b80601f016020809104026020016040519081016040528092919081815260200182805461074d906127a6565b801561079a5780601f1061076f5761010080835404028352916020019161079a565b820191906000526020600020905b81548152906001019060200180831161077d57829003601f168201915b5050505050905090565b60006107af82611239565b6107d45760405162461bcd60e51b81526004016107cb90612698565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107fb82610c00565b9050806001600160a01b0316836001600160a01b0316141561082f5760405162461bcd60e51b81526004016107cb9061246e565b806001600160a01b0316610841611240565b6001600160a01b0316148061085d575061085d81610675611240565b6108795760405162461bcd60e51b81526004016107cb906121ce565b610884838383611244565b505050565b60005490565b610897611240565b6001600160a01b03166108a8610d8b565b6001600160a01b0316146108ce5760405162461bcd60e51b81526004016107cb906122f3565b600e55565b6108848383836112a0565b6108e6611240565b6001600160a01b03166108f7610d8b565b6001600160a01b03161461091d5760405162461bcd60e51b81526004016107cb906122f3565b600260085414156109405760405162461bcd60e51b81526004016107cb90612661565b600260085561094e8161150d565b506001600855565b600061096183610ca0565b821061097f5760405162461bcd60e51b81526004016107cb90611f63565b6000610989610889565b905060008060005b83811015610a22576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109e457805192505b876001600160a01b0316836001600160a01b03161415610a195786841415610a1257509350610a3b92505050565b6001909301925b50600101610991565b5060405162461bcd60e51b81526004016107cb90612613565b92915050565b600d5481565b610a4f611240565b6001600160a01b0316610a60610d8b565b6001600160a01b031614610a865760405162461bcd60e51b81526004016107cb906122f3565b60026008541415610aa95760405162461bcd60e51b81526004016107cb90612661565b600260085560405160009033904790610ac190611ef1565b60006040518083038185875af1925050503d8060008114610afe576040519150601f19603f3d011682016040523d82523d6000602084013e610b03565b606091505b505090508061094e5760405162461bcd60e51b81526004016107cb906124b0565b61088483838360405180602001604052806000815250611016565b600c5481565b6000610b4f610889565b8210610b6d5760405162461bcd60e51b81526004016107cb906120be565b5090565b610b79611240565b6001600160a01b0316610b8a610d8b565b6001600160a01b031614610bb05760405162461bcd60e51b81526004016107cb906122f3565b61088460098383611b60565b610bc4611240565b6001600160a01b0316610bd5610d8b565b6001600160a01b031614610bfb5760405162461bcd60e51b81526004016107cb906122f3565b600d55565b6000610c0b82611626565b5192915050565b60098054610c1f906127a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4b906127a6565b8015610c985780601f10610c6d57610100808354040283529160200191610c98565b820191906000526020600020905b815481529060010190602001808311610c7b57829003601f168201915b505050505081565b60006001600160a01b038216610cc85760405162461bcd60e51b81526004016107cb90612262565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610cf5611240565b6001600160a01b0316610d06610d8b565b6001600160a01b031614610d2c5760405162461bcd60e51b81526004016107cb906122f3565b610d3660006116ae565b565b610d40611240565b6001600160a01b0316610d51610d8b565b6001600160a01b031614610d775760405162461bcd60e51b81526004016107cb906122f3565b6010805460ff19811660ff90911615179055565b6007546001600160a01b031690565b610da2611240565b6001600160a01b0316610db3610d8b565b6001600160a01b031614610dd95760405162461bcd60e51b81526004016107cb906122f3565b600a55565b610de6611be0565b61070a82611626565b606060028054610721906127a6565b600a5481565b600a54600d54610e15906001612718565b82610e1e610889565b610e289190612718565b1015610e32575060005b333214610e515760405162461bcd60e51b81526004016107cb90611feb565b610e5b8183612744565b3414610e795760405162461bcd60e51b81526004016107cb90612437565b600e54610e87906001612718565b82610e90610889565b610e9a9190612718565b10610eb75760405162461bcd60e51b81526004016107cb9061252d565b60105460ff16610ed95760405162461bcd60e51b81526004016107cb90612328565b600c5482610ee63361112c565b610ef09190612718565b1115610f0e5760405162461bcd60e51b81526004016107cb90612090565b600b54610f1c906001612718565b8210610f3a5760405162461bcd60e51b81526004016107cb906125e6565b610f443383611700565b5050565b610f50611240565b6001600160a01b0316826001600160a01b03161415610f815760405162461bcd60e51b81526004016107cb906123ae565b8060066000610f8e611240565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610fd2611240565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161100a9190611f45565b60405180910390a35050565b6110218484846112a0565b61102d8484848461171a565b6110495760405162461bcd60e51b81526004016107cb906124da565b50505050565b611057611240565b6001600160a01b0316611068610d8b565b6001600160a01b03161461108e5760405162461bcd60e51b81526004016107cb906122f3565b600b55565b606061109e82611239565b6110ba5760405162461bcd60e51b81526004016107cb9061235f565b60006110c4611836565b90508051600014156110e55760405180602001604052806000815250611110565b806110ef84611845565b604051602001611100929190611ec2565b6040516020818303038152906040525b9392505050565b60105460ff1681565b600e5481565b600f5481565b600061070a82611960565b61113f611240565b6001600160a01b0316611150610d8b565b6001600160a01b0316146111765760405162461bcd60e51b81526004016107cb906122f3565b600c55565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6111b1611240565b6001600160a01b03166111c2610d8b565b6001600160a01b0316146111e85760405162461bcd60e51b81526004016107cb906122f3565b6001600160a01b03811661120e5760405162461bcd60e51b81526004016107cb90611fa5565b611217816116ae565b50565b600b5481565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112ab82611626565b9050600081600001516001600160a01b03166112c5611240565b6001600160a01b031614806112fa57506112dd611240565b6001600160a01b03166112ef846107a4565b6001600160a01b0316145b8061130e5750815161130e90610675611240565b90508061132d5760405162461bcd60e51b81526004016107cb906123e5565b846001600160a01b031682600001516001600160a01b0316146113625760405162461bcd60e51b81526004016107cb906122ad565b6001600160a01b0384166113885760405162461bcd60e51b81526004016107cb90612101565b6113958585856001611049565b6113a56000848460000151611244565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790559086018083529120549091166114b75761145981611239565b156114b7578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46115068585856001611049565b5050505050565b8061152a5760405162461bcd60e51b81526004016107cb9061222b565b6000546115495760405162461bcd60e51b81526004016107cb90612062565b600f54600054811061156d5760405162461bcd60e51b81526004016107cb90612197565b60005482820160001981019110156115885750600054600019015b815b81811161161b576000818152600360205260409020546001600160a01b03166116135760006115b882611626565b805160008481526003602090815260409091208054919093015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039093166001600160a01b03199092169190911791909116179055505b60010161158a565b50600101600f555050565b61162e611be0565b61163782611239565b6116535760405162461bcd60e51b81526004016107cb90612018565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116a457915061070d9050565b5060001901611655565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f448282604051806020016040528060008152506119b4565b600061172e846001600160a01b03166119c1565b1561182a57836001600160a01b031663150b7a0261174a611240565b8786866040518563ffffffff1660e01b815260040161176c9493929190611f08565b602060405180830381600087803b15801561178657600080fd5b505af19250505080156117b6575060408051601f3d908101601f191682019092526117b391810190611df5565b60015b611810573d8080156117e4576040519150601f19603f3d011682016040523d82523d6000602084013e6117e9565b606091505b5080516118085760405162461bcd60e51b81526004016107cb906124da565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061182e565b5060015b949350505050565b606060098054610721906127a6565b60608161186a57506040805180820190915260018152600360fc1b602082015261070d565b8160005b8115611894578061187e816127e1565b915061188d9050600a83612730565b915061186e565b60008167ffffffffffffffff8111156118bd57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118e7576020820181803683370190505b5090505b841561182e576118fc600183612763565b9150611909600a866127fc565b611914906030612718565b60f81b81838151811061193757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611959600a86612730565b94506118eb565b60006001600160a01b0382166119885760405162461bcd60e51b81526004016107cb90612146565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b61088483838360016119f2565b600080826001600160a01b0316803b806020016040519081016040528181526000908060200190933c511192915050565b6000546001600160a01b038516611a1b5760405162461bcd60e51b81526004016107cb9061255d565b83611a385760405162461bcd60e51b81526004016107cb9061259e565b611a456000868387611049565b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526003909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b85811015611b4e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611b4257611b26600088848861171a565b611b425760405162461bcd60e51b81526004016107cb906124da565b60019182019101611ad3565b50600090815561150690868387611049565b828054611b6c906127a6565b90600052602060002090601f016020900481019282611b8e5760008555611bd4565b82601f10611ba75782800160ff19823516178555611bd4565b82800160010185558215611bd4579182015b82811115611bd4578235825591602001919060010190611bb9565b50610b6d929150611bf7565b604080518082019091526000808252602082015290565b5b80821115610b6d5760008155600101611bf8565b80356001600160a01b038116811461070d57600080fd5b600060208284031215611c34578081fd5b61111082611c0c565b60008060408385031215611c4f578081fd5b611c5883611c0c565b9150611c6660208401611c0c565b90509250929050565b600080600060608486031215611c83578081fd5b611c8c84611c0c565b9250611c9a60208501611c0c565b9150604084013590509250925092565b60008060008060808587031215611cbf578081fd5b611cc885611c0c565b93506020611cd7818701611c0c565b935060408601359250606086013567ffffffffffffffff80821115611cfa578384fd5b818801915088601f830112611d0d578384fd5b813581811115611d1f57611d1f61283c565b604051601f8201601f1916810185018381118282101715611d4257611d4261283c565b60405281815283820185018b1015611d58578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215611d88578182fd5b611d9183611c0c565b915060208301358015158114611da5578182fd5b809150509250929050565b60008060408385031215611dc2578182fd5b611dcb83611c0c565b946020939093013593505050565b600060208284031215611dea578081fd5b813561111081612852565b600060208284031215611e06578081fd5b815161111081612852565b60008060208385031215611e23578182fd5b823567ffffffffffffffff80821115611e3a578384fd5b818501915085601f830112611e4d578384fd5b813581811115611e5b578485fd5b866020828501011115611e6c578485fd5b60209290920196919550909350505050565b600060208284031215611e8f578081fd5b5035919050565b60008151808452611eae81602086016020860161277a565b601f01601f19169290920160200192915050565b60008351611ed481846020880161277a565b835190830190611ee881836020880161277a565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f3b90830184611e96565b9695505050505050565b901515815260200190565b6000602082526111106020830184611e96565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601390820152722132903cb7bab939b2b63316103437b732bc9760691b604082015260600190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b6020808252601490820152731b9bc81d1bdad95b9cc81b5a5b9d1959081e595d60621b604082015260600190565b602080825260149082015273546f6f206d616e79207065722077616c6c65742160601b604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601c908201527f616c6c206f776e657273686970732068617665206265656e2073657400000000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526018908201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526018908201527f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252601d908201527f506c656173652073656e642074686520657861637420616d6f756e742e000000604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601690820152754e6f206d6f7265204170657320617661696c61626c6560501b604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243373231413a207175616e74697479206d75737420626520677265617465604082015267072207468616e20360c41b606082015260800190565b60208082526013908201527226b0bc103832b9102a2c103932b0b1b432b21760691b604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b81516001600160a01b0316815260209182015167ffffffffffffffff169181019190915260400190565b90815260200190565b6000821982111561272b5761272b612810565b500190565b60008261273f5761273f612826565b500490565b600081600019048311821515161561275e5761275e612810565b500290565b60008282101561277557612775612810565b500390565b60005b8381101561279557818101518382015260200161277d565b838111156110495750506000910152565b6002810460018216806127ba57607f821691505b602082108114156127db57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127f5576127f5612810565b5060010190565b60008261280b5761280b612826565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461121757600080fdfea264697066735822122093367a46dc45e6e2ef95ae5eb8670311cb22a65d42189637414cc51970bf419a64736f6c63430008000033

Deployed Bytecode Sourcemap

50134:3704:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36994:372;;;;;;;;;;-1:-1:-1;36994:372:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38880:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40442:214::-;;;;;;;;;;-1:-1:-1;40442:214:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39963:413::-;;;;;;;;;;-1:-1:-1;39963:413:0;;;;;:::i;:::-;;:::i;:::-;;35251:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;51947:98::-;;;;;;;;;;-1:-1:-1;51947:98:0;;;;;:::i;:::-;;:::i;41318:170::-;;;;;;;;;;-1:-1:-1;41318:170:0;;;;;:::i;:::-;;:::i;52341:118::-;;;;;;;;;;-1:-1:-1;52341:118:0;;;;;:::i;:::-;;:::i;35915:1007::-;;;;;;;;;;-1:-1:-1;35915:1007:0;;;;;:::i;:::-;;:::i;50392:45::-;;;;;;;;;;;;;:::i;52159:176::-;;;;;;;;;;;;;:::i;41559:185::-;;;;;;;;;;-1:-1:-1;41559:185:0;;;;;:::i;:::-;;:::i;50344:43::-;;;;;;;;;;;;;:::i;35428:187::-;;;;;;;;;;-1:-1:-1;35428:187:0;;;;;:::i;:::-;;:::i;51437:96::-;;;;;;;;;;-1:-1:-1;51437:96:0;;;;;:::i;:::-;;:::i;51627:98::-;;;;;;;;;;-1:-1:-1;51627:98:0;;;;;:::i;:::-;;:::i;38689:124::-;;;;;;;;;;-1:-1:-1;38689:124:0;;;;;:::i;:::-;;:::i;50205:28::-;;;;;;;;;;;;;:::i;37430:221::-;;;;;;;;;;-1:-1:-1;37430:221:0;;;;;:::i;:::-;;:::i;10465:103::-;;;;;;;;;;;;;:::i;51233:85::-;;;;;;;;;;;;;:::i;9814:87::-;;;;;;;;;;;;;:::i;51539:82::-;;;;;;;;;;-1:-1:-1;51539:82:0;;;;;:::i;:::-;;:::i;52465:132::-;;;;;;;;;;-1:-1:-1;52465:132:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39049:104::-;;;;;;;;;;;;;:::i;50238:53::-;;;;;;;;;;;;;:::i;50638:589::-;;;;;;:::i;:::-;;:::i;40728:288::-;;;;;;;;;;-1:-1:-1;40728:288:0;;;;;:::i;:::-;;:::i;41815:355::-;;;;;;;;;;-1:-1:-1;41815:355:0;;;;;:::i;:::-;;:::i;51731:94::-;;;;;;;;;;-1:-1:-1;51731:94:0;;;;;:::i;:::-;;:::i;39224:335::-;;;;;;;;;;-1:-1:-1;39224:335:0;;;;;:::i;:::-;;:::i;50542:32::-;;;;;;;;;;;;;:::i;50442:45::-;;;;;;;;;;;;;:::i;50492:::-;;;;;;;;;;;;;:::i;51324:107::-;;;;;;;;;;-1:-1:-1;51324:107:0;;;;;:::i;:::-;;:::i;51831:110::-;;;;;;;;;;-1:-1:-1;51831:110:0;;;;;:::i;:::-;;:::i;41087:164::-;;;;;;;;;;-1:-1:-1;41087:164:0;;;;;:::i;:::-;;:::i;10723:201::-;;;;;;;;;;-1:-1:-1;10723:201:0;;;;;:::i;:::-;;:::i;50296:43::-;;;;;;;;;;;;;:::i;36994:372::-;37096:4;-1:-1:-1;;;;;;37133:40:0;;-1:-1:-1;;;37133:40:0;;:105;;-1:-1:-1;;;;;;;37190:48:0;;-1:-1:-1;;;37190:48:0;37133:105;:172;;;-1:-1:-1;;;;;;;37255:50:0;;-1:-1:-1;;;37255:50:0;37133:172;:225;;;;37322:36;37346:11;37322:23;:36::i;:::-;37113:245;;36994:372;;;;:::o;38880:100::-;38934:13;38967:5;38960:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38880:100;:::o;40442:214::-;40510:7;40538:16;40546:7;40538;:16::i;:::-;40530:74;;;;-1:-1:-1;;;40530:74:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;40624:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40624:24:0;;40442:214::o;39963:413::-;40036:13;40052:24;40068:7;40052:15;:24::i;:::-;40036:40;;40101:5;-1:-1:-1;;;;;40095:11:0;:2;-1:-1:-1;;;;;40095:11:0;;;40087:58;;;;-1:-1:-1;;;40087:58:0;;;;;;;:::i;:::-;40196:5;-1:-1:-1;;;;;40180:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;40180:21:0;;:62;;;;40205:37;40222:5;40229:12;:10;:12::i;40205:37::-;40158:169;;;;-1:-1:-1;;;40158:169:0;;;;;;;:::i;:::-;40340:28;40349:2;40353:7;40362:5;40340:8;:28::i;:::-;39963:413;;;:::o;35251:100::-;35304:7;35331:12;35251:100;:::o;51947:98::-;10045:12;:10;:12::i;:::-;-1:-1:-1;;;;;10034:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;10034:23:0;;10026:68;;;;-1:-1:-1;;;10026:68:0;;;;;;;:::i;:::-;52017:9:::1;:22:::0;51947:98::o;41318:170::-;41452:28;41462:4;41468:2;41472:7;41452:9;:28::i;52341:118::-;10045:12;:10;:12::i;:::-;-1:-1:-1;;;;;10034:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;10034:23:0;;10026:68;;;;-1:-1:-1;;;10026:68:0;;;;;;;:::i;:::-;4788:1:::1;5386:7;;:19;;5378:63;;;;-1:-1:-1::0;;;5378:63:0::1;;;;;;;:::i;:::-;4788:1;5519:7;:18:::0;52425:28:::2;52444:8:::0;52425:18:::2;:28::i;:::-;-1:-1:-1::0;4744:1:0::1;5698:7;:22:::0;52341:118::o;35915:1007::-;36004:7;36040:16;36050:5;36040:9;:16::i;:::-;36032:5;:24;36024:71;;;;-1:-1:-1;;;36024:71:0;;;;;;;:::i;:::-;36106:22;36131:13;:11;:13::i;:::-;36106:38;;36155:19;36185:25;36374:9;36369:466;36389:14;36385:1;:18;36369:466;;;36429:31;36463:14;;;:11;:14;;;;;;;;;36429:48;;;;;;;;;-1:-1:-1;;;;;36429:48:0;;;;;-1:-1:-1;;;36429:48:0;;;;;;;;;;;;36500:28;36496:111;;36573:14;;;-1:-1:-1;36496:111:0;36650:5;-1:-1:-1;;;;;36629:26:0;:17;-1:-1:-1;;;;;36629:26:0;;36625:195;;;36699:5;36684:11;:20;36680:85;;;-1:-1:-1;36740:1:0;-1:-1:-1;36733:8:0;;-1:-1:-1;;;36733:8:0;36680:85;36787:13;;;;;36625:195;-1:-1:-1;36405:3:0;;36369:466;;;;36858:56;;-1:-1:-1;;;36858:56:0;;;;;;;:::i;35915:1007::-;;;;;:::o;50392:45::-;;;;:::o;52159:176::-;10045:12;:10;:12::i;:::-;-1:-1:-1;;;;;10034:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;10034:23:0;;10026:68;;;;-1:-1:-1;;;10026:68:0;;;;;;;:::i;:::-;4788:1:::1;5386:7;;:19;;5378:63;;;;-1:-1:-1::0;;;5378:63:0::1;;;;;;;:::i;:::-;4788:1;5519:7;:18:::0;52237:49:::2;::::0;52219:12:::2;::::0;52237:10:::2;::::0;52260:21:::2;::::0;52237:49:::2;::::0;::::2;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52218:68;;;52301:7;52293:36;;;;-1:-1:-1::0;;;52293:36:0::2;;;;;;;:::i;41559:185::-:0;41697:39;41714:4;41720:2;41724:7;41697:39;;;;;;;;;;;;:16;:39::i;50344:43::-;;;;:::o;35428:187::-;35495:7;35531:13;:11;:13::i;:::-;35523:5;:21;35515:69;;;;-1:-1:-1;;;35515:69:0;;;;;;;:::i;:::-;-1:-1:-1;35602:5:0;35428:187::o;51437:96::-;10045:12;:10;:12::i;:::-;-1:-1:-1;;;;;10034:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;10034:23:0;;10026:68;;;;-1:-1:-1;;;10026:68:0;;;;;;;:::i;:::-;51509:18:::1;:7;51519:8:::0;;51509:18:::1;:::i;51627:98::-:0;10045:12;:10;:12::i;:::-;-1:-1:-1;;;;;10034:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;10034:23:0;;10026:68;;;;-1:-1:-1;;;10026:68:0;;;;;;;:::i;:::-;51697:9:::1;:22:::0;51627:98::o;38689:124::-;38753:7;38780:20;38792:7;38780:11;:20::i;:::-;:25;;38689:124;-1:-1:-1;;38689:124:0:o;50205:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37430:221::-;37494:7;-1:-1:-1;;;;;37522:19:0;;37514:75;;;;-1:-1:-1;;;37514:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;37615:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37615:27:0;;37430:221::o;10465:103::-;10045:12;:10;:12::i;:::-;-1:-1:-1;;;;;10034:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;10034:23:0;;10026:68;;;;-1:-1:-1;;;10026:68:0;;;;;;;:::i;:::-;10530:30:::1;10557:1;10530:18;:30::i;:::-;10465:103::o:0;51233:85::-;10045:12;:10;:12::i;:::-;-1:-1:-1;;;;;10034:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;10034:23:0;;10026:68;;;;-1:-1:-1;;;10026:68:0;;;;;;;:::i;:::-;51301:11:::1;::::0;;-1:-1:-1;;51286:26:0;::::1;51301:11;::::0;;::::1;51300:12;51286:26;::::0;;51233:85::o;9814:87::-;9887:6;;-1:-1:-1;;;;;9887:6:0;9814:87;:::o;51539:82::-;10045:12;:10;:12::i;:::-;-1:-1:-1;;;;;10034:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;10034:23:0;;10026:68;;;;-1:-1:-1;;;10026:68:0;;;;;;;:::i;:::-;51601:5:::1;:14:::0;51539:82::o;52465:132::-;52531:21;;:::i;:::-;52571:20;52583:7;52571:11;:20::i;39049:104::-;39105:13;39138:7;39131:14;;;;;:::i;50238:53::-;;;;:::o;50638:589::-;50704:5;;50741:9;;:13;;50753:1;50741:13;:::i;:::-;50735:3;50719:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;50716:65;;;-1:-1:-1;50772:1:0;50716:65;50795:10;50809:9;50795:23;50787:54;;;;-1:-1:-1;;;50787:54:0;;;;;;;:::i;:::-;50869:10;50875:4;50869:3;:10;:::i;:::-;50856:9;:23;50848:64;;;;-1:-1:-1;;;50848:64:0;;;;;;;:::i;:::-;50949:9;;:13;;50961:1;50949:13;:::i;:::-;50943:3;50927:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;50919:69;;;;-1:-1:-1;;;50919:69:0;;;;;;;:::i;:::-;51003:11;;;;50995:48;;;;-1:-1:-1;;;50995:48:0;;;;;;;:::i;:::-;51092:12;;51085:3;51058:24;51071:10;51058:12;:24::i;:::-;:30;;;;:::i;:::-;:46;;51050:78;;;;-1:-1:-1;;;51050:78:0;;;;;;;:::i;:::-;51150:8;;:12;;51161:1;51150:12;:::i;:::-;51144:3;:18;51135:51;;;;-1:-1:-1;;;51135:51:0;;;;;;;:::i;:::-;51195:26;51205:10;51217:3;51195:9;:26::i;:::-;50638:589;;:::o;40728:288::-;40835:12;:10;:12::i;:::-;-1:-1:-1;;;;;40823:24:0;:8;-1:-1:-1;;;;;40823:24:0;;;40815:63;;;;-1:-1:-1;;;40815:63:0;;;;;;;:::i;:::-;40936:8;40891:18;:32;40910:12;:10;:12::i;:::-;-1:-1:-1;;;;;40891:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;40891:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;40891:53:0;;;;;;;;;;;40975:12;:10;:12::i;:::-;-1:-1:-1;;;;;40960:48:0;;40999:8;40960:48;;;;;;:::i;:::-;;;;;;;;40728:288;;:::o;41815:355::-;41974:28;41984:4;41990:2;41994:7;41974:9;:28::i;:::-;42035:48;42058:4;42064:2;42068:7;42077:5;42035:22;:48::i;:::-;42013:149;;;;-1:-1:-1;;;42013:149:0;;;;;;;:::i;:::-;41815:355;;;;:::o;51731:94::-;10045:12;:10;:12::i;:::-;-1:-1:-1;;;;;10034:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;10034:23:0;;10026:68;;;;-1:-1:-1;;;10026:68:0;;;;;;;:::i;:::-;51799:8:::1;:20:::0;51731:94::o;39224:335::-;39297:13;39331:16;39339:7;39331;:16::i;:::-;39323:76;;;;-1:-1:-1;;;39323:76:0;;;;;;;:::i;:::-;39412:21;39436:10;:8;:10::i;:::-;39412:34;;39470:7;39464:21;39489:1;39464:26;;:87;;;;;;;;;;;;;;;;;39517:7;39526:18;:7;:16;:18::i;:::-;39500:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39464:87;39457:94;39224:335;-1:-1:-1;;;39224:335:0:o;50542:32::-;;;;;;:::o;50442:45::-;;;;:::o;50492:::-;;;;:::o;51324:107::-;51382:7;51405:20;51419:5;51405:13;:20::i;51831:110::-;10045:12;:10;:12::i;:::-;-1:-1:-1;;;;;10034:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;10034:23:0;;10026:68;;;;-1:-1:-1;;;10026:68:0;;;;;;;:::i;:::-;51907:12:::1;:28:::0;51831:110::o;41087:164::-;-1:-1:-1;;;;;41208:25:0;;;41184:4;41208:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41087:164::o;10723:201::-;10045:12;:10;:12::i;:::-;-1:-1:-1;;;;;10034:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;10034:23:0;;10026:68;;;;-1:-1:-1;;;10026:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10812:22:0;::::1;10804:73;;;;-1:-1:-1::0;;;10804:73:0::1;;;;;;;:::i;:::-;10888:28;10907:8;10888:18;:28::i;:::-;10723:201:::0;:::o;50296:43::-;;;;:::o;26593:157::-;-1:-1:-1;;;;;;26702:40:0;;-1:-1:-1;;;26702:40:0;26593:157;;;:::o;42425:111::-;42482:4;42516:12;-1:-1:-1;42506:22:0;42425:111::o;8538:98::-;8618:10;8538:98;:::o;47345:196::-;47460:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47460:29:0;-1:-1:-1;;;;;47460:29:0;;;;;;;;;47505:28;;47460:24;;47505:28;;;;;;;47345:196;;;:::o;45225:2002::-;45340:35;45378:20;45390:7;45378:11;:20::i;:::-;45340:58;;45411:22;45453:13;:18;;;-1:-1:-1;;;;;45437:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;45437:34:0;;:87;;;;45512:12;:10;:12::i;:::-;-1:-1:-1;;;;;45488:36:0;:20;45500:7;45488:11;:20::i;:::-;-1:-1:-1;;;;;45488:36:0;;45437:87;:154;;;-1:-1:-1;45558:18:0;;45541:50;;45578:12;:10;:12::i;45541:50::-;45411:181;;45613:17;45605:80;;;;-1:-1:-1;;;45605:80:0;;;;;;;:::i;:::-;45728:4;-1:-1:-1;;;;;45706:26:0;:13;:18;;;-1:-1:-1;;;;;45706:26:0;;45698:77;;;;-1:-1:-1;;;45698:77:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45794:16:0;;45786:66;;;;-1:-1:-1;;;45786:66:0;;;;;;;:::i;:::-;45865:43;45887:4;45893:2;45897:7;45906:1;45865:21;:43::i;:::-;45973:49;45990:1;45994:7;46003:13;:18;;;45973:8;:49::i;:::-;-1:-1:-1;;;;;46318:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;46318:31:0;;;-1:-1:-1;;;;;46318:31:0;;;-1:-1:-1;;46318:31:0;;;;;;;46364:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;46364:29:0;;;;;;;;;;;;;46410:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;46410:30:0;;;;-1:-1:-1;;;;46455:61:0;-1:-1:-1;;;46500:15:0;46455:61;;;;;;46790:11;;;46820:24;;;;;:29;46790:11;;46820:29;46816:295;;46888:20;46896:11;46888:7;:20::i;:::-;46884:212;;;46965:18;;;46933:24;;;:11;:24;;;;;;;;:50;;47048:28;;;;47006:70;;-1:-1:-1;;;47006:70:0;-1:-1:-1;;;;;;;;;46933:50:0;;;-1:-1:-1;;;;;;46933:50:0;;;;;;;47006:70;;;;;;;46884:212;45225:2002;47158:7;47154:2;-1:-1:-1;;;;;47139:27:0;47148:4;-1:-1:-1;;;;;47139:27:0;;;;;;;;;;;47177:42;47198:4;47204:2;47208:7;47217:1;47177:20;:42::i;:::-;45225:2002;;;;;:::o;52705:1130::-;52777:13;52769:50;;;;-1:-1:-1;;;52769:50:0;;;;;;;:::i;:::-;52836:12;;52828:50;;;;-1:-1:-1;;;52828:50:0;;;;;;;:::i;:::-;52923:24;;52887:33;52992:12;52964:40;;52956:81;;;;-1:-1:-1;;;52956:81:0;;;;;;;:::i;:::-;53175:16;53327:12;53194:36;;;-1:-1:-1;;53194:40:0;;;-1:-1:-1;53308:91:0;;;-1:-1:-1;53369:12:0;;-1:-1:-1;;53369:16:0;53308:91;53430:25;53413:354;53462:8;53457:1;:13;53413:354;;53529:1;53498:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;53498:19:0;53494:260;;53554:31;53588:14;53600:1;53588:11;:14::i;:::-;53645;;;53623;;;:11;:14;;;;;;;;:36;;53712:24;;;;;53680:56;;-1:-1:-1;;;53680:56:0;-1:-1:-1;;;;;;;;;53623:36:0;;;-1:-1:-1;;;;;;53623:36:0;;;;;;;53680:56;;;;;;;-1:-1:-1;53494:260:0;53472:3;;53413:354;;;-1:-1:-1;53819:1:0;53808:12;53781:24;:39;-1:-1:-1;;52705:1130:0:o;38090:537::-;38151:21;;:::i;:::-;38193:16;38201:7;38193;:16::i;:::-;38185:71;;;;-1:-1:-1;;;38185:71:0;;;;;;;:::i;:::-;38314:7;38294:245;38361:31;38395:17;;;:11;:17;;;;;;;;;38361:51;;;;;;;;;-1:-1:-1;;;;;38361:51:0;;;;;-1:-1:-1;;;38361:51:0;;;;;;;;;;;;38435:28;38431:93;;38495:9;-1:-1:-1;38488:16:0;;-1:-1:-1;38488:16:0;38431:93;-1:-1:-1;;;38334:6:0;38294:245;;11084:191;11177:6;;;-1:-1:-1;;;;;11194:17:0;;;-1:-1:-1;;;;;;11194:17:0;;;;;;;11227:40;;11177:6;;;11194:17;11177:6;;11227:40;;11158:16;;11227:40;11084:191;;:::o;42544:104::-;42613:27;42623:2;42627:8;42613:27;;;;;;;;;;;;:9;:27::i;48106:804::-;48261:4;48282:15;:2;-1:-1:-1;;;;;48282:13:0;;:15::i;:::-;48278:625;;;48334:2;-1:-1:-1;;;;;48318:36:0;;48355:12;:10;:12::i;:::-;48369:4;48375:7;48384:5;48318:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48318:72:0;;;;;;;;-1:-1:-1;;48318:72:0;;;;;;;;;;;;:::i;:::-;;;48314:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48564:13:0;;48560:273;;48607:61;;-1:-1:-1;;;48607:61:0;;;;;;;:::i;48560:273::-;48783:6;48777:13;48768:6;48764:2;48760:15;48753:38;48314:534;-1:-1:-1;;;;;;48441:55:0;-1:-1:-1;;;48441:55:0;;-1:-1:-1;48434:62:0;;48278:625;-1:-1:-1;48887:4:0;48278:625;48106:804;;;;;;:::o;52051:102::-;52111:13;52140:7;52133:14;;;;;:::i;6100:723::-;6156:13;6377:10;6373:53;;-1:-1:-1;6404:10:0;;;;;;;;;;;;-1:-1:-1;;;6404:10:0;;;;;;6373:53;6451:5;6436:12;6492:78;6499:9;;6492:78;;6525:8;;;;:::i;:::-;;-1:-1:-1;6548:10:0;;-1:-1:-1;6556:2:0;6548:10;;:::i;:::-;;;6492:78;;;6580:19;6612:6;6602:17;;;;;;-1:-1:-1;;;6602:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6602:17:0;;6580:39;;6630:154;6637:10;;6630:154;;6664:11;6674:1;6664:11;;:::i;:::-;;-1:-1:-1;6733:10:0;6741:2;6733:5;:10;:::i;:::-;6720:24;;:2;:24;:::i;:::-;6707:39;;6690:6;6697;6690:14;;;;;;-1:-1:-1;;;6690:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;6690:56:0;;;;;;;;-1:-1:-1;6761:11:0;6770:2;6761:11;;:::i;:::-;;;6630:154;;37659:229;37720:7;-1:-1:-1;;;;;37748:19:0;;37740:81;;;;-1:-1:-1;;;37740:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;37847:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;37847:32:0;;-1:-1:-1;;;;;37847:32:0;;37659:229::o;43011:163::-;43134:32;43140:2;43144:8;43154:5;43161:4;43134:5;:32::i;12515:326::-;12575:4;12832:1;12810:7;-1:-1:-1;;;;;12810:12:0;;;;;;;;;;;;;;;;;;;;;;;;:19;:23;;12515:326;-1:-1:-1;;12515:326:0:o;43433:1538::-;43572:20;43595:12;-1:-1:-1;;;;;43626:16:0;;43618:62;;;;-1:-1:-1;;;43618:62:0;;;;;;;:::i;:::-;43699:13;43691:66;;;;-1:-1:-1;;;43691:66:0;;;;;;;:::i;:::-;43770:61;43800:1;43804:2;43808:12;43822:8;43770:21;:61::i;:::-;-1:-1:-1;;;;;44109:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;44109:45:0;;-1:-1:-1;;;;;44109:45:0;;;;;;;;44169:50;;;-1:-1:-1;;;44169:50:0;;;;;;;;;;;;;;;44236:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;44236:35:0;;;;-1:-1:-1;;;;44286:66:0;-1:-1:-1;;;44336:15:0;44286:66;;;;;;;44236:25;;44421:415;44441:8;44437:1;:12;44421:415;;;44480:38;;44505:12;;-1:-1:-1;;;;;44480:38:0;;;44497:1;;44480:38;;44497:1;;44480:38;44541:4;44537:249;;;44604:59;44635:1;44639:2;44643:12;44657:5;44604:22;:59::i;:::-;44570:196;;;;-1:-1:-1;;;44570:196:0;;;;;;;:::i;:::-;44806:14;;;;;44451:3;44421:415;;;-1:-1:-1;44852:12:0;:27;;;44903:60;;44936:2;44940:12;44954:8;44903:20;:60::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:175:1;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:1178::-;;;;;1195:3;1183:9;1174:7;1170:23;1166:33;1163:2;;;1217:6;1209;1202:22;1163:2;1245:31;1266:9;1245:31;:::i;:::-;1235:41;;1295:2;1316:40;1352:2;1341:9;1337:18;1316:40;:::i;:::-;1306:50;;1403:2;1392:9;1388:18;1375:32;1365:42;;1458:2;1447:9;1443:18;1430:32;1481:18;1522:2;1514:6;1511:14;1508:2;;;1543:6;1535;1528:22;1508:2;1586:6;1575:9;1571:22;1561:32;;1631:7;1624:4;1620:2;1616:13;1612:27;1602:2;;1658:6;1650;1643:22;1602:2;1699;1686:16;1721:2;1717;1714:10;1711:2;;;1727:18;;:::i;:::-;1776:2;1770:9;1845:2;1826:13;;-1:-1:-1;;1822:27:1;1810:40;;1806:49;;1870:18;;;1890:22;;;1867:46;1864:2;;;1916:18;;:::i;:::-;1952:2;1945:22;1976:18;;;2013:11;;;2009:20;;2006:33;-1:-1:-1;2003:2:1;;;2057:6;2049;2042:22;2003:2;2118;2113;2109;2105:11;2100:2;2092:6;2088:15;2075:46;2141:15;;;2137:24;;;2130:40;;;;-1:-1:-1;1153:1048:1;;;;-1:-1:-1;1153:1048:1;;-1:-1:-1;;1153:1048:1:o;2206:369::-;;;2332:2;2320:9;2311:7;2307:23;2303:32;2300:2;;;2353:6;2345;2338:22;2300:2;2381:31;2402:9;2381:31;:::i;:::-;2371:41;;2462:2;2451:9;2447:18;2434:32;2509:5;2502:13;2495:21;2488:5;2485:32;2475:2;;2536:6;2528;2521:22;2475:2;2564:5;2554:15;;;2290:285;;;;;:::o;2580:266::-;;;2709:2;2697:9;2688:7;2684:23;2680:32;2677:2;;;2730:6;2722;2715:22;2677:2;2758:31;2779:9;2758:31;:::i;:::-;2748:41;2836:2;2821:18;;;;2808:32;;-1:-1:-1;;;2667:179:1:o;2851:257::-;;2962:2;2950:9;2941:7;2937:23;2933:32;2930:2;;;2983:6;2975;2968:22;2930:2;3027:9;3014:23;3046:32;3072:5;3046:32;:::i;3113:261::-;;3235:2;3223:9;3214:7;3210:23;3206:32;3203:2;;;3256:6;3248;3241:22;3203:2;3293:9;3287:16;3312:32;3338:5;3312:32;:::i;3379:642::-;;;3511:2;3499:9;3490:7;3486:23;3482:32;3479:2;;;3532:6;3524;3517:22;3479:2;3577:9;3564:23;3606:18;3647:2;3639:6;3636:14;3633:2;;;3668:6;3660;3653:22;3633:2;3711:6;3700:9;3696:22;3686:32;;3756:7;3749:4;3745:2;3741:13;3737:27;3727:2;;3783:6;3775;3768:22;3727:2;3828;3815:16;3854:2;3846:6;3843:14;3840:2;;;3875:6;3867;3860:22;3840:2;3925:7;3920:2;3911:6;3907:2;3903:15;3899:24;3896:37;3893:2;;;3951:6;3943;3936:22;3893:2;3987;3979:11;;;;;4009:6;;-1:-1:-1;3469:552:1;;-1:-1:-1;;;;3469:552:1:o;4026:190::-;;4138:2;4126:9;4117:7;4113:23;4109:32;4106:2;;;4159:6;4151;4144:22;4106:2;-1:-1:-1;4187:23:1;;4096:120;-1:-1:-1;4096:120:1:o;4221:259::-;;4302:5;4296:12;4329:6;4324:3;4317:19;4345:63;4401:6;4394:4;4389:3;4385:14;4378:4;4371:5;4367:16;4345:63;:::i;:::-;4462:2;4441:15;-1:-1:-1;;4437:29:1;4428:39;;;;4469:4;4424:50;;4272:208;-1:-1:-1;;4272:208:1:o;4485:470::-;;4702:6;4696:13;4718:53;4764:6;4759:3;4752:4;4744:6;4740:17;4718:53;:::i;:::-;4834:13;;4793:16;;;;4856:57;4834:13;4793:16;4890:4;4878:17;;4856:57;:::i;:::-;4929:20;;4672:283;-1:-1:-1;;;;4672:283:1:o;4960:205::-;5160:3;5151:14::o;5170:203::-;-1:-1:-1;;;;;5334:32:1;;;;5316:51;;5304:2;5289:18;;5271:102::o;5378:490::-;-1:-1:-1;;;;;5647:15:1;;;5629:34;;5699:15;;5694:2;5679:18;;5672:43;5746:2;5731:18;;5724:34;;;5794:3;5789:2;5774:18;;5767:31;;;5378:490;;5815:47;;5842:19;;5834:6;5815:47;:::i;:::-;5807:55;5581:287;-1:-1:-1;;;;;;5581:287:1:o;5873:187::-;6038:14;;6031:22;6013:41;;6001:2;5986:18;;5968:92::o;6065:221::-;;6214:2;6203:9;6196:21;6234:46;6276:2;6265:9;6261:18;6253:6;6234:46;:::i;6291:398::-;6493:2;6475:21;;;6532:2;6512:18;;;6505:30;6571:34;6566:2;6551:18;;6544:62;-1:-1:-1;;;6637:2:1;6622:18;;6615:32;6679:3;6664:19;;6465:224::o;6694:402::-;6896:2;6878:21;;;6935:2;6915:18;;;6908:30;6974:34;6969:2;6954:18;;6947:62;-1:-1:-1;;;7040:2:1;7025:18;;7018:36;7086:3;7071:19;;6868:228::o;7101:343::-;7303:2;7285:21;;;7342:2;7322:18;;;7315:30;-1:-1:-1;;;7376:2:1;7361:18;;7354:49;7435:2;7420:18;;7275:169::o;7449:406::-;7651:2;7633:21;;;7690:2;7670:18;;;7663:30;7729:34;7724:2;7709:18;;7702:62;-1:-1:-1;;;7795:2:1;7780:18;;7773:40;7845:3;7830:19;;7623:232::o;7860:344::-;8062:2;8044:21;;;8101:2;8081:18;;;8074:30;-1:-1:-1;;;8135:2:1;8120:18;;8113:50;8195:2;8180:18;;8034:170::o;8209:344::-;8411:2;8393:21;;;8450:2;8430:18;;;8423:30;-1:-1:-1;;;8484:2:1;8469:18;;8462:50;8544:2;8529:18;;8383:170::o;8558:399::-;8760:2;8742:21;;;8799:2;8779:18;;;8772:30;8838:34;8833:2;8818:18;;8811:62;-1:-1:-1;;;8904:2:1;8889:18;;8882:33;8947:3;8932:19;;8732:225::o;8962:401::-;9164:2;9146:21;;;9203:2;9183:18;;;9176:30;9242:34;9237:2;9222:18;;9215:62;-1:-1:-1;;;9308:2:1;9293:18;;9286:35;9353:3;9338:19;;9136:227::o;9368:413::-;9570:2;9552:21;;;9609:2;9589:18;;;9582:30;9648:34;9643:2;9628:18;;9621:62;-1:-1:-1;;;9714:2:1;9699:18;;9692:47;9771:3;9756:19;;9542:239::o;9786:352::-;9988:2;9970:21;;;10027:2;10007:18;;;10000:30;10066;10061:2;10046:18;;10039:58;10129:2;10114:18;;9960:178::o;10143:421::-;10345:2;10327:21;;;10384:2;10364:18;;;10357:30;10423:34;10418:2;10403:18;;10396:62;10494:27;10489:2;10474:18;;10467:55;10554:3;10539:19;;10317:247::o;10569:348::-;10771:2;10753:21;;;10810:2;10790:18;;;10783:30;10849:26;10844:2;10829:18;;10822:54;10908:2;10893:18;;10743:174::o;10922:407::-;11124:2;11106:21;;;11163:2;11143:18;;;11136:30;11202:34;11197:2;11182:18;;11175:62;-1:-1:-1;;;11268:2:1;11253:18;;11246:41;11319:3;11304:19;;11096:233::o;11334:402::-;11536:2;11518:21;;;11575:2;11555:18;;;11548:30;11614:34;11609:2;11594:18;;11587:62;-1:-1:-1;;;11680:2:1;11665:18;;11658:36;11726:3;11711:19;;11508:228::o;11741:356::-;11943:2;11925:21;;;11962:18;;;11955:30;12021:34;12016:2;12001:18;;11994:62;12088:2;12073:18;;11915:182::o;12102:348::-;12304:2;12286:21;;;12343:2;12323:18;;;12316:30;12382:26;12377:2;12362:18;;12355:54;12441:2;12426:18;;12276:174::o;12455:411::-;12657:2;12639:21;;;12696:2;12676:18;;;12669:30;12735:34;12730:2;12715:18;;12708:62;-1:-1:-1;;;12801:2:1;12786:18;;12779:45;12856:3;12841:19;;12629:237::o;12871:350::-;13073:2;13055:21;;;13112:2;13092:18;;;13085:30;13151:28;13146:2;13131:18;;13124:56;13212:2;13197:18;;13045:176::o;13226:414::-;13428:2;13410:21;;;13467:2;13447:18;;;13440:30;13506:34;13501:2;13486:18;;13479:62;-1:-1:-1;;;13572:2:1;13557:18;;13550:48;13630:3;13615:19;;13400:240::o;13645:353::-;13847:2;13829:21;;;13886:2;13866:18;;;13859:30;13925:31;13920:2;13905:18;;13898:59;13989:2;13974:18;;13819:179::o;14003:398::-;14205:2;14187:21;;;14244:2;14224:18;;;14217:30;14283:34;14278:2;14263:18;;14256:62;-1:-1:-1;;;14349:2:1;14334:18;;14327:32;14391:3;14376:19;;14177:224::o;14406:340::-;14608:2;14590:21;;;14647:2;14627:18;;;14620:30;-1:-1:-1;;;14681:2:1;14666:18;;14659:46;14737:2;14722:18;;14580:166::o;14751:415::-;14953:2;14935:21;;;14992:2;14972:18;;;14965:30;15031:34;15026:2;15011:18;;15004:62;-1:-1:-1;;;15097:2:1;15082:18;;15075:49;15156:3;15141:19;;14925:241::o;15171:346::-;15373:2;15355:21;;;15412:2;15392:18;;;15385:30;-1:-1:-1;;;15446:2:1;15431:18;;15424:52;15508:2;15493:18;;15345:172::o;15522:397::-;15724:2;15706:21;;;15763:2;15743:18;;;15736:30;15802:34;15797:2;15782:18;;15775:62;-1:-1:-1;;;15868:2:1;15853:18;;15846:31;15909:3;15894:19;;15696:223::o;15924:404::-;16126:2;16108:21;;;16165:2;16145:18;;;16138:30;16204:34;16199:2;16184:18;;16177:62;-1:-1:-1;;;16270:2:1;16255:18;;16248:38;16318:3;16303:19;;16098:230::o;16333:343::-;16535:2;16517:21;;;16574:2;16554:18;;;16547:30;-1:-1:-1;;;16608:2:1;16593:18;;16586:49;16667:2;16652:18;;16507:169::o;16681:410::-;16883:2;16865:21;;;16922:2;16902:18;;;16895:30;16961:34;16956:2;16941:18;;16934:62;-1:-1:-1;;;17027:2:1;17012:18;;17005:44;17081:3;17066:19;;16855:236::o;17096:355::-;17298:2;17280:21;;;17337:2;17317:18;;;17310:30;17376:33;17371:2;17356:18;;17349:61;17442:2;17427:18;;17270:181::o;17872:409::-;18074:2;18056:21;;;18113:2;18093:18;;;18086:30;18152:34;18147:2;18132:18;;18125:62;-1:-1:-1;;;18218:2:1;18203:18;;18196:43;18271:3;18256:19;;18046:235::o;18286:362::-;18518:13;;-1:-1:-1;;;;;18514:39:1;18496:58;;18614:4;18602:17;;;18596:24;18622:18;18592:49;18570:20;;;18563:79;;;;18484:2;18469:18;;18451:197::o;18653:177::-;18799:25;;;18787:2;18772:18;;18754:76::o;18835:128::-;;18906:1;18902:6;18899:1;18896:13;18893:2;;;18912:18;;:::i;:::-;-1:-1:-1;18948:9:1;;18883:80::o;18968:120::-;;19034:1;19024:2;;19039:18;;:::i;:::-;-1:-1:-1;19073:9:1;;19014:74::o;19093:168::-;;19199:1;19195;19191:6;19187:14;19184:1;19181:21;19176:1;19169:9;19162:17;19158:45;19155:2;;;19206:18;;:::i;:::-;-1:-1:-1;19246:9:1;;19145:116::o;19266:125::-;;19334:1;19331;19328:8;19325:2;;;19339:18;;:::i;:::-;-1:-1:-1;19376:9:1;;19315:76::o;19396:258::-;19468:1;19478:113;19492:6;19489:1;19486:13;19478:113;;;19568:11;;;19562:18;19549:11;;;19542:39;19514:2;19507:10;19478:113;;;19609:6;19606:1;19603:13;19600:2;;;-1:-1:-1;;19644:1:1;19626:16;;19619:27;19449:205::o;19659:380::-;19744:1;19734:12;;19791:1;19781:12;;;19802:2;;19856:4;19848:6;19844:17;19834:27;;19802:2;19909;19901:6;19898:14;19878:18;19875:38;19872:2;;;19955:10;19950:3;19946:20;19943:1;19936:31;19990:4;19987:1;19980:15;20018:4;20015:1;20008:15;19872:2;;19714:325;;;:::o;20044:135::-;;-1:-1:-1;;20104:17:1;;20101:2;;;20124:18;;:::i;:::-;-1:-1:-1;20171:1:1;20160:13;;20091:88::o;20184:112::-;;20242:1;20232:2;;20247:18;;:::i;:::-;-1:-1:-1;20281:9:1;;20222:74::o;20301:127::-;20362:10;20357:3;20353:20;20350:1;20343:31;20393:4;20390:1;20383:15;20417:4;20414:1;20407:15;20433:127;20494:10;20489:3;20485:20;20482:1;20475:31;20525:4;20522:1;20515:15;20549:4;20546:1;20539:15;20565:127;20626:10;20621:3;20617:20;20614:1;20607:31;20657:4;20654:1;20647:15;20681:4;20678:1;20671:15;20697:133;-1:-1:-1;;;;;;20773:32:1;;20763:43;;20753:2;;20820:1;20817;20810:12

Swarm Source

ipfs://93367a46dc45e6e2ef95ae5eb8670311cb22a65d42189637414cc51970bf419a
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.