ETH Price: $3,249.23 (+2.46%)
Gas: 7 Gwei

Token

Thins (Thins)
 

Overview

Max Total Supply

10,000 Thins

Holders

742

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 Thins
0x9e4c7b957a8072357f847fa01333e2862eac3e35
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:
Thins

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT


// WE ARE THIIIIIN! Inspired by the original CryptoPunks and Wiiides. Not affiliated with Larva Labs.


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


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/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:


pragma solidity ^0.8.0;










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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), "ERC721A: global index out of bounds");
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), "ERC721A: number minted query for the zero address");
        return uint256(_addressData[owner].numberMinted);
    }

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

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "ERC721A: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved");

        require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner");
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721A: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract Thins  is ERC721A, Ownable, ReentrancyGuard {
    string public baseURI           = "ipfs/";
    uint   public price             = 0.01 ether;
    uint   public maxPerTx          = 10;
    uint   public maxPerFree        = 2;
    uint   public totalFree         = 10000;
    uint   public maxSupply         = 10000;
    bool   public mintEnabled       = false;

    mapping(address => uint256) private _mintedFreeAmount;

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


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

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalSupply() + count < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= maxPerFree));

        if (isFree) {
            cost = 0;
            _mintedFreeAmount[msg.sender] += count;
        }

        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count <= maxSupply, "No more");
        require(mintEnabled, "Minting is not live yet..");
        require(count <= maxPerTx, "Max per TX reached.");

        _safeMint(msg.sender, count);
    }

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

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

    function setBaseUri(string memory baseuri_) public onlyOwner {
        baseURI = baseuri_;
    }

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

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


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseuri_","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264697066732f60d81b60a090815262000028916009919062000135565b50662386f26fc10000600a908155600b556002600c55612710600d819055600e55600f805460ff191690553480156200006057600080fd5b506040805180820182526005808252645468696e7360d81b602080840182815285518087019096529285528401528151919291620000a19160019162000135565b508051620000b790600290602084019062000135565b505050620000d4620000ce620000df60201b60201c565b620000e3565b600160085562000218565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014390620001db565b90600052602060002090601f016020900481019282620001675760008555620001b2565b82601f106200018257805160ff1916838001178555620001b2565b82800160010185558215620001b2579182015b82811115620001b257825182559160200191906001019062000195565b50620001c0929150620001c4565b5090565b5b80821115620001c05760008155600101620001c5565b600181811c90821680620001f057607f821691505b602082108114156200021257634e487b7160e01b600052602260045260246000fd5b50919050565b611ff580620002286000396000f3fe6080604052600436106101d85760003560e01c80637d55094d11610102578063b88d4fde11610095578063d5abeb0111610064578063d5abeb0114610503578063e985e9c514610519578063f2fde38b14610562578063f968adbe1461058257600080fd5b8063b88d4fde14610493578063c7c39ffc146104b3578063c87b56dd146104c9578063d1239730146104e957600080fd5b8063a035b1fe116100d1578063a035b1fe1461042a578063a0712d6814610440578063a0bcfc7f14610453578063a22cb4651461047357600080fd5b80637d55094d146103c25780638da5cb5b146103d757806391b7f5ed146103f557806395d89b411461041557600080fd5b8063333e44e61161017a5780636352211e116101495780636352211e146103585780636c0360eb1461037857806370a082311461038d578063715018a6146103ad57600080fd5b8063333e44e6146102ed5780633ccfd60b1461030357806342842e0e146103185780634f6ccce71461033857600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e57806323b872dd146102ad5780632f745c59146102cd57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611a92565b610598565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610605565b6040516102099190611b07565b34801561024057600080fd5b5061025461024f366004611b1a565b610697565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611b4f565b610727565b005b34801561029a57600080fd5b506000545b604051908152602001610209565b3480156102b957600080fd5b5061028c6102c8366004611b79565b61083f565b3480156102d957600080fd5b5061029f6102e8366004611b4f565b61084a565b3480156102f957600080fd5b5061029f600d5481565b34801561030f57600080fd5b5061028c6109a7565b34801561032457600080fd5b5061028c610333366004611b79565b610abc565b34801561034457600080fd5b5061029f610353366004611b1a565b610ad7565b34801561036457600080fd5b50610254610373366004611b1a565b610b39565b34801561038457600080fd5b50610227610b4b565b34801561039957600080fd5b5061029f6103a8366004611bb5565b610bd9565b3480156103b957600080fd5b5061028c610c6a565b3480156103ce57600080fd5b5061028c610ca0565b3480156103e357600080fd5b506007546001600160a01b0316610254565b34801561040157600080fd5b5061028c610410366004611b1a565b610cde565b34801561042157600080fd5b50610227610d0d565b34801561043657600080fd5b5061029f600a5481565b61028c61044e366004611b1a565b610d1c565b34801561045f57600080fd5b5061028c61046e366004611c5c565b610eea565b34801561047f57600080fd5b5061028c61048e366004611ca5565b610f2b565b34801561049f57600080fd5b5061028c6104ae366004611ce1565b610ff0565b3480156104bf57600080fd5b5061029f600c5481565b3480156104d557600080fd5b506102276104e4366004611b1a565b611029565b3480156104f557600080fd5b50600f546101fd9060ff1681565b34801561050f57600080fd5b5061029f600e5481565b34801561052557600080fd5b506101fd610534366004611d5d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561056e57600080fd5b5061028c61057d366004611bb5565b6110f6565b34801561058e57600080fd5b5061029f600b5481565b60006001600160e01b031982166380ac58cd60e01b14806105c957506001600160e01b03198216635b5e139f60e01b145b806105e457506001600160e01b0319821663780e9d6360e01b145b806105ff57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461061490611d90565b80601f016020809104026020016040519081016040528092919081815260200182805461064090611d90565b801561068d5780601f106106625761010080835404028352916020019161068d565b820191906000526020600020905b81548152906001019060200180831161067057829003601f168201915b5050505050905090565b60006106a4826000541190565b61070b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061073282610b39565b9050806001600160a01b0316836001600160a01b031614156107a15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610702565b336001600160a01b03821614806107bd57506107bd8133610534565b61082f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610702565b61083a838383611191565b505050565b61083a8383836111ed565b600061085583610bd9565b82106108ae5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610702565b600080549080805b83811015610947576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561090957805192505b876001600160a01b0316836001600160a01b0316141561093e5786841415610937575093506105ff92505050565b6001909301925b506001016108b6565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610702565b6007546001600160a01b031633146109d15760405162461bcd60e51b815260040161070290611dcb565b60026008541415610a245760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610702565b6002600855604051600090339047908381818185875af1925050503d8060008114610a6b576040519150601f19603f3d011682016040523d82523d6000602084013e610a70565b606091505b5050905080610ab45760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610702565b506001600855565b61083a83838360405180602001604052806000815250610ff0565b600080548210610b355760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610702565b5090565b6000610b44826114d2565b5192915050565b60098054610b5890611d90565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8490611d90565b8015610bd15780601f10610ba657610100808354040283529160200191610bd1565b820191906000526020600020905b815481529060010190602001808311610bb457829003601f168201915b505050505081565b60006001600160a01b038216610c455760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610702565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610c945760405162461bcd60e51b815260040161070290611dcb565b610c9e60006115a9565b565b6007546001600160a01b03163314610cca5760405162461bcd60e51b815260040161070290611dcb565b600f805460ff19811660ff90911615179055565b6007546001600160a01b03163314610d085760405162461bcd60e51b815260040161070290611dcb565b600a55565b60606002805461061490611d90565b600a54600d54600090610d30906001611e16565b83610d3a60005490565b610d449190611e16565b108015610d6d5750600c5433600090815260106020526040902054610d6a908590611e16565b11155b90508015610d9e57336000908152601060205260408120805491935084918490610d98908490611e16565b90915550505b610da88284611e2e565b341015610df75760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e0000006044820152606401610702565b600e5483610e0460005490565b610e0e9190611e16565b1115610e465760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610702565b600f5460ff16610e985760405162461bcd60e51b815260206004820152601960248201527f4d696e74696e67206973206e6f74206c697665207965742e2e000000000000006044820152606401610702565b600b54831115610ee05760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b6044820152606401610702565b61083a33846115fb565b6007546001600160a01b03163314610f145760405162461bcd60e51b815260040161070290611dcb565b8051610f279060099060208401906119ec565b5050565b6001600160a01b038216331415610f845760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610702565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ffb8484846111ed565b61100784848484611615565b6110235760405162461bcd60e51b815260040161070290611e4d565b50505050565b6060611036826000541190565b61109a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610702565b60006110a4611714565b905060008151116110c457604051806020016040528060008152506110ef565b806110ce84611723565b6040516020016110df929190611ea0565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146111205760405162461bcd60e51b815260040161070290611dcb565b6001600160a01b0381166111855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610702565b61118e816115a9565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111f8826114d2565b80519091506000906001600160a01b0316336001600160a01b0316148061122f57503361122484610697565b6001600160a01b0316145b80611241575081516112419033610534565b9050806112ab5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610702565b846001600160a01b031682600001516001600160a01b03161461131f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610702565b6001600160a01b0384166113835760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610702565b6113936000848460000151611191565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166114885761143b816000541190565b15611488578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526114f1826000541190565b6115505760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610702565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561159f579392505050565b5060001901611552565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f27828260405180602001604052806000815250611821565b60006001600160a01b0384163b1561170857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611659903390899088908890600401611edf565b6020604051808303816000875af1925050508015611694575060408051601f3d908101601f1916820190925261169191810190611f1c565b60015b6116ee573d8080156116c2576040519150601f19603f3d011682016040523d82523d6000602084013e6116c7565b606091505b5080516116e65760405162461bcd60e51b815260040161070290611e4d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061170c565b5060015b949350505050565b60606009805461061490611d90565b6060816117475750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611771578061175b81611f39565b915061176a9050600a83611f6a565b915061174b565b60008167ffffffffffffffff81111561178c5761178c611bd0565b6040519080825280601f01601f1916602001820160405280156117b6576020820181803683370190505b5090505b841561170c576117cb600183611f7e565b91506117d8600a86611f95565b6117e3906030611e16565b60f81b8183815181106117f8576117f8611fa9565b60200101906001600160f81b031916908160001a90535061181a600a86611f6a565b94506117ba565b61083a83838360016000546001600160a01b03851661188c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610702565b836118ea5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610702565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156119e35760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156119d7576119bb6000888488611615565b6119d75760405162461bcd60e51b815260040161070290611e4d565b60019182019101611968565b506000556114cb565b8280546119f890611d90565b90600052602060002090601f016020900481019282611a1a5760008555611a60565b82601f10611a3357805160ff1916838001178555611a60565b82800160010185558215611a60579182015b82811115611a60578251825591602001919060010190611a45565b50610b359291505b80821115610b355760008155600101611a68565b6001600160e01b03198116811461118e57600080fd5b600060208284031215611aa457600080fd5b81356110ef81611a7c565b60005b83811015611aca578181015183820152602001611ab2565b838111156110235750506000910152565b60008151808452611af3816020860160208601611aaf565b601f01601f19169290920160200192915050565b6020815260006110ef6020830184611adb565b600060208284031215611b2c57600080fd5b5035919050565b80356001600160a01b0381168114611b4a57600080fd5b919050565b60008060408385031215611b6257600080fd5b611b6b83611b33565b946020939093013593505050565b600080600060608486031215611b8e57600080fd5b611b9784611b33565b9250611ba560208501611b33565b9150604084013590509250925092565b600060208284031215611bc757600080fd5b6110ef82611b33565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c0157611c01611bd0565b604051601f8501601f19908116603f01168101908282118183101715611c2957611c29611bd0565b81604052809350858152868686011115611c4257600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c6e57600080fd5b813567ffffffffffffffff811115611c8557600080fd5b8201601f81018413611c9657600080fd5b61170c84823560208401611be6565b60008060408385031215611cb857600080fd5b611cc183611b33565b915060208301358015158114611cd657600080fd5b809150509250929050565b60008060008060808587031215611cf757600080fd5b611d0085611b33565b9350611d0e60208601611b33565b925060408501359150606085013567ffffffffffffffff811115611d3157600080fd5b8501601f81018713611d4257600080fd5b611d5187823560208401611be6565b91505092959194509250565b60008060408385031215611d7057600080fd5b611d7983611b33565b9150611d8760208401611b33565b90509250929050565b600181811c90821680611da457607f821691505b60208210811415611dc557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611e2957611e29611e00565b500190565b6000816000190483118215151615611e4857611e48611e00565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351611eb2818460208801611aaf565b835190830190611ec6818360208801611aaf565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f1290830184611adb565b9695505050505050565b600060208284031215611f2e57600080fd5b81516110ef81611a7c565b6000600019821415611f4d57611f4d611e00565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611f7957611f79611f54565b500490565b600082821015611f9057611f90611e00565b500390565b600082611fa457611fa4611f54565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212207ec8639ba1e2aac7e934790b2cd05b83a6c821e87994ad17edc1bee31bff7d8064736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80637d55094d11610102578063b88d4fde11610095578063d5abeb0111610064578063d5abeb0114610503578063e985e9c514610519578063f2fde38b14610562578063f968adbe1461058257600080fd5b8063b88d4fde14610493578063c7c39ffc146104b3578063c87b56dd146104c9578063d1239730146104e957600080fd5b8063a035b1fe116100d1578063a035b1fe1461042a578063a0712d6814610440578063a0bcfc7f14610453578063a22cb4651461047357600080fd5b80637d55094d146103c25780638da5cb5b146103d757806391b7f5ed146103f557806395d89b411461041557600080fd5b8063333e44e61161017a5780636352211e116101495780636352211e146103585780636c0360eb1461037857806370a082311461038d578063715018a6146103ad57600080fd5b8063333e44e6146102ed5780633ccfd60b1461030357806342842e0e146103185780634f6ccce71461033857600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e57806323b872dd146102ad5780632f745c59146102cd57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611a92565b610598565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610605565b6040516102099190611b07565b34801561024057600080fd5b5061025461024f366004611b1a565b610697565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611b4f565b610727565b005b34801561029a57600080fd5b506000545b604051908152602001610209565b3480156102b957600080fd5b5061028c6102c8366004611b79565b61083f565b3480156102d957600080fd5b5061029f6102e8366004611b4f565b61084a565b3480156102f957600080fd5b5061029f600d5481565b34801561030f57600080fd5b5061028c6109a7565b34801561032457600080fd5b5061028c610333366004611b79565b610abc565b34801561034457600080fd5b5061029f610353366004611b1a565b610ad7565b34801561036457600080fd5b50610254610373366004611b1a565b610b39565b34801561038457600080fd5b50610227610b4b565b34801561039957600080fd5b5061029f6103a8366004611bb5565b610bd9565b3480156103b957600080fd5b5061028c610c6a565b3480156103ce57600080fd5b5061028c610ca0565b3480156103e357600080fd5b506007546001600160a01b0316610254565b34801561040157600080fd5b5061028c610410366004611b1a565b610cde565b34801561042157600080fd5b50610227610d0d565b34801561043657600080fd5b5061029f600a5481565b61028c61044e366004611b1a565b610d1c565b34801561045f57600080fd5b5061028c61046e366004611c5c565b610eea565b34801561047f57600080fd5b5061028c61048e366004611ca5565b610f2b565b34801561049f57600080fd5b5061028c6104ae366004611ce1565b610ff0565b3480156104bf57600080fd5b5061029f600c5481565b3480156104d557600080fd5b506102276104e4366004611b1a565b611029565b3480156104f557600080fd5b50600f546101fd9060ff1681565b34801561050f57600080fd5b5061029f600e5481565b34801561052557600080fd5b506101fd610534366004611d5d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561056e57600080fd5b5061028c61057d366004611bb5565b6110f6565b34801561058e57600080fd5b5061029f600b5481565b60006001600160e01b031982166380ac58cd60e01b14806105c957506001600160e01b03198216635b5e139f60e01b145b806105e457506001600160e01b0319821663780e9d6360e01b145b806105ff57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461061490611d90565b80601f016020809104026020016040519081016040528092919081815260200182805461064090611d90565b801561068d5780601f106106625761010080835404028352916020019161068d565b820191906000526020600020905b81548152906001019060200180831161067057829003601f168201915b5050505050905090565b60006106a4826000541190565b61070b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061073282610b39565b9050806001600160a01b0316836001600160a01b031614156107a15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610702565b336001600160a01b03821614806107bd57506107bd8133610534565b61082f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610702565b61083a838383611191565b505050565b61083a8383836111ed565b600061085583610bd9565b82106108ae5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610702565b600080549080805b83811015610947576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561090957805192505b876001600160a01b0316836001600160a01b0316141561093e5786841415610937575093506105ff92505050565b6001909301925b506001016108b6565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610702565b6007546001600160a01b031633146109d15760405162461bcd60e51b815260040161070290611dcb565b60026008541415610a245760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610702565b6002600855604051600090339047908381818185875af1925050503d8060008114610a6b576040519150601f19603f3d011682016040523d82523d6000602084013e610a70565b606091505b5050905080610ab45760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610702565b506001600855565b61083a83838360405180602001604052806000815250610ff0565b600080548210610b355760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610702565b5090565b6000610b44826114d2565b5192915050565b60098054610b5890611d90565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8490611d90565b8015610bd15780601f10610ba657610100808354040283529160200191610bd1565b820191906000526020600020905b815481529060010190602001808311610bb457829003601f168201915b505050505081565b60006001600160a01b038216610c455760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610702565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610c945760405162461bcd60e51b815260040161070290611dcb565b610c9e60006115a9565b565b6007546001600160a01b03163314610cca5760405162461bcd60e51b815260040161070290611dcb565b600f805460ff19811660ff90911615179055565b6007546001600160a01b03163314610d085760405162461bcd60e51b815260040161070290611dcb565b600a55565b60606002805461061490611d90565b600a54600d54600090610d30906001611e16565b83610d3a60005490565b610d449190611e16565b108015610d6d5750600c5433600090815260106020526040902054610d6a908590611e16565b11155b90508015610d9e57336000908152601060205260408120805491935084918490610d98908490611e16565b90915550505b610da88284611e2e565b341015610df75760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e0000006044820152606401610702565b600e5483610e0460005490565b610e0e9190611e16565b1115610e465760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610702565b600f5460ff16610e985760405162461bcd60e51b815260206004820152601960248201527f4d696e74696e67206973206e6f74206c697665207965742e2e000000000000006044820152606401610702565b600b54831115610ee05760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b6044820152606401610702565b61083a33846115fb565b6007546001600160a01b03163314610f145760405162461bcd60e51b815260040161070290611dcb565b8051610f279060099060208401906119ec565b5050565b6001600160a01b038216331415610f845760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610702565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ffb8484846111ed565b61100784848484611615565b6110235760405162461bcd60e51b815260040161070290611e4d565b50505050565b6060611036826000541190565b61109a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610702565b60006110a4611714565b905060008151116110c457604051806020016040528060008152506110ef565b806110ce84611723565b6040516020016110df929190611ea0565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146111205760405162461bcd60e51b815260040161070290611dcb565b6001600160a01b0381166111855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610702565b61118e816115a9565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111f8826114d2565b80519091506000906001600160a01b0316336001600160a01b0316148061122f57503361122484610697565b6001600160a01b0316145b80611241575081516112419033610534565b9050806112ab5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610702565b846001600160a01b031682600001516001600160a01b03161461131f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610702565b6001600160a01b0384166113835760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610702565b6113936000848460000151611191565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166114885761143b816000541190565b15611488578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526114f1826000541190565b6115505760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610702565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561159f579392505050565b5060001901611552565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f27828260405180602001604052806000815250611821565b60006001600160a01b0384163b1561170857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611659903390899088908890600401611edf565b6020604051808303816000875af1925050508015611694575060408051601f3d908101601f1916820190925261169191810190611f1c565b60015b6116ee573d8080156116c2576040519150601f19603f3d011682016040523d82523d6000602084013e6116c7565b606091505b5080516116e65760405162461bcd60e51b815260040161070290611e4d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061170c565b5060015b949350505050565b60606009805461061490611d90565b6060816117475750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611771578061175b81611f39565b915061176a9050600a83611f6a565b915061174b565b60008167ffffffffffffffff81111561178c5761178c611bd0565b6040519080825280601f01601f1916602001820160405280156117b6576020820181803683370190505b5090505b841561170c576117cb600183611f7e565b91506117d8600a86611f95565b6117e3906030611e16565b60f81b8183815181106117f8576117f8611fa9565b60200101906001600160f81b031916908160001a90535061181a600a86611f6a565b94506117ba565b61083a83838360016000546001600160a01b03851661188c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610702565b836118ea5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610702565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156119e35760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156119d7576119bb6000888488611615565b6119d75760405162461bcd60e51b815260040161070290611e4d565b60019182019101611968565b506000556114cb565b8280546119f890611d90565b90600052602060002090601f016020900481019282611a1a5760008555611a60565b82601f10611a3357805160ff1916838001178555611a60565b82800160010185558215611a60579182015b82811115611a60578251825591602001919060010190611a45565b50610b359291505b80821115610b355760008155600101611a68565b6001600160e01b03198116811461118e57600080fd5b600060208284031215611aa457600080fd5b81356110ef81611a7c565b60005b83811015611aca578181015183820152602001611ab2565b838111156110235750506000910152565b60008151808452611af3816020860160208601611aaf565b601f01601f19169290920160200192915050565b6020815260006110ef6020830184611adb565b600060208284031215611b2c57600080fd5b5035919050565b80356001600160a01b0381168114611b4a57600080fd5b919050565b60008060408385031215611b6257600080fd5b611b6b83611b33565b946020939093013593505050565b600080600060608486031215611b8e57600080fd5b611b9784611b33565b9250611ba560208501611b33565b9150604084013590509250925092565b600060208284031215611bc757600080fd5b6110ef82611b33565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c0157611c01611bd0565b604051601f8501601f19908116603f01168101908282118183101715611c2957611c29611bd0565b81604052809350858152868686011115611c4257600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c6e57600080fd5b813567ffffffffffffffff811115611c8557600080fd5b8201601f81018413611c9657600080fd5b61170c84823560208401611be6565b60008060408385031215611cb857600080fd5b611cc183611b33565b915060208301358015158114611cd657600080fd5b809150509250929050565b60008060008060808587031215611cf757600080fd5b611d0085611b33565b9350611d0e60208601611b33565b925060408501359150606085013567ffffffffffffffff811115611d3157600080fd5b8501601f81018713611d4257600080fd5b611d5187823560208401611be6565b91505092959194509250565b60008060408385031215611d7057600080fd5b611d7983611b33565b9150611d8760208401611b33565b90509250929050565b600181811c90821680611da457607f821691505b60208210811415611dc557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611e2957611e29611e00565b500190565b6000816000190483118215151615611e4857611e48611e00565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351611eb2818460208801611aaf565b835190830190611ec6818360208801611aaf565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f1290830184611adb565b9695505050505050565b600060208284031215611f2e57600080fd5b81516110ef81611a7c565b6000600019821415611f4d57611f4d611e00565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611f7957611f79611f54565b500490565b600082821015611f9057611f90611e00565b500390565b600082611fa457611fa4611f54565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212207ec8639ba1e2aac7e934790b2cd05b83a6c821e87994ad17edc1bee31bff7d8064736f6c634300080c0033

Deployed Bytecode Sourcemap

43373:2151:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30233:372;;;;;;;;;;-1:-1:-1;30233:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;30233:372:0;;;;;;;;32119:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33681:214::-;;;;;;;;;;-1:-1:-1;33681:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;33681:214:0;1528:203:1;33202:413:0;;;;;;;;;;-1:-1:-1;33202:413:0;;;;;:::i;:::-;;:::i;:::-;;28490:100;;;;;;;;;;-1:-1:-1;28543:7:0;28570:12;28490:100;;;2319:25:1;;;2307:2;2292:18;28490:100:0;2173:177:1;34557:170:0;;;;;;;;;;-1:-1:-1;34557:170:0;;;;;:::i;:::-;;:::i;29154:1007::-;;;;;;;;;;-1:-1:-1;29154:1007:0;;;;;:::i;:::-;;:::i;43617:39::-;;;;;;;;;;;;;;;;45331:186;;;;;;;;;;;;;:::i;34798:185::-;;;;;;;;;;-1:-1:-1;34798:185:0;;;;;:::i;:::-;;:::i;28667:187::-;;;;;;;;;;-1:-1:-1;28667:187:0;;;;;:::i;:::-;;:::i;31928:124::-;;;;;;;;;;-1:-1:-1;31928:124:0;;;;;:::i;:::-;;:::i;43433:41::-;;;;;;;;;;;;;:::i;30669:221::-;;;;;;;;;;-1:-1:-1;30669:221:0;;;;;:::i;:::-;;:::i;25906:103::-;;;;;;;;;;;;;:::i;44920:87::-;;;;;;;;;;;;;:::i;25255:::-;;;;;;;;;;-1:-1:-1;25328:6:0;;-1:-1:-1;;;;;25328:6:0;25255:87;;45237:86;;;;;;;;;;-1:-1:-1;45237:86:0;;;;;:::i;:::-;;:::i;32288:104::-;;;;;;;;;;;;;:::i;43481:44::-;;;;;;;;;;;;;;;;44273:639;;;;;;:::i;:::-;;:::i;45131:98::-;;;;;;;;;;-1:-1:-1;45131:98:0;;;;;:::i;:::-;;:::i;33967:288::-;;;;;;;;;;-1:-1:-1;33967:288:0;;;;;:::i;:::-;;:::i;35054:355::-;;;;;;;;;;-1:-1:-1;35054:355:0;;;;;:::i;:::-;;:::i;43575:35::-;;;;;;;;;;;;;;;;43870:395;;;;;;;;;;-1:-1:-1;43870:395:0;;;;;:::i;:::-;;:::i;43709:39::-;;;;;;;;;;-1:-1:-1;43709:39:0;;;;;;;;43663;;;;;;;;;;;;;;;;34326:164;;;;;;;;;;-1:-1:-1;34326:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34447:25:0;;;34423:4;34447:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34326:164;26164:201;;;;;;;;;;-1:-1:-1;26164:201:0;;;;;:::i;:::-;;:::i;43532:36::-;;;;;;;;;;;;;;;;30233:372;30335:4;-1:-1:-1;;;;;;30372:40:0;;-1:-1:-1;;;30372:40:0;;:105;;-1:-1:-1;;;;;;;30429:48:0;;-1:-1:-1;;;30429:48:0;30372:105;:172;;;-1:-1:-1;;;;;;;30494:50:0;;-1:-1:-1;;;30494:50:0;30372:172;:225;;;-1:-1:-1;;;;;;;;;;13716:40:0;;;30561:36;30352:245;30233:372;-1:-1:-1;;30233:372:0:o;32119:100::-;32173:13;32206:5;32199:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32119:100;:::o;33681:214::-;33749:7;33777:16;33785:7;35721:4;35755:12;-1:-1:-1;35745:22:0;35664:111;33777:16;33769:74;;;;-1:-1:-1;;;33769:74:0;;5980:2:1;33769:74:0;;;5962:21:1;6019:2;5999:18;;;5992:30;6058:34;6038:18;;;6031:62;-1:-1:-1;;;6109:18:1;;;6102:43;6162:19;;33769:74:0;;;;;;;;;-1:-1:-1;33863:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33863:24:0;;33681:214::o;33202:413::-;33275:13;33291:24;33307:7;33291:15;:24::i;:::-;33275:40;;33340:5;-1:-1:-1;;;;;33334:11:0;:2;-1:-1:-1;;;;;33334:11:0;;;33326:58;;;;-1:-1:-1;;;33326:58:0;;6394:2:1;33326:58:0;;;6376:21:1;6433:2;6413:18;;;6406:30;6472:34;6452:18;;;6445:62;-1:-1:-1;;;6523:18:1;;;6516:32;6565:19;;33326:58:0;6192:398:1;33326:58:0;24059:10;-1:-1:-1;;;;;33419:21:0;;;;:62;;-1:-1:-1;33444:37:0;33461:5;24059:10;34326:164;:::i;33444:37::-;33397:169;;;;-1:-1:-1;;;33397:169:0;;6797:2:1;33397:169:0;;;6779:21:1;6836:2;6816:18;;;6809:30;6875:34;6855:18;;;6848:62;6946:27;6926:18;;;6919:55;6991:19;;33397:169:0;6595:421:1;33397:169:0;33579:28;33588:2;33592:7;33601:5;33579:8;:28::i;:::-;33264:351;33202:413;;:::o;34557:170::-;34691:28;34701:4;34707:2;34711:7;34691:9;:28::i;29154:1007::-;29243:7;29279:16;29289:5;29279:9;:16::i;:::-;29271:5;:24;29263:71;;;;-1:-1:-1;;;29263:71:0;;7223:2:1;29263:71:0;;;7205:21:1;7262:2;7242:18;;;7235:30;7301:34;7281:18;;;7274:62;-1:-1:-1;;;7352:18:1;;;7345:32;7394:19;;29263:71:0;7021:398:1;29263:71:0;29345:22;28570:12;;;29345:22;;29608:466;29628:14;29624:1;:18;29608:466;;;29668:31;29702:14;;;:11;:14;;;;;;;;;29668:48;;;;;;;;;-1:-1:-1;;;;;29668:48:0;;;;;-1:-1:-1;;;29668:48:0;;;;;;;;;;;;29739:28;29735:111;;29812:14;;;-1:-1:-1;29735:111:0;29889:5;-1:-1:-1;;;;;29868:26:0;:17;-1:-1:-1;;;;;29868:26:0;;29864:195;;;29938:5;29923:11;:20;29919:85;;;-1:-1:-1;29979:1:0;-1:-1:-1;29972:8:0;;-1:-1:-1;;;29972:8:0;29919:85;30026:13;;;;;29864:195;-1:-1:-1;29644:3:0;;29608:466;;;-1:-1:-1;30097:56:0;;-1:-1:-1;;;30097:56:0;;7626:2:1;30097:56:0;;;7608:21:1;7665:2;7645:18;;;7638:30;7704:34;7684:18;;;7677:62;-1:-1:-1;;;7755:18:1;;;7748:44;7809:19;;30097:56:0;7424:410:1;45331:186:0;25328:6;;-1:-1:-1;;;;;25328:6:0;24059:10;25475:23;25467:68;;;;-1:-1:-1;;;25467:68:0;;;;;;;:::i;:::-;22353:1:::1;22951:7;;:19;;22943:63;;;::::0;-1:-1:-1;;;22943:63:0;;8402:2:1;22943:63:0::1;::::0;::::1;8384:21:1::0;8441:2;8421:18;;;8414:30;8480:33;8460:18;;;8453:61;8531:18;;22943:63:0::1;8200:355:1::0;22943:63:0::1;22353:1;23084:7;:18:::0;45413:49:::2;::::0;45395:12:::2;::::0;45413:10:::2;::::0;45436:21:::2;::::0;45395:12;45413:49;45395:12;45413:49;45436:21;45413:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45394:68;;;45481:7;45473:36;;;::::0;-1:-1:-1;;;45473:36:0;;8972:2:1;45473:36:0::2;::::0;::::2;8954:21:1::0;9011:2;8991:18;;;8984:30;-1:-1:-1;;;9030:18:1;;;9023:46;9086:18;;45473:36:0::2;8770:340:1::0;45473:36:0::2;-1:-1:-1::0;22309:1:0::1;23263:7;:22:::0;45331:186::o;34798:185::-;34936:39;34953:4;34959:2;34963:7;34936:39;;;;;;;;;;;;:16;:39::i;28667:187::-;28734:7;28570:12;;28762:5;:21;28754:69;;;;-1:-1:-1;;;28754:69:0;;9317:2:1;28754:69:0;;;9299:21:1;9356:2;9336:18;;;9329:30;9395:34;9375:18;;;9368:62;-1:-1:-1;;;9446:18:1;;;9439:33;9489:19;;28754:69:0;9115:399:1;28754:69:0;-1:-1:-1;28841:5:0;28667:187::o;31928:124::-;31992:7;32019:20;32031:7;32019:11;:20::i;:::-;:25;;31928:124;-1:-1:-1;;31928:124:0:o;43433:41::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30669:221::-;30733:7;-1:-1:-1;;;;;30761:19:0;;30753:75;;;;-1:-1:-1;;;30753:75:0;;9721:2:1;30753:75:0;;;9703:21:1;9760:2;9740:18;;;9733:30;9799:34;9779:18;;;9772:62;-1:-1:-1;;;9850:18:1;;;9843:41;9901:19;;30753:75:0;9519:407:1;30753:75:0;-1:-1:-1;;;;;;30854:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30854:27:0;;30669:221::o;25906:103::-;25328:6;;-1:-1:-1;;;;;25328:6:0;24059:10;25475:23;25467:68;;;;-1:-1:-1;;;25467:68:0;;;;;;;:::i;:::-;25971:30:::1;25998:1;25971:18;:30::i;:::-;25906:103::o:0;44920:87::-;25328:6;;-1:-1:-1;;;;;25328:6:0;24059:10;25475:23;25467:68;;;;-1:-1:-1;;;25467:68:0;;;;;;;:::i;:::-;44988:11:::1;::::0;;-1:-1:-1;;44973:26:0;::::1;44988:11;::::0;;::::1;44987:12;44973:26;::::0;;44920:87::o;45237:86::-;25328:6;;-1:-1:-1;;;;;25328:6:0;24059:10;25475:23;25467:68;;;;-1:-1:-1;;;25467:68:0;;;;;;;:::i;:::-;45301:5:::1;:14:::0;45237:86::o;32288:104::-;32344:13;32377:7;32370:14;;;;;:::i;44273:639::-;44345:5;;44401:9;;44330:12;;44401:13;;44413:1;44401:13;:::i;:::-;44393:5;44377:13;28543:7;28570:12;;28490:100;44377:13;:21;;;;:::i;:::-;:37;44376:109;;;;-1:-1:-1;44474:10:0;;44451;44433:29;;;;:17;:29;;;;;;:37;;44465:5;;44433:37;:::i;:::-;:51;;44376:109;44361:125;;44503:6;44499:100;;;44567:10;44533:1;44549:29;;;:17;:29;;;;;:38;;44533:1;;-1:-1:-1;44582:5:0;;44533:1;;44549:38;;44582:5;;44549:38;:::i;:::-;;;;-1:-1:-1;;44499:100:0;44632:12;44640:4;44632:5;:12;:::i;:::-;44619:9;:25;;44611:67;;;;-1:-1:-1;;;44611:67:0;;10571:2:1;44611:67:0;;;10553:21:1;10610:2;10590:18;;;10583:30;10649:31;10629:18;;;10622:59;10698:18;;44611:67:0;10369:353:1;44611:67:0;44722:9;;44713:5;44697:13;28543:7;28570:12;;28490:100;44697:13;:21;;;;:::i;:::-;:34;;44689:54;;;;-1:-1:-1;;;44689:54:0;;10929:2:1;44689:54:0;;;10911:21:1;10968:1;10948:18;;;10941:29;-1:-1:-1;;;10986:18:1;;;10979:37;11033:18;;44689:54:0;10727:330:1;44689:54:0;44762:11;;;;44754:49;;;;-1:-1:-1;;;44754:49:0;;11264:2:1;44754:49:0;;;11246:21:1;11303:2;11283:18;;;11276:30;11342:27;11322:18;;;11315:55;11387:18;;44754:49:0;11062:349:1;44754:49:0;44831:8;;44822:5;:17;;44814:49;;;;-1:-1:-1;;;44814:49:0;;11618:2:1;44814:49:0;;;11600:21:1;11657:2;11637:18;;;11630:30;-1:-1:-1;;;11676:18:1;;;11669:49;11735:18;;44814:49:0;11416:343:1;44814:49:0;44876:28;44886:10;44898:5;44876:9;:28::i;45131:98::-;25328:6;;-1:-1:-1;;;;;25328:6:0;24059:10;25475:23;25467:68;;;;-1:-1:-1;;;25467:68:0;;;;;;;:::i;:::-;45203:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45131:98:::0;:::o;33967:288::-;-1:-1:-1;;;;;34062:24:0;;24059:10;34062:24;;34054:63;;;;-1:-1:-1;;;34054:63:0;;11966:2:1;34054:63:0;;;11948:21:1;12005:2;11985:18;;;11978:30;12044:28;12024:18;;;12017:56;12090:18;;34054:63:0;11764:350:1;34054:63:0;24059:10;34130:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34130:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34130:53:0;;;;;;;;;;34199:48;;540:41:1;;;34130:42:0;;24059:10;34199:48;;513:18:1;34199:48:0;;;;;;;33967:288;;:::o;35054:355::-;35213:28;35223:4;35229:2;35233:7;35213:9;:28::i;:::-;35274:48;35297:4;35303:2;35307:7;35316:5;35274:22;:48::i;:::-;35252:149;;;;-1:-1:-1;;;35252:149:0;;;;;;;:::i;:::-;35054:355;;;;:::o;43870:395::-;43944:13;43978:17;43986:8;35721:4;35755:12;-1:-1:-1;35745:22:0;35664:111;43978:17;43970:76;;;;-1:-1:-1;;;43970:76:0;;12741:2:1;43970:76:0;;;12723:21:1;12780:2;12760:18;;;12753:30;12819:34;12799:18;;;12792:62;-1:-1:-1;;;12870:18:1;;;12863:45;12925:19;;43970:76:0;12539:411:1;43970:76:0;44057:28;44088:10;:8;:10::i;:::-;44057:41;;44147:1;44122:14;44116:28;:32;:141;;;;;;;;;;;;;;;;;44188:14;44203:26;44220:8;44203:16;:26::i;:::-;44171:67;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44116:141;44109:148;43870:395;-1:-1:-1;;;43870:395:0:o;26164:201::-;25328:6;;-1:-1:-1;;;;;25328:6:0;24059:10;25475:23;25467:68;;;;-1:-1:-1;;;25467:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26253:22:0;::::1;26245:73;;;::::0;-1:-1:-1;;;26245:73:0;;13799:2:1;26245:73:0::1;::::0;::::1;13781:21:1::0;13838:2;13818:18;;;13811:30;13877:34;13857:18;;;13850:62;-1:-1:-1;;;13928:18:1;;;13921:36;13974:19;;26245:73:0::1;13597:402:1::0;26245:73:0::1;26329:28;26348:8;26329:18;:28::i;:::-;26164:201:::0;:::o;40584:196::-;40699:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40699:29:0;-1:-1:-1;;;;;40699:29:0;;;;;;;;;40744:28;;40699:24;;40744:28;;;;;;;40584:196;;;:::o;38464:2002::-;38579:35;38617:20;38629:7;38617:11;:20::i;:::-;38692:18;;38579:58;;-1:-1:-1;38650:22:0;;-1:-1:-1;;;;;38676:34:0;24059:10;-1:-1:-1;;;;;38676:34:0;;:87;;;-1:-1:-1;24059:10:0;38727:20;38739:7;38727:11;:20::i;:::-;-1:-1:-1;;;;;38727:36:0;;38676:87;:154;;;-1:-1:-1;38797:18:0;;38780:50;;24059:10;34326:164;:::i;38780:50::-;38650:181;;38852:17;38844:80;;;;-1:-1:-1;;;38844:80:0;;14206:2:1;38844:80:0;;;14188:21:1;14245:2;14225:18;;;14218:30;14284:34;14264:18;;;14257:62;-1:-1:-1;;;14335:18:1;;;14328:48;14393:19;;38844:80:0;14004:414:1;38844:80:0;38967:4;-1:-1:-1;;;;;38945:26:0;:13;:18;;;-1:-1:-1;;;;;38945:26:0;;38937:77;;;;-1:-1:-1;;;38937:77:0;;14625:2:1;38937:77:0;;;14607:21:1;14664:2;14644:18;;;14637:30;14703:34;14683:18;;;14676:62;-1:-1:-1;;;14754:18:1;;;14747:36;14800:19;;38937:77:0;14423:402:1;38937:77:0;-1:-1:-1;;;;;39033:16:0;;39025:66;;;;-1:-1:-1;;;39025:66:0;;15032:2:1;39025:66:0;;;15014:21:1;15071:2;15051:18;;;15044:30;15110:34;15090:18;;;15083:62;-1:-1:-1;;;15161:18:1;;;15154:35;15206:19;;39025:66:0;14830:401:1;39025:66:0;39212:49;39229:1;39233:7;39242:13;:18;;;39212:8;:49::i;:::-;-1:-1:-1;;;;;39557:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;39557:31:0;;;-1:-1:-1;;;;;39557:31:0;;;-1:-1:-1;;39557:31:0;;;;;;;39603:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39603:29:0;;;;;;;;;;;;;39649:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39694:61:0;;;;-1:-1:-1;;;39739:15:0;39694:61;;;;;;40029:11;;;40059:24;;;;;:29;40029:11;;40059:29;40055:295;;40127:20;40135:11;35721:4;35755:12;-1:-1:-1;35745:22:0;35664:111;40127:20;40123:212;;;40204:18;;;40172:24;;;:11;:24;;;;;;;;:50;;40287:28;;;;40245:70;;-1:-1:-1;;;40245:70:0;-1:-1:-1;;;;;;40245:70:0;;;-1:-1:-1;;;;;40172:50:0;;;40245:70;;;;;;;40123:212;39532:829;40397:7;40393:2;-1:-1:-1;;;;;40378:27:0;40387:4;-1:-1:-1;;;;;40378:27:0;;;;;;;;;;;40416:42;38568:1898;;38464:2002;;;:::o;31329:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;31432:16:0;31440:7;35721:4;35755:12;-1:-1:-1;35745:22:0;35664:111;31432:16;31424:71;;;;-1:-1:-1;;;31424:71:0;;15438:2:1;31424:71:0;;;15420:21:1;15477:2;15457:18;;;15450:30;15516:34;15496:18;;;15489:62;-1:-1:-1;;;15567:18:1;;;15560:40;15617:19;;31424:71:0;15236:406:1;31424:71:0;31553:7;31533:245;31600:31;31634:17;;;:11;:17;;;;;;;;;31600:51;;;;;;;;;-1:-1:-1;;;;;31600:51:0;;;;;-1:-1:-1;;;31600:51:0;;;;;;;;;;;;31674:28;31670:93;;31734:9;31329:537;-1:-1:-1;;;31329:537:0:o;31670:93::-;-1:-1:-1;;;31573:6:0;31533:245;;26525:191;26618:6;;;-1:-1:-1;;;;;26635:17:0;;;-1:-1:-1;;;;;;26635:17:0;;;;;;;26668:40;;26618:6;;;26635:17;26618:6;;26668:40;;26599:16;;26668:40;26588:128;26525:191;:::o;35783:104::-;35852:27;35862:2;35866:8;35852:27;;;;;;;;;;;;:9;:27::i;41345:804::-;41500:4;-1:-1:-1;;;;;41521:13:0;;3796:19;:23;41517:625;;41557:72;;-1:-1:-1;;;41557:72:0;;-1:-1:-1;;;;;41557:36:0;;;;;:72;;24059:10;;41608:4;;41614:7;;41623:5;;41557:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41557:72:0;;;;;;;;-1:-1:-1;;41557:72:0;;;;;;;;;;;;:::i;:::-;;;41553:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41803:13:0;;41799:273;;41846:61;;-1:-1:-1;;;41846:61:0;;;;;;;:::i;41799:273::-;42022:6;42016:13;42007:6;42003:2;41999:15;41992:38;41553:534;-1:-1:-1;;;;;;41680:55:0;-1:-1:-1;;;41680:55:0;;-1:-1:-1;41673:62:0;;41517:625;-1:-1:-1;42126:4:0;41517:625;41345:804;;;;;;:::o;45015:108::-;45075:13;45108:7;45101:14;;;;;:::i;509:723::-;565:13;786:10;782:53;;-1:-1:-1;;813:10:0;;;;;;;;;;;;-1:-1:-1;;;813:10:0;;;;;509:723::o;782:53::-;860:5;845:12;901:78;908:9;;901:78;;934:8;;;;:::i;:::-;;-1:-1:-1;957:10:0;;-1:-1:-1;965:2:0;957:10;;:::i;:::-;;;901:78;;;989:19;1021:6;1011:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1011:17:0;;989:39;;1039:154;1046:10;;1039:154;;1073:11;1083:1;1073:11;;:::i;:::-;;-1:-1:-1;1142:10:0;1150:2;1142:5;:10;:::i;:::-;1129:24;;:2;:24;:::i;:::-;1116:39;;1099:6;1106;1099:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1099:56:0;;;;;;;;-1:-1:-1;1170:11:0;1179:2;1170:11;;:::i;:::-;;;1039:154;;36250:163;36373:32;36379:2;36383:8;36393:5;36400:4;36811:20;36834:12;-1:-1:-1;;;;;36865:16:0;;36857:62;;;;-1:-1:-1;;;36857:62:0;;17789:2:1;36857:62:0;;;17771:21:1;17828:2;17808:18;;;17801:30;17867:34;17847:18;;;17840:62;-1:-1:-1;;;17918:18:1;;;17911:31;17959:19;;36857:62:0;17587:397:1;36857:62:0;36938:13;36930:66;;;;-1:-1:-1;;;36930:66:0;;18191:2:1;36930:66:0;;;18173:21:1;18230:2;18210:18;;;18203:30;18269:34;18249:18;;;18242:62;-1:-1:-1;;;18320:18:1;;;18313:38;18368:19;;36930:66:0;17989:404:1;36930:66:0;-1:-1:-1;;;;;37348:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;37348:45:0;;-1:-1:-1;;;;;37348:45:0;;;;;;;;;;37408:50;;;;;;;;;;;;;;37475:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;37525:66:0;;;;-1:-1:-1;;;37575:15:0;37525:66;;;;;;;37475:25;;37660:415;37680:8;37676:1;:12;37660:415;;;37719:38;;37744:12;;-1:-1:-1;;;;;37719:38:0;;;37736:1;;37719:38;;37736:1;;37719:38;37780:4;37776:249;;;37843:59;37874:1;37878:2;37882:12;37896:5;37843:22;:59::i;:::-;37809:196;;;;-1:-1:-1;;;37809:196:0;;;;;;;:::i;:::-;38045:14;;;;;37690:3;37660:415;;;-1:-1:-1;38091:12:0;:27;38142:60;35054:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;7839:356::-;8041:2;8023:21;;;8060:18;;;8053:30;8119:34;8114:2;8099:18;;8092:62;8186:2;8171:18;;7839:356::o;9931:127::-;9992:10;9987:3;9983:20;9980:1;9973:31;10023:4;10020:1;10013:15;10047:4;10044:1;10037:15;10063:128;10103:3;10134:1;10130:6;10127:1;10124:13;10121:39;;;10140:18;;:::i;:::-;-1:-1:-1;10176:9:1;;10063:128::o;10196:168::-;10236:7;10302:1;10298;10294:6;10290:14;10287:1;10284:21;10279:1;10272:9;10265:17;10261:45;10258:71;;;10309:18;;:::i;:::-;-1:-1:-1;10349:9:1;;10196:168::o;12119:415::-;12321:2;12303:21;;;12360:2;12340:18;;;12333:30;12399:34;12394:2;12379:18;;12372:62;-1:-1:-1;;;12465:2:1;12450:18;;12443:49;12524:3;12509:19;;12119:415::o;12955:637::-;13235:3;13273:6;13267:13;13289:53;13335:6;13330:3;13323:4;13315:6;13311:17;13289:53;:::i;:::-;13405:13;;13364:16;;;;13427:57;13405:13;13364:16;13461:4;13449:17;;13427:57;:::i;:::-;-1:-1:-1;;;13506:20:1;;13535:22;;;13584:1;13573:13;;12955:637;-1:-1:-1;;;;12955:637:1:o;16063:489::-;-1:-1:-1;;;;;16332:15:1;;;16314:34;;16384:15;;16379:2;16364:18;;16357:43;16431:2;16416:18;;16409:34;;;16479:3;16474:2;16459:18;;16452:31;;;16257:4;;16500:46;;16526:19;;16518:6;16500:46;:::i;:::-;16492:54;16063:489;-1:-1:-1;;;;;;16063:489:1:o;16557:249::-;16626:6;16679:2;16667:9;16658:7;16654:23;16650:32;16647:52;;;16695:1;16692;16685:12;16647:52;16727:9;16721:16;16746:30;16770:5;16746:30;:::i;16811:135::-;16850:3;-1:-1:-1;;16871:17:1;;16868:43;;;16891:18;;:::i;:::-;-1:-1:-1;16938:1:1;16927:13;;16811:135::o;16951:127::-;17012:10;17007:3;17003:20;17000:1;16993:31;17043:4;17040:1;17033:15;17067:4;17064:1;17057:15;17083:120;17123:1;17149;17139:35;;17154:18;;:::i;:::-;-1:-1:-1;17188:9:1;;17083:120::o;17208:125::-;17248:4;17276:1;17273;17270:8;17267:34;;;17281:18;;:::i;:::-;-1:-1:-1;17318:9:1;;17208:125::o;17338:112::-;17370:1;17396;17386:35;;17401:18;;:::i;:::-;-1:-1:-1;17435:9:1;;17338:112::o;17455:127::-;17516:10;17511:3;17507:20;17504:1;17497:31;17547:4;17544:1;17537:15;17571:4;17568:1;17561:15

Swarm Source

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