ETH Price: $2,525.13 (+0.08%)

Token

Batty Banties (BB)
 

Overview

Max Total Supply

1,001 BB

Holders

524

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BB
0x43039f69d2c028666e0db563f156a610ef015f29
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:
BattyBanties

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0

//Developed by TROKKIN for the Batty Banties NFT Collection, Twitters:@Trokkin, NFT Collection:@BattyBanties


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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// 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 v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/BattyBanties.sol



//Developed by TROKKIN for the Batty Banties NFT Collection, Twitters:@Trokkin, NFT Collection:@BattyBanties

pragma solidity >=0.7.0 <0.9.0;


  contract BattyBanties is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string private baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;

  uint256 public preSaleCost = 0.02 ether;
  uint256 public cost = 0.04 ether;
  uint256 public maxSupply = 11101;
  uint256 public preSaleMaxSupply = 1000;
  uint256 public maxMintAmountPresale = 3;
  uint256 public maxMintAmount = 5;
  uint256 public nftPerAddressLimitPresale = 6;
  uint256 public nftPerAddressLimit = 15;

  bool public preSale = true;
  bool public publicSale = false;
  bool public paused = true;
  bool public revealed = false;
  bool public onlyWhitelisted = true;
  
  address[] public whitelistedAddresses;
  
  constructor(
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721("Batty Banties", "BB") {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

  //MODS
  modifier notPaused {
    require(!paused, "the contract is paused");
    _;
  }

  modifier saleStarted {
    require(publicSale, "Sale has not started yet");
    _;
  }

    modifier PresaleStarted {
    require(preSale, "Presale has not started yet");
    _;
  }

  modifier minimumMintAmount(uint256 _mintAmount) {
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    _;
  }

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

  ///@dev Mint during PublicSale 
  function mint(uint256 _mintAmount)
    public
    payable
    notPaused
    saleStarted
    minimumMintAmount(_mintAmount)
  {
    uint256 ownerTokenCount = balanceOf(msg.sender);
    require(ownerTokenCount + _mintAmount <= nftPerAddressLimit, "max NFT per Wallet exceeded");
    require(msg.value >= cost * _mintAmount, "insufficient funds");
    require(_mintAmount <= maxMintAmount, "max mint amount per transaction exceeded");
    require(supply.current() + _mintAmount <= maxSupply, "MaxSupply exceeded");

     _mintLoop(msg.sender, _mintAmount);
  }

     ///@dev Mint during PreSale
    function mintpresale(uint256 _mintAmount)
    public
    payable
    notPaused
    PresaleStarted 
    {
    uint256 ownerTokenCount = balanceOf(msg.sender);
    if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "user is not whitelisted");
            require(ownerTokenCount + _mintAmount <= nftPerAddressLimitPresale, "max NFT per WL wallet exceeded");
            require(_mintAmount <= maxMintAmountPresale, "max mint amount per transaction exceeded");
            require(supply.current() + _mintAmount <= preSaleMaxSupply, "max presale supply exceeded");
        } else {
        require(ownerTokenCount + _mintAmount <= nftPerAddressLimit, "max NFT per wallet exceeded");
        require(_mintAmount <= maxMintAmount, "max mint amount per transaction exceeded");
        require(supply.current() + _mintAmount <= preSaleMaxSupply, "max presale supply exceeded");
        }
        require(msg.value >= preSaleCost * _mintAmount, "insufficient funds");
    }
    
    _mintLoop(msg.sender, _mintAmount);
    }


///@dev Owner able to mint independent of contract state
   function mintForOwner(uint256 _mintAmount) public onlyOwner {
    require(_mintAmount > 0,"Need to mint 1 at least");
    require(_mintAmount <= maxMintAmount);
    require(supply.current() + _mintAmount <= maxSupply, "MaxSupply exceeded");

    _mintLoop(msg.sender, _mintAmount);
  }
  
  	function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }
 
  ///@dev Gift function controlled only by Owner
  function gift(uint256 _mintAmount, address _to) public onlyOwner {
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(supply.current() + _mintAmount <= maxSupply, "max NFT limit exceeded");

   _mintLoop(msg.sender, _mintAmount);
  }

  //ABLE TO BE SEEN BY PUBLIC
   function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

    if (!revealed) {
      return notRevealedUri;
    } else {
      string memory currentBaseURI = _baseURI();
      return
        bytes(currentBaseURI).length > 0
          ? string(
            abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)
          )
          : "";
    }
  }
  
    function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function getCurrentCost() public view returns (uint256) {
    if (preSale) {
      return preSaleCost;
    } else {
      return cost;
    }
  }

    function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  //ABLE TO BE SEEN ONLY BY OWNER
  function getBaseURI() public view onlyOwner returns (string memory) {
    return baseURI;
  }

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

  //OWNER SETTERS
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }

    function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }

  function reveal(bool _state) public onlyOwner {
    revealed = _state;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }

  function setNftPerAddressLimitPreSale(uint256 _limit) public onlyOwner {
    nftPerAddressLimitPresale = _limit;
  }

  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }

  function setPresaleCost(uint256 _newCost) public onlyOwner {
    preSaleCost = _newCost;
  }

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

  function setmaxMintAmountPreSale(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmountPresale = _newmaxMintAmount;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function setPresaleMaxSupply(uint256 _newPresaleMaxSupply) public onlyOwner {
    preSaleMaxSupply = _newPresaleMaxSupply;
  }

  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

    function togglepreSale(bool _state) external onlyOwner {
        preSale = _state;
    }

    function togglepublicSale(bool _state) external onlyOwner {
        publicSale = _state;
    }

    ///@dev Withdraw Function only for Owner
  function withdraw() public payable onlyOwner {

    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);

  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPresale","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":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintForOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintpresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPresaleMaxSupply","type":"uint256"}],"name":"setPresaleMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmountPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"togglepreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"togglepublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600991906200025d565b5066470de4df820000600b55668e1bc9bf040000600c55612b5d600d556103e8600e556003600f908155600560105560066011556012556013805464ffffffffff19166401000100011790553480156200008157600080fd5b506040516200351438038062003514833981016040819052620000a491620003ba565b604080518082018252600d81526c42617474792042616e7469657360981b602080830191825283518085019094526002845261212160f11b908401528151919291620000f3916000916200025d565b508051620001099060019060208401906200025d565b50505062000126620001206200014460201b60201c565b62000148565b62000131826200019a565b6200013c8162000202565b505062000477565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001e95760405162461bcd60e51b81526020600482018190526024820152600080516020620034f483398151915260448201526064015b60405180910390fd5b8051620001fe9060089060208401906200025d565b5050565b6006546001600160a01b031633146200024d5760405162461bcd60e51b81526020600482018190526024820152600080516020620034f48339815191526044820152606401620001e0565b8051620001fe90600a9060208401905b8280546200026b9062000424565b90600052602060002090601f0160209004810192826200028f5760008555620002da565b82601f10620002aa57805160ff1916838001178555620002da565b82800160010185558215620002da579182015b82811115620002da578251825591602001919060010190620002bd565b50620002e8929150620002ec565b5090565b5b80821115620002e85760008155600101620002ed565b600082601f8301126200031557600080fd5b81516001600160401b038082111562000332576200033262000461565b604051601f8301601f19908116603f011681019082821181831017156200035d576200035d62000461565b816040528381526020925086838588010111156200037a57600080fd5b600091505b838210156200039e57858201830151818301840152908201906200037f565b83821115620003b05760008385830101525b9695505050505050565b60008060408385031215620003ce57600080fd5b82516001600160401b0380821115620003e657600080fd5b620003f48683870162000303565b935060208501519150808211156200040b57600080fd5b506200041a8582860162000303565b9150509250929050565b600181811c908216806200043957607f821691505b602082108114156200045b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61306d80620004876000396000f3fe6080604052600436106103975760003560e01c8063714c5398116101dc578063b88d4fde11610102578063d5abeb01116100a0578063f2c4ce1e1161006f578063f2c4ce1e14610a31578063f2fde38b14610a51578063f3257cdd14610a71578063fea0e05814610a9157600080fd5b8063d5abeb0114610992578063da3ef23f146109a8578063e985e9c5146109c8578063edec5f2714610a1157600080fd5b8063c6682862116100dc578063c668286214610927578063c87b56dd1461093c578063cc9ff9c61461095c578063d0eb26b01461097257600080fd5b8063b88d4fde146108d1578063ba4e5c49146108f1578063ba7d2c761461091157600080fd5b80638da5cb5b1161017a5780639c70b512116101495780639c70b51214610866578063a0712d6814610888578063a18116f11461089b578063a22cb465146108b157600080fd5b80638da5cb5b146107f35780638fdcf94214610811578063940cd05b1461083157806395d89b411461085157600080fd5b80637f00c7a6116101b65780637f00c7a61461078b578063831e60de146107ab57806383a076be146107c05780638be3a09c146107e057600080fd5b8063714c53981461074b578063715018a6146107605780637effc0321461077557600080fd5b80633c952764116102c15780635a7adf7f1161025f578063669736c01161022e578063669736c0146106d65780636f8b44b0146106f65780636f9fb98a1461071657806370a082311461072b57600080fd5b80635a7adf7f1461065c5780635c975abb146106765780636352211e1461069657806363bc312a146106b657600080fd5b8063438b63001161029b578063438b6300146105ce57806344a0d68a146105fb578063518302271461061b57806355f804b31461063c57600080fd5b80633c952764146105865780633ccfd60b146105a657806342842e0e146105ae57600080fd5b80630a50716b1161033957806323b872dd1161030857806323b872dd146105115780632e09282e1461053157806333bc1c5c146105475780633af32abf1461056657600080fd5b80630a50716b146104a257806313faede6146104c257806318160ddd146104e6578063239c70ae146104fb57600080fd5b8063081812fc11610375578063081812fc14610415578063081c8c441461044d578063095ea7b3146104625780630a403f041461048257600080fd5b806301ffc9a71461039c57806302329a29146103d157806306fdde03146103f3575b600080fd5b3480156103a857600080fd5b506103bc6103b7366004612b6e565b610ab1565b60405190151581526020015b60405180910390f35b3480156103dd57600080fd5b506103f16103ec366004612b53565b610b03565b005b3480156103ff57600080fd5b50610408610b52565b6040516103c89190612d9e565b34801561042157600080fd5b50610435610430366004612bf1565b610be4565b6040516001600160a01b0390911681526020016103c8565b34801561045957600080fd5b50610408610c79565b34801561046e57600080fd5b506103f161047d366004612ab4565b610d07565b34801561048e57600080fd5b506103f161049d366004612bf1565b610e1d565b3480156104ae57600080fd5b506103f16104bd366004612bf1565b610e4c565b3480156104ce57600080fd5b506104d8600c5481565b6040519081526020016103c8565b3480156104f257600080fd5b506104d8610e7b565b34801561050757600080fd5b506104d860105481565b34801561051d57600080fd5b506103f161052c3660046129d2565b610e8b565b34801561053d57600080fd5b506104d860115481565b34801561055357600080fd5b506013546103bc90610100900460ff1681565b34801561057257600080fd5b506103bc610581366004612984565b610ebc565b34801561059257600080fd5b506103f16105a1366004612b53565b610f26565b6103f1610f70565b3480156105ba57600080fd5b506103f16105c93660046129d2565b610ff2565b3480156105da57600080fd5b506105ee6105e9366004612984565b61100d565b6040516103c89190612d5a565b34801561060757600080fd5b506103f1610616366004612bf1565b6110ee565b34801561062757600080fd5b506013546103bc906301000000900460ff1681565b34801561064857600080fd5b506103f1610657366004612ba8565b61111d565b34801561066857600080fd5b506013546103bc9060ff1681565b34801561068257600080fd5b506013546103bc9062010000900460ff1681565b3480156106a257600080fd5b506104356106b1366004612bf1565b61115e565b3480156106c257600080fd5b506103f16106d1366004612bf1565b6111d5565b3480156106e257600080fd5b506103f16106f1366004612bf1565b6112c2565b34801561070257600080fd5b506103f1610711366004612bf1565b6112f1565b34801561072257600080fd5b506104d8611320565b34801561073757600080fd5b506104d8610746366004612984565b611352565b34801561075757600080fd5b506104086113d9565b34801561076c57600080fd5b506103f1611413565b34801561078157600080fd5b506104d8600f5481565b34801561079757600080fd5b506103f16107a6366004612bf1565b611449565b3480156107b757600080fd5b506104d8611478565b3480156107cc57600080fd5b506103f16107db366004612c0a565b611494565b6103f16107ee366004612bf1565b611576565b3480156107ff57600080fd5b506006546001600160a01b0316610435565b34801561081d57600080fd5b506103f161082c366004612bf1565b6118d9565b34801561083d57600080fd5b506103f161084c366004612b53565b611908565b34801561085d57600080fd5b50610408611950565b34801561087257600080fd5b506013546103bc90640100000000900460ff1681565b6103f1610896366004612bf1565b61195f565b3480156108a757600080fd5b506104d8600e5481565b3480156108bd57600080fd5b506103f16108cc366004612a8a565b611b9a565b3480156108dd57600080fd5b506103f16108ec366004612a0e565b611ba5565b3480156108fd57600080fd5b5061043561090c366004612bf1565b611bdd565b34801561091d57600080fd5b506104d860125481565b34801561093357600080fd5b50610408611c07565b34801561094857600080fd5b50610408610957366004612bf1565b611c14565b34801561096857600080fd5b506104d8600b5481565b34801561097e57600080fd5b506103f161098d366004612bf1565b611d9a565b34801561099e57600080fd5b506104d8600d5481565b3480156109b457600080fd5b506103f16109c3366004612ba8565b611dc9565b3480156109d457600080fd5b506103bc6109e336600461299f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a1d57600080fd5b506103f1610a2c366004612ade565b611e06565b348015610a3d57600080fd5b506103f1610a4c366004612ba8565b611e48565b348015610a5d57600080fd5b506103f1610a6c366004612984565b611e85565b348015610a7d57600080fd5b506103f1610a8c366004612b53565b611f1d565b348015610a9d57600080fd5b506103f1610aac366004612b53565b611f61565b60006001600160e01b031982166380ac58cd60e01b1480610ae257506001600160e01b03198216635b5e139f60e01b145b80610afd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b03163314610b365760405162461bcd60e51b8152600401610b2d90612e4b565b60405180910390fd5b60138054911515620100000262ff000019909216919091179055565b606060008054610b6190612f5f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8d90612f5f565b8015610bda5780601f10610baf57610100808354040283529160200191610bda565b820191906000526020600020905b815481529060010190602001808311610bbd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c5d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b2d565b506000908152600460205260409020546001600160a01b031690565b600a8054610c8690612f5f565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb290612f5f565b8015610cff5780601f10610cd457610100808354040283529160200191610cff565b820191906000526020600020905b815481529060010190602001808311610ce257829003601f168201915b505050505081565b6000610d128261115e565b9050806001600160a01b0316836001600160a01b03161415610d805760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b2d565b336001600160a01b0382161480610d9c5750610d9c81336109e3565b610e0e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b2d565b610e188383611f9e565b505050565b6006546001600160a01b03163314610e475760405162461bcd60e51b8152600401610b2d90612e4b565b600e55565b6006546001600160a01b03163314610e765760405162461bcd60e51b8152600401610b2d90612e4b565b601155565b6000610e8660075490565b905090565b610e95338261200c565b610eb15760405162461bcd60e51b8152600401610b2d90612e80565b610e18838383612103565b6000805b601454811015610f1d57826001600160a01b031660148281548110610ee757610ee7612ff5565b6000918252602090912001546001600160a01b03161415610f0b5750600192915050565b80610f1581612f9a565b915050610ec0565b50600092915050565b6006546001600160a01b03163314610f505760405162461bcd60e51b8152600401610b2d90612e4b565b601380549115156401000000000264ff0000000019909216919091179055565b6006546001600160a01b03163314610f9a5760405162461bcd60e51b8152600401610b2d90612e4b565b604051600090339047908381818185875af1925050503d8060008114610fdc576040519150601f19603f3d011682016040523d82523d6000602084013e610fe1565b606091505b5050905080610fef57600080fd5b50565b610e1883838360405180602001604052806000815250611ba5565b6060600061101a83611352565b905060008167ffffffffffffffff8111156110375761103761300b565b604051908082528060200260200182016040528015611060578160200160208202803683370190505b509050600160005b83811080156110795750600d548211155b156110e45760006110898361115e565b9050866001600160a01b0316816001600160a01b031614156110d157828483815181106110b8576110b8612ff5565b6020908102919091010152816110cd81612f9a565b9250505b826110db81612f9a565b93505050611068565b5090949350505050565b6006546001600160a01b031633146111185760405162461bcd60e51b8152600401610b2d90612e4b565b600c55565b6006546001600160a01b031633146111475760405162461bcd60e51b8152600401610b2d90612e4b565b805161115a9060089060208401906127dd565b5050565b6000818152600260205260408120546001600160a01b031680610afd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b2d565b6006546001600160a01b031633146111ff5760405162461bcd60e51b8152600401610b2d90612e4b565b6000811161124f5760405162461bcd60e51b815260206004820152601760248201527f4e65656420746f206d696e742031206174206c656173740000000000000000006044820152606401610b2d565b60105481111561125e57600080fd5b600d548161126b60075490565b6112759190612ed1565b11156112b85760405162461bcd60e51b815260206004820152601260248201527113585e14dd5c1c1b1e48195e18d95959195960721b6044820152606401610b2d565b610fef33826122a3565b6006546001600160a01b031633146112ec5760405162461bcd60e51b8152600401610b2d90612e4b565b600f55565b6006546001600160a01b0316331461131b5760405162461bcd60e51b8152600401610b2d90612e4b565b600d55565b6006546000906001600160a01b0316331461134d5760405162461bcd60e51b8152600401610b2d90612e4b565b504790565b60006001600160a01b0382166113bd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b2d565b506001600160a01b031660009081526003602052604090205490565b6006546060906001600160a01b031633146114065760405162461bcd60e51b8152600401610b2d90612e4b565b60088054610b6190612f5f565b6006546001600160a01b0316331461143d5760405162461bcd60e51b8152600401610b2d90612e4b565b61144760006122e0565b565b6006546001600160a01b031633146114735760405162461bcd60e51b8152600401610b2d90612e4b565b601055565b60135460009060ff161561148d5750600b5490565b50600c5490565b6006546001600160a01b031633146114be5760405162461bcd60e51b8152600401610b2d90612e4b565b6000821161150e5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b2d565b600d548261151b60075490565b6115259190612ed1565b111561156c5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b2d565b61115a33836122a3565b60135462010000900460ff16156115c85760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610b2d565b60135460ff1661161a5760405162461bcd60e51b815260206004820152601b60248201527f50726573616c6520686173206e6f7420737461727465642079657400000000006044820152606401610b2d565b600061162533611352565b90506116396006546001600160a01b031690565b6001600160a01b0316336001600160a01b03161461156c57601354640100000000900460ff161515600114156117a55761167233610ebc565b6116be5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610b2d565b6011546116cb8383612ed1565b11156117195760405162461bcd60e51b815260206004820152601e60248201527f6d6178204e46542070657220574c2077616c6c657420657863656564656400006044820152606401610b2d565b600f5482111561173b5760405162461bcd60e51b8152600401610b2d90612e03565b600e548261174860075490565b6117529190612ed1565b11156117a05760405162461bcd60e51b815260206004820152601b60248201527f6d61782070726573616c6520737570706c7920657863656564656400000000006044820152606401610b2d565b611887565b6012546117b28383612ed1565b11156118005760405162461bcd60e51b815260206004820152601b60248201527f6d6178204e4654207065722077616c6c657420657863656564656400000000006044820152606401610b2d565b6010548211156118225760405162461bcd60e51b8152600401610b2d90612e03565b600e548261182f60075490565b6118399190612ed1565b11156118875760405162461bcd60e51b815260206004820152601b60248201527f6d61782070726573616c6520737570706c7920657863656564656400000000006044820152606401610b2d565b81600b546118959190612efd565b34101561156c5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b2d565b6006546001600160a01b031633146119035760405162461bcd60e51b8152600401610b2d90612e4b565b600b55565b6006546001600160a01b031633146119325760405162461bcd60e51b8152600401610b2d90612e4b565b6013805491151563010000000263ff00000019909216919091179055565b606060018054610b6190612f5f565b60135462010000900460ff16156119b15760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610b2d565b601354610100900460ff16611a085760405162461bcd60e51b815260206004820152601860248201527f53616c6520686173206e6f7420737461727465642079657400000000000000006044820152606401610b2d565b8060008111611a595760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b2d565b6000611a6433611352565b601254909150611a748483612ed1565b1115611ac25760405162461bcd60e51b815260206004820152601b60248201527f6d6178204e4654207065722057616c6c657420657863656564656400000000006044820152606401610b2d565b82600c54611ad09190612efd565b341015611b145760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b2d565b601054831115611b365760405162461bcd60e51b8152600401610b2d90612e03565b600d5483611b4360075490565b611b4d9190612ed1565b1115611b905760405162461bcd60e51b815260206004820152601260248201527113585e14dd5c1c1b1e48195e18d95959195960721b6044820152606401610b2d565b610e1833846122a3565b61115a338383612332565b611baf338361200c565b611bcb5760405162461bcd60e51b8152600401610b2d90612e80565b611bd784848484612401565b50505050565b60148181548110611bed57600080fd5b6000918252602090912001546001600160a01b0316905081565b60098054610c8690612f5f565b6000818152600260205260409020546060906001600160a01b0316611c935760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b2d565b6013546301000000900460ff16611d3657600a8054611cb190612f5f565b80601f0160208091040260200160405190810160405280929190818152602001828054611cdd90612f5f565b8015611d2a5780601f10611cff57610100808354040283529160200191611d2a565b820191906000526020600020905b815481529060010190602001808311611d0d57829003601f168201915b50505050509050919050565b6000611d40612434565b90506000815111611d605760405180602001604052806000815250611d8e565b80611d6a84612443565b6009604051602001611d7e93929190612c59565b6040516020818303038152906040525b9392505050565b919050565b6006546001600160a01b03163314611dc45760405162461bcd60e51b8152600401610b2d90612e4b565b601255565b6006546001600160a01b03163314611df35760405162461bcd60e51b8152600401610b2d90612e4b565b805161115a9060099060208401906127dd565b6006546001600160a01b03163314611e305760405162461bcd60e51b8152600401610b2d90612e4b565b611e3c60146000612861565b610e186014838361287f565b6006546001600160a01b03163314611e725760405162461bcd60e51b8152600401610b2d90612e4b565b805161115a90600a9060208401906127dd565b6006546001600160a01b03163314611eaf5760405162461bcd60e51b8152600401610b2d90612e4b565b6001600160a01b038116611f145760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b2d565b610fef816122e0565b6006546001600160a01b03163314611f475760405162461bcd60e51b8152600401610b2d90612e4b565b601380549115156101000261ff0019909216919091179055565b6006546001600160a01b03163314611f8b5760405162461bcd60e51b8152600401610b2d90612e4b565b6013805460ff1916911515919091179055565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611fd38261115e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166120855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b2d565b60006120908361115e565b9050806001600160a01b0316846001600160a01b031614806120cb5750836001600160a01b03166120c084610be4565b6001600160a01b0316145b806120fb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166121168261115e565b6001600160a01b03161461217e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b2d565b6001600160a01b0382166121e05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b2d565b6121eb600082611f9e565b6001600160a01b0383166000908152600360205260408120805460019290612214908490612f1c565b90915550506001600160a01b0382166000908152600360205260408120805460019290612242908490612ed1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b81811015610e18576122bc600780546001019055565b6122ce836122c960075490565b612541565b806122d881612f9a565b9150506122a6565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156123945760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b2d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61240c848484612103565b6124188484848461255b565b611bd75760405162461bcd60e51b8152600401610b2d90612db1565b606060088054610b6190612f5f565b6060816124675750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612491578061247b81612f9a565b915061248a9050600a83612ee9565b915061246b565b60008167ffffffffffffffff8111156124ac576124ac61300b565b6040519080825280601f01601f1916602001820160405280156124d6576020820181803683370190505b5090505b84156120fb576124eb600183612f1c565b91506124f8600a86612fb5565b612503906030612ed1565b60f81b81838151811061251857612518612ff5565b60200101906001600160f81b031916908160001a90535061253a600a86612ee9565b94506124da565b61115a828260405180602001604052806000815250612668565b60006001600160a01b0384163b1561265d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061259f903390899088908890600401612d1d565b602060405180830381600087803b1580156125b957600080fd5b505af19250505080156125e9575060408051601f3d908101601f191682019092526125e691810190612b8b565b60015b612643573d808015612617576040519150601f19603f3d011682016040523d82523d6000602084013e61261c565b606091505b50805161263b5760405162461bcd60e51b8152600401610b2d90612db1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120fb565b506001949350505050565b612672838361269b565b61267f600084848461255b565b610e185760405162461bcd60e51b8152600401610b2d90612db1565b6001600160a01b0382166126f15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b2d565b6000818152600260205260409020546001600160a01b0316156127565760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b2d565b6001600160a01b038216600090815260036020526040812080546001929061277f908490612ed1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546127e990612f5f565b90600052602060002090601f01602090048101928261280b5760008555612851565b82601f1061282457805160ff1916838001178555612851565b82800160010185558215612851579182015b82811115612851578251825591602001919060010190612836565b5061285d9291506128d2565b5090565b5080546000825590600052602060002090810190610fef91906128d2565b828054828255906000526020600020908101928215612851579160200282015b828111156128515781546001600160a01b0319166001600160a01b0384351617825560209092019160019091019061289f565b5b8082111561285d57600081556001016128d3565b600067ffffffffffffffff808411156129025761290261300b565b604051601f8501601f19908116603f0116810190828211818310171561292a5761292a61300b565b8160405280935085815286868601111561294357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d9557600080fd5b80358015158114611d9557600080fd5b60006020828403121561299657600080fd5b611d8e8261295d565b600080604083850312156129b257600080fd5b6129bb8361295d565b91506129c96020840161295d565b90509250929050565b6000806000606084860312156129e757600080fd5b6129f08461295d565b92506129fe6020850161295d565b9150604084013590509250925092565b60008060008060808587031215612a2457600080fd5b612a2d8561295d565b9350612a3b6020860161295d565b925060408501359150606085013567ffffffffffffffff811115612a5e57600080fd5b8501601f81018713612a6f57600080fd5b612a7e878235602084016128e7565b91505092959194509250565b60008060408385031215612a9d57600080fd5b612aa68361295d565b91506129c960208401612974565b60008060408385031215612ac757600080fd5b612ad08361295d565b946020939093013593505050565b60008060208385031215612af157600080fd5b823567ffffffffffffffff80821115612b0957600080fd5b818501915085601f830112612b1d57600080fd5b813581811115612b2c57600080fd5b8660208260051b8501011115612b4157600080fd5b60209290920196919550909350505050565b600060208284031215612b6557600080fd5b611d8e82612974565b600060208284031215612b8057600080fd5b8135611d8e81613021565b600060208284031215612b9d57600080fd5b8151611d8e81613021565b600060208284031215612bba57600080fd5b813567ffffffffffffffff811115612bd157600080fd5b8201601f81018413612be257600080fd5b6120fb848235602084016128e7565b600060208284031215612c0357600080fd5b5035919050565b60008060408385031215612c1d57600080fd5b823591506129c96020840161295d565b60008151808452612c45816020860160208601612f33565b601f01601f19169290920160200192915050565b600084516020612c6c8285838a01612f33565b855191840191612c7f8184848a01612f33565b8554920191600090600181811c9080831680612c9c57607f831692505b858310811415612cba57634e487b7160e01b85526022600452602485fd5b808015612cce5760018114612cdf57612d0c565b60ff19851688528388019550612d0c565b60008b81526020902060005b85811015612d045781548a820152908401908801612ceb565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d5090830184612c2d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612d9257835183529284019291840191600101612d76565b50909695505050505050565b602081526000611d8e6020830184612c2d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526028908201527f6d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e20604082015267195e18d95959195960c21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612ee457612ee4612fc9565b500190565b600082612ef857612ef8612fdf565b500490565b6000816000190483118215151615612f1757612f17612fc9565b500290565b600082821015612f2e57612f2e612fc9565b500390565b60005b83811015612f4e578181015183820152602001612f36565b83811115611bd75750506000910152565b600181811c90821680612f7357607f821691505b60208210811415612f9457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fae57612fae612fc9565b5060010190565b600082612fc457612fc4612fdf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fef57600080fdfea264697066735822122068c3249f9792f3b8dfe66843713bdd39c9171bf0a6893885eab1f558b486b07c64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001f697066733a2f2f77696c6c626561646465646265666f726572657665616c2f000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d536d31795454357142356d524b725237636e32416372326858624b68766947783557716339315a6e675a4d742f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103975760003560e01c8063714c5398116101dc578063b88d4fde11610102578063d5abeb01116100a0578063f2c4ce1e1161006f578063f2c4ce1e14610a31578063f2fde38b14610a51578063f3257cdd14610a71578063fea0e05814610a9157600080fd5b8063d5abeb0114610992578063da3ef23f146109a8578063e985e9c5146109c8578063edec5f2714610a1157600080fd5b8063c6682862116100dc578063c668286214610927578063c87b56dd1461093c578063cc9ff9c61461095c578063d0eb26b01461097257600080fd5b8063b88d4fde146108d1578063ba4e5c49146108f1578063ba7d2c761461091157600080fd5b80638da5cb5b1161017a5780639c70b512116101495780639c70b51214610866578063a0712d6814610888578063a18116f11461089b578063a22cb465146108b157600080fd5b80638da5cb5b146107f35780638fdcf94214610811578063940cd05b1461083157806395d89b411461085157600080fd5b80637f00c7a6116101b65780637f00c7a61461078b578063831e60de146107ab57806383a076be146107c05780638be3a09c146107e057600080fd5b8063714c53981461074b578063715018a6146107605780637effc0321461077557600080fd5b80633c952764116102c15780635a7adf7f1161025f578063669736c01161022e578063669736c0146106d65780636f8b44b0146106f65780636f9fb98a1461071657806370a082311461072b57600080fd5b80635a7adf7f1461065c5780635c975abb146106765780636352211e1461069657806363bc312a146106b657600080fd5b8063438b63001161029b578063438b6300146105ce57806344a0d68a146105fb578063518302271461061b57806355f804b31461063c57600080fd5b80633c952764146105865780633ccfd60b146105a657806342842e0e146105ae57600080fd5b80630a50716b1161033957806323b872dd1161030857806323b872dd146105115780632e09282e1461053157806333bc1c5c146105475780633af32abf1461056657600080fd5b80630a50716b146104a257806313faede6146104c257806318160ddd146104e6578063239c70ae146104fb57600080fd5b8063081812fc11610375578063081812fc14610415578063081c8c441461044d578063095ea7b3146104625780630a403f041461048257600080fd5b806301ffc9a71461039c57806302329a29146103d157806306fdde03146103f3575b600080fd5b3480156103a857600080fd5b506103bc6103b7366004612b6e565b610ab1565b60405190151581526020015b60405180910390f35b3480156103dd57600080fd5b506103f16103ec366004612b53565b610b03565b005b3480156103ff57600080fd5b50610408610b52565b6040516103c89190612d9e565b34801561042157600080fd5b50610435610430366004612bf1565b610be4565b6040516001600160a01b0390911681526020016103c8565b34801561045957600080fd5b50610408610c79565b34801561046e57600080fd5b506103f161047d366004612ab4565b610d07565b34801561048e57600080fd5b506103f161049d366004612bf1565b610e1d565b3480156104ae57600080fd5b506103f16104bd366004612bf1565b610e4c565b3480156104ce57600080fd5b506104d8600c5481565b6040519081526020016103c8565b3480156104f257600080fd5b506104d8610e7b565b34801561050757600080fd5b506104d860105481565b34801561051d57600080fd5b506103f161052c3660046129d2565b610e8b565b34801561053d57600080fd5b506104d860115481565b34801561055357600080fd5b506013546103bc90610100900460ff1681565b34801561057257600080fd5b506103bc610581366004612984565b610ebc565b34801561059257600080fd5b506103f16105a1366004612b53565b610f26565b6103f1610f70565b3480156105ba57600080fd5b506103f16105c93660046129d2565b610ff2565b3480156105da57600080fd5b506105ee6105e9366004612984565b61100d565b6040516103c89190612d5a565b34801561060757600080fd5b506103f1610616366004612bf1565b6110ee565b34801561062757600080fd5b506013546103bc906301000000900460ff1681565b34801561064857600080fd5b506103f1610657366004612ba8565b61111d565b34801561066857600080fd5b506013546103bc9060ff1681565b34801561068257600080fd5b506013546103bc9062010000900460ff1681565b3480156106a257600080fd5b506104356106b1366004612bf1565b61115e565b3480156106c257600080fd5b506103f16106d1366004612bf1565b6111d5565b3480156106e257600080fd5b506103f16106f1366004612bf1565b6112c2565b34801561070257600080fd5b506103f1610711366004612bf1565b6112f1565b34801561072257600080fd5b506104d8611320565b34801561073757600080fd5b506104d8610746366004612984565b611352565b34801561075757600080fd5b506104086113d9565b34801561076c57600080fd5b506103f1611413565b34801561078157600080fd5b506104d8600f5481565b34801561079757600080fd5b506103f16107a6366004612bf1565b611449565b3480156107b757600080fd5b506104d8611478565b3480156107cc57600080fd5b506103f16107db366004612c0a565b611494565b6103f16107ee366004612bf1565b611576565b3480156107ff57600080fd5b506006546001600160a01b0316610435565b34801561081d57600080fd5b506103f161082c366004612bf1565b6118d9565b34801561083d57600080fd5b506103f161084c366004612b53565b611908565b34801561085d57600080fd5b50610408611950565b34801561087257600080fd5b506013546103bc90640100000000900460ff1681565b6103f1610896366004612bf1565b61195f565b3480156108a757600080fd5b506104d8600e5481565b3480156108bd57600080fd5b506103f16108cc366004612a8a565b611b9a565b3480156108dd57600080fd5b506103f16108ec366004612a0e565b611ba5565b3480156108fd57600080fd5b5061043561090c366004612bf1565b611bdd565b34801561091d57600080fd5b506104d860125481565b34801561093357600080fd5b50610408611c07565b34801561094857600080fd5b50610408610957366004612bf1565b611c14565b34801561096857600080fd5b506104d8600b5481565b34801561097e57600080fd5b506103f161098d366004612bf1565b611d9a565b34801561099e57600080fd5b506104d8600d5481565b3480156109b457600080fd5b506103f16109c3366004612ba8565b611dc9565b3480156109d457600080fd5b506103bc6109e336600461299f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a1d57600080fd5b506103f1610a2c366004612ade565b611e06565b348015610a3d57600080fd5b506103f1610a4c366004612ba8565b611e48565b348015610a5d57600080fd5b506103f1610a6c366004612984565b611e85565b348015610a7d57600080fd5b506103f1610a8c366004612b53565b611f1d565b348015610a9d57600080fd5b506103f1610aac366004612b53565b611f61565b60006001600160e01b031982166380ac58cd60e01b1480610ae257506001600160e01b03198216635b5e139f60e01b145b80610afd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b03163314610b365760405162461bcd60e51b8152600401610b2d90612e4b565b60405180910390fd5b60138054911515620100000262ff000019909216919091179055565b606060008054610b6190612f5f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8d90612f5f565b8015610bda5780601f10610baf57610100808354040283529160200191610bda565b820191906000526020600020905b815481529060010190602001808311610bbd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c5d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b2d565b506000908152600460205260409020546001600160a01b031690565b600a8054610c8690612f5f565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb290612f5f565b8015610cff5780601f10610cd457610100808354040283529160200191610cff565b820191906000526020600020905b815481529060010190602001808311610ce257829003601f168201915b505050505081565b6000610d128261115e565b9050806001600160a01b0316836001600160a01b03161415610d805760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b2d565b336001600160a01b0382161480610d9c5750610d9c81336109e3565b610e0e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b2d565b610e188383611f9e565b505050565b6006546001600160a01b03163314610e475760405162461bcd60e51b8152600401610b2d90612e4b565b600e55565b6006546001600160a01b03163314610e765760405162461bcd60e51b8152600401610b2d90612e4b565b601155565b6000610e8660075490565b905090565b610e95338261200c565b610eb15760405162461bcd60e51b8152600401610b2d90612e80565b610e18838383612103565b6000805b601454811015610f1d57826001600160a01b031660148281548110610ee757610ee7612ff5565b6000918252602090912001546001600160a01b03161415610f0b5750600192915050565b80610f1581612f9a565b915050610ec0565b50600092915050565b6006546001600160a01b03163314610f505760405162461bcd60e51b8152600401610b2d90612e4b565b601380549115156401000000000264ff0000000019909216919091179055565b6006546001600160a01b03163314610f9a5760405162461bcd60e51b8152600401610b2d90612e4b565b604051600090339047908381818185875af1925050503d8060008114610fdc576040519150601f19603f3d011682016040523d82523d6000602084013e610fe1565b606091505b5050905080610fef57600080fd5b50565b610e1883838360405180602001604052806000815250611ba5565b6060600061101a83611352565b905060008167ffffffffffffffff8111156110375761103761300b565b604051908082528060200260200182016040528015611060578160200160208202803683370190505b509050600160005b83811080156110795750600d548211155b156110e45760006110898361115e565b9050866001600160a01b0316816001600160a01b031614156110d157828483815181106110b8576110b8612ff5565b6020908102919091010152816110cd81612f9a565b9250505b826110db81612f9a565b93505050611068565b5090949350505050565b6006546001600160a01b031633146111185760405162461bcd60e51b8152600401610b2d90612e4b565b600c55565b6006546001600160a01b031633146111475760405162461bcd60e51b8152600401610b2d90612e4b565b805161115a9060089060208401906127dd565b5050565b6000818152600260205260408120546001600160a01b031680610afd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b2d565b6006546001600160a01b031633146111ff5760405162461bcd60e51b8152600401610b2d90612e4b565b6000811161124f5760405162461bcd60e51b815260206004820152601760248201527f4e65656420746f206d696e742031206174206c656173740000000000000000006044820152606401610b2d565b60105481111561125e57600080fd5b600d548161126b60075490565b6112759190612ed1565b11156112b85760405162461bcd60e51b815260206004820152601260248201527113585e14dd5c1c1b1e48195e18d95959195960721b6044820152606401610b2d565b610fef33826122a3565b6006546001600160a01b031633146112ec5760405162461bcd60e51b8152600401610b2d90612e4b565b600f55565b6006546001600160a01b0316331461131b5760405162461bcd60e51b8152600401610b2d90612e4b565b600d55565b6006546000906001600160a01b0316331461134d5760405162461bcd60e51b8152600401610b2d90612e4b565b504790565b60006001600160a01b0382166113bd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b2d565b506001600160a01b031660009081526003602052604090205490565b6006546060906001600160a01b031633146114065760405162461bcd60e51b8152600401610b2d90612e4b565b60088054610b6190612f5f565b6006546001600160a01b0316331461143d5760405162461bcd60e51b8152600401610b2d90612e4b565b61144760006122e0565b565b6006546001600160a01b031633146114735760405162461bcd60e51b8152600401610b2d90612e4b565b601055565b60135460009060ff161561148d5750600b5490565b50600c5490565b6006546001600160a01b031633146114be5760405162461bcd60e51b8152600401610b2d90612e4b565b6000821161150e5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b2d565b600d548261151b60075490565b6115259190612ed1565b111561156c5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b2d565b61115a33836122a3565b60135462010000900460ff16156115c85760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610b2d565b60135460ff1661161a5760405162461bcd60e51b815260206004820152601b60248201527f50726573616c6520686173206e6f7420737461727465642079657400000000006044820152606401610b2d565b600061162533611352565b90506116396006546001600160a01b031690565b6001600160a01b0316336001600160a01b03161461156c57601354640100000000900460ff161515600114156117a55761167233610ebc565b6116be5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610b2d565b6011546116cb8383612ed1565b11156117195760405162461bcd60e51b815260206004820152601e60248201527f6d6178204e46542070657220574c2077616c6c657420657863656564656400006044820152606401610b2d565b600f5482111561173b5760405162461bcd60e51b8152600401610b2d90612e03565b600e548261174860075490565b6117529190612ed1565b11156117a05760405162461bcd60e51b815260206004820152601b60248201527f6d61782070726573616c6520737570706c7920657863656564656400000000006044820152606401610b2d565b611887565b6012546117b28383612ed1565b11156118005760405162461bcd60e51b815260206004820152601b60248201527f6d6178204e4654207065722077616c6c657420657863656564656400000000006044820152606401610b2d565b6010548211156118225760405162461bcd60e51b8152600401610b2d90612e03565b600e548261182f60075490565b6118399190612ed1565b11156118875760405162461bcd60e51b815260206004820152601b60248201527f6d61782070726573616c6520737570706c7920657863656564656400000000006044820152606401610b2d565b81600b546118959190612efd565b34101561156c5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b2d565b6006546001600160a01b031633146119035760405162461bcd60e51b8152600401610b2d90612e4b565b600b55565b6006546001600160a01b031633146119325760405162461bcd60e51b8152600401610b2d90612e4b565b6013805491151563010000000263ff00000019909216919091179055565b606060018054610b6190612f5f565b60135462010000900460ff16156119b15760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610b2d565b601354610100900460ff16611a085760405162461bcd60e51b815260206004820152601860248201527f53616c6520686173206e6f7420737461727465642079657400000000000000006044820152606401610b2d565b8060008111611a595760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b2d565b6000611a6433611352565b601254909150611a748483612ed1565b1115611ac25760405162461bcd60e51b815260206004820152601b60248201527f6d6178204e4654207065722057616c6c657420657863656564656400000000006044820152606401610b2d565b82600c54611ad09190612efd565b341015611b145760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b2d565b601054831115611b365760405162461bcd60e51b8152600401610b2d90612e03565b600d5483611b4360075490565b611b4d9190612ed1565b1115611b905760405162461bcd60e51b815260206004820152601260248201527113585e14dd5c1c1b1e48195e18d95959195960721b6044820152606401610b2d565b610e1833846122a3565b61115a338383612332565b611baf338361200c565b611bcb5760405162461bcd60e51b8152600401610b2d90612e80565b611bd784848484612401565b50505050565b60148181548110611bed57600080fd5b6000918252602090912001546001600160a01b0316905081565b60098054610c8690612f5f565b6000818152600260205260409020546060906001600160a01b0316611c935760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b2d565b6013546301000000900460ff16611d3657600a8054611cb190612f5f565b80601f0160208091040260200160405190810160405280929190818152602001828054611cdd90612f5f565b8015611d2a5780601f10611cff57610100808354040283529160200191611d2a565b820191906000526020600020905b815481529060010190602001808311611d0d57829003601f168201915b50505050509050919050565b6000611d40612434565b90506000815111611d605760405180602001604052806000815250611d8e565b80611d6a84612443565b6009604051602001611d7e93929190612c59565b6040516020818303038152906040525b9392505050565b919050565b6006546001600160a01b03163314611dc45760405162461bcd60e51b8152600401610b2d90612e4b565b601255565b6006546001600160a01b03163314611df35760405162461bcd60e51b8152600401610b2d90612e4b565b805161115a9060099060208401906127dd565b6006546001600160a01b03163314611e305760405162461bcd60e51b8152600401610b2d90612e4b565b611e3c60146000612861565b610e186014838361287f565b6006546001600160a01b03163314611e725760405162461bcd60e51b8152600401610b2d90612e4b565b805161115a90600a9060208401906127dd565b6006546001600160a01b03163314611eaf5760405162461bcd60e51b8152600401610b2d90612e4b565b6001600160a01b038116611f145760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b2d565b610fef816122e0565b6006546001600160a01b03163314611f475760405162461bcd60e51b8152600401610b2d90612e4b565b601380549115156101000261ff0019909216919091179055565b6006546001600160a01b03163314611f8b5760405162461bcd60e51b8152600401610b2d90612e4b565b6013805460ff1916911515919091179055565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611fd38261115e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166120855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b2d565b60006120908361115e565b9050806001600160a01b0316846001600160a01b031614806120cb5750836001600160a01b03166120c084610be4565b6001600160a01b0316145b806120fb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166121168261115e565b6001600160a01b03161461217e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b2d565b6001600160a01b0382166121e05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b2d565b6121eb600082611f9e565b6001600160a01b0383166000908152600360205260408120805460019290612214908490612f1c565b90915550506001600160a01b0382166000908152600360205260408120805460019290612242908490612ed1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b81811015610e18576122bc600780546001019055565b6122ce836122c960075490565b612541565b806122d881612f9a565b9150506122a6565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156123945760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b2d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61240c848484612103565b6124188484848461255b565b611bd75760405162461bcd60e51b8152600401610b2d90612db1565b606060088054610b6190612f5f565b6060816124675750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612491578061247b81612f9a565b915061248a9050600a83612ee9565b915061246b565b60008167ffffffffffffffff8111156124ac576124ac61300b565b6040519080825280601f01601f1916602001820160405280156124d6576020820181803683370190505b5090505b84156120fb576124eb600183612f1c565b91506124f8600a86612fb5565b612503906030612ed1565b60f81b81838151811061251857612518612ff5565b60200101906001600160f81b031916908160001a90535061253a600a86612ee9565b94506124da565b61115a828260405180602001604052806000815250612668565b60006001600160a01b0384163b1561265d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061259f903390899088908890600401612d1d565b602060405180830381600087803b1580156125b957600080fd5b505af19250505080156125e9575060408051601f3d908101601f191682019092526125e691810190612b8b565b60015b612643573d808015612617576040519150601f19603f3d011682016040523d82523d6000602084013e61261c565b606091505b50805161263b5760405162461bcd60e51b8152600401610b2d90612db1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120fb565b506001949350505050565b612672838361269b565b61267f600084848461255b565b610e185760405162461bcd60e51b8152600401610b2d90612db1565b6001600160a01b0382166126f15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b2d565b6000818152600260205260409020546001600160a01b0316156127565760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b2d565b6001600160a01b038216600090815260036020526040812080546001929061277f908490612ed1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546127e990612f5f565b90600052602060002090601f01602090048101928261280b5760008555612851565b82601f1061282457805160ff1916838001178555612851565b82800160010185558215612851579182015b82811115612851578251825591602001919060010190612836565b5061285d9291506128d2565b5090565b5080546000825590600052602060002090810190610fef91906128d2565b828054828255906000526020600020908101928215612851579160200282015b828111156128515781546001600160a01b0319166001600160a01b0384351617825560209092019160019091019061289f565b5b8082111561285d57600081556001016128d3565b600067ffffffffffffffff808411156129025761290261300b565b604051601f8501601f19908116603f0116810190828211818310171561292a5761292a61300b565b8160405280935085815286868601111561294357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d9557600080fd5b80358015158114611d9557600080fd5b60006020828403121561299657600080fd5b611d8e8261295d565b600080604083850312156129b257600080fd5b6129bb8361295d565b91506129c96020840161295d565b90509250929050565b6000806000606084860312156129e757600080fd5b6129f08461295d565b92506129fe6020850161295d565b9150604084013590509250925092565b60008060008060808587031215612a2457600080fd5b612a2d8561295d565b9350612a3b6020860161295d565b925060408501359150606085013567ffffffffffffffff811115612a5e57600080fd5b8501601f81018713612a6f57600080fd5b612a7e878235602084016128e7565b91505092959194509250565b60008060408385031215612a9d57600080fd5b612aa68361295d565b91506129c960208401612974565b60008060408385031215612ac757600080fd5b612ad08361295d565b946020939093013593505050565b60008060208385031215612af157600080fd5b823567ffffffffffffffff80821115612b0957600080fd5b818501915085601f830112612b1d57600080fd5b813581811115612b2c57600080fd5b8660208260051b8501011115612b4157600080fd5b60209290920196919550909350505050565b600060208284031215612b6557600080fd5b611d8e82612974565b600060208284031215612b8057600080fd5b8135611d8e81613021565b600060208284031215612b9d57600080fd5b8151611d8e81613021565b600060208284031215612bba57600080fd5b813567ffffffffffffffff811115612bd157600080fd5b8201601f81018413612be257600080fd5b6120fb848235602084016128e7565b600060208284031215612c0357600080fd5b5035919050565b60008060408385031215612c1d57600080fd5b823591506129c96020840161295d565b60008151808452612c45816020860160208601612f33565b601f01601f19169290920160200192915050565b600084516020612c6c8285838a01612f33565b855191840191612c7f8184848a01612f33565b8554920191600090600181811c9080831680612c9c57607f831692505b858310811415612cba57634e487b7160e01b85526022600452602485fd5b808015612cce5760018114612cdf57612d0c565b60ff19851688528388019550612d0c565b60008b81526020902060005b85811015612d045781548a820152908401908801612ceb565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d5090830184612c2d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612d9257835183529284019291840191600101612d76565b50909695505050505050565b602081526000611d8e6020830184612c2d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526028908201527f6d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e20604082015267195e18d95959195960c21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612ee457612ee4612fc9565b500190565b600082612ef857612ef8612fdf565b500490565b6000816000190483118215151615612f1757612f17612fc9565b500290565b600082821015612f2e57612f2e612fc9565b500390565b60005b83811015612f4e578181015183820152602001612f36565b83811115611bd75750506000910152565b600181811c90821680612f7357607f821691505b60208210811415612f9457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fae57612fae612fc9565b5060010190565b600082612fc457612fc4612fdf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fef57600080fdfea264697066735822122068c3249f9792f3b8dfe66843713bdd39c9171bf0a6893885eab1f558b486b07c64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001f697066733a2f2f77696c6c626561646465646265666f726572657665616c2f000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d536d31795454357142356d524b725237636e32416372326858624b68766947783557716339315a6e675a4d742f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://willbeaddedbeforereveal/
Arg [1] : _initNotRevealedUri (string): ipfs://QmSm1yTT5qB5mRKrR7cn2Acr2hXbKhviGx5Wqc91ZngZMt/hidden.json

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [3] : 697066733a2f2f77696c6c626561646465646265666f726572657665616c2f00
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [5] : 697066733a2f2f516d536d31795454357142356d524b725237636e3241637232
Arg [6] : 6858624b68766947783557716339315a6e675a4d742f68696464656e2e6a736f
Arg [7] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

37994:8309:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25360:305;;;;;;;;;;-1:-1:-1;25360:305:0;;;;;:::i;:::-;;:::i;:::-;;;8686:14:1;;8679:22;8661:41;;8649:2;8634:18;25360:305:0;;;;;;;;44541:73;;;;;;;;;;-1:-1:-1;44541:73:0;;;;;:::i;:::-;;:::i;:::-;;26305:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27864:221::-;;;;;;;;;;-1:-1:-1;27864:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7347:32:1;;;7329:51;;7317:2;7302:18;27864:221:0;7183:203:1;38219:28:0;;;;;;;;;;;;;:::i;27387:411::-;;;;;;;;;;-1:-1:-1;27387:411:0;;;;;:::i;:::-;;:::i;45656:128::-;;;;;;;;;;-1:-1:-1;45656:128:0;;;;;:::i;:::-;;:::i;44620:118::-;;;;;;;;;;-1:-1:-1;44620:118:0;;;;;:::i;:::-;;:::i;38298:32::-;;;;;;;;;;;;;;;;;;;20466:25:1;;;20454:2;20439:18;38298:32:0;20320:177:1;43436:89:0;;;;;;;;;;;;;:::i;38459:32::-;;;;;;;;;;;;;;;;28614:339;;;;;;;;;;-1:-1:-1;28614:339:0;;;;;:::i;:::-;;:::i;38496:44::-;;;;;;;;;;;;;;;;38621:30;;;;;;;;;;-1:-1:-1;38621:30:0;;;;;;;;;;;43689:239;;;;;;;;;;-1:-1:-1;43689:239:0;;;;;:::i;:::-;;:::i;44206:95::-;;;;;;;;;;-1:-1:-1;44206:95:0;;;;;:::i;:::-;;:::i;46138:162::-;;;:::i;29024:185::-;;;;;;;;;;-1:-1:-1;29024:185:0;;;;;:::i;:::-;;:::i;42246:635::-;;;;;;;;;;-1:-1:-1;42246:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;44954:80::-;;;;;;;;;;-1:-1:-1;44954:80:0;;;;;:::i;:::-;;:::i;38686:28::-;;;;;;;;;;-1:-1:-1;38686:28:0;;;;;;;;;;;45298:98;;;;;;;;;;-1:-1:-1;45298:98:0;;;;;:::i;:::-;;:::i;38590:26::-;;;;;;;;;;-1:-1:-1;38590:26:0;;;;;;;;38656:25;;;;;;;;;;-1:-1:-1;38656:25:0;;;;;;;;;;;25999:239;;;;;;;;;;-1:-1:-1;25999:239:0;;;;;:::i;:::-;;:::i;41387:291::-;;;;;;;;;;-1:-1:-1;41387:291:0;;;;;:::i;:::-;;:::i;45040:130::-;;;;;;;;;;-1:-1:-1;45040:130:0;;;;;:::i;:::-;;:::i;45790:94::-;;;;;;;;;;-1:-1:-1;45790:94:0;;;;;:::i;:::-;;:::i;44070:111::-;;;;;;;;;;;;;:::i;25729:208::-;;;;;;;;;;-1:-1:-1;25729:208:0;;;;;:::i;:::-;;:::i;43969:95::-;;;;;;;;;;;;;:::i;6348:103::-;;;;;;;;;;;;;:::i;38415:39::-;;;;;;;;;;;;;;;;45176:116;;;;;;;;;;-1:-1:-1;45176:116:0;;;;;:::i;:::-;;:::i;43531:150::-;;;;;;;;;;;;;:::i;41948:260::-;;;;;;;;;;-1:-1:-1;41948:260:0;;;;;:::i;:::-;;:::i;40219:1101::-;;;;;;:::i;:::-;;:::i;5697:87::-;;;;;;;;;;-1:-1:-1;5770:6:0;;-1:-1:-1;;;;;5770:6:0;5697:87;;44854:94;;;;;;;;;;-1:-1:-1;44854:94:0;;;;;:::i;:::-;;:::i;44459:76::-;;;;;;;;;;-1:-1:-1;44459:76:0;;;;;:::i;:::-;;:::i;26474:104::-;;;;;;;;;;;;;:::i;38719:34::-;;;;;;;;;;-1:-1:-1;38719:34:0;;;;;;;;;;;39606:571;;;;;;:::i;:::-;;:::i;38372:38::-;;;;;;;;;;;;;;;;28157:155;;;;;;;;;;-1:-1:-1;28157:155:0;;;;;:::i;:::-;;:::i;29280:328::-;;;;;;;;;;-1:-1:-1;29280:328:0;;;;;:::i;:::-;;:::i;38762:37::-;;;;;;;;;;-1:-1:-1;38762:37:0;;;;;:::i;:::-;;:::i;38545:38::-;;;;;;;;;;;;;;;;38177:37;;;;;;;;;;;;;:::i;42887:539::-;;;;;;;;;;-1:-1:-1;42887:539:0;;;;;:::i;:::-;;:::i;38254:39::-;;;;;;;;;;;;;;;;44744:104;;;;;;;;;;-1:-1:-1;44744:104:0;;;;;:::i;:::-;;:::i;38335:32::-;;;;;;;;;;;;;;;;45402:122;;;;;;;;;;-1:-1:-1;45402:122:0;;;;;:::i;:::-;;:::i;28383:164::-;;;;;;;;;;-1:-1:-1;28383:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28504:25:0;;;28480:4;28504:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28383:164;44309:144;;;;;;;;;;-1:-1:-1;44309:144:0;;;;;:::i;:::-;;:::i;45530:120::-;;;;;;;;;;-1:-1:-1;45530:120:0;;;;;:::i;:::-;;:::i;6606:201::-;;;;;;;;;;-1:-1:-1;6606:201:0;;;;;:::i;:::-;;:::i;45990:96::-;;;;;;;;;;-1:-1:-1;45990:96:0;;;;;:::i;:::-;;:::i;45892:90::-;;;;;;;;;;-1:-1:-1;45892:90:0;;;;;:::i;:::-;;:::i;25360:305::-;25462:4;-1:-1:-1;;;;;;25499:40:0;;-1:-1:-1;;;25499:40:0;;:105;;-1:-1:-1;;;;;;;25556:48:0;;-1:-1:-1;;;25556:48:0;25499:105;:158;;;-1:-1:-1;;;;;;;;;;18238:40:0;;;25621:36;25479:178;25360:305;-1:-1:-1;;25360:305:0:o;44541:73::-;5770:6;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;;;;;;;;;44593:6:::1;:15:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;44593:15:0;;::::1;::::0;;;::::1;::::0;;44541:73::o;26305:100::-;26359:13;26392:5;26385:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26305:100;:::o;27864:221::-;27940:7;31207:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31207:16:0;27960:73;;;;-1:-1:-1;;;27960:73:0;;15625:2:1;27960:73:0;;;15607:21:1;15664:2;15644:18;;;15637:30;15703:34;15683:18;;;15676:62;-1:-1:-1;;;15754:18:1;;;15747:42;15806:19;;27960:73:0;15423:408:1;27960:73:0;-1:-1:-1;28053:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28053:24:0;;27864:221::o;38219:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27387:411::-;27468:13;27484:23;27499:7;27484:14;:23::i;:::-;27468:39;;27532:5;-1:-1:-1;;;;;27526:11:0;:2;-1:-1:-1;;;;;27526:11:0;;;27518:57;;;;-1:-1:-1;;;27518:57:0;;17932:2:1;27518:57:0;;;17914:21:1;17971:2;17951:18;;;17944:30;18010:34;17990:18;;;17983:62;-1:-1:-1;;;18061:18:1;;;18054:31;18102:19;;27518:57:0;17730:397:1;27518:57:0;4501:10;-1:-1:-1;;;;;27610:21:0;;;;:62;;-1:-1:-1;27635:37:0;27652:5;4501:10;28383:164;:::i;27635:37::-;27588:168;;;;-1:-1:-1;;;27588:168:0;;13667:2:1;27588:168:0;;;13649:21:1;13706:2;13686:18;;;13679:30;13745:34;13725:18;;;13718:62;13816:26;13796:18;;;13789:54;13860:19;;27588:168:0;13465:420:1;27588:168:0;27769:21;27778:2;27782:7;27769:8;:21::i;:::-;27457:341;27387:411;;:::o;45656:128::-;5770:6;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;45739:16:::1;:39:::0;45656:128::o;44620:118::-;5770:6;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;44698:25:::1;:34:::0;44620:118::o;43436:89::-;43480:7;43503:16;:6;1117:14;;1025:114;43503:16;43496:23;;43436:89;:::o;28614:339::-;28809:41;4501:10;28842:7;28809:18;:41::i;:::-;28801:103;;;;-1:-1:-1;;;28801:103:0;;;;;;;:::i;:::-;28917:28;28927:4;28933:2;28937:7;28917:9;:28::i;43689:239::-;43748:4;;43761:143;43782:20;:27;43778:31;;43761:143;;;43856:5;-1:-1:-1;;;;;43829:32:0;:20;43850:1;43829:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;43829:23:0;:32;43825:72;;;-1:-1:-1;43883:4:0;;43689:239;-1:-1:-1;;43689:239:0:o;43825:72::-;43811:3;;;;:::i;:::-;;;;43761:143;;;-1:-1:-1;43917:5:0;;43689:239;-1:-1:-1;;43689:239:0:o;44206:95::-;5770:6;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;44271:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;44271:24:0;;::::1;::::0;;;::::1;::::0;;44206:95::o;46138:162::-;5770:6;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;46211:58:::1;::::0;46193:12:::1;::::0;46219:10:::1;::::0;46243:21:::1;::::0;46193:12;46211:58;46193:12;46211:58;46243:21;46219:10;46211:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46192:77;;;46284:7;46276:16;;;::::0;::::1;;46183:117;46138:162::o:0;29024:185::-;29162:39;29179:4;29185:2;29189:7;29162:39;;;;;;;;;;;;:16;:39::i;42246:635::-;42321:16;42349:23;42375:17;42385:6;42375:9;:17::i;:::-;42349:43;;42399:30;42446:15;42432:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42432:30:0;-1:-1:-1;42399:63:0;-1:-1:-1;42494:1:0;42469:22;42538:309;42563:15;42545;:33;:64;;;;;42600:9;;42582:14;:27;;42545:64;42538:309;;;42620:25;42648:23;42656:14;42648:7;:23::i;:::-;42620:51;;42707:6;-1:-1:-1;;;;;42686:27:0;:17;-1:-1:-1;;;;;42686:27:0;;42682:131;;;42759:14;42726:13;42740:15;42726:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;42786:17;;;;:::i;:::-;;;;42682:131;42823:16;;;;:::i;:::-;;;;42611:236;42538:309;;;-1:-1:-1;42862:13:0;;42246:635;-1:-1:-1;;;;42246:635:0:o;44954:80::-;5770:6;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;45013:4:::1;:15:::0;44954:80::o;45298:98::-;5770:6;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;45369:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45298:98:::0;:::o;25999:239::-;26071:7;26107:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26107:16:0;26142:19;26134:73;;;;-1:-1:-1;;;26134:73:0;;14503:2:1;26134:73:0;;;14485:21:1;14542:2;14522:18;;;14515:30;14581:34;14561:18;;;14554:62;-1:-1:-1;;;14632:18:1;;;14625:39;14681:19;;26134:73:0;14301:405:1;41387:291:0;5770:6;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;41476:1:::1;41462:11;:15;41454:50;;;::::0;-1:-1:-1;;;41454:50:0;;9495:2:1;41454:50:0::1;::::0;::::1;9477:21:1::0;9534:2;9514:18;;;9507:30;9573:25;9553:18;;;9546:53;9616:18;;41454:50:0::1;9293:347:1::0;41454:50:0::1;41534:13;;41519:11;:28;;41511:37;;;::::0;::::1;;41597:9;;41582:11;41563:16;:6;1117:14:::0;;1025:114;41563:16:::1;:30;;;;:::i;:::-;:43;;41555:74;;;::::0;-1:-1:-1;;;41555:74:0;;9847:2:1;41555:74:0::1;::::0;::::1;9829:21:1::0;9886:2;9866:18;;;9859:30;-1:-1:-1;;;9905:18:1;;;9898:48;9963:18;;41555:74:0::1;9645:342:1::0;41555:74:0::1;41638:34;41648:10;41660:11;41638:9;:34::i;45040:130::-:0;5770:6;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;45124:20:::1;:40:::0;45040:130::o;45790:94::-;5770:6;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;45856:9:::1;:22:::0;45790:94::o;44070:111::-;5770:6;;44131:7;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;-1:-1:-1;44154:21:0::1;44070:111:::0;:::o;25729:208::-;25801:7;-1:-1:-1;;;;;25829:19:0;;25821:74;;;;-1:-1:-1;;;25821:74:0;;14092:2:1;25821:74:0;;;14074:21:1;14131:2;14111:18;;;14104:30;14170:34;14150:18;;;14143:62;-1:-1:-1;;;14221:18:1;;;14214:40;14271:19;;25821:74:0;13890:406:1;25821:74:0;-1:-1:-1;;;;;;25913:16:0;;;;;:9;:16;;;;;;;25729:208::o;43969:95::-;5770:6;;44022:13;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;44051:7:::1;44044:14;;;;;:::i;6348:103::-:0;5770:6;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;6413:30:::1;6440:1;6413:18;:30::i;:::-;6348:103::o:0;45176:116::-;5770:6;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;45253:13:::1;:33:::0;45176:116::o;43531:150::-;43598:7;;43578;;43598;;43594:82;;;-1:-1:-1;43623:11:0;;;43531:150::o;43594:82::-;-1:-1:-1;43664:4:0;;;43531:150::o;41948:260::-;5770:6;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;42042:1:::1;42028:11;:15;42020:55;;;::::0;-1:-1:-1;;;42020:55:0;;20166:2:1;42020:55:0::1;::::0;::::1;20148:21:1::0;20205:2;20185:18;;;20178:30;20244:29;20224:18;;;20217:57;20291:18;;42020:55:0::1;19964:351:1::0;42020:55:0::1;42124:9;;42109:11;42090:16;:6;1117:14:::0;;1025:114;42090:16:::1;:30;;;;:::i;:::-;:43;;42082:78;;;::::0;-1:-1:-1;;;42082:78:0;;14913:2:1;42082:78:0::1;::::0;::::1;14895:21:1::0;14952:2;14932:18;;;14925:30;-1:-1:-1;;;14971:18:1;;;14964:52;15033:18;;42082:78:0::1;14711:346:1::0;42082:78:0::1;42168:34;42178:10;42190:11;42168:9;:34::i;40219:1101::-:0;39061:6;;;;;;;39060:7;39052:42;;;;-1:-1:-1;;;39052:42:0;;16755:2:1;39052:42:0;;;16737:21:1;16794:2;16774:18;;;16767:30;-1:-1:-1;;;16813:18:1;;;16806:52;16875:18;;39052:42:0;16553:346:1;39052:42:0;39250:7:::1;::::0;::::1;;39242:47;;;::::0;-1:-1:-1;;;39242:47:0;;16038:2:1;39242:47:0::1;::::0;::::1;16020:21:1::0;16077:2;16057:18;;;16050:30;16116:29;16096:18;;;16089:57;16163:18;;39242:47:0::1;15836:351:1::0;39242:47:0::1;40334:23:::2;40360:21;40370:10;40360:9;:21::i;:::-;40334:47;;40406:7;5770:6:::0;;-1:-1:-1;;;;;5770:6:0;;5697:87;40406:7:::2;-1:-1:-1::0;;;;;40392:21:0::2;:10;-1:-1:-1::0;;;;;40392:21:0::2;;40388:878;;40429:15;::::0;;;::::2;;;:23;;40448:4;40429:23;40426:753;;;40477:25;40491:10;40477:13;:25::i;:::-;40469:61;;;::::0;-1:-1:-1;;;40469:61:0;;19455:2:1;40469:61:0::2;::::0;::::2;19437:21:1::0;19494:2;19474:18;;;19467:30;19533:25;19513:18;;;19506:53;19576:18;;40469:61:0::2;19253:347:1::0;40469:61:0::2;40586:25;::::0;40553:29:::2;40571:11:::0;40553:15;:29:::2;:::i;:::-;:58;;40545:101;;;::::0;-1:-1:-1;;;40545:101:0;;19807:2:1;40545:101:0::2;::::0;::::2;19789:21:1::0;19846:2;19826:18;;;19819:30;19885:32;19865:18;;;19858:60;19935:18;;40545:101:0::2;19605:354:1::0;40545:101:0::2;40684:20;;40669:11;:35;;40661:88;;;;-1:-1:-1::0;;;40661:88:0::2;;;;;;;:::i;:::-;40806:16;;40791:11;40772:16;:6;1117:14:::0;;1025:114;40772:16:::2;:30;;;;:::i;:::-;:50;;40764:90;;;::::0;-1:-1:-1;;;40764:90:0;;19099:2:1;40764:90:0::2;::::0;::::2;19081:21:1::0;19138:2;19118:18;;;19111:30;19177:29;19157:18;;;19150:57;19224:18;;40764:90:0::2;18897:351:1::0;40764:90:0::2;40426:753;;;40924:18;::::0;40891:29:::2;40909:11:::0;40891:15;:29:::2;:::i;:::-;:51;;40883:91;;;::::0;-1:-1:-1;;;40883:91:0;;9139:2:1;40883:91:0::2;::::0;::::2;9121:21:1::0;9178:2;9158:18;;;9151:30;9217:29;9197:18;;;9190:57;9264:18;;40883:91:0::2;8937:351:1::0;40883:91:0::2;41008:13;;40993:11;:28;;40985:81;;;;-1:-1:-1::0;;;40985:81:0::2;;;;;;;:::i;:::-;41119:16;;41104:11;41085:16;:6;1117:14:::0;;1025:114;41085:16:::2;:30;;;;:::i;:::-;:50;;41077:90;;;::::0;-1:-1:-1;;;41077:90:0;;19099:2:1;41077:90:0::2;::::0;::::2;19081:21:1::0;19138:2;19118:18;;;19111:30;19177:29;19157:18;;;19150:57;19224:18;;41077:90:0::2;18897:351:1::0;41077:90:0::2;41224:11;41210;;:25;;;;:::i;:::-;41197:9;:38;;41189:69;;;::::0;-1:-1:-1;;;41189:69:0;;18334:2:1;41189:69:0::2;::::0;::::2;18316:21:1::0;18373:2;18353:18;;;18346:30;-1:-1:-1;;;18392:18:1;;;18385:48;18450:18;;41189:69:0::2;18132:342:1::0;44854:94:0;5770:6;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;44920:11:::1;:22:::0;44854:94::o;44459:76::-;5770:6;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;44512:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;44512:17:0;;::::1;::::0;;;::::1;::::0;;44459:76::o;26474:104::-;26530:13;26563:7;26556:14;;;;;:::i;39606:571::-;39061:6;;;;;;;39060:7;39052:42;;;;-1:-1:-1;;;39052:42:0;;16755:2:1;39052:42:0;;;16737:21:1;16794:2;16774:18;;;16767:30;-1:-1:-1;;;16813:18:1;;;16806:52;16875:18;;39052:42:0;16553:346:1;39052:42:0;39150:10:::1;::::0;::::1;::::0;::::1;;;39142:47;;;::::0;-1:-1:-1;;;39142:47:0;;10194:2:1;39142:47:0::1;::::0;::::1;10176:21:1::0;10233:2;10213:18;;;10206:30;10272:26;10252:18;;;10245:54;10316:18;;39142:47:0::1;9992:348:1::0;39142:47:0::1;39721:11:::2;39386:1;39372:11;:15;39364:55;;;::::0;-1:-1:-1;;;39364:55:0;;20166:2:1;39364:55:0::2;::::0;::::2;20148:21:1::0;20205:2;20185:18;;;20178:30;20244:29;20224:18;;;20217:57;20291:18;;39364:55:0::2;19964:351:1::0;39364:55:0::2;39744:23:::3;39770:21;39780:10;39770:9;:21::i;:::-;39839:18;::::0;39744:47;;-1:-1:-1;39806:29:0::3;39824:11:::0;39744:47;39806:29:::3;:::i;:::-;:51;;39798:91;;;::::0;-1:-1:-1;;;39798:91:0;;11730:2:1;39798:91:0::3;::::0;::::3;11712:21:1::0;11769:2;11749:18;;;11742:30;11808:29;11788:18;;;11781:57;11855:18;;39798:91:0::3;11528:351:1::0;39798:91:0::3;39924:11;39917:4;;:18;;;;:::i;:::-;39904:9;:31;;39896:62;;;::::0;-1:-1:-1;;;39896:62:0;;18334:2:1;39896:62:0::3;::::0;::::3;18316:21:1::0;18373:2;18353:18;;;18346:30;-1:-1:-1;;;18392:18:1;;;18385:48;18450:18;;39896:62:0::3;18132:342:1::0;39896:62:0::3;39988:13;;39973:11;:28;;39965:81;;;;-1:-1:-1::0;;;39965:81:0::3;;;;;;;:::i;:::-;40095:9;;40080:11;40061:16;:6;1117:14:::0;;1025:114;40061:16:::3;:30;;;;:::i;:::-;:43;;40053:74;;;::::0;-1:-1:-1;;;40053:74:0;;9847:2:1;40053:74:0::3;::::0;::::3;9829:21:1::0;9886:2;9866:18;;;9859:30;-1:-1:-1;;;9905:18:1;;;9898:48;9963:18;;40053:74:0::3;9645:342:1::0;40053:74:0::3;40137:34;40147:10;40159:11;40137:9;:34::i;28157:155::-:0;28252:52;4501:10;28285:8;28295;28252:18;:52::i;29280:328::-;29455:41;4501:10;29488:7;29455:18;:41::i;:::-;29447:103;;;;-1:-1:-1;;;29447:103:0;;;;;;;:::i;:::-;29561:39;29575:4;29581:2;29585:7;29594:5;29561:13;:39::i;:::-;29280:328;;;;:::o;38762:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38762:37:0;;-1:-1:-1;38762:37:0;:::o;38177:::-;;;;;;;:::i;42887:539::-;31183:4;31207:16;;;:7;:16;;;;;;42985:13;;-1:-1:-1;;;;;31207:16:0;43010:97;;;;-1:-1:-1;;;43010:97:0;;17516:2:1;43010:97:0;;;17498:21:1;17555:2;17535:18;;;17528:30;17594:34;17574:18;;;17567:62;-1:-1:-1;;;17645:18:1;;;17638:45;17700:19;;43010:97:0;17314:411:1;43010:97:0;43121:8;;;;;;;43116:305;;43147:14;43140:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42887:539;;;:::o;43116:305::-;43184:28;43215:10;:8;:10::i;:::-;43184:41;;43281:1;43256:14;43250:28;:32;:163;;;;;;;;;;;;;;;;;43334:14;43350:18;:7;:16;:18::i;:::-;43370:13;43317:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43250:163;43234:179;42887:539;-1:-1:-1;;;42887:539:0:o;43116:305::-;42887:539;;;:::o;44744:104::-;5770:6;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;44815:18:::1;:27:::0;44744:104::o;45402:122::-;5770:6;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;45485:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;44309:144::-:0;5770:6;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;44384:27:::1;44391:20;;44384:27;:::i;:::-;44418:29;:20;44441:6:::0;;44418:29:::1;:::i;45530:120::-:0;5770:6;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;45612:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;6606:201::-:0;5770:6;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6695:22:0;::::1;6687:73;;;::::0;-1:-1:-1;;;6687:73:0;;10966:2:1;6687:73:0::1;::::0;::::1;10948:21:1::0;11005:2;10985:18;;;10978:30;11044:34;11024:18;;;11017:62;-1:-1:-1;;;11095:18:1;;;11088:36;11141:19;;6687:73:0::1;10764:402:1::0;6687:73:0::1;6771:28;6790:8;6771:18;:28::i;45990:96::-:0;5770:6;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;46059:10:::1;:19:::0;;;::::1;;;;-1:-1:-1::0;;46059:19:0;;::::1;::::0;;;::::1;::::0;;45990:96::o;45892:90::-;5770:6;;-1:-1:-1;;;;;5770:6:0;4501:10;5917:23;5909:68;;;;-1:-1:-1;;;5909:68:0;;;;;;;:::i;:::-;45958:7:::1;:16:::0;;-1:-1:-1;;45958:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45892:90::o;35100:174::-;35175:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35175:29:0;-1:-1:-1;;;;;35175:29:0;;;;;;;;:24;;35229:23;35175:24;35229:14;:23::i;:::-;-1:-1:-1;;;;;35220:46:0;;;;;;;;;;;35100:174;;:::o;31412:348::-;31505:4;31207:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31207:16:0;31522:73;;;;-1:-1:-1;;;31522:73:0;;13254:2:1;31522:73:0;;;13236:21:1;13293:2;13273:18;;;13266:30;13332:34;13312:18;;;13305:62;-1:-1:-1;;;13383:18:1;;;13376:42;13435:19;;31522:73:0;13052:408:1;31522:73:0;31606:13;31622:23;31637:7;31622:14;:23::i;:::-;31606:39;;31675:5;-1:-1:-1;;;;;31664:16:0;:7;-1:-1:-1;;;;;31664:16:0;;:51;;;;31708:7;-1:-1:-1;;;;;31684:31:0;:20;31696:7;31684:11;:20::i;:::-;-1:-1:-1;;;;;31684:31:0;;31664:51;:87;;;-1:-1:-1;;;;;;28504:25:0;;;28480:4;28504:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31719:32;31656:96;31412:348;-1:-1:-1;;;;31412:348:0:o;34404:578::-;34563:4;-1:-1:-1;;;;;34536:31:0;:23;34551:7;34536:14;:23::i;:::-;-1:-1:-1;;;;;34536:31:0;;34528:85;;;;-1:-1:-1;;;34528:85:0;;17106:2:1;34528:85:0;;;17088:21:1;17145:2;17125:18;;;17118:30;17184:34;17164:18;;;17157:62;-1:-1:-1;;;17235:18:1;;;17228:39;17284:19;;34528:85:0;16904:405:1;34528:85:0;-1:-1:-1;;;;;34632:16:0;;34624:65;;;;-1:-1:-1;;;34624:65:0;;12086:2:1;34624:65:0;;;12068:21:1;12125:2;12105:18;;;12098:30;12164:34;12144:18;;;12137:62;-1:-1:-1;;;12215:18:1;;;12208:34;12259:19;;34624:65:0;11884:400:1;34624:65:0;34806:29;34823:1;34827:7;34806:8;:29::i;:::-;-1:-1:-1;;;;;34848:15:0;;;;;;:9;:15;;;;;:20;;34867:1;;34848:15;:20;;34867:1;;34848:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34879:13:0;;;;;;:9;:13;;;;;:18;;34896:1;;34879:13;:18;;34896:1;;34879:18;:::i;:::-;;;;-1:-1:-1;;34908:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34908:21:0;-1:-1:-1;;;;;34908:21:0;;;;;;;;;34947:27;;34908:16;;34947:27;;;;;;;34404:578;;;:::o;41687:204::-;41767:9;41762:124;41786:11;41782:1;:15;41762:124;;;41813:18;:6;1236:19;;1254:1;1236:19;;;1147:127;41813:18;41840:38;41850:9;41861:16;:6;1117:14;;1025:114;41861:16;41840:9;:38::i;:::-;41799:3;;;;:::i;:::-;;;;41762:124;;6967:191;7060:6;;;-1:-1:-1;;;;;7077:17:0;;;-1:-1:-1;;;;;;7077:17:0;;;;;;;7110:40;;7060:6;;;7077:17;7060:6;;7110:40;;7041:16;;7110:40;7030:128;6967:191;:::o;35416:315::-;35571:8;-1:-1:-1;;;;;35562:17:0;:5;-1:-1:-1;;;;;35562:17:0;;;35554:55;;;;-1:-1:-1;;;35554:55:0;;12491:2:1;35554:55:0;;;12473:21:1;12530:2;12510:18;;;12503:30;12569:27;12549:18;;;12542:55;12614:18;;35554:55:0;12289:349:1;35554:55:0;-1:-1:-1;;;;;35620:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35620:46:0;;;;;;;;;;35682:41;;8661::1;;;35682::0;;8634:18:1;35682:41:0;;;;;;;35416:315;;;:::o;30490:::-;30647:28;30657:4;30663:2;30667:7;30647:9;:28::i;:::-;30694:48;30717:4;30723:2;30727:7;30736:5;30694:22;:48::i;:::-;30686:111;;;;-1:-1:-1;;;30686:111:0;;;;;;;:::i;39463:102::-;39523:13;39552:7;39545:14;;;;;:::i;1983:723::-;2039:13;2260:10;2256:53;;-1:-1:-1;;2287:10:0;;;;;;;;;;;;-1:-1:-1;;;2287:10:0;;;;;1983:723::o;2256:53::-;2334:5;2319:12;2375:78;2382:9;;2375:78;;2408:8;;;;:::i;:::-;;-1:-1:-1;2431:10:0;;-1:-1:-1;2439:2:0;2431:10;;:::i;:::-;;;2375:78;;;2463:19;2495:6;2485:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2485:17:0;;2463:39;;2513:154;2520:10;;2513:154;;2547:11;2557:1;2547:11;;:::i;:::-;;-1:-1:-1;2616:10:0;2624:2;2616:5;:10;:::i;:::-;2603:24;;:2;:24;:::i;:::-;2590:39;;2573:6;2580;2573:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2573:56:0;;;;;;;;-1:-1:-1;2644:11:0;2653:2;2644:11;;:::i;:::-;;;2513:154;;32102:110;32178:26;32188:2;32192:7;32178:26;;;;;;;;;;;;:9;:26::i;36296:799::-;36451:4;-1:-1:-1;;;;;36472:13:0;;8308:20;8356:8;36468:620;;36508:72;;-1:-1:-1;;;36508:72:0;;-1:-1:-1;;;;;36508:36:0;;;;;:72;;4501:10;;36559:4;;36565:7;;36574:5;;36508:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36508:72:0;;;;;;;;-1:-1:-1;;36508:72:0;;;;;;;;;;;;:::i;:::-;;;36504:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36750:13:0;;36746:272;;36793:60;;-1:-1:-1;;;36793:60:0;;;;;;;:::i;36746:272::-;36968:6;36962:13;36953:6;36949:2;36945:15;36938:38;36504:529;-1:-1:-1;;;;;;36631:51:0;-1:-1:-1;;;36631:51:0;;-1:-1:-1;36624:58:0;;36468:620;-1:-1:-1;37072:4:0;36296:799;;;;;;:::o;32439:321::-;32569:18;32575:2;32579:7;32569:5;:18::i;:::-;32620:54;32651:1;32655:2;32659:7;32668:5;32620:22;:54::i;:::-;32598:154;;;;-1:-1:-1;;;32598:154:0;;;;;;;:::i;33096:382::-;-1:-1:-1;;;;;33176:16:0;;33168:61;;;;-1:-1:-1;;;33168:61:0;;15264:2:1;33168:61:0;;;15246:21:1;;;15283:18;;;15276:30;15342:34;15322:18;;;15315:62;15394:18;;33168:61:0;15062:356:1;33168:61:0;31183:4;31207:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31207:16:0;:30;33240:58;;;;-1:-1:-1;;;33240:58:0;;11373:2:1;33240:58:0;;;11355:21:1;11412:2;11392:18;;;11385:30;11451;11431:18;;;11424:58;11499:18;;33240:58:0;11171:352:1;33240:58:0;-1:-1:-1;;;;;33369:13:0;;;;;;:9;:13;;;;;:18;;33386:1;;33369:13;:18;;33386:1;;33369:18;:::i;:::-;;;;-1:-1:-1;;33398:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33398:21:0;-1:-1:-1;;;;;33398:21:0;;;;;;;;33437:33;;33398:16;;;33437:33;;33398:16;;33437:33;33096:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:450::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;4491:18;4483:6;4480:30;4477:50;;;4523:1;4520;4513:12;4477:50;4546:22;;4599:4;4591:13;;4587:27;-1:-1:-1;4577:55:1;;4628:1;4625;4618:12;4577:55;4651:73;4716:7;4711:2;4698:16;4693:2;4689;4685:11;4651:73;:::i;4735:180::-;4794:6;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;-1:-1:-1;4886:23:1;;4735:180;-1:-1:-1;4735:180:1:o;4920:254::-;4988:6;4996;5049:2;5037:9;5028:7;5024:23;5020:32;5017:52;;;5065:1;5062;5055:12;5017:52;5101:9;5088:23;5078:33;;5130:38;5164:2;5153:9;5149:18;5130:38;:::i;5179:257::-;5220:3;5258:5;5252:12;5285:6;5280:3;5273:19;5301:63;5357:6;5350:4;5345:3;5341:14;5334:4;5327:5;5323:16;5301:63;:::i;:::-;5418:2;5397:15;-1:-1:-1;;5393:29:1;5384:39;;;;5425:4;5380:50;;5179:257;-1:-1:-1;;5179:257:1:o;5441:1527::-;5665:3;5703:6;5697:13;5729:4;5742:51;5786:6;5781:3;5776:2;5768:6;5764:15;5742:51;:::i;:::-;5856:13;;5815:16;;;;5878:55;5856:13;5815:16;5900:15;;;5878:55;:::i;:::-;6022:13;;5955:20;;;5995:1;;6082;6104:18;;;;6157;;;;6184:93;;6262:4;6252:8;6248:19;6236:31;;6184:93;6325:2;6315:8;6312:16;6292:18;6289:40;6286:167;;;-1:-1:-1;;;6352:33:1;;6408:4;6405:1;6398:15;6438:4;6359:3;6426:17;6286:167;6469:18;6496:110;;;;6620:1;6615:328;;;;6462:481;;6496:110;-1:-1:-1;;6531:24:1;;6517:39;;6576:20;;;;-1:-1:-1;6496:110:1;;6615:328;20575:1;20568:14;;;20612:4;20599:18;;6710:1;6724:169;6738:8;6735:1;6732:15;6724:169;;;6820:14;;6805:13;;;6798:37;6863:16;;;;6755:10;;6724:169;;;6728:3;;6924:8;6917:5;6913:20;6906:27;;6462:481;-1:-1:-1;6959:3:1;;5441:1527;-1:-1:-1;;;;;;;;;;;5441:1527:1:o;7391:488::-;-1:-1:-1;;;;;7660:15:1;;;7642:34;;7712:15;;7707:2;7692:18;;7685:43;7759:2;7744:18;;7737:34;;;7807:3;7802:2;7787:18;;7780:31;;;7585:4;;7828:45;;7853:19;;7845:6;7828:45;:::i;:::-;7820:53;7391:488;-1:-1:-1;;;;;;7391:488:1:o;7884:632::-;8055:2;8107:21;;;8177:13;;8080:18;;;8199:22;;;8026:4;;8055:2;8278:15;;;;8252:2;8237:18;;;8026:4;8321:169;8335:6;8332:1;8329:13;8321:169;;;8396:13;;8384:26;;8465:15;;;;8430:12;;;;8357:1;8350:9;8321:169;;;-1:-1:-1;8507:3:1;;7884:632;-1:-1:-1;;;;;;7884:632:1:o;8713:219::-;8862:2;8851:9;8844:21;8825:4;8882:44;8922:2;8911:9;8907:18;8899:6;8882:44;:::i;10345:414::-;10547:2;10529:21;;;10586:2;10566:18;;;10559:30;10625:34;10620:2;10605:18;;10598:62;-1:-1:-1;;;10691:2:1;10676:18;;10669:48;10749:3;10734:19;;10345:414::o;12643:404::-;12845:2;12827:21;;;12884:2;12864:18;;;12857:30;12923:34;12918:2;12903:18;;12896:62;-1:-1:-1;;;12989:2:1;12974:18;;12967:38;13037:3;13022:19;;12643:404::o;16192:356::-;16394:2;16376:21;;;16413:18;;;16406:30;16472:34;16467:2;16452:18;;16445:62;16539:2;16524:18;;16192:356::o;18479:413::-;18681:2;18663:21;;;18720:2;18700:18;;;18693:30;18759:34;18754:2;18739:18;;18732:62;-1:-1:-1;;;18825:2:1;18810:18;;18803:47;18882:3;18867:19;;18479:413::o;20628:128::-;20668:3;20699:1;20695:6;20692:1;20689:13;20686:39;;;20705:18;;:::i;:::-;-1:-1:-1;20741:9:1;;20628:128::o;20761:120::-;20801:1;20827;20817:35;;20832:18;;:::i;:::-;-1:-1:-1;20866:9:1;;20761:120::o;20886:168::-;20926:7;20992:1;20988;20984:6;20980:14;20977:1;20974:21;20969:1;20962:9;20955:17;20951:45;20948:71;;;20999:18;;:::i;:::-;-1:-1:-1;21039:9:1;;20886:168::o;21059:125::-;21099:4;21127:1;21124;21121:8;21118:34;;;21132:18;;:::i;:::-;-1:-1:-1;21169:9:1;;21059:125::o;21189:258::-;21261:1;21271:113;21285:6;21282:1;21279:13;21271:113;;;21361:11;;;21355:18;21342:11;;;21335:39;21307:2;21300:10;21271:113;;;21402:6;21399:1;21396:13;21393:48;;;-1:-1:-1;;21437:1:1;21419:16;;21412:27;21189:258::o;21452:380::-;21531:1;21527:12;;;;21574;;;21595:61;;21649:4;21641:6;21637:17;21627:27;;21595:61;21702:2;21694:6;21691:14;21671:18;21668:38;21665:161;;;21748:10;21743:3;21739:20;21736:1;21729:31;21783:4;21780:1;21773:15;21811:4;21808:1;21801:15;21665:161;;21452:380;;;:::o;21837:135::-;21876:3;-1:-1:-1;;21897:17:1;;21894:43;;;21917:18;;:::i;:::-;-1:-1:-1;21964:1:1;21953:13;;21837:135::o;21977:112::-;22009:1;22035;22025:35;;22040:18;;:::i;:::-;-1:-1:-1;22074:9:1;;21977:112::o;22094:127::-;22155:10;22150:3;22146:20;22143:1;22136:31;22186:4;22183:1;22176:15;22210:4;22207:1;22200:15;22226:127;22287:10;22282:3;22278:20;22275:1;22268:31;22318:4;22315:1;22308:15;22342:4;22339:1;22332:15;22358:127;22419:10;22414:3;22410:20;22407:1;22400:31;22450:4;22447:1;22440:15;22474:4;22471:1;22464:15;22490:127;22551:10;22546:3;22542:20;22539:1;22532:31;22582:4;22579:1;22572:15;22606:4;22603:1;22596:15;22622:131;-1:-1:-1;;;;;;22696:32:1;;22686:43;;22676:71;;22743:1;22740;22733:12

Swarm Source

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