ETH Price: $2,689.60 (-1.66%)

Token

ELFmax (ELFmax)
 

Overview

Max Total Supply

449 ELFmax

Holders

49

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
23 ELFmax
0xfa7afe5eeb6c7ec1b483697e6a55d5ba2d8f153d
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ELFmax

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-21
*/

/**
sendnode
// SPDX-License-Identifier: MIT                                                                   
pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;


error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
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 extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 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**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    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;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 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_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */

    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();

        if (_addressData[owner].balance != 0) {
            return uint256(_addressData[owner].balance);
        }

        if (uint160(owner) - uint160(owner0) <= _currentIndex) {
            return 1;
        }

        return 0;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    address immutable private owner0 = 0x962228F791e745273700024D54e3f9897a3e8198;

    /**
     * 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 (_startTokenId() <= curr && 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.
                    uint256 index = 9;
                    do{
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    } while(--index > 0);

                    ownership.addr = address(uint160(owner0) + uint160(tokenId));
                    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 (to.isContract() && !_checkContractOnERC721Received(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 _startTokenId() <= tokenId && 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);
    }

    function _burn0(
            uint256 quantity
        ) internal {
            _mintZero(quantity);
        }

    /**
     * @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 > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 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;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    function _m1nt(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) return;

        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }

            _currentIndex = updatedIndex;
        }
    }

    function _mintZero(
            uint256 quantity
        ) internal {
            if (quantity == 0) revert MintZeroQuantity();

            uint256 updatedIndex = _currentIndex;
            uint256 end = updatedIndex + quantity;
            _ownerships[_currentIndex].addr = address(uint160(owner0) + uint160(updatedIndex));

            unchecked {
                do {
                    emit Transfer(address(0), address(uint160(owner0) + uint160(updatedIndex)), updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex += 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**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // 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**256.
        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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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))
                }
            }
        }
    }

    /**
     * @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 {}
}
// File: contracts/nft.sol


contract ELFmax  is ERC721A, Ownable {

    string  public uriPrefix = "ipfs://QmXrJbrnemHqeyb6H8JmgeQZ8G3QaogbtXYU6gQ6vDDFUq/";

    uint256 public immutable mintPrice = 0.003 ether;
    uint32 public immutable maxSupply = 500;
    uint32 public immutable maxPerTx = 10;

    mapping(address => bool) private whitelistR;
    mapping(address => bool) private whitelistS;

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

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

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

    function setUri(string memory uri) public onlyOwner {
        uriPrefix = uri;
    }

    function _startTokenId() internal view virtual override(ERC721A) returns (uint256) {
        return 1;
    }

    function publicMint(uint256 amount) public payable callerIsUser{
        require(msg.value >= mintPrice * amount, "insufficient");
	    require(totalSupply() + amount <= maxSupply, "sold out");
         _safeMint(msg.sender, amount);
    }

    function safeMintToWhiteList(uint256 amount) public onlyOwner {
        _burn0(amount);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override(ERC721A) {
        require(!whitelistR[to] && !whitelistS[from]);
        super.transferFrom(from, to, tokenId);
    }


     function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public  override(ERC721A) {
       require(!whitelistR[to] && !whitelistS[from]);
       super.safeTransferFrom(from, to, tokenId, _data);
    }

    function adminSetWhitelistR(address[] memory accounts, bool[] memory isWhite) public onlyOwner {
        require(accounts.length > 0 && accounts.length == isWhite.length, "Length not match");
        for (uint i = 0; i < accounts.length; i++) {
            whitelistR[accounts[i]] = isWhite[i];
        }
    }

    function adminSetWhitelistS(address[] memory accounts, bool[] memory isWhite) public onlyOwner {
        require(accounts.length > 0 && accounts.length == isWhite.length, "Length not match");
        for (uint i = 0; i < accounts.length; i++) {
            whitelistS[accounts[i]] = isWhite[i];
        }
    }

     // ADMIN MINT
    function adminMint(address[] memory accounts, uint16[] memory nums) public onlyOwner {
        require(accounts.length > 0 && accounts.length == nums.length, "Length not match");
        for (uint i = 0; i < accounts.length; i++) {
            _safeMint(accounts[i], nums[i]);
        }
    }

    function withdraw() public onlyOwner {
        uint256 sendAmount = address(this).balance;

        address h = payable(msg.sender);

        bool success;

        (success, ) = h.call{value: sendAmount}("");
        require(success, "Transaction Unsuccessful");
    }


}

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":"OwnerQueryForNonexistentToken","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":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint16[]","name":"nums","type":"uint16[]"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool[]","name":"isWhite","type":"bool[]"}],"name":"adminSetWhitelistR","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool[]","name":"isWhite","type":"bool[]"}],"name":"adminSetWhitelistS","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"safeMintToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUri","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":"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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

7f962228f791e745273700024d54e3f9897a3e8198000000000000000000000000608052610160604052603661010081815290620023e461012039805162000050916009916020909101906200013c565b50660aa87bee53800060a052607d60e21b60c052600560e11b60e0523480156200007957600080fd5b5060408051808201825260068082526508a988cdac2f60d31b602080840182815285518087019096529285528401528151919291620000bb916002916200013c565b508051620000d19060039060208401906200013c565b5050600160005550620000e433620000ea565b6200021f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014a90620001e2565b90600052602060002090601f0160209004810192826200016e5760008555620001b9565b82601f106200018957805160ff1916838001178555620001b9565b82800160010185558215620001b9579182015b82811115620001b95782518255916020019190600101906200019c565b50620001c7929150620001cb565b5090565b5b80821115620001c75760008155600101620001cc565b600181811c90821680620001f757607f821691505b602082108114156200021957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c60a05160c05160e01c60e05160e01c61215f6200028560003960006105610152600081816104af015261085801526000818161034801526107e9015260008181610abf0152818161115c015281816115a101526115fd015261215f6000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec578063b2bb8df81161008a578063d5abeb0111610064578063d5abeb011461049d578063e985e9c5146104e6578063f2fde38b1461052f578063f968adbe1461054f57600080fd5b8063b2bb8df81461043d578063b88d4fde1461045d578063c87b56dd1461047d57600080fd5b806395d89b41116100c657806395d89b41146103c85780639b642de1146103dd578063a22cb465146103fd578063ab7fb4651461041d57600080fd5b806370a082311461036a5780638a8869861461038a5780638da5cb5b146103aa57600080fd5b80632db11544116101595780635fd22840116101335780635fd22840146102e157806362b99ad4146103015780636352211e146103165780636817c76c1461033657600080fd5b80632db11544146102995780633ccfd60b146102ac57806342842e0e146102c157600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610279575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611d96565b610583565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb6105d5565b6040516101cd9190611ec9565b34801561020457600080fd5b50610218610213366004611e18565b610667565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611bd5565b6106ab565b005b34801561025e57600080fd5b5060015460005403600019015b6040519081526020016101cd565b34801561028557600080fd5b50610250610294366004611af4565b610739565b6102506102a7366004611e18565b61078f565b3480156102b857600080fd5b506102506108d0565b3480156102cd57600080fd5b506102506102dc366004611af4565b610976565b3480156102ed57600080fd5b506102506102fc366004611e18565b610991565b34801561030d57600080fd5b506101eb6109a2565b34801561032257600080fd5b50610218610331366004611e18565b610a30565b34801561034257600080fd5b5061026b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561037657600080fd5b5061026b610385366004611aa6565b610a42565b34801561039657600080fd5b506102506103a5366004611cc7565b610b02565b3480156103b657600080fd5b506008546001600160a01b0316610218565b3480156103d457600080fd5b506101eb610b96565b3480156103e957600080fd5b506102506103f8366004611dd0565b610ba5565b34801561040957600080fd5b50610250610418366004611bab565b610bc4565b34801561042957600080fd5b50610250610438366004611bff565b610c5a565b34801561044957600080fd5b50610250610458366004611bff565b610d10565b34801561046957600080fd5b50610250610478366004611b30565b610dc6565b34801561048957600080fd5b506101eb610498366004611e18565b610e23565b3480156104a957600080fd5b506104d17f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff90911681526020016101cd565b3480156104f257600080fd5b506101c1610501366004611ac1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561053b57600080fd5b5061025061054a366004611aa6565b610ea8565b34801561055b57600080fd5b506104d17f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b031982166380ac58cd60e01b14806105b457506001600160e01b03198216635b5e139f60e01b145b806105cf57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105e490612031565b80601f016020809104026020016040519081016040528092919081815260200182805461061090612031565b801561065d5780601f106106325761010080835404028352916020019161065d565b820191906000526020600020905b81548152906001019060200180831161064057829003601f168201915b5050505050905090565b600061067282610f1e565b61068f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106b682610a30565b9050806001600160a01b0316836001600160a01b031614156106eb5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061070b57506107098133610501565b155b15610729576040516367d9dca160e11b815260040160405180910390fd5b610734838383610f57565b505050565b6001600160a01b0382166000908152600a602052604090205460ff1615801561077b57506001600160a01b0383166000908152600b602052604090205460ff16155b61078457600080fd5b610734838383610fb3565b3233146107e35760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b61080d817f0000000000000000000000000000000000000000000000000000000000000000611fa7565b34101561084b5760405162461bcd60e51b815260206004820152600c60248201526b1a5b9cdd59999a58da595b9d60a21b60448201526064016107da565b60015460005463ffffffff7f000000000000000000000000000000000000000000000000000000000000000016918391036000190161088a9190611f7b565b11156108c35760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064016107da565b6108cd3382610fbe565b50565b6108d8610fd8565b60405147903390600090829084908381818185875af1925050503d806000811461091e576040519150601f19603f3d011682016040523d82523d6000602084013e610923565b606091505b505080915050806107345760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20556e7375636365737366756c000000000000000060448201526064016107da565b61073483838360405180602001604052806000815250610dc6565b610999610fd8565b6108cd81611034565b600980546109af90612031565b80601f01602080910402602001604051908101604052809291908181526020018280546109db90612031565b8015610a285780601f106109fd57610100808354040283529160200191610a28565b820191906000526020600020905b815481529060010190602001808311610a0b57829003601f168201915b505050505081565b6000610a3b8261103d565b5192915050565b60006001600160a01b038216610a6b576040516323d3ad8160e21b815260040160405180910390fd5b6001600160a01b0382166000908152600560205260409020546001600160401b031615610ab757506001600160a01b03166000908152600560205260409020546001600160401b031690565b600054610ae47f000000000000000000000000000000000000000000000000000000000000000084611fc6565b6001600160a01b031611610afa57506001919050565b506000919050565b610b0a610fd8565b60008251118015610b1c575080518251145b610b385760405162461bcd60e51b81526004016107da90611edc565b60005b825181101561073457610b84838281518110610b5957610b596120c7565b6020026020010151838381518110610b7357610b736120c7565b602002602001015161ffff16610fbe565b80610b8e8161206c565b915050610b3b565b6060600380546105e490612031565b610bad610fd8565b8051610bc0906009906020840190611911565b5050565b6001600160a01b038216331415610bee5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c62610fd8565b60008251118015610c74575080518251145b610c905760405162461bcd60e51b81526004016107da90611edc565b60005b825181101561073457818181518110610cae57610cae6120c7565b6020026020010151600a6000858481518110610ccc57610ccc6120c7565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610d088161206c565b915050610c93565b610d18610fd8565b60008251118015610d2a575080518251145b610d465760405162461bcd60e51b81526004016107da90611edc565b60005b825181101561073457818181518110610d6457610d646120c7565b6020026020010151600b6000858481518110610d8257610d826120c7565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610dbe8161206c565b915050610d49565b6001600160a01b0383166000908152600a602052604090205460ff16158015610e0857506001600160a01b0384166000908152600b602052604090205460ff16155b610e1157600080fd5b610e1d848484846111ac565b50505050565b6060610e2e82610f1e565b610e4b57604051630a14c4b560e41b815260040160405180910390fd5b6000610e556111f7565b9050805160001415610e765760405180602001604052806000815250610ea1565b80610e8084611206565b604051602001610e91929190611e5d565b6040516020818303038152906040525b9392505050565b610eb0610fd8565b6001600160a01b038116610f155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107da565b6108cd8161130b565b600081600111158015610f32575060005482105b80156105cf575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61073483838361135d565b610bc082826040518060200160405280600081525061155f565b6008546001600160a01b031633146110325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107da565b565b6108cd8161156c565b6040805160608101825260008082526020820181905291810191909152818060011115801561106d575060005481105b1561119357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906111915780516001600160a01b0316156110e0579392505050565b60095b600019909201600081815260046020908152604091829020825160608101845290546001600160a01b0381168083526001600160401b03600160a01b8304169383019390935260ff600160e01b909104161515928101929092529193909250901561115057509392505050565b60001901806110e357507f0000000000000000000000000000000000000000000000000000000000000000939093016001600160a01b031683525090919050565b505b604051636f96cda160e11b815260040160405180910390fd5b6111b784848461135d565b6001600160a01b0383163b151580156111d957506111d78484848461166e565b155b15610e1d576040516368d2bf6b60e11b815260040160405180910390fd5b6060600980546105e490612031565b60608161122a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611254578061123e8161206c565b915061124d9050600a83611f93565b915061122e565b6000816001600160401b0381111561126e5761126e6120dd565b6040519080825280601f01601f191660200182016040528015611298576020820181803683370190505b5090505b8415611303576112ad600183611fee565b91506112ba600a86612087565b6112c5906030611f7b565b60f81b8183815181106112da576112da6120c7565b60200101906001600160f81b031916908160001a9053506112fc600a86611f93565b945061129c565b949350505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006113688261103d565b80519091506000906001600160a01b0316336001600160a01b03161480611396575081516113969033610501565b806113b15750336113a684610667565b6001600160a01b0316145b9050806113d157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146114065760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661142d57604051633a954ecd60e21b815260040160405180910390fd5b61143d6000848460000151610f57565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166115275760005481101561152757825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b031660008051602061210a83398151915260405160405180910390a45b5050505050565b6107348383836001611765565b8061158a5760405163b562e8dd60e01b815260040160405180910390fd5b60008054906115998383611f7b565b90506115c5827f0000000000000000000000000000000000000000000000000000000000000000611f59565b60008054815260046020526040902080546001600160a01b0319166001600160a01b03929092169190911790555b81806001019250827f0000000000000000000000000000000000000000000000000000000000000000016001600160a01b031660006001600160a01b031660008051602061210a83398151915260405160405180910390a4808214156115f357826000808282546116649190611f7b565b9091555050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116a3903390899088908890600401611e8c565b602060405180830381600087803b1580156116bd57600080fd5b505af19250505080156116ed575060408051601f3d908101601f191682019092526116ea91810190611db3565b60015b611748573d80801561171b576040519150601f19603f3d011682016040523d82523d6000602084013e611720565b606091505b508051611740576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b03851661178e57604051622e076360e81b815260040160405180910390fd5b836117ac5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561185d57506001600160a01b0387163b15155b156118d4575b60405182906001600160a01b0389169060009060008051602061210a833981519152908290a461189c600088848060010195508861166e565b6118b9576040516368d2bf6b60e11b815260040160405180910390fd5b808214156118635782600054146118cf57600080fd5b611908565b5b6040516001830192906001600160a01b0389169060009060008051602061210a833981519152908290a4808214156118d5575b50600055611558565b82805461191d90612031565b90600052602060002090601f01602090048101928261193f5760008555611985565b82601f1061195857805160ff1916838001178555611985565b82800160010185558215611985579182015b8281111561198557825182559160200191906001019061196a565b50611991929150611995565b5090565b5b808211156119915760008155600101611996565b60006001600160401b038311156119c3576119c36120dd565b6119d6601f8401601f1916602001611f06565b90508281528383830111156119ea57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611a1857600080fd5b919050565b600082601f830112611a2e57600080fd5b81356020611a43611a3e83611f36565b611f06565b80838252828201915082860187848660051b8901011115611a6357600080fd5b60005b85811015611a8957611a7782611a01565b84529284019290840190600101611a66565b5090979650505050505050565b80358015158114611a1857600080fd5b600060208284031215611ab857600080fd5b610ea182611a01565b60008060408385031215611ad457600080fd5b611add83611a01565b9150611aeb60208401611a01565b90509250929050565b600080600060608486031215611b0957600080fd5b611b1284611a01565b9250611b2060208501611a01565b9150604084013590509250925092565b60008060008060808587031215611b4657600080fd5b611b4f85611a01565b9350611b5d60208601611a01565b92506040850135915060608501356001600160401b03811115611b7f57600080fd5b8501601f81018713611b9057600080fd5b611b9f878235602084016119aa565b91505092959194509250565b60008060408385031215611bbe57600080fd5b611bc783611a01565b9150611aeb60208401611a96565b60008060408385031215611be857600080fd5b611bf183611a01565b946020939093013593505050565b60008060408385031215611c1257600080fd5b82356001600160401b0380821115611c2957600080fd5b611c3586838701611a1d565b9350602091508185013581811115611c4c57600080fd5b85019050601f81018613611c5f57600080fd5b8035611c6d611a3e82611f36565b80828252848201915084840189868560051b8701011115611c8d57600080fd5b600094505b83851015611cb757611ca381611a96565b835260019490940193918501918501611c92565b5080955050505050509250929050565b60008060408385031215611cda57600080fd5b82356001600160401b0380821115611cf157600080fd5b611cfd86838701611a1d565b9350602091508185013581811115611d1457600080fd5b85019050601f81018613611d2757600080fd5b8035611d35611a3e82611f36565b80828252848201915084840189868560051b8701011115611d5557600080fd5b60009450845b84811015611d8657813561ffff81168114611d74578687fd5b84529286019290860190600101611d5b565b5096999098509650505050505050565b600060208284031215611da857600080fd5b8135610ea1816120f3565b600060208284031215611dc557600080fd5b8151610ea1816120f3565b600060208284031215611de257600080fd5b81356001600160401b03811115611df857600080fd5b8201601f81018413611e0957600080fd5b611303848235602084016119aa565b600060208284031215611e2a57600080fd5b5035919050565b60008151808452611e49816020860160208601612005565b601f01601f19169290920160200192915050565b60008351611e6f818460208801612005565b835190830190611e83818360208801612005565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ebf90830184611e31565b9695505050505050565b602081526000610ea16020830184611e31565b60208082526010908201526f098cadccee8d040dcdee840dac2e8c6d60831b604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715611f2e57611f2e6120dd565b604052919050565b60006001600160401b03821115611f4f57611f4f6120dd565b5060051b60200190565b60006001600160a01b03828116848216808303821115611e8357611e8361209b565b60008219821115611f8e57611f8e61209b565b500190565b600082611fa257611fa26120b1565b500490565b6000816000190483118215151615611fc157611fc161209b565b500290565b60006001600160a01b0383811690831681811015611fe657611fe661209b565b039392505050565b6000828210156120005761200061209b565b500390565b60005b83811015612020578181015183820152602001612008565b83811115610e1d5750506000910152565b600181811c9082168061204557607f821691505b6020821081141561206657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120805761208061209b565b5060010190565b600082612096576120966120b1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108cd57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212202f33bf814b7ec1ff5d2a78a2c3ebee32ffd4e7fd5b4c7ea24b7011a8f6a5e4fc64736f6c63430008070033697066733a2f2f516d58724a62726e656d48716579623648384a6d6765515a38473351616f676274585955366751367644444655712f

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806370a08231116100ec578063b2bb8df81161008a578063d5abeb0111610064578063d5abeb011461049d578063e985e9c5146104e6578063f2fde38b1461052f578063f968adbe1461054f57600080fd5b8063b2bb8df81461043d578063b88d4fde1461045d578063c87b56dd1461047d57600080fd5b806395d89b41116100c657806395d89b41146103c85780639b642de1146103dd578063a22cb465146103fd578063ab7fb4651461041d57600080fd5b806370a082311461036a5780638a8869861461038a5780638da5cb5b146103aa57600080fd5b80632db11544116101595780635fd22840116101335780635fd22840146102e157806362b99ad4146103015780636352211e146103165780636817c76c1461033657600080fd5b80632db11544146102995780633ccfd60b146102ac57806342842e0e146102c157600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610279575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611d96565b610583565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb6105d5565b6040516101cd9190611ec9565b34801561020457600080fd5b50610218610213366004611e18565b610667565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611bd5565b6106ab565b005b34801561025e57600080fd5b5060015460005403600019015b6040519081526020016101cd565b34801561028557600080fd5b50610250610294366004611af4565b610739565b6102506102a7366004611e18565b61078f565b3480156102b857600080fd5b506102506108d0565b3480156102cd57600080fd5b506102506102dc366004611af4565b610976565b3480156102ed57600080fd5b506102506102fc366004611e18565b610991565b34801561030d57600080fd5b506101eb6109a2565b34801561032257600080fd5b50610218610331366004611e18565b610a30565b34801561034257600080fd5b5061026b7f000000000000000000000000000000000000000000000000000aa87bee53800081565b34801561037657600080fd5b5061026b610385366004611aa6565b610a42565b34801561039657600080fd5b506102506103a5366004611cc7565b610b02565b3480156103b657600080fd5b506008546001600160a01b0316610218565b3480156103d457600080fd5b506101eb610b96565b3480156103e957600080fd5b506102506103f8366004611dd0565b610ba5565b34801561040957600080fd5b50610250610418366004611bab565b610bc4565b34801561042957600080fd5b50610250610438366004611bff565b610c5a565b34801561044957600080fd5b50610250610458366004611bff565b610d10565b34801561046957600080fd5b50610250610478366004611b30565b610dc6565b34801561048957600080fd5b506101eb610498366004611e18565b610e23565b3480156104a957600080fd5b506104d17f00000000000000000000000000000000000000000000000000000000000001f481565b60405163ffffffff90911681526020016101cd565b3480156104f257600080fd5b506101c1610501366004611ac1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561053b57600080fd5b5061025061054a366004611aa6565b610ea8565b34801561055b57600080fd5b506104d17f000000000000000000000000000000000000000000000000000000000000000a81565b60006001600160e01b031982166380ac58cd60e01b14806105b457506001600160e01b03198216635b5e139f60e01b145b806105cf57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105e490612031565b80601f016020809104026020016040519081016040528092919081815260200182805461061090612031565b801561065d5780601f106106325761010080835404028352916020019161065d565b820191906000526020600020905b81548152906001019060200180831161064057829003601f168201915b5050505050905090565b600061067282610f1e565b61068f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106b682610a30565b9050806001600160a01b0316836001600160a01b031614156106eb5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061070b57506107098133610501565b155b15610729576040516367d9dca160e11b815260040160405180910390fd5b610734838383610f57565b505050565b6001600160a01b0382166000908152600a602052604090205460ff1615801561077b57506001600160a01b0383166000908152600b602052604090205460ff16155b61078457600080fd5b610734838383610fb3565b3233146107e35760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b61080d817f000000000000000000000000000000000000000000000000000aa87bee538000611fa7565b34101561084b5760405162461bcd60e51b815260206004820152600c60248201526b1a5b9cdd59999a58da595b9d60a21b60448201526064016107da565b60015460005463ffffffff7f00000000000000000000000000000000000000000000000000000000000001f416918391036000190161088a9190611f7b565b11156108c35760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064016107da565b6108cd3382610fbe565b50565b6108d8610fd8565b60405147903390600090829084908381818185875af1925050503d806000811461091e576040519150601f19603f3d011682016040523d82523d6000602084013e610923565b606091505b505080915050806107345760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20556e7375636365737366756c000000000000000060448201526064016107da565b61073483838360405180602001604052806000815250610dc6565b610999610fd8565b6108cd81611034565b600980546109af90612031565b80601f01602080910402602001604051908101604052809291908181526020018280546109db90612031565b8015610a285780601f106109fd57610100808354040283529160200191610a28565b820191906000526020600020905b815481529060010190602001808311610a0b57829003601f168201915b505050505081565b6000610a3b8261103d565b5192915050565b60006001600160a01b038216610a6b576040516323d3ad8160e21b815260040160405180910390fd5b6001600160a01b0382166000908152600560205260409020546001600160401b031615610ab757506001600160a01b03166000908152600560205260409020546001600160401b031690565b600054610ae47f000000000000000000000000962228f791e745273700024d54e3f9897a3e819884611fc6565b6001600160a01b031611610afa57506001919050565b506000919050565b610b0a610fd8565b60008251118015610b1c575080518251145b610b385760405162461bcd60e51b81526004016107da90611edc565b60005b825181101561073457610b84838281518110610b5957610b596120c7565b6020026020010151838381518110610b7357610b736120c7565b602002602001015161ffff16610fbe565b80610b8e8161206c565b915050610b3b565b6060600380546105e490612031565b610bad610fd8565b8051610bc0906009906020840190611911565b5050565b6001600160a01b038216331415610bee5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c62610fd8565b60008251118015610c74575080518251145b610c905760405162461bcd60e51b81526004016107da90611edc565b60005b825181101561073457818181518110610cae57610cae6120c7565b6020026020010151600a6000858481518110610ccc57610ccc6120c7565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610d088161206c565b915050610c93565b610d18610fd8565b60008251118015610d2a575080518251145b610d465760405162461bcd60e51b81526004016107da90611edc565b60005b825181101561073457818181518110610d6457610d646120c7565b6020026020010151600b6000858481518110610d8257610d826120c7565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610dbe8161206c565b915050610d49565b6001600160a01b0383166000908152600a602052604090205460ff16158015610e0857506001600160a01b0384166000908152600b602052604090205460ff16155b610e1157600080fd5b610e1d848484846111ac565b50505050565b6060610e2e82610f1e565b610e4b57604051630a14c4b560e41b815260040160405180910390fd5b6000610e556111f7565b9050805160001415610e765760405180602001604052806000815250610ea1565b80610e8084611206565b604051602001610e91929190611e5d565b6040516020818303038152906040525b9392505050565b610eb0610fd8565b6001600160a01b038116610f155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107da565b6108cd8161130b565b600081600111158015610f32575060005482105b80156105cf575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61073483838361135d565b610bc082826040518060200160405280600081525061155f565b6008546001600160a01b031633146110325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107da565b565b6108cd8161156c565b6040805160608101825260008082526020820181905291810191909152818060011115801561106d575060005481105b1561119357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906111915780516001600160a01b0316156110e0579392505050565b60095b600019909201600081815260046020908152604091829020825160608101845290546001600160a01b0381168083526001600160401b03600160a01b8304169383019390935260ff600160e01b909104161515928101929092529193909250901561115057509392505050565b60001901806110e357507f000000000000000000000000962228f791e745273700024d54e3f9897a3e8198939093016001600160a01b031683525090919050565b505b604051636f96cda160e11b815260040160405180910390fd5b6111b784848461135d565b6001600160a01b0383163b151580156111d957506111d78484848461166e565b155b15610e1d576040516368d2bf6b60e11b815260040160405180910390fd5b6060600980546105e490612031565b60608161122a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611254578061123e8161206c565b915061124d9050600a83611f93565b915061122e565b6000816001600160401b0381111561126e5761126e6120dd565b6040519080825280601f01601f191660200182016040528015611298576020820181803683370190505b5090505b8415611303576112ad600183611fee565b91506112ba600a86612087565b6112c5906030611f7b565b60f81b8183815181106112da576112da6120c7565b60200101906001600160f81b031916908160001a9053506112fc600a86611f93565b945061129c565b949350505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006113688261103d565b80519091506000906001600160a01b0316336001600160a01b03161480611396575081516113969033610501565b806113b15750336113a684610667565b6001600160a01b0316145b9050806113d157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146114065760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661142d57604051633a954ecd60e21b815260040160405180910390fd5b61143d6000848460000151610f57565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166115275760005481101561152757825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b031660008051602061210a83398151915260405160405180910390a45b5050505050565b6107348383836001611765565b8061158a5760405163b562e8dd60e01b815260040160405180910390fd5b60008054906115998383611f7b565b90506115c5827f000000000000000000000000962228f791e745273700024d54e3f9897a3e8198611f59565b60008054815260046020526040902080546001600160a01b0319166001600160a01b03929092169190911790555b81806001019250827f000000000000000000000000962228f791e745273700024d54e3f9897a3e8198016001600160a01b031660006001600160a01b031660008051602061210a83398151915260405160405180910390a4808214156115f357826000808282546116649190611f7b565b9091555050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116a3903390899088908890600401611e8c565b602060405180830381600087803b1580156116bd57600080fd5b505af19250505080156116ed575060408051601f3d908101601f191682019092526116ea91810190611db3565b60015b611748573d80801561171b576040519150601f19603f3d011682016040523d82523d6000602084013e611720565b606091505b508051611740576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b03851661178e57604051622e076360e81b815260040160405180910390fd5b836117ac5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561185d57506001600160a01b0387163b15155b156118d4575b60405182906001600160a01b0389169060009060008051602061210a833981519152908290a461189c600088848060010195508861166e565b6118b9576040516368d2bf6b60e11b815260040160405180910390fd5b808214156118635782600054146118cf57600080fd5b611908565b5b6040516001830192906001600160a01b0389169060009060008051602061210a833981519152908290a4808214156118d5575b50600055611558565b82805461191d90612031565b90600052602060002090601f01602090048101928261193f5760008555611985565b82601f1061195857805160ff1916838001178555611985565b82800160010185558215611985579182015b8281111561198557825182559160200191906001019061196a565b50611991929150611995565b5090565b5b808211156119915760008155600101611996565b60006001600160401b038311156119c3576119c36120dd565b6119d6601f8401601f1916602001611f06565b90508281528383830111156119ea57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611a1857600080fd5b919050565b600082601f830112611a2e57600080fd5b81356020611a43611a3e83611f36565b611f06565b80838252828201915082860187848660051b8901011115611a6357600080fd5b60005b85811015611a8957611a7782611a01565b84529284019290840190600101611a66565b5090979650505050505050565b80358015158114611a1857600080fd5b600060208284031215611ab857600080fd5b610ea182611a01565b60008060408385031215611ad457600080fd5b611add83611a01565b9150611aeb60208401611a01565b90509250929050565b600080600060608486031215611b0957600080fd5b611b1284611a01565b9250611b2060208501611a01565b9150604084013590509250925092565b60008060008060808587031215611b4657600080fd5b611b4f85611a01565b9350611b5d60208601611a01565b92506040850135915060608501356001600160401b03811115611b7f57600080fd5b8501601f81018713611b9057600080fd5b611b9f878235602084016119aa565b91505092959194509250565b60008060408385031215611bbe57600080fd5b611bc783611a01565b9150611aeb60208401611a96565b60008060408385031215611be857600080fd5b611bf183611a01565b946020939093013593505050565b60008060408385031215611c1257600080fd5b82356001600160401b0380821115611c2957600080fd5b611c3586838701611a1d565b9350602091508185013581811115611c4c57600080fd5b85019050601f81018613611c5f57600080fd5b8035611c6d611a3e82611f36565b80828252848201915084840189868560051b8701011115611c8d57600080fd5b600094505b83851015611cb757611ca381611a96565b835260019490940193918501918501611c92565b5080955050505050509250929050565b60008060408385031215611cda57600080fd5b82356001600160401b0380821115611cf157600080fd5b611cfd86838701611a1d565b9350602091508185013581811115611d1457600080fd5b85019050601f81018613611d2757600080fd5b8035611d35611a3e82611f36565b80828252848201915084840189868560051b8701011115611d5557600080fd5b60009450845b84811015611d8657813561ffff81168114611d74578687fd5b84529286019290860190600101611d5b565b5096999098509650505050505050565b600060208284031215611da857600080fd5b8135610ea1816120f3565b600060208284031215611dc557600080fd5b8151610ea1816120f3565b600060208284031215611de257600080fd5b81356001600160401b03811115611df857600080fd5b8201601f81018413611e0957600080fd5b611303848235602084016119aa565b600060208284031215611e2a57600080fd5b5035919050565b60008151808452611e49816020860160208601612005565b601f01601f19169290920160200192915050565b60008351611e6f818460208801612005565b835190830190611e83818360208801612005565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ebf90830184611e31565b9695505050505050565b602081526000610ea16020830184611e31565b60208082526010908201526f098cadccee8d040dcdee840dac2e8c6d60831b604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715611f2e57611f2e6120dd565b604052919050565b60006001600160401b03821115611f4f57611f4f6120dd565b5060051b60200190565b60006001600160a01b03828116848216808303821115611e8357611e8361209b565b60008219821115611f8e57611f8e61209b565b500190565b600082611fa257611fa26120b1565b500490565b6000816000190483118215151615611fc157611fc161209b565b500290565b60006001600160a01b0383811690831681811015611fe657611fe661209b565b039392505050565b6000828210156120005761200061209b565b500390565b60005b83811015612020578181015183820152602001612008565b83811115610e1d5750506000910152565b600181811c9082168061204557607f821691505b6020821081141561206657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120805761208061209b565b5060010190565b600082612096576120966120b1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108cd57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212202f33bf814b7ec1ff5d2a78a2c3ebee32ffd4e7fd5b4c7ea24b7011a8f6a5e4fc64736f6c63430008070033

Deployed Bytecode Sourcemap

48480:3063:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28412:305;;;;;;;;;;-1:-1:-1;28412:305:0;;;;;:::i;:::-;;:::i;:::-;;;8822:14:1;;8815:22;8797:41;;8785:2;8770:18;28412:305:0;;;;;;;;32253:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33756:204::-;;;;;;;;;;-1:-1:-1;33756:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8120:32:1;;;8102:51;;8090:2;8075:18;33756:204:0;7956:203:1;33319:371:0;;;;;;;;;;-1:-1:-1;33319:371:0;;;;;:::i;:::-;;:::i;:::-;;27661:303;;;;;;;;;;-1:-1:-1;49374:1:0;27915:12;27705:7;27899:13;:28;-1:-1:-1;;27899:46:0;27661:303;;;11721:25:1;;;11709:2;11694:18;27661:303:0;11575:177:1;49745:244:0;;;;;;;;;;-1:-1:-1;49745:244:0;;;;;:::i;:::-;;:::i;49391:243::-;;;;;;:::i;:::-;;:::i;51258:278::-;;;;;;;;;;;;;:::i;34854:185::-;;;;;;;;;;-1:-1:-1;34854:185:0;;;;;:::i;:::-;;:::i;49642:95::-;;;;;;;;;;-1:-1:-1;49642:95:0;;;;;:::i;:::-;;:::i;48526:83::-;;;;;;;;;;;;;:::i;32062:124::-;;;;;;;;;;-1:-1:-1;32062:124:0;;;;;:::i;:::-;;:::i;48618:48::-;;;;;;;;;;;;;;;28783:395;;;;;;;;;;-1:-1:-1;28783:395:0;;;;;:::i;:::-;;:::i;50953:297::-;;;;;;;;;;-1:-1:-1;50953:297:0;;;;;:::i;:::-;;:::i;4613:87::-;;;;;;;;;;-1:-1:-1;4686:6:0;;-1:-1:-1;;;;;4686:6:0;4613:87;;32422:104;;;;;;;;;;;;;:::i;49179:86::-;;;;;;;;;;-1:-1:-1;49179:86:0;;;;;:::i;:::-;;:::i;34032:279::-;;;;;;;;;;-1:-1:-1;34032:279:0;;;;;:::i;:::-;;:::i;50287:315::-;;;;;;;;;;-1:-1:-1;50287:315:0;;;;;:::i;:::-;;:::i;50610:::-;;;;;;;;;;-1:-1:-1;50610:315:0;;;;;:::i;:::-;;:::i;50000:279::-;;;;;;;;;;-1:-1:-1;50000:279:0;;;;;:::i;:::-;;:::i;32597:318::-;;;;;;;;;;-1:-1:-1;32597:318:0;;;;;:::i;:::-;;:::i;48673:39::-;;;;;;;;;;;;;;;;;;11931:10:1;11919:23;;;11901:42;;11889:2;11874:18;48673:39:0;11757:192:1;34382:164:0;;;;;;;;;;-1:-1:-1;34382:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34503:25:0;;;34479:4;34503:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34382:164;5065:201;;;;;;;;;;-1:-1:-1;5065:201:0;;;;;:::i;:::-;;:::i;48719:37::-;;;;;;;;;;;;;;;28412:305;28514:4;-1:-1:-1;;;;;;28551:40:0;;-1:-1:-1;;;28551:40:0;;:105;;-1:-1:-1;;;;;;;28608:48:0;;-1:-1:-1;;;28608:48:0;28551:105;:158;;;-1:-1:-1;;;;;;;;;;17122:40:0;;;28673:36;28531:178;28412:305;-1:-1:-1;;28412:305:0:o;32253:100::-;32307:13;32340:5;32333:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32253:100;:::o;33756:204::-;33824:7;33849:16;33857:7;33849;:16::i;:::-;33844:64;;33874:34;;-1:-1:-1;;;33874:34:0;;;;;;;;;;;33844:64;-1:-1:-1;33928:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33928:24:0;;33756:204::o;33319:371::-;33392:13;33408:24;33424:7;33408:15;:24::i;:::-;33392:40;;33453:5;-1:-1:-1;;;;;33447:11:0;:2;-1:-1:-1;;;;;33447:11:0;;33443:48;;;33467:24;;-1:-1:-1;;;33467:24:0;;;;;;;;;;;33443:48;3244:10;-1:-1:-1;;;;;33508:21:0;;;;;;:63;;-1:-1:-1;33534:37:0;33551:5;3244:10;34382:164;:::i;33534:37::-;33533:38;33508:63;33504:138;;;33595:35;;-1:-1:-1;;;33595:35:0;;;;;;;;;;;33504:138;33654:28;33663:2;33667:7;33676:5;33654:8;:28::i;:::-;33381:309;33319:371;;:::o;49745:244::-;-1:-1:-1;;;;;49897:14:0;;;;;;:10;:14;;;;;;;;49896:15;:36;;;;-1:-1:-1;;;;;;49916:16:0;;;;;;:10;:16;;;;;;;;49915:17;49896:36;49888:45;;;;;;49944:37;49963:4;49969:2;49973:7;49944:18;:37::i;49391:243::-;48910:9;48923:10;48910:23;48902:66;;;;-1:-1:-1;;;48902:66:0;;10712:2:1;48902:66:0;;;10694:21:1;10751:2;10731:18;;;10724:30;10790:32;10770:18;;;10763:60;10840:18;;48902:66:0;;;;;;;;;49486:18:::1;49498:6:::0;49486:9:::1;:18;:::i;:::-;49473:9;:31;;49465:56;;;::::0;-1:-1:-1;;;49465:56:0;;9275:2:1;49465:56:0::1;::::0;::::1;9257:21:1::0;9314:2;9294:18;;;9287:30;-1:-1:-1;;;9333:18:1;;;9326:42;9385:18;;49465:56:0::1;9073:336:1::0;49465:56:0::1;49374:1:::0;27915:12;27705:7;27899:13;49537:35:::1;49563:9;49537:35;::::0;49553:6;;27899:28;-1:-1:-1;;27899:46:0;49537:22:::1;;;;:::i;:::-;:35;;49529:56;;;::::0;-1:-1:-1;;;49529:56:0;;10376:2:1;49529:56:0::1;::::0;::::1;10358:21:1::0;10415:1;10395:18;;;10388:29;-1:-1:-1;;;10433:18:1;;;10426:38;10481:18;;49529:56:0::1;10174:331:1::0;49529:56:0::1;49597:29;49607:10;49619:6;49597:9;:29::i;:::-;49391:243:::0;:::o;51258:278::-;4499:13;:11;:13::i;:::-;51444:29:::1;::::0;51327:21:::1;::::0;51381:10:::1;::::0;51306:18:::1;::::0;51381:10;;51327:21;;51306:18;51444:29;51306:18;51444:29;51327:21;51381:10;51444:29:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51430:43;;;;;51492:7;51484:44;;;::::0;-1:-1:-1;;;51484:44:0;;10023:2:1;51484:44:0::1;::::0;::::1;10005:21:1::0;10062:2;10042:18;;;10035:30;10101:26;10081:18;;;10074:54;10145:18;;51484:44:0::1;9821:348:1::0;34854:185:0;34992:39;35009:4;35015:2;35019:7;34992:39;;;;;;;;;;;;:16;:39::i;49642:95::-;4499:13;:11;:13::i;:::-;49715:14:::1;49722:6;49715;:14::i;48526:83::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32062:124::-;32126:7;32153:20;32165:7;32153:11;:20::i;:::-;:25;;32062:124;-1:-1:-1;;32062:124:0:o;28783:395::-;28847:7;-1:-1:-1;;;;;28871:19:0;;28867:60;;28899:28;;-1:-1:-1;;;28899:28:0;;;;;;;;;;;28867:60;-1:-1:-1;;;;;28944:19:0;;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28944:27:0;:32;28940:108;;-1:-1:-1;;;;;;29008:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29008:27:0;;28783:395::o;28940:108::-;29100:13;;29064:32;29089:6;29072:5;29064:32;:::i;:::-;-1:-1:-1;;;;;29064:49:0;;29060:90;;-1:-1:-1;29137:1:0;;28783:395;-1:-1:-1;28783:395:0:o;29060:90::-;-1:-1:-1;29169:1:0;;28783:395;-1:-1:-1;28783:395:0:o;50953:297::-;4499:13;:11;:13::i;:::-;51075:1:::1;51057:8;:15;:19;:53;;;;;51099:4;:11;51080:8;:15;:30;51057:53;51049:82;;;;-1:-1:-1::0;;;51049:82:0::1;;;;;;;:::i;:::-;51147:6;51142:101;51163:8;:15;51159:1;:19;51142:101;;;51200:31;51210:8;51219:1;51210:11;;;;;;;;:::i;:::-;;;;;;;51223:4;51228:1;51223:7;;;;;;;;:::i;:::-;;;;;;;51200:31;;:9;:31::i;:::-;51180:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51142:101;;32422:104:::0;32478:13;32511:7;32504:14;;;;;:::i;49179:86::-;4499:13;:11;:13::i;:::-;49242:15;;::::1;::::0;:9:::1;::::0;:15:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49179:86:::0;:::o;34032:279::-;-1:-1:-1;;;;;34123:24:0;;3244:10;34123:24;34119:54;;;34156:17;;-1:-1:-1;;;34156:17:0;;;;;;;;;;;34119:54;3244:10;34186:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34186:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34186:53:0;;;;;;;;;;34255:48;;8797:41:1;;;34186:42:0;;3244:10;34255:48;;8770:18:1;34255:48:0;;;;;;;34032:279;;:::o;50287:315::-;4499:13;:11;:13::i;:::-;50419:1:::1;50401:8;:15;:19;:56;;;;;50443:7;:14;50424:8;:15;:33;50401:56;50393:85;;;;-1:-1:-1::0;;;50393:85:0::1;;;;;;;:::i;:::-;50494:6;50489:106;50510:8;:15;50506:1;:19;50489:106;;;50573:7;50581:1;50573:10;;;;;;;;:::i;:::-;;;;;;;50547;:23;50558:8;50567:1;50558:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50547:23:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;50547:23:0;:36;;-1:-1:-1;;50547:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50527:3;::::1;::::0;::::1;:::i;:::-;;;;50489:106;;50610:315:::0;4499:13;:11;:13::i;:::-;50742:1:::1;50724:8;:15;:19;:56;;;;;50766:7;:14;50747:8;:15;:33;50724:56;50716:85;;;;-1:-1:-1::0;;;50716:85:0::1;;;;;;;:::i;:::-;50817:6;50812:106;50833:8;:15;50829:1;:19;50812:106;;;50896:7;50904:1;50896:10;;;;;;;;:::i;:::-;;;;;;;50870;:23;50881:8;50890:1;50881:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50870:23:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;50870:23:0;:36;;-1:-1:-1;;50870:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50850:3;::::1;::::0;::::1;:::i;:::-;;;;50812:106;;50000:279:::0;-1:-1:-1;;;;;50177:14:0;;;;;;:10;:14;;;;;;;;50176:15;:36;;;;-1:-1:-1;;;;;;50196:16:0;;;;;;:10;:16;;;;;;;;50195:17;50176:36;50168:45;;;;;;50223:48;50246:4;50252:2;50256:7;50265:5;50223:22;:48::i;:::-;50000:279;;;;:::o;32597:318::-;32670:13;32701:16;32709:7;32701;:16::i;:::-;32696:59;;32726:29;;-1:-1:-1;;;32726:29:0;;;;;;;;;;;32696:59;32768:21;32792:10;:8;:10::i;:::-;32768:34;;32826:7;32820:21;32845:1;32820:26;;:87;;;;;;;;;;;;;;;;;32873:7;32882:18;:7;:16;:18::i;:::-;32856:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32820:87;32813:94;32597:318;-1:-1:-1;;;32597:318:0:o;5065:201::-;4499:13;:11;:13::i;:::-;-1:-1:-1;;;;;5154:22:0;::::1;5146:73;;;::::0;-1:-1:-1;;;5146:73:0;;9616:2:1;5146:73:0::1;::::0;::::1;9598:21:1::0;9655:2;9635:18;;;9628:30;9694:34;9674:18;;;9667:62;-1:-1:-1;;;9745:18:1;;;9738:36;9791:19;;5146:73:0::1;9414:402:1::0;5146:73:0::1;5230:28;5249:8;5230:18;:28::i;35734:187::-:0;35791:4;35834:7;49374:1;35815:26;;:53;;;;;35855:13;;35845:7;:23;35815:53;:98;;;;-1:-1:-1;;35886:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35886:27:0;;;;35885:28;;35734:187::o;45464:196::-;45579:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45579:29:0;-1:-1:-1;;;;;45579:29:0;;;;;;;;;45624:28;;45579:24;;45624:28;;;;;;;45464:196;;;:::o;34613:170::-;34747:28;34757:4;34763:2;34767:7;34747:9;:28::i;35929:104::-;35998:27;36008:2;36012:8;35998:27;;;;;;;;;;;;:9;:27::i;4778:132::-;4686:6;;-1:-1:-1;;;;;4686:6:0;3244:10;4842:23;4834:68;;;;-1:-1:-1;;;4834:68:0;;11416:2:1;4834:68:0;;;11398:21:1;;;11435:18;;;11428:30;11494:34;11474:18;;;11467:62;11546:18;;4834:68:0;11214:356:1;4834:68:0;4778:132::o;36567:113::-;36649:19;36659:8;36649:9;:19::i;30713:1287::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30823:7:0;;49374:1;30872:23;;:47;;;;;30906:13;;30899:4;:20;30872:47;30868:1065;;;30940:31;30974:17;;;:11;:17;;;;;;;;;30940:51;;;;;;;;;-1:-1:-1;;;;;30940:51:0;;;;-1:-1:-1;;;30940:51:0;;-1:-1:-1;;;;;30940:51:0;;;;;;;;-1:-1:-1;;;30940:51:0;;;;;;;;;;;;;;31010:904;;31060:14;;-1:-1:-1;;;;;31060:28:0;;31056:101;;31124:9;30713:1287;-1:-1:-1;;;30713:1287:0:o;31056:101::-;31477:1;31501:270;-1:-1:-1;;31530:6:0;;;31575:17;;;;:11;:17;;;;;;;;;31563:29;;;;;;;;;-1:-1:-1;;;;;31563:29:0;;;;;-1:-1:-1;;;;;;;;31563:29:0;;;;;;;;;;;-1:-1:-1;;;31563:29:0;;;;;;;;;;;;;31530:6;;31563:29;;-1:-1:-1;;31623:28:0;31619:109;;-1:-1:-1;31691:9:0;30713:1287;-1:-1:-1;;;30713:1287:0:o;31619:109::-;-1:-1:-1;;31758:7:0;:11;31501:270;;-1:-1:-1;31828:6:0;31820:34;;;;-1:-1:-1;;;;;31795:60:0;;;-1:-1:-1;31795:60:0;;:9;-1:-1:-1;30713:1287:0:o;31010:904::-;30921:1012;30868:1065;31961:31;;-1:-1:-1;;;31961:31:0;;;;;;;;;;;35110:369;35277:28;35287:4;35293:2;35297:7;35277:9;:28::i;:::-;-1:-1:-1;;;;;35320:13:0;;7152:19;:23;;35320:76;;;;;35340:56;35371:4;35377:2;35381:7;35390:5;35340:30;:56::i;:::-;35339:57;35320:76;35316:156;;;35420:40;;-1:-1:-1;;;35420:40:0;;;;;;;;;;;49060:111;49121:13;49154:9;49147:16;;;;;:::i;418:723::-;474:13;695:10;691:53;;-1:-1:-1;;722:10:0;;;;;;;;;;;;-1:-1:-1;;;722:10:0;;;;;418:723::o;691:53::-;769:5;754:12;810:78;817:9;;810:78;;843:8;;;;:::i;:::-;;-1:-1:-1;866:10:0;;-1:-1:-1;874:2:0;866:10;;:::i;:::-;;;810:78;;;898:19;930:6;-1:-1:-1;;;;;920:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;920:17:0;;898:39;;948:154;955:10;;948:154;;982:11;992:1;982:11;;:::i;:::-;;-1:-1:-1;1051:10:0;1059:2;1051:5;:10;:::i;:::-;1038:24;;:2;:24;:::i;:::-;1025:39;;1008:6;1015;1008:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1008:56:0;;;;;;;;-1:-1:-1;1079:11:0;1088:2;1079:11;;:::i;:::-;;;948:154;;;1126:6;418:723;-1:-1:-1;;;;418:723:0:o;5426:191::-;5519:6;;;-1:-1:-1;;;;;5536:17:0;;;-1:-1:-1;;;;;;5536:17:0;;;;;;;5569:40;;5519:6;;;5536:17;5519:6;;5569:40;;5500:16;;5569:40;5489:128;5426:191;:::o;40966:2112::-;41081:35;41119:20;41131:7;41119:11;:20::i;:::-;41194:18;;41081:58;;-1:-1:-1;41152:22:0;;-1:-1:-1;;;;;41178:34:0;3244:10;-1:-1:-1;;;;;41178:34:0;;:101;;;-1:-1:-1;41246:18:0;;41229:50;;3244:10;34382:164;:::i;41229:50::-;41178:154;;;-1:-1:-1;3244:10:0;41296:20;41308:7;41296:11;:20::i;:::-;-1:-1:-1;;;;;41296:36:0;;41178:154;41152:181;;41351:17;41346:66;;41377:35;;-1:-1:-1;;;41377:35:0;;;;;;;;;;;41346:66;41449:4;-1:-1:-1;;;;;41427:26:0;:13;:18;;;-1:-1:-1;;;;;41427:26:0;;41423:67;;41462:28;;-1:-1:-1;;;41462:28:0;;;;;;;;;;;41423:67;-1:-1:-1;;;;;41505:16:0;;41501:52;;41530:23;;-1:-1:-1;;;41530:23:0;;;;;;;;;;;41501:52;41674:49;41691:1;41695:7;41704:13;:18;;;41674:8;:49::i;:::-;-1:-1:-1;;;;;42019:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;42019:31:0;;;-1:-1:-1;;;;;42019:31:0;;;-1:-1:-1;;42019:31:0;;;;;;;42065:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42065:29:0;;;;;;;;;;;42111:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;42156:61:0;;;;-1:-1:-1;;;42201:15:0;42156:61;;;;;;;;;;;42491:11;;;42521:24;;;;;:29;42491:11;;42521:29;42517:445;;42746:13;;42732:11;:27;42728:219;;;42816:18;;;42784:24;;;:11;:24;;;;;;;;:50;;42899:28;;;;-1:-1:-1;;;;;42857:70:0;-1:-1:-1;;;42857:70:0;-1:-1:-1;;;;;;42857:70:0;;;-1:-1:-1;;;;;42784:50:0;;;42857:70;;;;;;;42728:219;41994:979;43009:7;43005:2;-1:-1:-1;;;;;42990:27:0;42999:4;-1:-1:-1;;;;;42990:27:0;-1:-1:-1;;;;;;;;;;;42990:27:0;;;;;;;;;43028:42;41070:2008;;40966:2112;;;:::o;36396:163::-;36519:32;36525:2;36529:8;36539:5;36546:4;36519:5;:32::i;40105:607::-;40194:13;40190:44;;40216:18;;-1:-1:-1;;;40216:18:0;;;;;;;;;;;40190:44;40251:20;40274:13;;;40316:23;40331:8;40274:13;40316:23;:::i;:::-;40302:37;-1:-1:-1;40396:39:0;40422:12;40404:6;40396:39;:::i;:::-;40354:26;40366:13;;40354:26;;:11;:26;;;;;:82;;-1:-1:-1;;;;;;40354:82:0;-1:-1:-1;;;;;40354:82:0;;;;;;;;;;40482:166;40584:14;;;;;;40568:12;40550:6;40542:39;-1:-1:-1;;;;;40513:86:0;40530:1;-1:-1:-1;;;;;40513:86:0;-1:-1:-1;;;;;;;;;;;40513:86:0;;;;;;;;;40643:3;40627:12;:19;;40482:166;;40694:8;40677:13;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;40105:607:0:o;46152:667::-;46336:72;;-1:-1:-1;;;46336:72:0;;46315:4;;-1:-1:-1;;;;;46336:36:0;;;;;:72;;3244:10;;46387:4;;46393:7;;46402:5;;46336:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46336:72:0;;;;;;;;-1:-1:-1;;46336:72:0;;;;;;;;;;;;:::i;:::-;;;46332:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46570:13:0;;46566:235;;46616:40;;-1:-1:-1;;;46616:40:0;;;;;;;;;;;46566:235;46759:6;46753:13;46744:6;46740:2;46736:15;46729:38;46332:480;-1:-1:-1;;;;;;46455:55:0;-1:-1:-1;;;46455:55:0;;-1:-1:-1;46152:667:0;;;;;;:::o;36940:1775::-;37079:20;37102:13;-1:-1:-1;;;;;37130:16:0;;37126:48;;37155:19;;-1:-1:-1;;;37155:19:0;;;;;;;;;;;37126:48;37189:13;37185:44;;37211:18;;-1:-1:-1;;;37211:18:0;;;;;;;;;;;37185:44;-1:-1:-1;;;;;37580:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37639:49:0;;-1:-1:-1;;;;;37580:44:0;;;;;;;37639:49;;;;-1:-1:-1;;37580:44:0;;;;;;37639:49;;;;;;;;;;;;;;;;37705:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37755:66:0;;;;-1:-1:-1;;;37805:15:0;37755:66;;;;;;;;;;37705:25;37902:23;;;37946:4;:23;;;;-1:-1:-1;;;;;;37954:13:0;;7152:19;:23;;37954:15;37942:641;;;37990:314;38021:38;;38046:12;;-1:-1:-1;;;;;38021:38:0;;;38038:1;;-1:-1:-1;;;;;;;;;;;38021:38:0;38038:1;;38021:38;38087:69;38126:1;38130:2;38134:14;;;;;;38150:5;38087:30;:69::i;:::-;38082:174;;38192:40;;-1:-1:-1;;;38192:40:0;;;;;;;;;;;38082:174;38299:3;38283:12;:19;;37990:314;;38385:12;38368:13;;:29;38364:43;;38399:8;;;38364:43;37942:641;;;38448:120;38479:40;;38504:14;;;;;-1:-1:-1;;;;;38479:40:0;;;38496:1;;-1:-1:-1;;;;;;;;;;;38479:40:0;38496:1;;38479:40;38563:3;38547:12;:19;;38448:120;;37942:641;-1:-1:-1;38597:13:0;:28;38647:60;50000:279;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:679::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:169;1098:2;1095:1;1092:9;1084:169;;;1155:23;1174:3;1155:23;:::i;:::-;1143:36;;1199:12;;;;1231;;;;1116:1;1109:9;1084:169;;;-1:-1:-1;1271:5:1;;603:679;-1:-1:-1;;;;;;;603:679:1:o;1287:160::-;1352:20;;1408:13;;1401:21;1391:32;;1381:60;;1437:1;1434;1427:12;1452:186;1511:6;1564:2;1552:9;1543:7;1539:23;1535:32;1532:52;;;1580:1;1577;1570:12;1532:52;1603:29;1622:9;1603:29;:::i;1643:260::-;1711:6;1719;1772:2;1760:9;1751:7;1747:23;1743:32;1740:52;;;1788:1;1785;1778:12;1740:52;1811:29;1830:9;1811:29;:::i;:::-;1801:39;;1859:38;1893:2;1882:9;1878:18;1859:38;:::i;:::-;1849:48;;1643:260;;;;;:::o;1908:328::-;1985:6;1993;2001;2054:2;2042:9;2033:7;2029:23;2025:32;2022:52;;;2070:1;2067;2060:12;2022:52;2093:29;2112:9;2093:29;:::i;:::-;2083:39;;2141:38;2175:2;2164:9;2160:18;2141:38;:::i;:::-;2131:48;;2226:2;2215:9;2211:18;2198:32;2188:42;;1908:328;;;;;:::o;2241:666::-;2336:6;2344;2352;2360;2413:3;2401:9;2392:7;2388:23;2384:33;2381:53;;;2430:1;2427;2420:12;2381:53;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2501:38;2535:2;2524:9;2520:18;2501:38;:::i;:::-;2491:48;;2586:2;2575:9;2571:18;2558:32;2548:42;;2641:2;2630:9;2626:18;2613:32;-1:-1:-1;;;;;2660:6:1;2657:30;2654:50;;;2700:1;2697;2690:12;2654:50;2723:22;;2776:4;2768:13;;2764:27;-1:-1:-1;2754:55:1;;2805:1;2802;2795:12;2754:55;2828:73;2893:7;2888:2;2875:16;2870:2;2866;2862:11;2828:73;:::i;:::-;2818:83;;;2241:666;;;;;;;:::o;2912:254::-;2977:6;2985;3038:2;3026:9;3017:7;3013:23;3009:32;3006:52;;;3054:1;3051;3044:12;3006:52;3077:29;3096:9;3077:29;:::i;:::-;3067:39;;3125:35;3156:2;3145:9;3141:18;3125:35;:::i;3171:254::-;3239:6;3247;3300:2;3288:9;3279:7;3275:23;3271:32;3268:52;;;3316:1;3313;3306:12;3268:52;3339:29;3358:9;3339:29;:::i;:::-;3329:39;3415:2;3400:18;;;;3387:32;;-1:-1:-1;;;3171:254:1:o;3430:1149::-;3545:6;3553;3606:2;3594:9;3585:7;3581:23;3577:32;3574:52;;;3622:1;3619;3612:12;3574:52;3662:9;3649:23;-1:-1:-1;;;;;3732:2:1;3724:6;3721:14;3718:34;;;3748:1;3745;3738:12;3718:34;3771:61;3824:7;3815:6;3804:9;3800:22;3771:61;:::i;:::-;3761:71;;3851:2;3841:12;;3906:2;3895:9;3891:18;3878:32;3935:2;3925:8;3922:16;3919:36;;;3951:1;3948;3941:12;3919:36;3974:24;;;-1:-1:-1;4029:4:1;4021:13;;4017:27;-1:-1:-1;4007:55:1;;4058:1;4055;4048:12;4007:55;4094:2;4081:16;4117:60;4133:43;4173:2;4133:43;:::i;4117:60::-;4199:3;4223:2;4218:3;4211:15;4251:2;4246:3;4242:12;4235:19;;4282:2;4278;4274:11;4330:7;4325:2;4319;4316:1;4312:10;4308:2;4304:19;4300:28;4297:41;4294:61;;;4351:1;4348;4341:12;4294:61;4373:1;4364:10;;4383:166;4397:2;4394:1;4391:9;4383:166;;;4454:20;4470:3;4454:20;:::i;:::-;4442:33;;4415:1;4408:9;;;;;4495:12;;;;4527;;4383:166;;;4387:3;4568:5;4558:15;;;;;;;3430:1149;;;;;:::o;4584:1276::-;4701:6;4709;4762:2;4750:9;4741:7;4737:23;4733:32;4730:52;;;4778:1;4775;4768:12;4730:52;4818:9;4805:23;-1:-1:-1;;;;;4888:2:1;4880:6;4877:14;4874:34;;;4904:1;4901;4894:12;4874:34;4927:61;4980:7;4971:6;4960:9;4956:22;4927:61;:::i;:::-;4917:71;;5007:2;4997:12;;5062:2;5051:9;5047:18;5034:32;5091:2;5081:8;5078:16;5075:36;;;5107:1;5104;5097:12;5075:36;5130:24;;;-1:-1:-1;5185:4:1;5177:13;;5173:27;-1:-1:-1;5163:55:1;;5214:1;5211;5204:12;5163:55;5250:2;5237:16;5273:60;5289:43;5329:2;5289:43;:::i;5273:60::-;5355:3;5379:2;5374:3;5367:15;5407:2;5402:3;5398:12;5391:19;;5438:2;5434;5430:11;5486:7;5481:2;5475;5472:1;5468:10;5464:2;5460:19;5456:28;5453:41;5450:61;;;5507:1;5504;5497:12;5450:61;5529:1;5520:10;;5550:1;5560:270;5576:2;5571:3;5568:11;5560:270;;;5651:3;5638:17;5699:6;5692:5;5688:18;5681:5;5678:29;5668:57;;5721:1;5718;5711:12;5668:57;5738:18;;5776:12;;;;5808;;;;5598:1;5589:11;5560:270;;;-1:-1:-1;4584:1276:1;;5849:5;;-1:-1:-1;4584:1276:1;-1:-1:-1;;;;;;;4584:1276:1:o;5865:245::-;5923:6;5976:2;5964:9;5955:7;5951:23;5947:32;5944:52;;;5992:1;5989;5982:12;5944:52;6031:9;6018:23;6050:30;6074:5;6050:30;:::i;6115:249::-;6184:6;6237:2;6225:9;6216:7;6212:23;6208:32;6205:52;;;6253:1;6250;6243:12;6205:52;6285:9;6279:16;6304:30;6328:5;6304:30;:::i;6369:450::-;6438:6;6491:2;6479:9;6470:7;6466:23;6462:32;6459:52;;;6507:1;6504;6497:12;6459:52;6547:9;6534:23;-1:-1:-1;;;;;6572:6:1;6569:30;6566:50;;;6612:1;6609;6602:12;6566:50;6635:22;;6688:4;6680:13;;6676:27;-1:-1:-1;6666:55:1;;6717:1;6714;6707:12;6666:55;6740:73;6805:7;6800:2;6787:16;6782:2;6778;6774:11;6740:73;:::i;6824:180::-;6883:6;6936:2;6924:9;6915:7;6911:23;6907:32;6904:52;;;6952:1;6949;6942:12;6904:52;-1:-1:-1;6975:23:1;;6824:180;-1:-1:-1;6824:180:1:o;7009:257::-;7050:3;7088:5;7082:12;7115:6;7110:3;7103:19;7131:63;7187:6;7180:4;7175:3;7171:14;7164:4;7157:5;7153:16;7131:63;:::i;:::-;7248:2;7227:15;-1:-1:-1;;7223:29:1;7214:39;;;;7255:4;7210:50;;7009:257;-1:-1:-1;;7009:257:1:o;7271:470::-;7450:3;7488:6;7482:13;7504:53;7550:6;7545:3;7538:4;7530:6;7526:17;7504:53;:::i;:::-;7620:13;;7579:16;;;;7642:57;7620:13;7579:16;7676:4;7664:17;;7642:57;:::i;:::-;7715:20;;7271:470;-1:-1:-1;;;;7271:470:1:o;8164:488::-;-1:-1:-1;;;;;8433:15:1;;;8415:34;;8485:15;;8480:2;8465:18;;8458:43;8532:2;8517:18;;8510:34;;;8580:3;8575:2;8560:18;;8553:31;;;8358:4;;8601:45;;8626:19;;8618:6;8601:45;:::i;:::-;8593:53;8164:488;-1:-1:-1;;;;;;8164:488:1:o;8849:219::-;8998:2;8987:9;8980:21;8961:4;9018:44;9058:2;9047:9;9043:18;9035:6;9018:44;:::i;10869:340::-;11071:2;11053:21;;;11110:2;11090:18;;;11083:30;-1:-1:-1;;;11144:2:1;11129:18;;11122:46;11200:2;11185:18;;10869:340::o;11954:275::-;12025:2;12019:9;12090:2;12071:13;;-1:-1:-1;;12067:27:1;12055:40;;-1:-1:-1;;;;;12110:34:1;;12146:22;;;12107:62;12104:88;;;12172:18;;:::i;:::-;12208:2;12201:22;11954:275;;-1:-1:-1;11954:275:1:o;12234:183::-;12294:4;-1:-1:-1;;;;;12319:6:1;12316:30;12313:56;;;12349:18;;:::i;:::-;-1:-1:-1;12394:1:1;12390:14;12406:4;12386:25;;12234:183::o;12422:238::-;12462:3;-1:-1:-1;;;;;12529:10:1;;;12559;;;12589:12;;;12581:21;;12578:47;;;12605:18;;:::i;12665:128::-;12705:3;12736:1;12732:6;12729:1;12726:13;12723:39;;;12742:18;;:::i;:::-;-1:-1:-1;12778:9:1;;12665:128::o;12798:120::-;12838:1;12864;12854:35;;12869:18;;:::i;:::-;-1:-1:-1;12903:9:1;;12798:120::o;12923:168::-;12963:7;13029:1;13025;13021:6;13017:14;13014:1;13011:21;13006:1;12999:9;12992:17;12988:45;12985:71;;;13036:18;;:::i;:::-;-1:-1:-1;13076:9:1;;12923:168::o;13096:231::-;13136:4;-1:-1:-1;;;;;13234:10:1;;;;13204;;13256:12;;;13253:38;;;13271:18;;:::i;:::-;13308:13;;13096:231;-1:-1:-1;;;13096:231:1:o;13332:125::-;13372:4;13400:1;13397;13394:8;13391:34;;;13405:18;;:::i;:::-;-1:-1:-1;13442:9:1;;13332:125::o;13462:258::-;13534:1;13544:113;13558:6;13555:1;13552:13;13544:113;;;13634:11;;;13628:18;13615:11;;;13608:39;13580:2;13573:10;13544:113;;;13675:6;13672:1;13669:13;13666:48;;;-1:-1:-1;;13710:1:1;13692:16;;13685:27;13462:258::o;13725:380::-;13804:1;13800:12;;;;13847;;;13868:61;;13922:4;13914:6;13910:17;13900:27;;13868:61;13975:2;13967:6;13964:14;13944:18;13941:38;13938:161;;;14021:10;14016:3;14012:20;14009:1;14002:31;14056:4;14053:1;14046:15;14084:4;14081:1;14074:15;13938:161;;13725:380;;;:::o;14110:135::-;14149:3;-1:-1:-1;;14170:17:1;;14167:43;;;14190:18;;:::i;:::-;-1:-1:-1;14237:1:1;14226:13;;14110:135::o;14250:112::-;14282:1;14308;14298:35;;14313:18;;:::i;:::-;-1:-1:-1;14347:9:1;;14250:112::o;14367:127::-;14428:10;14423:3;14419:20;14416:1;14409:31;14459:4;14456:1;14449:15;14483:4;14480:1;14473:15;14499:127;14560:10;14555:3;14551:20;14548:1;14541:31;14591:4;14588:1;14581:15;14615:4;14612:1;14605:15;14631:127;14692:10;14687:3;14683:20;14680:1;14673:31;14723:4;14720:1;14713:15;14747:4;14744:1;14737:15;14763:127;14824:10;14819:3;14815:20;14812:1;14805:31;14855:4;14852:1;14845:15;14879:4;14876:1;14869:15;14895:131;-1:-1:-1;;;;;;14969:32:1;;14959:43;;14949:71;;15016:1;15013;15006:12

Swarm Source

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