ETH Price: $3,476.14 (+6.00%)
Gas: 11 Gwei

Token

The Bapes (BAPES)
 

Overview

Max Total Supply

2,222 BAPES

Holders

545

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BAPES
0xc4f31f351694472a39d235cd2a9b7c8ba5c8991b
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:
TheBapes

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT


//   _______ _    _ ______   ____          _____  ______  _____ 
//  |__   __| |  | |  ____| |  _ \   /\   |  __ \|  ____|/ ____|
//     | |  | |__| | |__    | |_) | /  \  | |__) | |__  | (___  
//     | |  |  __  |  __|   |  _ < / /\ \ |  ___/|  __|  \___ \ 
//     | |  | |  | | |____  | |_) / ____ \| |    | |____ ____) |
//     |_|  |_|  |_|______| |____/_/    \_\_|    |______|_____/ 
                                                             
                                                             

// Supply: 2,222 NFTs
// Total FREE: 722
// Rest for 0.005 ETH
// Max 2 per tx 


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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/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);
}

// File: contracts/TwistedToonz.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // 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 TheBapes is ERC721A, Ownable, ReentrancyGuard {

  
  uint public price = 0.005 ether;
  uint public maxPerTx = 2;
  uint public maxDuringFree = 2;
  uint public totalFree = 722;
  uint public maxSupply = 2222;
  bool public mintEnabled;
  string public baseURI;


  constructor() ERC721A("The Bapes", "BAPES"){
  }

  function mint(uint256 amount) external payable
  {
    uint cost = price;

    if(totalSupply() + amount < totalFree + 1) {
      require(numberMinted(msg.sender) + amount < maxDuringFree + 1);
      cost = 0;
    }

    require(mintEnabled, "Minting is not live yet, hold on bape");
    require(totalSupply() + amount < maxSupply + 1,"No more bapes");
    require(msg.value >= amount * cost,"Please send the exact amount");
    require(amount < maxPerTx + 1, "Max per TX reached");
    
    _safeMint(msg.sender, amount);
  }

  function ownerBatchMint(uint256 amount) external onlyOwner
  {
    require(totalSupply() + amount < maxSupply + 1,"too many!");

    _safeMint(msg.sender, amount);
  }

  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 _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.");
  }
}

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":"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":"maxDuringFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","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":"amount","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":[{"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":"amount","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","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":"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":"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"}]

60806040526611c37937e080006009556002600a556002600b556102d2600c556108ae600d553480156200003257600080fd5b50604080518082018252600981526854686520426170657360b81b602080830191825283518085019094526005845264424150455360d81b908401528151919291620000819160019162000115565b5080516200009790600290602084019062000115565b505050620000b4620000ae620000bf60201b60201c565b620000c3565b6001600855620001f8565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012390620001bb565b90600052602060002090601f01602090048101928262000147576000855562000192565b82601f106200016257805160ff191683800117855562000192565b8280016001018555821562000192579182015b828111156200019257825182559160200191906001019062000175565b50620001a0929150620001a4565b5090565b5b80821115620001a05760008155600101620001a5565b600181811c90821680620001d057607f821691505b60208210811415620001f257634e487b7160e01b600052602260045260246000fd5b50919050565b61224380620002086000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb011461058f578063dc33e681146105a5578063e985e9c5146105c5578063f2fde38b1461060e578063f968adbe1461062e57600080fd5b8063b88d4fde14610515578063c6f6f21614610535578063c87b56dd14610555578063d12397301461057557600080fd5b806391b7f5ed116100e757806391b7f5ed1461049757806395d89b41146104b7578063a035b1fe146104cc578063a0712d68146104e2578063a22cb465146104f557600080fd5b8063715018a61461042f5780637d55094d146104445780638da5cb5b146104595780638db89f071461047757600080fd5b8063333e44e61161019b57806355f804b31161016a57806355f804b31461039a578063563aaf11146103ba5780636352211e146103da5780636c0360eb146103fa57806370a082311461040f57600080fd5b8063333e44e61461032f5780633ccfd60b1461034557806342842e0e1461035a5780634f6ccce71461037a57600080fd5b806318160ddd116101d757806318160ddd146102ba57806323b872dd146102d95780632c321f98146102f95780632f745c591461030f57600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611cdd565b610644565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106b1565b6040516102359190611d52565b34801561026c57600080fd5b5061028061027b366004611d65565b610743565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611d9a565b6107d3565b005b3480156102c657600080fd5b506000545b604051908152602001610235565b3480156102e557600080fd5b506102b86102f4366004611dc4565b6108eb565b34801561030557600080fd5b506102cb600b5481565b34801561031b57600080fd5b506102cb61032a366004611d9a565b6108f6565b34801561033b57600080fd5b506102cb600c5481565b34801561035157600080fd5b506102b8610a53565b34801561036657600080fd5b506102b8610375366004611dc4565b610b68565b34801561038657600080fd5b506102cb610395366004611d65565b610b83565b3480156103a657600080fd5b506102b86103b5366004611e00565b610be5565b3480156103c657600080fd5b506102b86103d5366004611d65565b610c1b565b3480156103e657600080fd5b506102806103f5366004611d65565b610c4a565b34801561040657600080fd5b50610253610c5c565b34801561041b57600080fd5b506102cb61042a366004611e72565b610cea565b34801561043b57600080fd5b506102b8610d7b565b34801561045057600080fd5b506102b8610db1565b34801561046557600080fd5b506007546001600160a01b0316610280565b34801561048357600080fd5b506102b8610492366004611d65565b610def565b3480156104a357600080fd5b506102b86104b2366004611d65565b610e81565b3480156104c357600080fd5b50610253610eb0565b3480156104d857600080fd5b506102cb60095481565b6102b86104f0366004611d65565b610ebf565b34801561050157600080fd5b506102b8610510366004611e8d565b611091565b34801561052157600080fd5b506102b8610530366004611edf565b611156565b34801561054157600080fd5b506102b8610550366004611d65565b61118f565b34801561056157600080fd5b50610253610570366004611d65565b6111be565b34801561058157600080fd5b50600e546102299060ff1681565b34801561059b57600080fd5b506102cb600d5481565b3480156105b157600080fd5b506102cb6105c0366004611e72565b61128c565b3480156105d157600080fd5b506102296105e0366004611fbb565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561061a57600080fd5b506102b8610629366004611e72565b611297565b34801561063a57600080fd5b506102cb600a5481565b60006001600160e01b031982166380ac58cd60e01b148061067557506001600160e01b03198216635b5e139f60e01b145b8061069057506001600160e01b0319821663780e9d6360e01b145b806106ab57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546106c090611fee565b80601f01602080910402602001604051908101604052809291908181526020018280546106ec90611fee565b80156107395780601f1061070e57610100808354040283529160200191610739565b820191906000526020600020905b81548152906001019060200180831161071c57829003601f168201915b5050505050905090565b6000610750826000541190565b6107b75760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107de82610c4a565b9050806001600160a01b0316836001600160a01b0316141561084d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107ae565b336001600160a01b0382161480610869575061086981336105e0565b6108db5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107ae565b6108e683838361132f565b505050565b6108e683838361138b565b600061090183610cea565b821061095a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107ae565b600080549080805b838110156109f3576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109b557805192505b876001600160a01b0316836001600160a01b031614156109ea57868414156109e3575093506106ab92505050565b6001909301925b50600101610962565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107ae565b6007546001600160a01b03163314610a7d5760405162461bcd60e51b81526004016107ae90612029565b60026008541415610ad05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107ae565b6002600855604051600090339047908381818185875af1925050503d8060008114610b17576040519150601f19603f3d011682016040523d82523d6000602084013e610b1c565b606091505b5050905080610b605760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107ae565b506001600855565b6108e683838360405180602001604052806000815250611156565b600080548210610be15760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107ae565b5090565b6007546001600160a01b03163314610c0f5760405162461bcd60e51b81526004016107ae90612029565b6108e6600f8383611c37565b6007546001600160a01b03163314610c455760405162461bcd60e51b81526004016107ae90612029565b600c55565b6000610c5582611670565b5192915050565b600f8054610c6990611fee565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9590611fee565b8015610ce25780601f10610cb757610100808354040283529160200191610ce2565b820191906000526020600020905b815481529060010190602001808311610cc557829003601f168201915b505050505081565b60006001600160a01b038216610d565760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107ae565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610da55760405162461bcd60e51b81526004016107ae90612029565b610daf6000611747565b565b6007546001600160a01b03163314610ddb5760405162461bcd60e51b81526004016107ae90612029565b600e805460ff19811660ff90911615179055565b6007546001600160a01b03163314610e195760405162461bcd60e51b81526004016107ae90612029565b600d54610e27906001612074565b81610e3160005490565b610e3b9190612074565b10610e745760405162461bcd60e51b8152602060048201526009602482015268746f6f206d616e792160b81b60448201526064016107ae565b610e7e3382611799565b50565b6007546001600160a01b03163314610eab5760405162461bcd60e51b81526004016107ae90612029565b600955565b6060600280546106c090611fee565b600954600c54610ed0906001612074565b82610eda60005490565b610ee49190612074565b1015610f1a57600b54610ef8906001612074565b82610f023361128c565b610f0c9190612074565b10610f1657600080fd5b5060005b600e5460ff16610f7a5760405162461bcd60e51b815260206004820152602560248201527f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e604482015264206261706560d81b60648201526084016107ae565b600d54610f88906001612074565b82610f9260005490565b610f9c9190612074565b10610fd95760405162461bcd60e51b815260206004820152600d60248201526c4e6f206d6f726520626170657360981b60448201526064016107ae565b610fe3818361208c565b3410156110325760405162461bcd60e51b815260206004820152601c60248201527f506c656173652073656e642074686520657861637420616d6f756e740000000060448201526064016107ae565b600a54611040906001612074565b82106110835760405162461bcd60e51b815260206004820152601260248201527113585e081c195c881516081c995858da195960721b60448201526064016107ae565b61108d3383611799565b5050565b6001600160a01b0382163314156110ea5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107ae565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61116184848461138b565b61116d848484846117b3565b6111895760405162461bcd60e51b81526004016107ae906120ab565b50505050565b6007546001600160a01b031633146111b95760405162461bcd60e51b81526004016107ae90612029565b600a55565b60606111cb826000541190565b61122f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107ae565b60006112396118c1565b905080516000141561125a5760405180602001604052806000815250611285565b80611264846118d0565b6040516020016112759291906120fe565b6040516020818303038152906040525b9392505050565b60006106ab826119ce565b6007546001600160a01b031633146112c15760405162461bcd60e51b81526004016107ae90612029565b6001600160a01b0381166113265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ae565b610e7e81611747565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061139682611670565b80519091506000906001600160a01b0316336001600160a01b031614806113cd5750336113c284610743565b6001600160a01b0316145b806113df575081516113df90336105e0565b9050806114495760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107ae565b846001600160a01b031682600001516001600160a01b0316146114bd5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107ae565b6001600160a01b0384166115215760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107ae565b611531600084846000015161132f565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611626576115d9816000541190565b15611626578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080518082019091526000808252602082015261168f826000541190565b6116ee5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107ae565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561173d579392505050565b50600019016116f0565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61108d828260405180602001604052806000815250611a6c565b60006001600160a01b0384163b156118b557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117f790339089908890889060040161212d565b602060405180830381600087803b15801561181157600080fd5b505af1925050508015611841575060408051601f3d908101601f1916820190925261183e9181019061216a565b60015b61189b573d80801561186f576040519150601f19603f3d011682016040523d82523d6000602084013e611874565b606091505b5080516118935760405162461bcd60e51b81526004016107ae906120ab565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118b9565b5060015b949350505050565b6060600f80546106c090611fee565b6060816118f45750506040805180820190915260018152600360fc1b602082015290565b8160005b811561191e578061190881612187565b91506119179050600a836121b8565b91506118f8565b60008167ffffffffffffffff81111561193957611939611ec9565b6040519080825280601f01601f191660200182016040528015611963576020820181803683370190505b5090505b84156118b9576119786001836121cc565b9150611985600a866121e3565b611990906030612074565b60f81b8183815181106119a5576119a56121f7565b60200101906001600160f81b031916908160001a9053506119c7600a866121b8565b9450611967565b60006001600160a01b038216611a405760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016107ae565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6108e683838360016000546001600160a01b038516611ad75760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107ae565b83611b355760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016107ae565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611c2e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611c2257611c0660008884886117b3565b611c225760405162461bcd60e51b81526004016107ae906120ab565b60019182019101611bb3565b50600055611669565b828054611c4390611fee565b90600052602060002090601f016020900481019282611c655760008555611cab565b82601f10611c7e5782800160ff19823516178555611cab565b82800160010185558215611cab579182015b82811115611cab578235825591602001919060010190611c90565b50610be19291505b80821115610be15760008155600101611cb3565b6001600160e01b031981168114610e7e57600080fd5b600060208284031215611cef57600080fd5b813561128581611cc7565b60005b83811015611d15578181015183820152602001611cfd565b838111156111895750506000910152565b60008151808452611d3e816020860160208601611cfa565b601f01601f19169290920160200192915050565b6020815260006112856020830184611d26565b600060208284031215611d7757600080fd5b5035919050565b80356001600160a01b0381168114611d9557600080fd5b919050565b60008060408385031215611dad57600080fd5b611db683611d7e565b946020939093013593505050565b600080600060608486031215611dd957600080fd5b611de284611d7e565b9250611df060208501611d7e565b9150604084013590509250925092565b60008060208385031215611e1357600080fd5b823567ffffffffffffffff80821115611e2b57600080fd5b818501915085601f830112611e3f57600080fd5b813581811115611e4e57600080fd5b866020828501011115611e6057600080fd5b60209290920196919550909350505050565b600060208284031215611e8457600080fd5b61128582611d7e565b60008060408385031215611ea057600080fd5b611ea983611d7e565b915060208301358015158114611ebe57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611ef557600080fd5b611efe85611d7e565b9350611f0c60208601611d7e565b925060408501359150606085013567ffffffffffffffff80821115611f3057600080fd5b818701915087601f830112611f4457600080fd5b813581811115611f5657611f56611ec9565b604051601f8201601f19908116603f01168101908382118183101715611f7e57611f7e611ec9565b816040528281528a6020848701011115611f9757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611fce57600080fd5b611fd783611d7e565b9150611fe560208401611d7e565b90509250929050565b600181811c9082168061200257607f821691505b6020821081141561202357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156120875761208761205e565b500190565b60008160001904831182151516156120a6576120a661205e565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612110818460208801611cfa565b835190830190612124818360208801611cfa565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061216090830184611d26565b9695505050505050565b60006020828403121561217c57600080fd5b815161128581611cc7565b600060001982141561219b5761219b61205e565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826121c7576121c76121a2565b500490565b6000828210156121de576121de61205e565b500390565b6000826121f2576121f26121a2565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220e168938bbd1a58d8aaa01bf1fb094ecd34e2c69f32ea91e6cbe204ab2494734964736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb011461058f578063dc33e681146105a5578063e985e9c5146105c5578063f2fde38b1461060e578063f968adbe1461062e57600080fd5b8063b88d4fde14610515578063c6f6f21614610535578063c87b56dd14610555578063d12397301461057557600080fd5b806391b7f5ed116100e757806391b7f5ed1461049757806395d89b41146104b7578063a035b1fe146104cc578063a0712d68146104e2578063a22cb465146104f557600080fd5b8063715018a61461042f5780637d55094d146104445780638da5cb5b146104595780638db89f071461047757600080fd5b8063333e44e61161019b57806355f804b31161016a57806355f804b31461039a578063563aaf11146103ba5780636352211e146103da5780636c0360eb146103fa57806370a082311461040f57600080fd5b8063333e44e61461032f5780633ccfd60b1461034557806342842e0e1461035a5780634f6ccce71461037a57600080fd5b806318160ddd116101d757806318160ddd146102ba57806323b872dd146102d95780632c321f98146102f95780632f745c591461030f57600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611cdd565b610644565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106b1565b6040516102359190611d52565b34801561026c57600080fd5b5061028061027b366004611d65565b610743565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611d9a565b6107d3565b005b3480156102c657600080fd5b506000545b604051908152602001610235565b3480156102e557600080fd5b506102b86102f4366004611dc4565b6108eb565b34801561030557600080fd5b506102cb600b5481565b34801561031b57600080fd5b506102cb61032a366004611d9a565b6108f6565b34801561033b57600080fd5b506102cb600c5481565b34801561035157600080fd5b506102b8610a53565b34801561036657600080fd5b506102b8610375366004611dc4565b610b68565b34801561038657600080fd5b506102cb610395366004611d65565b610b83565b3480156103a657600080fd5b506102b86103b5366004611e00565b610be5565b3480156103c657600080fd5b506102b86103d5366004611d65565b610c1b565b3480156103e657600080fd5b506102806103f5366004611d65565b610c4a565b34801561040657600080fd5b50610253610c5c565b34801561041b57600080fd5b506102cb61042a366004611e72565b610cea565b34801561043b57600080fd5b506102b8610d7b565b34801561045057600080fd5b506102b8610db1565b34801561046557600080fd5b506007546001600160a01b0316610280565b34801561048357600080fd5b506102b8610492366004611d65565b610def565b3480156104a357600080fd5b506102b86104b2366004611d65565b610e81565b3480156104c357600080fd5b50610253610eb0565b3480156104d857600080fd5b506102cb60095481565b6102b86104f0366004611d65565b610ebf565b34801561050157600080fd5b506102b8610510366004611e8d565b611091565b34801561052157600080fd5b506102b8610530366004611edf565b611156565b34801561054157600080fd5b506102b8610550366004611d65565b61118f565b34801561056157600080fd5b50610253610570366004611d65565b6111be565b34801561058157600080fd5b50600e546102299060ff1681565b34801561059b57600080fd5b506102cb600d5481565b3480156105b157600080fd5b506102cb6105c0366004611e72565b61128c565b3480156105d157600080fd5b506102296105e0366004611fbb565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561061a57600080fd5b506102b8610629366004611e72565b611297565b34801561063a57600080fd5b506102cb600a5481565b60006001600160e01b031982166380ac58cd60e01b148061067557506001600160e01b03198216635b5e139f60e01b145b8061069057506001600160e01b0319821663780e9d6360e01b145b806106ab57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546106c090611fee565b80601f01602080910402602001604051908101604052809291908181526020018280546106ec90611fee565b80156107395780601f1061070e57610100808354040283529160200191610739565b820191906000526020600020905b81548152906001019060200180831161071c57829003601f168201915b5050505050905090565b6000610750826000541190565b6107b75760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107de82610c4a565b9050806001600160a01b0316836001600160a01b0316141561084d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107ae565b336001600160a01b0382161480610869575061086981336105e0565b6108db5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107ae565b6108e683838361132f565b505050565b6108e683838361138b565b600061090183610cea565b821061095a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107ae565b600080549080805b838110156109f3576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109b557805192505b876001600160a01b0316836001600160a01b031614156109ea57868414156109e3575093506106ab92505050565b6001909301925b50600101610962565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107ae565b6007546001600160a01b03163314610a7d5760405162461bcd60e51b81526004016107ae90612029565b60026008541415610ad05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107ae565b6002600855604051600090339047908381818185875af1925050503d8060008114610b17576040519150601f19603f3d011682016040523d82523d6000602084013e610b1c565b606091505b5050905080610b605760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107ae565b506001600855565b6108e683838360405180602001604052806000815250611156565b600080548210610be15760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107ae565b5090565b6007546001600160a01b03163314610c0f5760405162461bcd60e51b81526004016107ae90612029565b6108e6600f8383611c37565b6007546001600160a01b03163314610c455760405162461bcd60e51b81526004016107ae90612029565b600c55565b6000610c5582611670565b5192915050565b600f8054610c6990611fee565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9590611fee565b8015610ce25780601f10610cb757610100808354040283529160200191610ce2565b820191906000526020600020905b815481529060010190602001808311610cc557829003601f168201915b505050505081565b60006001600160a01b038216610d565760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107ae565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610da55760405162461bcd60e51b81526004016107ae90612029565b610daf6000611747565b565b6007546001600160a01b03163314610ddb5760405162461bcd60e51b81526004016107ae90612029565b600e805460ff19811660ff90911615179055565b6007546001600160a01b03163314610e195760405162461bcd60e51b81526004016107ae90612029565b600d54610e27906001612074565b81610e3160005490565b610e3b9190612074565b10610e745760405162461bcd60e51b8152602060048201526009602482015268746f6f206d616e792160b81b60448201526064016107ae565b610e7e3382611799565b50565b6007546001600160a01b03163314610eab5760405162461bcd60e51b81526004016107ae90612029565b600955565b6060600280546106c090611fee565b600954600c54610ed0906001612074565b82610eda60005490565b610ee49190612074565b1015610f1a57600b54610ef8906001612074565b82610f023361128c565b610f0c9190612074565b10610f1657600080fd5b5060005b600e5460ff16610f7a5760405162461bcd60e51b815260206004820152602560248201527f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e604482015264206261706560d81b60648201526084016107ae565b600d54610f88906001612074565b82610f9260005490565b610f9c9190612074565b10610fd95760405162461bcd60e51b815260206004820152600d60248201526c4e6f206d6f726520626170657360981b60448201526064016107ae565b610fe3818361208c565b3410156110325760405162461bcd60e51b815260206004820152601c60248201527f506c656173652073656e642074686520657861637420616d6f756e740000000060448201526064016107ae565b600a54611040906001612074565b82106110835760405162461bcd60e51b815260206004820152601260248201527113585e081c195c881516081c995858da195960721b60448201526064016107ae565b61108d3383611799565b5050565b6001600160a01b0382163314156110ea5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107ae565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61116184848461138b565b61116d848484846117b3565b6111895760405162461bcd60e51b81526004016107ae906120ab565b50505050565b6007546001600160a01b031633146111b95760405162461bcd60e51b81526004016107ae90612029565b600a55565b60606111cb826000541190565b61122f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107ae565b60006112396118c1565b905080516000141561125a5760405180602001604052806000815250611285565b80611264846118d0565b6040516020016112759291906120fe565b6040516020818303038152906040525b9392505050565b60006106ab826119ce565b6007546001600160a01b031633146112c15760405162461bcd60e51b81526004016107ae90612029565b6001600160a01b0381166113265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ae565b610e7e81611747565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061139682611670565b80519091506000906001600160a01b0316336001600160a01b031614806113cd5750336113c284610743565b6001600160a01b0316145b806113df575081516113df90336105e0565b9050806114495760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107ae565b846001600160a01b031682600001516001600160a01b0316146114bd5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107ae565b6001600160a01b0384166115215760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107ae565b611531600084846000015161132f565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611626576115d9816000541190565b15611626578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080518082019091526000808252602082015261168f826000541190565b6116ee5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107ae565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561173d579392505050565b50600019016116f0565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61108d828260405180602001604052806000815250611a6c565b60006001600160a01b0384163b156118b557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117f790339089908890889060040161212d565b602060405180830381600087803b15801561181157600080fd5b505af1925050508015611841575060408051601f3d908101601f1916820190925261183e9181019061216a565b60015b61189b573d80801561186f576040519150601f19603f3d011682016040523d82523d6000602084013e611874565b606091505b5080516118935760405162461bcd60e51b81526004016107ae906120ab565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118b9565b5060015b949350505050565b6060600f80546106c090611fee565b6060816118f45750506040805180820190915260018152600360fc1b602082015290565b8160005b811561191e578061190881612187565b91506119179050600a836121b8565b91506118f8565b60008167ffffffffffffffff81111561193957611939611ec9565b6040519080825280601f01601f191660200182016040528015611963576020820181803683370190505b5090505b84156118b9576119786001836121cc565b9150611985600a866121e3565b611990906030612074565b60f81b8183815181106119a5576119a56121f7565b60200101906001600160f81b031916908160001a9053506119c7600a866121b8565b9450611967565b60006001600160a01b038216611a405760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016107ae565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6108e683838360016000546001600160a01b038516611ad75760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107ae565b83611b355760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016107ae565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611c2e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611c2257611c0660008884886117b3565b611c225760405162461bcd60e51b81526004016107ae906120ab565b60019182019101611bb3565b50600055611669565b828054611c4390611fee565b90600052602060002090601f016020900481019282611c655760008555611cab565b82601f10611c7e5782800160ff19823516178555611cab565b82800160010185558215611cab579182015b82811115611cab578235825591602001919060010190611c90565b50610be19291505b80821115610be15760008155600101611cb3565b6001600160e01b031981168114610e7e57600080fd5b600060208284031215611cef57600080fd5b813561128581611cc7565b60005b83811015611d15578181015183820152602001611cfd565b838111156111895750506000910152565b60008151808452611d3e816020860160208601611cfa565b601f01601f19169290920160200192915050565b6020815260006112856020830184611d26565b600060208284031215611d7757600080fd5b5035919050565b80356001600160a01b0381168114611d9557600080fd5b919050565b60008060408385031215611dad57600080fd5b611db683611d7e565b946020939093013593505050565b600080600060608486031215611dd957600080fd5b611de284611d7e565b9250611df060208501611d7e565b9150604084013590509250925092565b60008060208385031215611e1357600080fd5b823567ffffffffffffffff80821115611e2b57600080fd5b818501915085601f830112611e3f57600080fd5b813581811115611e4e57600080fd5b866020828501011115611e6057600080fd5b60209290920196919550909350505050565b600060208284031215611e8457600080fd5b61128582611d7e565b60008060408385031215611ea057600080fd5b611ea983611d7e565b915060208301358015158114611ebe57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611ef557600080fd5b611efe85611d7e565b9350611f0c60208601611d7e565b925060408501359150606085013567ffffffffffffffff80821115611f3057600080fd5b818701915087601f830112611f4457600080fd5b813581811115611f5657611f56611ec9565b604051601f8201601f19908116603f01168101908382118183101715611f7e57611f7e611ec9565b816040528281528a6020848701011115611f9757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611fce57600080fd5b611fd783611d7e565b9150611fe560208401611d7e565b90509250929050565b600181811c9082168061200257607f821691505b6020821081141561202357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156120875761208761205e565b500190565b60008160001904831182151516156120a6576120a661205e565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612110818460208801611cfa565b835190830190612124818360208801611cfa565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061216090830184611d26565b9695505050505050565b60006020828403121561217c57600080fd5b815161128581611cc7565b600060001982141561219b5761219b61205e565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826121c7576121c76121a2565b500490565b6000828210156121de576121de61205e565b500390565b6000826121f2576121f26121a2565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220e168938bbd1a58d8aaa01bf1fb094ecd34e2c69f32ea91e6cbe204ab2494734964736f6c63430008090033

Deployed Bytecode Sourcemap

50791:1953:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37651:372;;;;;;;;;;-1:-1:-1;37651:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;37651:372:0;;;;;;;;39537:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41099:214::-;;;;;;;;;;-1:-1:-1;41099:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;41099:214:0;1528:203:1;40620:413:0;;;;;;;;;;-1:-1:-1;40620:413:0;;;;;:::i;:::-;;:::i;:::-;;35908:100;;;;;;;;;;-1:-1:-1;35961:7:0;35988:12;35908:100;;;2319:25:1;;;2307:2;2292:18;35908:100:0;2173:177:1;41975:170:0;;;;;;;;;;-1:-1:-1;41975:170:0;;;;;:::i;:::-;;:::i;50922:29::-;;;;;;;;;;;;;;;;36572:1007;;;;;;;;;;-1:-1:-1;36572:1007:0;;;;;:::i;:::-;;:::i;50956:27::-;;;;;;;;;;;;;;;;52565:176;;;;;;;;;;;;;:::i;42216:185::-;;;;;;;;;;-1:-1:-1;42216:185:0;;;;;:::i;:::-;;:::i;36085:187::-;;;;;;;;;;-1:-1:-1;36085:187:0;;;;;:::i;:::-;;:::i;52063:96::-;;;;;;;;;;-1:-1:-1;52063:96:0;;;;;:::i;:::-;;:::i;52253:98::-;;;;;;;;;;-1:-1:-1;52253:98:0;;;;;:::i;:::-;;:::i;39346:124::-;;;;;;;;;;-1:-1:-1;39346:124:0;;;;;:::i;:::-;;:::i;51049:21::-;;;;;;;;;;;;;:::i;38087:221::-;;;;;;;;;;-1:-1:-1;38087:221:0;;;;;:::i;:::-;;:::i;11043:103::-;;;;;;;;;;;;;:::i;51859:85::-;;;;;;;;;;;;;:::i;10392:87::-;;;;;;;;;;-1:-1:-1;10465:6:0;;-1:-1:-1;;;;;10465:6:0;10392:87;;51681:172;;;;;;;;;;-1:-1:-1;51681:172:0;;;;;:::i;:::-;;:::i;52165:82::-;;;;;;;;;;-1:-1:-1;52165:82:0;;;;;:::i;:::-;;:::i;39706:104::-;;;;;;;;;;;;;:::i;50857:31::-;;;;;;;;;;;;;;;;51134:541;;;;;;:::i;:::-;;:::i;41385:288::-;;;;;;;;;;-1:-1:-1;41385:288:0;;;;;:::i;:::-;;:::i;42472:355::-;;;;;;;;;;-1:-1:-1;42472:355:0;;;;;:::i;:::-;;:::i;52357:94::-;;;;;;;;;;-1:-1:-1;52357:94:0;;;;;:::i;:::-;;:::i;39881:335::-;;;;;;;;;;-1:-1:-1;39881:335:0;;;;;:::i;:::-;;:::i;51021:23::-;;;;;;;;;;-1:-1:-1;51021:23:0;;;;;;;;50988:28;;;;;;;;;;;;;;;;51950:107;;;;;;;;;;-1:-1:-1;51950:107:0;;;;;:::i;:::-;;:::i;41744:164::-;;;;;;;;;;-1:-1:-1;41744:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;41865:25:0;;;41841:4;41865:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41744:164;11301:201;;;;;;;;;;-1:-1:-1;11301:201:0;;;;;:::i;:::-;;:::i;50893:24::-;;;;;;;;;;;;;;;;37651:372;37753:4;-1:-1:-1;;;;;;37790:40:0;;-1:-1:-1;;;37790:40:0;;:105;;-1:-1:-1;;;;;;;37847:48:0;;-1:-1:-1;;;37847:48:0;37790:105;:172;;;-1:-1:-1;;;;;;;37912:50:0;;-1:-1:-1;;;37912:50:0;37790:172;:225;;;-1:-1:-1;;;;;;;;;;27280:40:0;;;37979:36;37770:245;37651:372;-1:-1:-1;;37651:372:0:o;39537:100::-;39591:13;39624:5;39617:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39537:100;:::o;41099:214::-;41167:7;41195:16;41203:7;43139:4;43173:12;-1:-1:-1;43163:22:0;43082:111;41195:16;41187:74;;;;-1:-1:-1;;;41187:74:0;;5955:2:1;41187:74:0;;;5937:21:1;5994:2;5974:18;;;5967:30;6033:34;6013:18;;;6006:62;-1:-1:-1;;;6084:18:1;;;6077:43;6137:19;;41187:74:0;;;;;;;;;-1:-1:-1;41281:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41281:24:0;;41099:214::o;40620:413::-;40693:13;40709:24;40725:7;40709:15;:24::i;:::-;40693:40;;40758:5;-1:-1:-1;;;;;40752:11:0;:2;-1:-1:-1;;;;;40752:11:0;;;40744:58;;;;-1:-1:-1;;;40744:58:0;;6369:2:1;40744:58:0;;;6351:21:1;6408:2;6388:18;;;6381:30;6447:34;6427:18;;;6420:62;-1:-1:-1;;;6498:18:1;;;6491:32;6540:19;;40744:58:0;6167:398:1;40744:58:0;9196:10;-1:-1:-1;;;;;40837:21:0;;;;:62;;-1:-1:-1;40862:37:0;40879:5;9196:10;41744:164;:::i;40862:37::-;40815:169;;;;-1:-1:-1;;;40815:169:0;;6772:2:1;40815:169:0;;;6754:21:1;6811:2;6791:18;;;6784:30;6850:34;6830:18;;;6823:62;6921:27;6901:18;;;6894:55;6966:19;;40815:169:0;6570:421:1;40815:169:0;40997:28;41006:2;41010:7;41019:5;40997:8;:28::i;:::-;40682:351;40620:413;;:::o;41975:170::-;42109:28;42119:4;42125:2;42129:7;42109:9;:28::i;36572:1007::-;36661:7;36697:16;36707:5;36697:9;:16::i;:::-;36689:5;:24;36681:71;;;;-1:-1:-1;;;36681:71:0;;7198:2:1;36681:71:0;;;7180:21:1;7237:2;7217:18;;;7210:30;7276:34;7256:18;;;7249:62;-1:-1:-1;;;7327:18:1;;;7320:32;7369:19;;36681:71:0;6996:398:1;36681:71:0;36763:22;35988:12;;;36763:22;;37026:466;37046:14;37042:1;:18;37026:466;;;37086:31;37120:14;;;:11;:14;;;;;;;;;37086:48;;;;;;;;;-1:-1:-1;;;;;37086:48:0;;;;;-1:-1:-1;;;37086:48:0;;;;;;;;;;;;37157:28;37153:111;;37230:14;;;-1:-1:-1;37153:111:0;37307:5;-1:-1:-1;;;;;37286:26:0;:17;-1:-1:-1;;;;;37286:26:0;;37282:195;;;37356:5;37341:11;:20;37337:85;;;-1:-1:-1;37397:1:0;-1:-1:-1;37390:8:0;;-1:-1:-1;;;37390:8:0;37337:85;37444:13;;;;;37282:195;-1:-1:-1;37062:3:0;;37026:466;;;-1:-1:-1;37515:56:0;;-1:-1:-1;;;37515:56:0;;7601:2:1;37515:56:0;;;7583:21:1;7640:2;7620:18;;;7613:30;7679:34;7659:18;;;7652:62;-1:-1:-1;;;7730:18:1;;;7723:44;7784:19;;37515:56:0;7399:410:1;52565:176:0;10465:6;;-1:-1:-1;;;;;10465:6:0;9196:10;10612:23;10604:68;;;;-1:-1:-1;;;10604:68:0;;;;;;;:::i;:::-;5366:1:::1;5964:7;;:19;;5956:63;;;::::0;-1:-1:-1;;;5956:63:0;;8377:2:1;5956:63:0::1;::::0;::::1;8359:21:1::0;8416:2;8396:18;;;8389:30;8455:33;8435:18;;;8428:61;8506:18;;5956:63:0::1;8175:355:1::0;5956:63:0::1;5366:1;6097:7;:18:::0;52643:49:::2;::::0;52625:12:::2;::::0;52643:10:::2;::::0;52666:21:::2;::::0;52625:12;52643:49;52625:12;52643:49;52666:21;52643:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52624:68;;;52707:7;52699:36;;;::::0;-1:-1:-1;;;52699:36:0;;8947:2:1;52699:36:0::2;::::0;::::2;8929:21:1::0;8986:2;8966:18;;;8959:30;-1:-1:-1;;;9005:18:1;;;8998:46;9061:18;;52699:36:0::2;8745:340:1::0;52699:36:0::2;-1:-1:-1::0;5322:1:0::1;6276:7;:22:::0;52565:176::o;42216:185::-;42354:39;42371:4;42377:2;42381:7;42354:39;;;;;;;;;;;;:16;:39::i;36085:187::-;36152:7;35988:12;;36180:5;:21;36172:69;;;;-1:-1:-1;;;36172:69:0;;9292:2:1;36172:69:0;;;9274:21:1;9331:2;9311:18;;;9304:30;9370:34;9350:18;;;9343:62;-1:-1:-1;;;9421:18:1;;;9414:33;9464:19;;36172:69:0;9090:399:1;36172:69:0;-1:-1:-1;36259:5:0;36085:187::o;52063:96::-;10465:6;;-1:-1:-1;;;;;10465:6:0;9196:10;10612:23;10604:68;;;;-1:-1:-1;;;10604:68:0;;;;;;;:::i;:::-;52135:18:::1;:7;52145:8:::0;;52135:18:::1;:::i;52253:98::-:0;10465:6;;-1:-1:-1;;;;;10465:6:0;9196:10;10612:23;10604:68;;;;-1:-1:-1;;;10604:68:0;;;;;;;:::i;:::-;52323:9:::1;:22:::0;52253:98::o;39346:124::-;39410:7;39437:20;39449:7;39437:11;:20::i;:::-;:25;;39346:124;-1:-1:-1;;39346:124:0:o;51049:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38087:221::-;38151:7;-1:-1:-1;;;;;38179:19:0;;38171:75;;;;-1:-1:-1;;;38171:75:0;;9696:2:1;38171:75:0;;;9678:21:1;9735:2;9715:18;;;9708:30;9774:34;9754:18;;;9747:62;-1:-1:-1;;;9825:18:1;;;9818:41;9876:19;;38171:75:0;9494:407:1;38171:75:0;-1:-1:-1;;;;;;38272:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;38272:27:0;;38087:221::o;11043:103::-;10465:6;;-1:-1:-1;;;;;10465:6:0;9196:10;10612:23;10604:68;;;;-1:-1:-1;;;10604:68:0;;;;;;;:::i;:::-;11108:30:::1;11135:1;11108:18;:30::i;:::-;11043:103::o:0;51859:85::-;10465:6;;-1:-1:-1;;;;;10465:6:0;9196:10;10612:23;10604:68;;;;-1:-1:-1;;;10604:68:0;;;;;;;:::i;:::-;51927:11:::1;::::0;;-1:-1:-1;;51912:26:0;::::1;51927:11;::::0;;::::1;51926:12;51912:26;::::0;;51859:85::o;51681:172::-;10465:6;;-1:-1:-1;;;;;10465:6:0;9196:10;10612:23;10604:68;;;;-1:-1:-1;;;10604:68:0;;;;;;;:::i;:::-;51783:9:::1;::::0;:13:::1;::::0;51795:1:::1;51783:13;:::i;:::-;51774:6;51758:13;35961:7:::0;35988:12;;35908:100;51758:13:::1;:22;;;;:::i;:::-;:38;51750:59;;;::::0;-1:-1:-1;;;51750:59:0;;10373:2:1;51750:59:0::1;::::0;::::1;10355:21:1::0;10412:1;10392:18;;;10385:29;-1:-1:-1;;;10430:18:1;;;10423:39;10479:18;;51750:59:0::1;10171:332:1::0;51750:59:0::1;51818:29;51828:10;51840:6;51818:9;:29::i;:::-;51681:172:::0;:::o;52165:82::-;10465:6;;-1:-1:-1;;;;;10465:6:0;9196:10;10612:23;10604:68;;;;-1:-1:-1;;;10604:68:0;;;;;;;:::i;:::-;52227:5:::1;:14:::0;52165:82::o;39706:104::-;39762:13;39795:7;39788:14;;;;;:::i;51134:541::-;51203:5;;51245:9;;:13;;51257:1;51245:13;:::i;:::-;51236:6;51220:13;35961:7;35988:12;;35908:100;51220:13;:22;;;;:::i;:::-;:38;51217:139;;;51313:13;;:17;;51329:1;51313:17;:::i;:::-;51304:6;51277:24;51290:10;51277:12;:24::i;:::-;:33;;;;:::i;:::-;:53;51269:62;;;;;;-1:-1:-1;51347:1:0;51217:139;51372:11;;;;51364:61;;;;-1:-1:-1;;;51364:61:0;;10710:2:1;51364:61:0;;;10692:21:1;10749:2;10729:18;;;10722:30;10788:34;10768:18;;;10761:62;-1:-1:-1;;;10839:18:1;;;10832:35;10884:19;;51364:61:0;10508:401:1;51364:61:0;51465:9;;:13;;51477:1;51465:13;:::i;:::-;51456:6;51440:13;35961:7;35988:12;;35908:100;51440:13;:22;;;;:::i;:::-;:38;51432:63;;;;-1:-1:-1;;;51432:63:0;;11116:2:1;51432:63:0;;;11098:21:1;11155:2;11135:18;;;11128:30;-1:-1:-1;;;11174:18:1;;;11167:43;11227:18;;51432:63:0;10914:337:1;51432:63:0;51523:13;51532:4;51523:6;:13;:::i;:::-;51510:9;:26;;51502:66;;;;-1:-1:-1;;;51502:66:0;;11631:2:1;51502:66:0;;;11613:21:1;11670:2;11650:18;;;11643:30;11709;11689:18;;;11682:58;11757:18;;51502:66:0;11429:352:1;51502:66:0;51592:8;;:12;;51603:1;51592:12;:::i;:::-;51583:6;:21;51575:52;;;;-1:-1:-1;;;51575:52:0;;11988:2:1;51575:52:0;;;11970:21:1;12027:2;12007:18;;;12000:30;-1:-1:-1;;;12046:18:1;;;12039:48;12104:18;;51575:52:0;11786:342:1;51575:52:0;51640:29;51650:10;51662:6;51640:9;:29::i;:::-;51184:491;51134:541;:::o;41385:288::-;-1:-1:-1;;;;;41480:24:0;;9196:10;41480:24;;41472:63;;;;-1:-1:-1;;;41472:63:0;;12335:2:1;41472:63:0;;;12317:21:1;12374:2;12354:18;;;12347:30;12413:28;12393:18;;;12386:56;12459:18;;41472:63:0;12133:350:1;41472:63:0;9196:10;41548:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;41548:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;41548:53:0;;;;;;;;;;41617:48;;540:41:1;;;41548:42:0;;9196:10;41617:48;;513:18:1;41617:48:0;;;;;;;41385:288;;:::o;42472:355::-;42631:28;42641:4;42647:2;42651:7;42631:9;:28::i;:::-;42692:48;42715:4;42721:2;42725:7;42734:5;42692:22;:48::i;:::-;42670:149;;;;-1:-1:-1;;;42670:149:0;;;;;;;:::i;:::-;42472:355;;;;:::o;52357:94::-;10465:6;;-1:-1:-1;;;;;10465:6:0;9196:10;10612:23;10604:68;;;;-1:-1:-1;;;10604:68:0;;;;;;;:::i;:::-;52425:8:::1;:20:::0;52357:94::o;39881:335::-;39954:13;39988:16;39996:7;43139:4;43173:12;-1:-1:-1;43163:22:0;43082:111;39988:16;39980:76;;;;-1:-1:-1;;;39980:76:0;;13110:2:1;39980:76:0;;;13092:21:1;13149:2;13129:18;;;13122:30;13188:34;13168:18;;;13161:62;-1:-1:-1;;;13239:18:1;;;13232:45;13294:19;;39980:76:0;12908:411:1;39980:76:0;40069:21;40093:10;:8;:10::i;:::-;40069:34;;40127:7;40121:21;40146:1;40121:26;;:87;;;;;;;;;;;;;;;;;40174:7;40183:18;:7;:16;:18::i;:::-;40157:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40121:87;40114:94;39881:335;-1:-1:-1;;;39881:335:0:o;51950:107::-;52008:7;52031:20;52045:5;52031:13;:20::i;11301:201::-;10465:6;;-1:-1:-1;;;;;10465:6:0;9196:10;10612:23;10604:68;;;;-1:-1:-1;;;10604:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11390:22:0;::::1;11382:73;;;::::0;-1:-1:-1;;;11382:73:0;;14001:2:1;11382:73:0::1;::::0;::::1;13983:21:1::0;14040:2;14020:18;;;14013:30;14079:34;14059:18;;;14052:62;-1:-1:-1;;;14130:18:1;;;14123:36;14176:19;;11382:73:0::1;13799:402:1::0;11382:73:0::1;11466:28;11485:8;11466:18;:28::i;48002:196::-:0;48117:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;48117:29:0;-1:-1:-1;;;;;48117:29:0;;;;;;;;;48162:28;;48117:24;;48162:28;;;;;;;48002:196;;;:::o;45882:2002::-;45997:35;46035:20;46047:7;46035:11;:20::i;:::-;46110:18;;45997:58;;-1:-1:-1;46068:22:0;;-1:-1:-1;;;;;46094:34:0;9196:10;-1:-1:-1;;;;;46094:34:0;;:87;;;-1:-1:-1;9196:10:0;46145:20;46157:7;46145:11;:20::i;:::-;-1:-1:-1;;;;;46145:36:0;;46094:87;:154;;;-1:-1:-1;46215:18:0;;46198:50;;9196:10;41744:164;:::i;46198:50::-;46068:181;;46270:17;46262:80;;;;-1:-1:-1;;;46262:80:0;;14408:2:1;46262:80:0;;;14390:21:1;14447:2;14427:18;;;14420:30;14486:34;14466:18;;;14459:62;-1:-1:-1;;;14537:18:1;;;14530:48;14595:19;;46262:80:0;14206:414:1;46262:80:0;46385:4;-1:-1:-1;;;;;46363:26:0;:13;:18;;;-1:-1:-1;;;;;46363:26:0;;46355:77;;;;-1:-1:-1;;;46355:77:0;;14827:2:1;46355:77:0;;;14809:21:1;14866:2;14846:18;;;14839:30;14905:34;14885:18;;;14878:62;-1:-1:-1;;;14956:18:1;;;14949:36;15002:19;;46355:77:0;14625:402:1;46355:77:0;-1:-1:-1;;;;;46451:16:0;;46443:66;;;;-1:-1:-1;;;46443:66:0;;15234:2:1;46443:66:0;;;15216:21:1;15273:2;15253:18;;;15246:30;15312:34;15292:18;;;15285:62;-1:-1:-1;;;15363:18:1;;;15356:35;15408:19;;46443:66:0;15032:401:1;46443:66:0;46630:49;46647:1;46651:7;46660:13;:18;;;46630:8;:49::i;:::-;-1:-1:-1;;;;;46975:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;46975:31:0;;;-1:-1:-1;;;;;46975:31:0;;;-1:-1:-1;;46975:31:0;;;;;;;47021:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;47021:29:0;;;;;;;;;;;;;47067:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;47112:61:0;;;;-1:-1:-1;;;47157:15:0;47112:61;;;;;;47447:11;;;47477:24;;;;;:29;47447:11;;47477:29;47473:295;;47545:20;47553:11;43139:4;43173:12;-1:-1:-1;43163:22:0;43082:111;47545:20;47541:212;;;47622:18;;;47590:24;;;:11;:24;;;;;;;;:50;;47705:28;;;;47663:70;;-1:-1:-1;;;47663:70:0;-1:-1:-1;;;;;;47663:70:0;;;-1:-1:-1;;;;;47590:50:0;;;47663:70;;;;;;;47541:212;46950:829;47815:7;47811:2;-1:-1:-1;;;;;47796:27:0;47805:4;-1:-1:-1;;;;;47796:27:0;;;;;;;;;;;47834:42;45986:1898;;45882:2002;;;:::o;38747:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;38850:16:0;38858:7;43139:4;43173:12;-1:-1:-1;43163:22:0;43082:111;38850:16;38842:71;;;;-1:-1:-1;;;38842:71:0;;15640:2:1;38842:71:0;;;15622:21:1;15679:2;15659:18;;;15652:30;15718:34;15698:18;;;15691:62;-1:-1:-1;;;15769:18:1;;;15762:40;15819:19;;38842:71:0;15438:406:1;38842:71:0;38971:7;38951:245;39018:31;39052:17;;;:11;:17;;;;;;;;;39018:51;;;;;;;;;-1:-1:-1;;;;;39018:51:0;;;;;-1:-1:-1;;;39018:51:0;;;;;;;;;;;;39092:28;39088:93;;39152:9;38747:537;-1:-1:-1;;;38747:537:0:o;39088:93::-;-1:-1:-1;;;38991:6:0;38951:245;;11662:191;11755:6;;;-1:-1:-1;;;;;11772:17:0;;;-1:-1:-1;;;;;;11772:17:0;;;;;;;11805:40;;11755:6;;;11772:17;11755:6;;11805:40;;11736:16;;11805:40;11725:128;11662:191;:::o;43201:104::-;43270:27;43280:2;43284:8;43270:27;;;;;;;;;;;;:9;:27::i;48763:804::-;48918:4;-1:-1:-1;;;;;48939:13:0;;13388:19;:23;48935:625;;48975:72;;-1:-1:-1;;;48975:72:0;;-1:-1:-1;;;;;48975:36:0;;;;;:72;;9196:10;;49026:4;;49032:7;;49041:5;;48975:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48975:72:0;;;;;;;;-1:-1:-1;;48975:72:0;;;;;;;;;;;;:::i;:::-;;;48971:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49221:13:0;;49217:273;;49264:61;;-1:-1:-1;;;49264:61:0;;;;;;;:::i;49217:273::-;49440:6;49434:13;49425:6;49421:2;49417:15;49410:38;48971:534;-1:-1:-1;;;;;;49098:55:0;-1:-1:-1;;;49098:55:0;;-1:-1:-1;49091:62:0;;48935:625;-1:-1:-1;49544:4:0;48935:625;48763:804;;;;;;:::o;52457:102::-;52517:13;52546:7;52539:14;;;;;:::i;6678:723::-;6734:13;6955:10;6951:53;;-1:-1:-1;;6982:10:0;;;;;;;;;;;;-1:-1:-1;;;6982:10:0;;;;;6678:723::o;6951:53::-;7029:5;7014:12;7070:78;7077:9;;7070:78;;7103:8;;;;:::i;:::-;;-1:-1:-1;7126:10:0;;-1:-1:-1;7134:2:0;7126:10;;:::i;:::-;;;7070:78;;;7158:19;7190:6;7180:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7180:17:0;;7158:39;;7208:154;7215:10;;7208:154;;7242:11;7252:1;7242:11;;:::i;:::-;;-1:-1:-1;7311:10:0;7319:2;7311:5;:10;:::i;:::-;7298:24;;:2;:24;:::i;:::-;7285:39;;7268:6;7275;7268:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7268:56:0;;;;;;;;-1:-1:-1;7339:11:0;7348:2;7339:11;;:::i;:::-;;;7208:154;;38316:229;38377:7;-1:-1:-1;;;;;38405:19:0;;38397:81;;;;-1:-1:-1;;;38397:81:0;;17991:2:1;38397:81:0;;;17973:21:1;18030:2;18010:18;;;18003:30;18069:34;18049:18;;;18042:62;-1:-1:-1;;;18120:18:1;;;18113:47;18177:19;;38397:81:0;17789:413:1;38397:81:0;-1:-1:-1;;;;;;38504:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;38504:32:0;;-1:-1:-1;;;;;38504:32:0;;38316:229::o;43668:163::-;43791:32;43797:2;43801:8;43811:5;43818:4;44229:20;44252:12;-1:-1:-1;;;;;44283:16:0;;44275:62;;;;-1:-1:-1;;;44275:62:0;;18409:2:1;44275:62:0;;;18391:21:1;18448:2;18428:18;;;18421:30;18487:34;18467:18;;;18460:62;-1:-1:-1;;;18538:18:1;;;18531:31;18579:19;;44275:62:0;18207:397:1;44275:62:0;44356:13;44348:66;;;;-1:-1:-1;;;44348:66:0;;18811:2:1;44348:66:0;;;18793:21:1;18850:2;18830:18;;;18823:30;18889:34;18869:18;;;18862:62;-1:-1:-1;;;18940:18:1;;;18933:38;18988:19;;44348:66:0;18609:404:1;44348:66:0;-1:-1:-1;;;;;44766:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;44766:45:0;;-1:-1:-1;;;;;44766:45:0;;;;;;;;;;44826:50;;;;;;;;;;;;;;44893:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;44943:66:0;;;;-1:-1:-1;;;44993:15:0;44943:66;;;;;;;44893:25;;45078:415;45098:8;45094:1;:12;45078:415;;;45137:38;;45162:12;;-1:-1:-1;;;;;45137:38:0;;;45154:1;;45137:38;;45154:1;;45137:38;45198:4;45194:249;;;45261:59;45292:1;45296:2;45300:12;45314:5;45261:22;:59::i;:::-;45227:196;;;;-1:-1:-1;;;45227:196:0;;;;;;;:::i;:::-;45463:14;;;;;45108:3;45078:415;;;-1:-1:-1;45509:12:0;:27;45560:60;42472:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:592::-;2759:6;2767;2820:2;2808:9;2799:7;2795:23;2791:32;2788:52;;;2836:1;2833;2826:12;2788:52;2876:9;2863:23;2905:18;2946:2;2938:6;2935:14;2932:34;;;2962:1;2959;2952:12;2932:34;3000:6;2989:9;2985:22;2975:32;;3045:7;3038:4;3034:2;3030:13;3026:27;3016:55;;3067:1;3064;3057:12;3016:55;3107:2;3094:16;3133:2;3125:6;3122:14;3119:34;;;3149:1;3146;3139:12;3119:34;3194:7;3189:2;3180:6;3176:2;3172:15;3168:24;3165:37;3162:57;;;3215:1;3212;3205:12;3162:57;3246:2;3238:11;;;;;3268:6;;-1:-1:-1;2688:592:1;;-1:-1:-1;;;;2688:592:1:o;3285:186::-;3344:6;3397:2;3385:9;3376:7;3372:23;3368:32;3365:52;;;3413:1;3410;3403:12;3365:52;3436:29;3455:9;3436:29;:::i;3476:347::-;3541:6;3549;3602:2;3590:9;3581:7;3577:23;3573:32;3570:52;;;3618:1;3615;3608:12;3570:52;3641:29;3660:9;3641:29;:::i;:::-;3631:39;;3720:2;3709:9;3705:18;3692:32;3767:5;3760:13;3753:21;3746:5;3743:32;3733:60;;3789:1;3786;3779:12;3733:60;3812:5;3802:15;;;3476:347;;;;;:::o;3828:127::-;3889:10;3884:3;3880:20;3877:1;3870:31;3920:4;3917:1;3910:15;3944:4;3941:1;3934:15;3960:1138;4055:6;4063;4071;4079;4132:3;4120:9;4111:7;4107:23;4103:33;4100:53;;;4149:1;4146;4139:12;4100:53;4172:29;4191:9;4172:29;:::i;:::-;4162:39;;4220:38;4254:2;4243:9;4239:18;4220:38;:::i;:::-;4210:48;;4305:2;4294:9;4290:18;4277:32;4267:42;;4360:2;4349:9;4345:18;4332:32;4383:18;4424:2;4416:6;4413:14;4410:34;;;4440:1;4437;4430:12;4410:34;4478:6;4467:9;4463:22;4453:32;;4523:7;4516:4;4512:2;4508:13;4504:27;4494:55;;4545:1;4542;4535:12;4494:55;4581:2;4568:16;4603:2;4599;4596:10;4593:36;;;4609:18;;:::i;:::-;4684:2;4678:9;4652:2;4738:13;;-1:-1:-1;;4734:22:1;;;4758:2;4730:31;4726:40;4714:53;;;4782:18;;;4802:22;;;4779:46;4776:72;;;4828:18;;:::i;:::-;4868:10;4864:2;4857:22;4903:2;4895:6;4888:18;4943:7;4938:2;4933;4929;4925:11;4921:20;4918:33;4915:53;;;4964:1;4961;4954:12;4915:53;5020:2;5015;5011;5007:11;5002:2;4994:6;4990:15;4977:46;5065:1;5060:2;5055;5047:6;5043:15;5039:24;5032:35;5086:6;5076:16;;;;;;;3960:1138;;;;;;;:::o;5103:260::-;5171:6;5179;5232:2;5220:9;5211:7;5207:23;5203:32;5200:52;;;5248:1;5245;5238:12;5200:52;5271:29;5290:9;5271:29;:::i;:::-;5261:39;;5319:38;5353:2;5342:9;5338:18;5319:38;:::i;:::-;5309:48;;5103:260;;;;;:::o;5368:380::-;5447:1;5443:12;;;;5490;;;5511:61;;5565:4;5557:6;5553:17;5543:27;;5511:61;5618:2;5610:6;5607:14;5587:18;5584:38;5581:161;;;5664:10;5659:3;5655:20;5652:1;5645:31;5699:4;5696:1;5689:15;5727:4;5724:1;5717:15;5581:161;;5368:380;;;:::o;7814:356::-;8016:2;7998:21;;;8035:18;;;8028:30;8094:34;8089:2;8074:18;;8067:62;8161:2;8146:18;;7814:356::o;9906:127::-;9967:10;9962:3;9958:20;9955:1;9948:31;9998:4;9995:1;9988:15;10022:4;10019:1;10012:15;10038:128;10078:3;10109:1;10105:6;10102:1;10099:13;10096:39;;;10115:18;;:::i;:::-;-1:-1:-1;10151:9:1;;10038:128::o;11256:168::-;11296:7;11362:1;11358;11354:6;11350:14;11347:1;11344:21;11339:1;11332:9;11325:17;11321:45;11318:71;;;11369:18;;:::i;:::-;-1:-1:-1;11409:9:1;;11256:168::o;12488:415::-;12690:2;12672:21;;;12729:2;12709:18;;;12702:30;12768:34;12763:2;12748:18;;12741:62;-1:-1:-1;;;12834:2:1;12819:18;;12812:49;12893:3;12878:19;;12488:415::o;13324:470::-;13503:3;13541:6;13535:13;13557:53;13603:6;13598:3;13591:4;13583:6;13579:17;13557:53;:::i;:::-;13673:13;;13632:16;;;;13695:57;13673:13;13632:16;13729:4;13717:17;;13695:57;:::i;:::-;13768:20;;13324:470;-1:-1:-1;;;;13324:470:1:o;16265:489::-;-1:-1:-1;;;;;16534:15:1;;;16516:34;;16586:15;;16581:2;16566:18;;16559:43;16633:2;16618:18;;16611:34;;;16681:3;16676:2;16661:18;;16654:31;;;16459:4;;16702:46;;16728:19;;16720:6;16702:46;:::i;:::-;16694:54;16265:489;-1:-1:-1;;;;;;16265:489:1:o;16759:249::-;16828:6;16881:2;16869:9;16860:7;16856:23;16852:32;16849:52;;;16897:1;16894;16887:12;16849:52;16929:9;16923:16;16948:30;16972:5;16948:30;:::i;17013:135::-;17052:3;-1:-1:-1;;17073:17:1;;17070:43;;;17093:18;;:::i;:::-;-1:-1:-1;17140:1:1;17129:13;;17013:135::o;17153:127::-;17214:10;17209:3;17205:20;17202:1;17195:31;17245:4;17242:1;17235:15;17269:4;17266:1;17259:15;17285:120;17325:1;17351;17341:35;;17356:18;;:::i;:::-;-1:-1:-1;17390:9:1;;17285:120::o;17410:125::-;17450:4;17478:1;17475;17472:8;17469:34;;;17483:18;;:::i;:::-;-1:-1:-1;17520:9:1;;17410:125::o;17540:112::-;17572:1;17598;17588:35;;17603:18;;:::i;:::-;-1:-1:-1;17637:9:1;;17540:112::o;17657:127::-;17718:10;17713:3;17709:20;17706:1;17699:31;17749:4;17746:1;17739:15;17773:4;17770:1;17763:15

Swarm Source

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