ETH Price: $3,421.18 (-2.19%)
Gas: 5 Gwei

Token

zoblins (zoblins)
 

Overview

Max Total Supply

999 zoblins

Holders

488

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 zoblins
0x170fcd5c519bcc48068a1b177edbb6c16b792b88
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Zoblins are a free mint from the team behind Zimmy Raiders. They take advantage of cc0 but use entirely hand drawn traits.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
zoblins

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.4;

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @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..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 internal _burnCounter;

    // 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) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * 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 tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // 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.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @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) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        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.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 virtual override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 && !_ownerships[tokenId].burned;
    }

    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;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _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 > 3.4e38 (2**128) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(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 && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(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 ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _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**128.
        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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), 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**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn 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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

    /**
     * @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 TransferToNonERC721ReceiverImplementer();
                } 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.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract zoblins is ERC721A, Ownable {
    uint256 public constant MAX_SUPPLY = 999;
    uint256 public mintRate = 0 ether;

    bool public saleIsActive = false;
    string public baseURI;

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

    function mint(uint256 quantity) external payable {
        // _safeMint's second argument now takes in a quantity, not a tokenId.
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        require(msg.value >= (mintRate * quantity), "Not enough ether sent");
        require(saleIsActive, "Public mint period not active");
        _safeMint(msg.sender, quantity);
    }

    function withdraw() external payable onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

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

    function setMintRate(uint256 _mintRate) public onlyOwner {
        mintRate = _mintRate;
    }

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

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintRate","type":"uint256"}],"name":"setMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260006008556009805460ff191690553480156200002057600080fd5b506040805180820182526007808252667a6f626c696e7360c81b6020808401828152855180870190965292855284015281519192916200006391600191620000f2565b50805162000079906002906020840190620000f2565b50505062000096620000906200009c60201b60201c565b620000a0565b620001d5565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001009062000198565b90600052602060002090601f0160209004810192826200012457600085556200016f565b82601f106200013f57805160ff19168380011785556200016f565b828001600101855582156200016f579182015b828111156200016f57825182559160200191906001019062000152565b506200017d92915062000181565b5090565b5b808211156200017d576000815560010162000182565b600181811c90821680620001ad57607f821691505b60208210811415620001cf57634e487b7160e01b600052602260045260246000fd5b50919050565b611bdd80620001e56000396000f3fe6080604052600436106101b75760003560e01c80636c0360eb116100ec578063b88d4fde1161008a578063dbe2193f11610064578063dbe2193f146104a3578063e985e9c5146104c3578063eb8d24441461050c578063f2fde38b1461052657600080fd5b8063b88d4fde1461044d578063c87b56dd1461046d578063ca0dcf161461048d57600080fd5b80638da5cb5b116100c65780638da5cb5b146103e757806395d89b4114610405578063a0712d681461041a578063a22cb4651461042d57600080fd5b80636c0360eb1461039d57806370a08231146103b2578063715018a6146103d257600080fd5b806332cb6b0c1161015957806342842e0e1161013357806342842e0e1461031d5780634f6ccce71461033d57806355f804b31461035d5780636352211e1461037d57600080fd5b806332cb6b0c146102ea57806334918dfd146103005780633ccfd60b1461031557600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806323b872dd146102aa5780632f745c59146102ca57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046118e1565b610546565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105b3565b6040516101e89190611a0f565b34801561021f57600080fd5b5061023361022e36600461195f565b610645565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b6102663660046118b8565b610689565b005b34801561027957600080fd5b5061029c6000546001600160801b03600160801b82048116918116919091031690565b6040519081526020016101e8565b3480156102b657600080fd5b5061026b6102c53660046117ca565b610717565b3480156102d657600080fd5b5061029c6102e53660046118b8565b610722565b3480156102f657600080fd5b5061029c6103e781565b34801561030c57600080fd5b5061026b61081f565b61026b610866565b34801561032957600080fd5b5061026b6103383660046117ca565b6108cc565b34801561034957600080fd5b5061029c61035836600461195f565b6108e7565b34801561036957600080fd5b5061026b610378366004611919565b610992565b34801561038957600080fd5b5061023361039836600461195f565b6109d3565b3480156103a957600080fd5b506102066109e5565b3480156103be57600080fd5b5061029c6103cd36600461177e565b610a73565b3480156103de57600080fd5b5061026b610ac2565b3480156103f357600080fd5b506007546001600160a01b0316610233565b34801561041157600080fd5b50610206610af8565b61026b61042836600461195f565b610b07565b34801561043957600080fd5b5061026b61044836600461187e565b610c2f565b34801561045957600080fd5b5061026b610468366004611805565b610cc5565b34801561047957600080fd5b5061020661048836600461195f565b610cff565b34801561049957600080fd5b5061029c60085481565b3480156104af57600080fd5b5061026b6104be36600461195f565b610d84565b3480156104cf57600080fd5b506101dc6104de366004611798565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561051857600080fd5b506009546101dc9060ff1681565b34801561053257600080fd5b5061026b61054136600461177e565b610db3565b60006001600160e01b031982166380ac58cd60e01b148061057757506001600160e01b03198216635b5e139f60e01b145b8061059257506001600160e01b0319821663780e9d6360e01b145b806105ad57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105c290611ae5565b80601f01602080910402602001604051908101604052809291908181526020018280546105ee90611ae5565b801561063b5780601f106106105761010080835404028352916020019161063b565b820191906000526020600020905b81548152906001019060200180831161061e57829003601f168201915b5050505050905090565b600061065082610e4b565b61066d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610694826109d3565b9050806001600160a01b0316836001600160a01b031614156106c95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106e957506106e781336104de565b155b15610707576040516367d9dca160e11b815260040160405180910390fd5b610712838383610e7f565b505050565b610712838383610edb565b600061072d83610a73565b821061074c576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b8381101561081957600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615801592820192909252906107c55750610811565b80516001600160a01b0316156107da57805192505b876001600160a01b0316836001600160a01b0316141561080f5786841415610808575093506105ad92505050565b6001909301925b505b60010161075d565b50600080fd5b6007546001600160a01b031633146108525760405162461bcd60e51b815260040161084990611a22565b60405180910390fd5b6009805460ff19811660ff90911615179055565b6007546001600160a01b031633146108905760405162461bcd60e51b815260040161084990611a22565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156108c9573d6000803e3d6000fd5b50565b61071283838360405180602001604052806000815250610cc5565b600080546001600160801b031681805b8281101561097857600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061096f57858314156109685750949350505050565b6001909201915b506001016108f7565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b031633146109bc5760405162461bcd60e51b815260040161084990611a22565b80516109cf90600a906020840190611653565b5050565b60006109de826110fa565b5192915050565b600a80546109f290611ae5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1e90611ae5565b8015610a6b5780601f10610a4057610100808354040283529160200191610a6b565b820191906000526020600020905b815481529060010190602001808311610a4e57829003601f168201915b505050505081565b60006001600160a01b038216610a9c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610aec5760405162461bcd60e51b815260040161084990611a22565b610af6600061121e565b565b6060600280546105c290611ae5565b6103e781610b2d6000546001600160801b03600160801b82048116918116919091031690565b610b379190611a57565b1115610b7e5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610849565b80600854610b8c9190611a83565b341015610bd35760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610849565b60095460ff16610c255760405162461bcd60e51b815260206004820152601d60248201527f5075626c6963206d696e7420706572696f64206e6f74206163746976650000006044820152606401610849565b6108c93382611270565b6001600160a01b038216331415610c595760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cd0848484610edb565b610cdc8484848461128a565b610cf9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d0a82610e4b565b610d2757604051630a14c4b560e41b815260040160405180910390fd5b6000610d31611399565b9050805160001415610d525760405180602001604052806000815250610d7d565b80610d5c846113a8565b604051602001610d6d9291906119a3565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610dae5760405162461bcd60e51b815260040161084990611a22565b600855565b6007546001600160a01b03163314610ddd5760405162461bcd60e51b815260040161084990611a22565b6001600160a01b038116610e425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610849565b6108c98161121e565b600080546001600160801b0316821080156105ad575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610ee6826110fa565b80519091506000906001600160a01b0316336001600160a01b03161480610f1457508151610f1490336104de565b80610f2f575033610f2484610645565b6001600160a01b0316145b905080610f4f57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610f845760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610fab57604051633a954ecd60e21b815260040160405180910390fd5b610fbb6000848460000151610e7f565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166110b0576000546001600160801b03168110156110b0578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561120557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906112035780516001600160a01b031615611199579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156111fe579392505050565b611199565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109cf8282604051806020016040528060008152506114c2565b60006001600160a01b0384163b1561138d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906112ce9033908990889088906004016119d2565b602060405180830381600087803b1580156112e857600080fd5b505af1925050508015611318575060408051601f3d908101601f19168201909252611315918101906118fd565b60015b611373573d808015611346576040519150601f19603f3d011682016040523d82523d6000602084013e61134b565b606091505b50805161136b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611391565b5060015b949350505050565b6060600a80546105c290611ae5565b6060816113cc5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113f657806113e081611b20565b91506113ef9050600a83611a6f565b91506113d0565b60008167ffffffffffffffff81111561141f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611449576020820181803683370190505b5090505b84156113915761145e600183611aa2565b915061146b600a86611b3b565b611476906030611a57565b60f81b81838151811061149957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506114bb600a86611a6f565b945061144d565b61071283838360016000546001600160801b03166001600160a01b0385166114fc57604051622e076360e81b815260040160405180910390fd5b8361151a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b0319811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561162d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156116035750611601600088848861128a565b155b15611621576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016115ac565b50600080546001600160801b0319166001600160801b03929092169190911790556110f3565b82805461165f90611ae5565b90600052602060002090601f01602090048101928261168157600085556116c7565b82601f1061169a57805160ff19168380011785556116c7565b828001600101855582156116c7579182015b828111156116c75782518255916020019190600101906116ac565b506116d39291506116d7565b5090565b5b808211156116d357600081556001016116d8565b600067ffffffffffffffff8084111561170757611707611b7b565b604051601f8501601f19908116603f0116810190828211818310171561172f5761172f611b7b565b8160405280935085815286868601111561174857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461177957600080fd5b919050565b60006020828403121561178f578081fd5b610d7d82611762565b600080604083850312156117aa578081fd5b6117b383611762565b91506117c160208401611762565b90509250929050565b6000806000606084860312156117de578081fd5b6117e784611762565b92506117f560208501611762565b9150604084013590509250925092565b6000806000806080858703121561181a578081fd5b61182385611762565b935061183160208601611762565b925060408501359150606085013567ffffffffffffffff811115611853578182fd5b8501601f81018713611863578182fd5b611872878235602084016116ec565b91505092959194509250565b60008060408385031215611890578182fd5b61189983611762565b9150602083013580151581146118ad578182fd5b809150509250929050565b600080604083850312156118ca578182fd5b6118d383611762565b946020939093013593505050565b6000602082840312156118f2578081fd5b8135610d7d81611b91565b60006020828403121561190e578081fd5b8151610d7d81611b91565b60006020828403121561192a578081fd5b813567ffffffffffffffff811115611940578182fd5b8201601f81018413611950578182fd5b611391848235602084016116ec565b600060208284031215611970578081fd5b5035919050565b6000815180845261198f816020860160208601611ab9565b601f01601f19169290920160200192915050565b600083516119b5818460208801611ab9565b8351908301906119c9818360208801611ab9565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a0590830184611977565b9695505050505050565b602081526000610d7d6020830184611977565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611a6a57611a6a611b4f565b500190565b600082611a7e57611a7e611b65565b500490565b6000816000190483118215151615611a9d57611a9d611b4f565b500290565b600082821015611ab457611ab4611b4f565b500390565b60005b83811015611ad4578181015183820152602001611abc565b83811115610cf95750506000910152565b600181811c90821680611af957607f821691505b60208210811415611b1a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b3457611b34611b4f565b5060010190565b600082611b4a57611b4a611b65565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108c957600080fdfea264697066735822122047a3ba70915f8e4f374e36c7c0f71e59cfe20546ed87c606a555619d1df1459364736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636c0360eb116100ec578063b88d4fde1161008a578063dbe2193f11610064578063dbe2193f146104a3578063e985e9c5146104c3578063eb8d24441461050c578063f2fde38b1461052657600080fd5b8063b88d4fde1461044d578063c87b56dd1461046d578063ca0dcf161461048d57600080fd5b80638da5cb5b116100c65780638da5cb5b146103e757806395d89b4114610405578063a0712d681461041a578063a22cb4651461042d57600080fd5b80636c0360eb1461039d57806370a08231146103b2578063715018a6146103d257600080fd5b806332cb6b0c1161015957806342842e0e1161013357806342842e0e1461031d5780634f6ccce71461033d57806355f804b31461035d5780636352211e1461037d57600080fd5b806332cb6b0c146102ea57806334918dfd146103005780633ccfd60b1461031557600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806323b872dd146102aa5780632f745c59146102ca57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046118e1565b610546565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105b3565b6040516101e89190611a0f565b34801561021f57600080fd5b5061023361022e36600461195f565b610645565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b6102663660046118b8565b610689565b005b34801561027957600080fd5b5061029c6000546001600160801b03600160801b82048116918116919091031690565b6040519081526020016101e8565b3480156102b657600080fd5b5061026b6102c53660046117ca565b610717565b3480156102d657600080fd5b5061029c6102e53660046118b8565b610722565b3480156102f657600080fd5b5061029c6103e781565b34801561030c57600080fd5b5061026b61081f565b61026b610866565b34801561032957600080fd5b5061026b6103383660046117ca565b6108cc565b34801561034957600080fd5b5061029c61035836600461195f565b6108e7565b34801561036957600080fd5b5061026b610378366004611919565b610992565b34801561038957600080fd5b5061023361039836600461195f565b6109d3565b3480156103a957600080fd5b506102066109e5565b3480156103be57600080fd5b5061029c6103cd36600461177e565b610a73565b3480156103de57600080fd5b5061026b610ac2565b3480156103f357600080fd5b506007546001600160a01b0316610233565b34801561041157600080fd5b50610206610af8565b61026b61042836600461195f565b610b07565b34801561043957600080fd5b5061026b61044836600461187e565b610c2f565b34801561045957600080fd5b5061026b610468366004611805565b610cc5565b34801561047957600080fd5b5061020661048836600461195f565b610cff565b34801561049957600080fd5b5061029c60085481565b3480156104af57600080fd5b5061026b6104be36600461195f565b610d84565b3480156104cf57600080fd5b506101dc6104de366004611798565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561051857600080fd5b506009546101dc9060ff1681565b34801561053257600080fd5b5061026b61054136600461177e565b610db3565b60006001600160e01b031982166380ac58cd60e01b148061057757506001600160e01b03198216635b5e139f60e01b145b8061059257506001600160e01b0319821663780e9d6360e01b145b806105ad57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105c290611ae5565b80601f01602080910402602001604051908101604052809291908181526020018280546105ee90611ae5565b801561063b5780601f106106105761010080835404028352916020019161063b565b820191906000526020600020905b81548152906001019060200180831161061e57829003601f168201915b5050505050905090565b600061065082610e4b565b61066d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610694826109d3565b9050806001600160a01b0316836001600160a01b031614156106c95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106e957506106e781336104de565b155b15610707576040516367d9dca160e11b815260040160405180910390fd5b610712838383610e7f565b505050565b610712838383610edb565b600061072d83610a73565b821061074c576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b8381101561081957600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615801592820192909252906107c55750610811565b80516001600160a01b0316156107da57805192505b876001600160a01b0316836001600160a01b0316141561080f5786841415610808575093506105ad92505050565b6001909301925b505b60010161075d565b50600080fd5b6007546001600160a01b031633146108525760405162461bcd60e51b815260040161084990611a22565b60405180910390fd5b6009805460ff19811660ff90911615179055565b6007546001600160a01b031633146108905760405162461bcd60e51b815260040161084990611a22565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156108c9573d6000803e3d6000fd5b50565b61071283838360405180602001604052806000815250610cc5565b600080546001600160801b031681805b8281101561097857600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061096f57858314156109685750949350505050565b6001909201915b506001016108f7565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b031633146109bc5760405162461bcd60e51b815260040161084990611a22565b80516109cf90600a906020840190611653565b5050565b60006109de826110fa565b5192915050565b600a80546109f290611ae5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1e90611ae5565b8015610a6b5780601f10610a4057610100808354040283529160200191610a6b565b820191906000526020600020905b815481529060010190602001808311610a4e57829003601f168201915b505050505081565b60006001600160a01b038216610a9c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610aec5760405162461bcd60e51b815260040161084990611a22565b610af6600061121e565b565b6060600280546105c290611ae5565b6103e781610b2d6000546001600160801b03600160801b82048116918116919091031690565b610b379190611a57565b1115610b7e5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610849565b80600854610b8c9190611a83565b341015610bd35760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610849565b60095460ff16610c255760405162461bcd60e51b815260206004820152601d60248201527f5075626c6963206d696e7420706572696f64206e6f74206163746976650000006044820152606401610849565b6108c93382611270565b6001600160a01b038216331415610c595760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cd0848484610edb565b610cdc8484848461128a565b610cf9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d0a82610e4b565b610d2757604051630a14c4b560e41b815260040160405180910390fd5b6000610d31611399565b9050805160001415610d525760405180602001604052806000815250610d7d565b80610d5c846113a8565b604051602001610d6d9291906119a3565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610dae5760405162461bcd60e51b815260040161084990611a22565b600855565b6007546001600160a01b03163314610ddd5760405162461bcd60e51b815260040161084990611a22565b6001600160a01b038116610e425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610849565b6108c98161121e565b600080546001600160801b0316821080156105ad575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610ee6826110fa565b80519091506000906001600160a01b0316336001600160a01b03161480610f1457508151610f1490336104de565b80610f2f575033610f2484610645565b6001600160a01b0316145b905080610f4f57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610f845760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610fab57604051633a954ecd60e21b815260040160405180910390fd5b610fbb6000848460000151610e7f565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166110b0576000546001600160801b03168110156110b0578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561120557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906112035780516001600160a01b031615611199579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156111fe579392505050565b611199565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109cf8282604051806020016040528060008152506114c2565b60006001600160a01b0384163b1561138d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906112ce9033908990889088906004016119d2565b602060405180830381600087803b1580156112e857600080fd5b505af1925050508015611318575060408051601f3d908101601f19168201909252611315918101906118fd565b60015b611373573d808015611346576040519150601f19603f3d011682016040523d82523d6000602084013e61134b565b606091505b50805161136b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611391565b5060015b949350505050565b6060600a80546105c290611ae5565b6060816113cc5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113f657806113e081611b20565b91506113ef9050600a83611a6f565b91506113d0565b60008167ffffffffffffffff81111561141f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611449576020820181803683370190505b5090505b84156113915761145e600183611aa2565b915061146b600a86611b3b565b611476906030611a57565b60f81b81838151811061149957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506114bb600a86611a6f565b945061144d565b61071283838360016000546001600160801b03166001600160a01b0385166114fc57604051622e076360e81b815260040160405180910390fd5b8361151a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b0319811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561162d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156116035750611601600088848861128a565b155b15611621576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016115ac565b50600080546001600160801b0319166001600160801b03929092169190911790556110f3565b82805461165f90611ae5565b90600052602060002090601f01602090048101928261168157600085556116c7565b82601f1061169a57805160ff19168380011785556116c7565b828001600101855582156116c7579182015b828111156116c75782518255916020019190600101906116ac565b506116d39291506116d7565b5090565b5b808211156116d357600081556001016116d8565b600067ffffffffffffffff8084111561170757611707611b7b565b604051601f8501601f19908116603f0116810190828211818310171561172f5761172f611b7b565b8160405280935085815286868601111561174857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461177957600080fd5b919050565b60006020828403121561178f578081fd5b610d7d82611762565b600080604083850312156117aa578081fd5b6117b383611762565b91506117c160208401611762565b90509250929050565b6000806000606084860312156117de578081fd5b6117e784611762565b92506117f560208501611762565b9150604084013590509250925092565b6000806000806080858703121561181a578081fd5b61182385611762565b935061183160208601611762565b925060408501359150606085013567ffffffffffffffff811115611853578182fd5b8501601f81018713611863578182fd5b611872878235602084016116ec565b91505092959194509250565b60008060408385031215611890578182fd5b61189983611762565b9150602083013580151581146118ad578182fd5b809150509250929050565b600080604083850312156118ca578182fd5b6118d383611762565b946020939093013593505050565b6000602082840312156118f2578081fd5b8135610d7d81611b91565b60006020828403121561190e578081fd5b8151610d7d81611b91565b60006020828403121561192a578081fd5b813567ffffffffffffffff811115611940578182fd5b8201601f81018413611950578182fd5b611391848235602084016116ec565b600060208284031215611970578081fd5b5035919050565b6000815180845261198f816020860160208601611ab9565b601f01601f19169290920160200192915050565b600083516119b5818460208801611ab9565b8351908301906119c9818360208801611ab9565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a0590830184611977565b9695505050505050565b602081526000610d7d6020830184611977565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611a6a57611a6a611b4f565b500190565b600082611a7e57611a7e611b65565b500490565b6000816000190483118215151615611a9d57611a9d611b4f565b500290565b600082821015611ab457611ab4611b4f565b500390565b60005b83811015611ad4578181015183820152602001611abc565b83811115610cf95750506000910152565b600181811c90821680611af957607f821691505b60208210811415611b1a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b3457611b34611b4f565b5060010190565b600082611b4a57611b4a611b65565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108c957600080fdfea264697066735822122047a3ba70915f8e4f374e36c7c0f71e59cfe20546ed87c606a555619d1df1459364736f6c63430008040033

Deployed Bytecode Sourcemap

44852:1193:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28390:372;;;;;;;;;;-1:-1:-1;28390:372:0;;;;;:::i;:::-;;:::i;:::-;;;5796:14:1;;5789:22;5771:41;;5759:2;5744:18;28390:372:0;;;;;;;;31000:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32503:204::-;;;;;;;;;;-1:-1:-1;32503:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5094:32:1;;;5076:51;;5064:2;5049:18;32503:204:0;5031:102:1;32066:371:0;;;;;;;;;;-1:-1:-1;32066:371:0;;;;;:::i;:::-;;:::i;:::-;;25627:280;;;;;;;;;;;;25680:7;25872:12;-1:-1:-1;;;;;;;;25872:12:0;;;;25856:13;;;:28;;;;25849:35;;25627:280;;;;8020:25:1;;;8008:2;7993:18;25627:280:0;7975:76:1;33360:170:0;;;;;;;;;;-1:-1:-1;33360:170:0;;;;;:::i;:::-;;:::i;27213:1105::-;;;;;;;;;;-1:-1:-1;27213:1105:0;;;;;:::i;:::-;;:::i;44896:40::-;;;;;;;;;;;;44933:3;44896:40;;45953:89;;;;;;;;;;;;;:::i;45523:114::-;;;:::i;33601:185::-;;;;;;;;;;-1:-1:-1;33601:185:0;;;;;:::i;:::-;;:::i;26200:713::-;;;;;;;;;;-1:-1:-1;26200:713:0;;;;;:::i;:::-;;:::i;45857:88::-;;;;;;;;;;-1:-1:-1;45857:88:0;;;;;:::i;:::-;;:::i;30809:124::-;;;;;;;;;;-1:-1:-1;30809:124:0;;;;;:::i;:::-;;:::i;45024:21::-;;;;;;;;;;;;;:::i;28826:206::-;;;;;;;;;;-1:-1:-1;28826:206:0;;;;;:::i;:::-;;:::i;21632:103::-;;;;;;;;;;;;;:::i;20981:87::-;;;;;;;;;;-1:-1:-1;21054:6:0;;-1:-1:-1;;;;;21054:6:0;20981:87;;31169:104;;;;;;;;;;;;;:::i;45108:407::-;;;;;;:::i;:::-;;:::i;32779:279::-;;;;;;;;;;-1:-1:-1;32779:279:0;;;;;:::i;:::-;;:::i;33857:342::-;;;;;;;;;;-1:-1:-1;33857:342:0;;;;;:::i;:::-;;:::i;31344:318::-;;;;;;;;;;-1:-1:-1;31344:318:0;;;;;:::i;:::-;;:::i;44943:33::-;;;;;;;;;;;;;;;;45753:96;;;;;;;;;;-1:-1:-1;45753:96:0;;;;;:::i;:::-;;:::i;33129:164::-;;;;;;;;;;-1:-1:-1;33129:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33250:25:0;;;33226:4;33250:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33129:164;44985:32;;;;;;;;;;-1:-1:-1;44985:32:0;;;;;;;;21890:201;;;;;;;;;;-1:-1:-1;21890:201:0;;;;;:::i;:::-;;:::i;28390:372::-;28492:4;-1:-1:-1;;;;;;28529:40:0;;-1:-1:-1;;;28529:40:0;;:105;;-1:-1:-1;;;;;;;28586:48:0;;-1:-1:-1;;;28586:48:0;28529:105;:172;;;-1:-1:-1;;;;;;;28651:50:0;;-1:-1:-1;;;28651:50:0;28529:172;:225;;;-1:-1:-1;;;;;;;;;;13704:40:0;;;28718:36;28509:245;28390:372;-1:-1:-1;;28390:372:0:o;31000:100::-;31054:13;31087:5;31080:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31000:100;:::o;32503:204::-;32571:7;32596:16;32604:7;32596;:16::i;:::-;32591:64;;32621:34;;-1:-1:-1;;;32621:34:0;;;;;;;;;;;32591:64;-1:-1:-1;32675:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32675:24:0;;32503:204::o;32066:371::-;32139:13;32155:24;32171:7;32155:15;:24::i;:::-;32139:40;;32200:5;-1:-1:-1;;;;;32194:11:0;:2;-1:-1:-1;;;;;32194:11:0;;32190:48;;;32214:24;;-1:-1:-1;;;32214:24:0;;;;;;;;;;;32190:48;9947:10;-1:-1:-1;;;;;32255:21:0;;;;;;:63;;-1:-1:-1;32281:37:0;32298:5;9947:10;33129:164;:::i;32281:37::-;32280:38;32255:63;32251:138;;;32342:35;;-1:-1:-1;;;32342:35:0;;;;;;;;;;;32251:138;32401:28;32410:2;32414:7;32423:5;32401:8;:28::i;:::-;32066:371;;;:::o;33360:170::-;33494:28;33504:4;33510:2;33514:7;33494:9;:28::i;27213:1105::-;27302:7;27335:16;27345:5;27335:9;:16::i;:::-;27326:5;:25;27322:61;;27360:23;;-1:-1:-1;;;27360:23:0;;;;;;;;;;;27322:61;27394:22;27419:13;;-1:-1:-1;;;;;27419:13:0;;27394:22;;27669:557;27689:14;27685:1;:18;27669:557;;;27729:31;27763:14;;;:11;:14;;;;;;;;;27729:48;;;;;;;;;-1:-1:-1;;;;;27729:48:0;;;;-1:-1:-1;;;27729:48:0;;;;;;;;;;;-1:-1:-1;;;27729:48:0;;;;;;;;;;;;;;;;27796:73;;27841:8;;;27796:73;27891:14;;-1:-1:-1;;;;;27891:28:0;;27887:111;;27964:14;;;-1:-1:-1;27887:111:0;28041:5;-1:-1:-1;;;;;28020:26:0;:17;-1:-1:-1;;;;;28020:26:0;;28016:195;;;28090:5;28075:11;:20;28071:85;;;-1:-1:-1;28131:1:0;-1:-1:-1;28124:8:0;;-1:-1:-1;;;28124:8:0;28071:85;28178:13;;;;;28016:195;27669:557;;27705:3;;27669:557;;;;28302:8;;;45953:89;21054:6;;-1:-1:-1;;;;;21054:6:0;9947:10;21201:23;21193:68;;;;-1:-1:-1;;;21193:68:0;;;;;;;:::i;:::-;;;;;;;;;46022:12:::1;::::0;;-1:-1:-1;;46006:28:0;::::1;46022:12;::::0;;::::1;46021:13;46006:28;::::0;;45953:89::o;45523:114::-;21054:6;;-1:-1:-1;;;;;21054:6:0;9947:10;21201:23;21193:68;;;;-1:-1:-1;;;21193:68:0;;;;;;;:::i;:::-;21054:6;;45581:48:::1;::::0;-1:-1:-1;;;;;21054:6:0;;;;45607:21:::1;45581:48:::0;::::1;;;::::0;::::1;::::0;;;45607:21;21054:6;45581:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;45523:114::o:0;33601:185::-;33739:39;33756:4;33762:2;33766:7;33739:39;;;;;;;;;;;;:16;:39::i;26200:713::-;26267:7;26312:13;;-1:-1:-1;;;;;26312:13:0;26267:7;;26526:328;26546:14;26542:1;:18;26526:328;;;26586:31;26620:14;;;:11;:14;;;;;;;;;26586:48;;;;;;;;;-1:-1:-1;;;;;26586:48:0;;;;-1:-1:-1;;;26586:48:0;;;;;;;;;;;-1:-1:-1;;;26586:48:0;;;;;;;;;;;;;;26653:186;;26718:5;26703:11;:20;26699:85;;;-1:-1:-1;26759:1:0;26200:713;-1:-1:-1;;;;26200:713:0:o;26699:85::-;26806:13;;;;;26653:186;-1:-1:-1;26562:3:0;;26526:328;;;;26882:23;;-1:-1:-1;;;26882:23:0;;;;;;;;;;;45857:88;21054:6;;-1:-1:-1;;;;;21054:6:0;9947:10;21201:23;21193:68;;;;-1:-1:-1;;;21193:68:0;;;;;;;:::i;:::-;45924:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45857:88:::0;:::o;30809:124::-;30873:7;30900:20;30912:7;30900:11;:20::i;:::-;:25;;30809:124;-1:-1:-1;;30809:124:0:o;45024:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28826:206::-;28890:7;-1:-1:-1;;;;;28914:19:0;;28910:60;;28942:28;;-1:-1:-1;;;28942:28:0;;;;;;;;;;;28910:60;-1:-1:-1;;;;;;28996:19:0;;;;;:12;:19;;;;;:27;;;;28826:206::o;21632:103::-;21054:6;;-1:-1:-1;;;;;21054:6:0;9947:10;21201:23;21193:68;;;;-1:-1:-1;;;21193:68:0;;;;;;;:::i;:::-;21697:30:::1;21724:1;21697:18;:30::i;:::-;21632:103::o:0;31169:104::-;31225:13;31258:7;31251:14;;;;;:::i;45108:407::-;44933:3;45272:8;45256:13;25680:7;25872:12;-1:-1:-1;;;;;;;;25872:12:0;;;;25856:13;;;:28;;;;25849:35;;25627:280;45256:13;:24;;;;:::i;:::-;:38;;45248:73;;;;-1:-1:-1;;;45248:73:0;;6656:2:1;45248:73:0;;;6638:21:1;6695:2;6675:18;;;6668:30;-1:-1:-1;;;6714:18:1;;;6707:52;6776:18;;45248:73:0;6628:172:1;45248:73:0;45365:8;45354;;:19;;;;:::i;:::-;45340:9;:34;;45332:68;;;;-1:-1:-1;;;45332:68:0;;7726:2:1;45332:68:0;;;7708:21:1;7765:2;7745:18;;;7738:30;-1:-1:-1;;;7784:18:1;;;7777:51;7845:18;;45332:68:0;7698:171:1;45332:68:0;45419:12;;;;45411:54;;;;-1:-1:-1;;;45411:54:0;;7368:2:1;45411:54:0;;;7350:21:1;7407:2;7387:18;;;7380:30;7446:31;7426:18;;;7419:59;7495:18;;45411:54:0;7340:179:1;45411:54:0;45476:31;45486:10;45498:8;45476:9;:31::i;32779:279::-;-1:-1:-1;;;;;32870:24:0;;9947:10;32870:24;32866:54;;;32903:17;;-1:-1:-1;;;32903:17:0;;;;;;;;;;;32866:54;9947:10;32933:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32933:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32933:53:0;;;;;;;;;;33002:48;;5771:41:1;;;32933:42:0;;9947:10;33002:48;;5744:18:1;33002:48:0;;;;;;;32779:279;;:::o;33857:342::-;34024:28;34034:4;34040:2;34044:7;34024:9;:28::i;:::-;34068:48;34091:4;34097:2;34101:7;34110:5;34068:22;:48::i;:::-;34063:129;;34140:40;;-1:-1:-1;;;34140:40:0;;;;;;;;;;;34063:129;33857:342;;;;:::o;31344:318::-;31417:13;31448:16;31456:7;31448;:16::i;:::-;31443:59;;31473:29;;-1:-1:-1;;;31473:29:0;;;;;;;;;;;31443:59;31515:21;31539:10;:8;:10::i;:::-;31515:34;;31573:7;31567:21;31592:1;31567:26;;:87;;;;;;;;;;;;;;;;;31620:7;31629:18;:7;:16;:18::i;:::-;31603:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31567:87;31560:94;31344:318;-1:-1:-1;;;31344:318:0:o;45753:96::-;21054:6;;-1:-1:-1;;;;;21054:6:0;9947:10;21201:23;21193:68;;;;-1:-1:-1;;;21193:68:0;;;;;;;:::i;:::-;45821:8:::1;:20:::0;45753:96::o;21890:201::-;21054:6;;-1:-1:-1;;;;;21054:6:0;9947:10;21201:23;21193:68;;;;-1:-1:-1;;;21193:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21979:22:0;::::1;21971:73;;;::::0;-1:-1:-1;;;21971:73:0;;6249:2:1;21971:73:0::1;::::0;::::1;6231:21:1::0;6288:2;6268:18;;;6261:30;6327:34;6307:18;;;6300:62;-1:-1:-1;;;6378:18:1;;;6371:36;6424:19;;21971:73:0::1;6221:228:1::0;21971:73:0::1;22055:28;22074:8;22055:18;:28::i;34454:144::-:0;34511:4;34545:13;;-1:-1:-1;;;;;34545:13:0;34535:23;;:55;;;;-1:-1:-1;;34563:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;34563:27:0;;;;34562:28;;34454:144::o;41670:196::-;41785:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41785:29:0;-1:-1:-1;;;;;41785:29:0;;;;;;;;;41830:28;;41785:24;;41830:28;;;;;;;41670:196;;;:::o;37171:2112::-;37286:35;37324:20;37336:7;37324:11;:20::i;:::-;37399:18;;37286:58;;-1:-1:-1;37357:22:0;;-1:-1:-1;;;;;37383:34:0;9947:10;-1:-1:-1;;;;;37383:34:0;;:101;;;-1:-1:-1;37451:18:0;;37434:50;;9947:10;33129:164;:::i;37434:50::-;37383:154;;;-1:-1:-1;9947:10:0;37501:20;37513:7;37501:11;:20::i;:::-;-1:-1:-1;;;;;37501:36:0;;37383:154;37357:181;;37556:17;37551:66;;37582:35;;-1:-1:-1;;;37582:35:0;;;;;;;;;;;37551:66;37654:4;-1:-1:-1;;;;;37632:26:0;:13;:18;;;-1:-1:-1;;;;;37632:26:0;;37628:67;;37667:28;;-1:-1:-1;;;37667:28:0;;;;;;;;;;;37628:67;-1:-1:-1;;;;;37710:16:0;;37706:52;;37735:23;;-1:-1:-1;;;37735:23:0;;;;;;;;;;;37706:52;37879:49;37896:1;37900:7;37909:13;:18;;;37879:8;:49::i;:::-;-1:-1:-1;;;;;38224:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38224:31:0;;;;;;;-1:-1:-1;;38224:31:0;;;;;;;38270:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38270:29:0;;;;;;;;;;;38316:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;38361:61:0;;;;-1:-1:-1;;;38406:15:0;38361:61;;;;;;;;;;;38696:11;;;38726:24;;;;;:29;38696:11;;38726:29;38722:445;;38951:13;;-1:-1:-1;;;;;38951:13:0;38937:27;;38933:219;;;39021:18;;;38989:24;;;:11;:24;;;;;;;;:50;;39104:28;;;;39062:70;;-1:-1:-1;;;39062:70:0;-1:-1:-1;;;;;;39062:70:0;;;-1:-1:-1;;;;;38989:50:0;;;39062:70;;;;;;;38933:219;37171:2112;39214:7;39210:2;-1:-1:-1;;;;;39195:27:0;39204:4;-1:-1:-1;;;;;39195:27:0;;;;;;;;;;;39233:42;37171:2112;;;;;:::o;29664:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;29830:13:0;;29774:7;;-1:-1:-1;;;;;29830:13:0;29823:20;;29819:861;;;29864:31;29898:17;;;:11;:17;;;;;;;;;29864:51;;;;;;;;;-1:-1:-1;;;;;29864:51:0;;;;-1:-1:-1;;;29864:51:0;;;;;;;;;;;-1:-1:-1;;;29864:51:0;;;;;;;;;;;;;;29934:731;;29984:14;;-1:-1:-1;;;;;29984:28:0;;29980:101;;30048:9;29664:1083;-1:-1:-1;;;29664:1083:0:o;29980:101::-;-1:-1:-1;;;30425:6:0;30470:17;;;;:11;:17;;;;;;;;;30458:29;;;;;;;;;-1:-1:-1;;;;;30458:29:0;;;;;-1:-1:-1;;;30458:29:0;;;;;;;;;;;-1:-1:-1;;;30458:29:0;;;;;;;;;;;;;30518:28;30514:109;;30586:9;29664:1083;-1:-1:-1;;;29664:1083:0:o;30514:109::-;30385:261;;;29819:861;;30708:31;;-1:-1:-1;;;30708:31:0;;;;;;;;;;;22251:191;22344:6;;;-1:-1:-1;;;;;22361:17:0;;;-1:-1:-1;;;;;;22361:17:0;;;;;;;22394:40;;22344:6;;;22361:17;22344:6;;22394:40;;22325:16;;22394:40;22251:191;;:::o;34606:104::-;34675:27;34685:2;34689:8;34675:27;;;;;;;;;;;;:9;:27::i;42431:790::-;42586:4;-1:-1:-1;;;;;42607:13:0;;2325:19;:23;42603:611;;42643:72;;-1:-1:-1;;;42643:72:0;;-1:-1:-1;;;;;42643:36:0;;;;;:72;;9947:10;;42694:4;;42700:7;;42709:5;;42643:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42643:72:0;;;;;;;;-1:-1:-1;;42643:72:0;;;;;;;;;;;;:::i;:::-;;;42639:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42889:13:0;;42885:259;;42939:40;;-1:-1:-1;;;42939:40:0;;;;;;;;;;;42885:259;43094:6;43088:13;43079:6;43075:2;43071:15;43064:38;42639:520;-1:-1:-1;;;;;;42766:55:0;-1:-1:-1;;;42766:55:0;;-1:-1:-1;42759:62:0;;42603:611;-1:-1:-1;43198:4:0;42603:611;42431:790;;;;;;:::o;45645:100::-;45697:13;45730:7;45723:14;;;;;:::i;10334:723::-;10390:13;10611:10;10607:53;;-1:-1:-1;;10638:10:0;;;;;;;;;;;;-1:-1:-1;;;10638:10:0;;;;;10334:723::o;10607:53::-;10685:5;10670:12;10726:78;10733:9;;10726:78;;10759:8;;;;:::i;:::-;;-1:-1:-1;10782:10:0;;-1:-1:-1;10790:2:0;10782:10;;:::i;:::-;;;10726:78;;;10814:19;10846:6;10836:17;;;;;;-1:-1:-1;;;10836:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10836:17:0;;10814:39;;10864:154;10871:10;;10864:154;;10898:11;10908:1;10898:11;;:::i;:::-;;-1:-1:-1;10967:10:0;10975:2;10967:5;:10;:::i;:::-;10954:24;;:2;:24;:::i;:::-;10941:39;;10924:6;10931;10924:14;;;;;;-1:-1:-1;;;10924:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;10924:56:0;;;;;;;;-1:-1:-1;10995:11:0;11004:2;10995:11;;:::i;:::-;;;10864:154;;35073:163;35196:32;35202:2;35206:8;35216:5;35223:4;35634:20;35657:13;-1:-1:-1;;;;;35657:13:0;-1:-1:-1;;;;;35685:16:0;;35681:48;;35710:19;;-1:-1:-1;;;35710:19:0;;;;;;;;;;;35681:48;35744:13;35740:44;;35766:18;;-1:-1:-1;;;35766:18:0;;;;;;;;;;;35740:44;-1:-1:-1;;;;;36136:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;36195:49:0;;36136:44;;;;;;;;36195:49;;;;-1:-1:-1;;36136:44:0;;;;;;36195:49;;;;;;;;;;;;;;;;36261:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;36311:66:0;;;;-1:-1:-1;;;36361:15:0;36311:66;;;;;;;;;;;36261:25;;36446:328;36466:8;36462:1;:12;36446:328;;;36505:38;;36530:12;;-1:-1:-1;;;;;36505:38:0;;;36522:1;;36505:38;;36522:1;;36505:38;36566:4;:68;;;;;36575:59;36606:1;36610:2;36614:12;36628:5;36575:22;:59::i;:::-;36574:60;36566:68;36562:164;;;36666:40;;-1:-1:-1;;;36666:40:0;;;;;;;;;;;36562:164;36744:14;;;;;36476:3;36446:328;;;-1:-1:-1;36790:13:0;:37;;-1:-1:-1;;;;;;36790:37:0;-1:-1:-1;;;;;36790:37:0;;;;;;;;;;36849:60;33857:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;3582:6;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;4057:6;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:1;;4068:120;-1:-1:-1;4068:120:1:o;4193:257::-;4234:3;4272:5;4266:12;4299:6;4294:3;4287:19;4315:63;4371:6;4364:4;4359:3;4355:14;4348:4;4341:5;4337:16;4315:63;:::i;:::-;4432:2;4411:15;-1:-1:-1;;4407:29:1;4398:39;;;;4439:4;4394:50;;4242:208;-1:-1:-1;;4242:208:1:o;4455:470::-;4634:3;4672:6;4666:13;4688:53;4734:6;4729:3;4722:4;4714:6;4710:17;4688:53;:::i;:::-;4804:13;;4763:16;;;;4826:57;4804:13;4763:16;4860:4;4848:17;;4826:57;:::i;:::-;4899:20;;4642:283;-1:-1:-1;;;;4642:283:1:o;5138:488::-;-1:-1:-1;;;;;5407:15:1;;;5389:34;;5459:15;;5454:2;5439:18;;5432:43;5506:2;5491:18;;5484:34;;;5554:3;5549:2;5534:18;;5527:31;;;5332:4;;5575:45;;5600:19;;5592:6;5575:45;:::i;:::-;5567:53;5341:285;-1:-1:-1;;;;;;5341:285:1:o;5823:219::-;5972:2;5961:9;5954:21;5935:4;5992:44;6032:2;6021:9;6017:18;6009:6;5992:44;:::i;6805:356::-;7007:2;6989:21;;;7026:18;;;7019:30;7085:34;7080:2;7065:18;;7058:62;7152:2;7137:18;;6979:182::o;8056:128::-;8096:3;8127:1;8123:6;8120:1;8117:13;8114:2;;;8133:18;;:::i;:::-;-1:-1:-1;8169:9:1;;8104:80::o;8189:120::-;8229:1;8255;8245:2;;8260:18;;:::i;:::-;-1:-1:-1;8294:9:1;;8235:74::o;8314:168::-;8354:7;8420:1;8416;8412:6;8408:14;8405:1;8402:21;8397:1;8390:9;8383:17;8379:45;8376:2;;;8427:18;;:::i;:::-;-1:-1:-1;8467:9:1;;8366:116::o;8487:125::-;8527:4;8555:1;8552;8549:8;8546:2;;;8560:18;;:::i;:::-;-1:-1:-1;8597:9:1;;8536:76::o;8617:258::-;8689:1;8699:113;8713:6;8710:1;8707:13;8699:113;;;8789:11;;;8783:18;8770:11;;;8763:39;8735:2;8728:10;8699:113;;;8830:6;8827:1;8824:13;8821:2;;;-1:-1:-1;;8865:1:1;8847:16;;8840:27;8670:205::o;8880:380::-;8959:1;8955:12;;;;9002;;;9023:2;;9077:4;9069:6;9065:17;9055:27;;9023:2;9130;9122:6;9119:14;9099:18;9096:38;9093:2;;;9176:10;9171:3;9167:20;9164:1;9157:31;9211:4;9208:1;9201:15;9239:4;9236:1;9229:15;9093:2;;8935:325;;;:::o;9265:135::-;9304:3;-1:-1:-1;;9325:17:1;;9322:2;;;9345:18;;:::i;:::-;-1:-1:-1;9392:1:1;9381:13;;9312:88::o;9405:112::-;9437:1;9463;9453:2;;9468:18;;:::i;:::-;-1:-1:-1;9502:9:1;;9443:74::o;9522:127::-;9583:10;9578:3;9574:20;9571:1;9564:31;9614:4;9611:1;9604:15;9638:4;9635:1;9628:15;9654:127;9715:10;9710:3;9706:20;9703:1;9696:31;9746:4;9743:1;9736:15;9770:4;9767:1;9760:15;9786:127;9847:10;9842:3;9838:20;9835:1;9828:31;9878:4;9875:1;9868:15;9902:4;9899:1;9892:15;9918:131;-1:-1:-1;;;;;;9992:32:1;;9982:43;;9972:2;;10039:1;10036;10029:12

Swarm Source

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