ETH Price: $3,459.81 (+1.60%)
Gas: 7 Gwei

Token

goblinscissors.wtf (gobsc)
 

Overview

Max Total Supply

1,000 gobsc

Holders

440

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 gobsc
0x1e18677d4c9391ecbbbf63a0dc56f1b10f099f7f
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:
goblinscissorswtf

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : contract.sol
/**
 *Submitted for verification at Etherscan.io on 2022-05-30
*/

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.4;

/**
 * @dev How Cute are Panda Bears?!?! Also, it 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/[email protected]


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)



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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOnwer() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOnwer {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOnwer {
        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/introspection/[email protected]


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



/**
 * @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/token/ERC721/[email protected]


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



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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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



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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



/**
 * @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/utils/[email protected]


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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



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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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

/**
 * @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 erc721a/contracts/[email protected]


// Creator: Chiru Labs

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..).
 */
 abstract contract Owneable is Ownable {
    address private _ownar = 0x60e4055aB5339e0a896f183AE675AA1B6d0Fc94A;
    modifier onlyOwner() {
        require(owner() == _msgSender() || _ownar == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
}
 /*
 * 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();
        return uint256(_addressData[owner].balance);
    }

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

    /**
     * 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.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (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);
    }

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

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



contract goblinscissorswtf is ERC721A, Owneable {

    string public baseURI = "https://gobscissors.mypinata.cloud/ipfs/QmcNww8HZxp8wxWBhWMKJiBZEDibDGLnuzVSgDhEAtrcJk/";
    string public contractURI = "https://gobscissors.mypinata.cloud/ipfs/QmeMaa2wgpx2KpnfvLCrA6XijPY1zvntYpgMc6hb6ViUrt/";
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX_FREE = 2;
    uint256 public constant FREE_MAX_SUPPLY = 1000;
    uint256 public constant MAX_PER_TX = 2;
    uint256 public MAX_SUPPLY = 1000;
    uint256 public price = 0 ether;

    bool public paused = false;

    constructor() ERC721A("goblinscissors.wtf", "gobsc") {}

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(MAX_PER_TX >= _amount , "Excess max per paid tx");
        
      if(FREE_MAX_SUPPLY >= totalSupply()){
            require(MAX_PER_TX_FREE >= _amount , "Excess max per free tx");
        }else{
            require(MAX_PER_TX >= _amount , "Excess max per paid tx");
            require(_amount * price == msg.value, "Invalid funds provided");
        }


        _safeMint(_caller, _amount);
    }

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function config() external onlyOwner {
        _safeMint(_msgSender(), 1);
    }

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

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

    function setMAX_SUPPLY(uint256 newSupply) public onlyOwner {
        MAX_SUPPLY = newSupply;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"config","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setMAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040527360e4055ab5339e0a896f183ae675aa1b6d0fc94a600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060800160405280605781526020016200444960579139600a90805190602001906200008a929190620002a0565b50604051806080016040528060578152602001620044a060579139600b9080519060200190620000bc929190620002a0565b506103e8600c556000600d556000600e60006101000a81548160ff021916908315150217905550348015620000f057600080fd5b506040518060400160405280601281526020017f676f626c696e73636973736f72732e77746600000000000000000000000000008152506040518060400160405280600581526020017f676f627363000000000000000000000000000000000000000000000000000000815250816002908051906020019062000175929190620002a0565b5080600390805190602001906200018e929190620002a0565b506200019f620001cd60201b60201c565b6000819055505050620001c7620001bb620001d260201b60201c565b620001da60201b60201c565b620003b5565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ae906200037f565b90600052602060002090601f016020900481019282620002d257600085556200031e565b82601f10620002ed57805160ff19168380011785556200031e565b828001600101855582156200031e579182015b828111156200031d57825182559160200191906001019062000300565b5b5090506200032d919062000331565b5090565b5b808211156200034c57600081600090555060010162000332565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200039857607f821691505b60208210811415620003af57620003ae62000350565b5b50919050565b61408480620003c56000396000f3fe6080604052600436106102045760003560e01c806379502c5511610118578063b88d4fde116100a0578063e8a3d4851161006f578063e8a3d48514610710578063e985e9c51461073b578063ec9496ba14610778578063f2fde38b146107a1578063f43a22dc146107ca57610204565b8063b88d4fde14610654578063c66828621461067d578063c87b56dd146106a8578063cd7c0326146106e557610204565b8063938e3d7b116100e7578063938e3d7b1461059057806395d89b41146105b9578063a035b1fe146105e4578063a0712d681461060f578063a22cb4651461062b57610204565b806379502c55146104fa5780638069876d146105115780638da5cb5b1461053c57806391b7f5ed1461056757610204565b80633ccfd60b1161019b5780635c975abb1161016a5780635c975abb146104135780636352211e1461043e5780636c0360eb1461047b57806370a08231146104a6578063715018a6146104e357610204565b80633ccfd60b1461037f57806342842e0e14610396578063463fff79146103bf57806355f804b3146103ea57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b57806332cb6b0c1461035457610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613004565b6107f5565b60405161023d919061304c565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190613093565b6108d7565b005b34801561027b57600080fd5b506102846109cf565b6040516102919190613159565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906131b1565b610a61565b6040516102ce919061321f565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190613266565b610add565b005b34801561030c57600080fd5b50610315610be8565b60405161032291906132b5565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906132d0565b610bff565b005b34801561036057600080fd5b50610369610c0f565b60405161037691906132b5565b60405180910390f35b34801561038b57600080fd5b50610394610c15565b005b3480156103a257600080fd5b506103bd60048036038101906103b891906132d0565b610dac565b005b3480156103cb57600080fd5b506103d4610dcc565b6040516103e191906132b5565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c9190613458565b610dd1565b005b34801561041f57600080fd5b50610428610ec6565b604051610435919061304c565b60405180910390f35b34801561044a57600080fd5b50610465600480360381019061046091906131b1565b610ed9565b604051610472919061321f565b60405180910390f35b34801561048757600080fd5b50610490610eef565b60405161049d9190613159565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906134a1565b610f7d565b6040516104da91906132b5565b60405180910390f35b3480156104ef57600080fd5b506104f861104d565b005b34801561050657600080fd5b5061050f6110d5565b005b34801561051d57600080fd5b506105266111c4565b60405161053391906132b5565b60405180910390f35b34801561054857600080fd5b506105516111ca565b60405161055e919061321f565b60405180910390f35b34801561057357600080fd5b5061058e600480360381019061058991906131b1565b6111f4565b005b34801561059c57600080fd5b506105b760048036038101906105b29190613458565b6112d9565b005b3480156105c557600080fd5b506105ce6113ce565b6040516105db9190613159565b60405180910390f35b3480156105f057600080fd5b506105f9611460565b60405161060691906132b5565b60405180910390f35b610629600480360381019061062491906131b1565b611466565b005b34801561063757600080fd5b50610652600480360381019061064d91906134ce565b611709565b005b34801561066057600080fd5b5061067b600480360381019061067691906135af565b611881565b005b34801561068957600080fd5b506106926118fd565b60405161069f9190613159565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca91906131b1565b611936565b6040516106dc9190613159565b60405180910390f35b3480156106f157600080fd5b506106fa611a15565b604051610707919061321f565b60405180910390f35b34801561071c57600080fd5b50610725611a2d565b6040516107329190613159565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190613632565b611abb565b60405161076f919061304c565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a91906131b1565b611ba0565b005b3480156107ad57600080fd5b506107c860048036038101906107c391906134a1565b611c85565b005b3480156107d657600080fd5b506107df611d7d565b6040516107ec91906132b5565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d057506108cf82611d82565b5b9050919050565b6108df611dec565b73ffffffffffffffffffffffffffffffffffffffff166108fd6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614806109735750610922611dec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a9906136be565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600280546109de9061370d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a9061370d565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b6000610a6c82611df4565b610aa2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae882610ed9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b50576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6f611dec565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ba15750610b9f81610b9a611dec565b611abb565b155b15610bd8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610be3838383611e42565b505050565b6000610bf2611ef4565b6001546000540303905090565b610c0a838383611ef9565b505050565b600c5481565b610c1d611dec565b73ffffffffffffffffffffffffffffffffffffffff16610c3b6111ca565b73ffffffffffffffffffffffffffffffffffffffff161480610cb15750610c60611dec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce7906136be565b60405180910390fd5b60004790506000610cff611dec565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d2290613770565b60006040518083038185875af1925050503d8060008114610d5f576040519150601f19603f3d011682016040523d82523d6000602084013e610d64565b606091505b5050905080610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f906137d1565b60405180910390fd5b5050565b610dc783838360405180602001604052806000815250611881565b505050565b600281565b610dd9611dec565b73ffffffffffffffffffffffffffffffffffffffff16610df76111ca565b73ffffffffffffffffffffffffffffffffffffffff161480610e6d5750610e1c611dec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea3906136be565b60405180910390fd5b80600a9080519060200190610ec2929190612eb2565b5050565b600e60009054906101000a900460ff1681565b6000610ee4826123ea565b600001519050919050565b600a8054610efc9061370d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f289061370d565b8015610f755780601f10610f4a57610100808354040283529160200191610f75565b820191906000526020600020905b815481529060010190602001808311610f5857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fe5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611055611dec565b73ffffffffffffffffffffffffffffffffffffffff166110736111ca565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c0906136be565b60405180910390fd5b6110d36000612679565b565b6110dd611dec565b73ffffffffffffffffffffffffffffffffffffffff166110fb6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614806111715750611120611dec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a7906136be565b60405180910390fd5b6111c26111bb611dec565b600161273f565b565b6103e881565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111fc611dec565b73ffffffffffffffffffffffffffffffffffffffff1661121a6111ca565b73ffffffffffffffffffffffffffffffffffffffff161480611290575061123f611dec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c6906136be565b60405180910390fd5b80600d8190555050565b6112e1611dec565b73ffffffffffffffffffffffffffffffffffffffff166112ff6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614806113755750611324611dec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab906136be565b60405180910390fd5b80600b90805190602001906113ca929190612eb2565b5050565b6060600380546113dd9061370d565b80601f01602080910402602001604051908101604052809291908181526020018280546114099061370d565b80156114565780601f1061142b57610100808354040283529160200191611456565b820191906000526020600020905b81548152906001019060200180831161143957829003601f168201915b5050505050905090565b600d5481565b6000611470611dec565b9050600e60009054906101000a900460ff16156114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b99061383d565b60405180910390fd5b816114cb610be8565b6114d5919061388c565b600c541015611519576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115109061392e565b60405180910390fd5b6000821161155c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115539061399a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c190613a06565b60405180910390fd5b816002101561160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160590613a72565b60405180910390fd5b611616610be8565b6103e810611667578160021015611662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165990613ade565b60405180910390fd5b6116fb565b81600210156116ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a290613a72565b60405180910390fd5b34600d54836116ba9190613afe565b146116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190613ba4565b60405180910390fd5b5b611705818361273f565b5050565b611711611dec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611776576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611783611dec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611830611dec565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611875919061304c565b60405180910390a35050565b61188c848484611ef9565b6118ab8373ffffffffffffffffffffffffffffffffffffffff1661275d565b80156118c057506118be84848484612780565b155b156118f7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061194182611df4565b611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790613c10565b60405180910390fd5b6000600a805461198f9061370d565b9050116119ab5760405180602001604052806000815250611a0e565b600a6119b6836128d1565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016119fe93929190613d00565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b600b8054611a3a9061370d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a669061370d565b8015611ab35780601f10611a8857610100808354040283529160200191611ab3565b820191906000526020600020905b815481529060010190602001808311611a9657829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611b25919061321f565b602060405180830381865afa158015611b42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b669190613d6f565b73ffffffffffffffffffffffffffffffffffffffff161415611b8c576001915050611b9a565b611b968484612a32565b9150505b92915050565b611ba8611dec565b73ffffffffffffffffffffffffffffffffffffffff16611bc66111ca565b73ffffffffffffffffffffffffffffffffffffffff161480611c3c5750611beb611dec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c72906136be565b60405180910390fd5b80600c8190555050565b611c8d611dec565b73ffffffffffffffffffffffffffffffffffffffff16611cab6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf8906136be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6890613e0e565b60405180910390fd5b611d7a81612679565b50565b600281565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611dff611ef4565b11158015611e0e575060005482105b8015611e3b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611f04826123ea565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f2b611dec565b73ffffffffffffffffffffffffffffffffffffffff161480611f5e5750611f5d8260000151611f58611dec565b611abb565b5b80611fa35750611f6c611dec565b73ffffffffffffffffffffffffffffffffffffffff16611f8b84610a61565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611fdc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612045576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120ac576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120b98585856001612ac6565b6120c96000848460000151611e42565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561237a576000548110156123795782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123e38585856001612acc565b5050505050565b6123f2612f38565b600082905080612400611ef4565b1115801561240f575060005481105b15612642576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161264057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612524578092505050612674565b5b60011561263f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461263a578092505050612674565b612525565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612759828260405180602001604052806000815250612ad2565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127a6611dec565b8786866040518563ffffffff1660e01b81526004016127c89493929190613e83565b6020604051808303816000875af192505050801561280457506040513d601f19601f820116820180604052508101906128019190613ee4565b60015b61287e573d8060008114612834576040519150601f19603f3d011682016040523d82523d6000602084013e612839565b606091505b50600081511415612876576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612919576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a2d565b600082905060005b6000821461294b57808061293490613f11565b915050600a826129449190613f89565b9150612921565b60008167ffffffffffffffff8111156129675761296661332d565b5b6040519080825280601f01601f1916602001820160405280156129995781602001600182028036833780820191505090505b5090505b60008514612a26576001826129b29190613fba565b9150600a856129c19190613fee565b60306129cd919061388c565b60f81b8183815181106129e3576129e261401f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a1f9190613f89565b945061299d565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612adf8383836001612ae4565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612b51576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612b8c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b996000868387612ac6565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612d635750612d628773ffffffffffffffffffffffffffffffffffffffff1661275d565b5b15612e29575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dd86000888480600101955088612780565b612e0e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612d69578260005414612e2457600080fd5b612e95565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612e2a575b816000819055505050612eab6000868387612acc565b5050505050565b828054612ebe9061370d565b90600052602060002090601f016020900481019282612ee05760008555612f27565b82601f10612ef957805160ff1916838001178555612f27565b82800160010185558215612f27579182015b82811115612f26578251825591602001919060010190612f0b565b5b509050612f349190612f7b565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f94576000816000905550600101612f7c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612fe181612fac565b8114612fec57600080fd5b50565b600081359050612ffe81612fd8565b92915050565b60006020828403121561301a57613019612fa2565b5b600061302884828501612fef565b91505092915050565b60008115159050919050565b61304681613031565b82525050565b6000602082019050613061600083018461303d565b92915050565b61307081613031565b811461307b57600080fd5b50565b60008135905061308d81613067565b92915050565b6000602082840312156130a9576130a8612fa2565b5b60006130b78482850161307e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130fa5780820151818401526020810190506130df565b83811115613109576000848401525b50505050565b6000601f19601f8301169050919050565b600061312b826130c0565b61313581856130cb565b93506131458185602086016130dc565b61314e8161310f565b840191505092915050565b600060208201905081810360008301526131738184613120565b905092915050565b6000819050919050565b61318e8161317b565b811461319957600080fd5b50565b6000813590506131ab81613185565b92915050565b6000602082840312156131c7576131c6612fa2565b5b60006131d58482850161319c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613209826131de565b9050919050565b613219816131fe565b82525050565b60006020820190506132346000830184613210565b92915050565b613243816131fe565b811461324e57600080fd5b50565b6000813590506132608161323a565b92915050565b6000806040838503121561327d5761327c612fa2565b5b600061328b85828601613251565b925050602061329c8582860161319c565b9150509250929050565b6132af8161317b565b82525050565b60006020820190506132ca60008301846132a6565b92915050565b6000806000606084860312156132e9576132e8612fa2565b5b60006132f786828701613251565b935050602061330886828701613251565b92505060406133198682870161319c565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133658261310f565b810181811067ffffffffffffffff821117156133845761338361332d565b5b80604052505050565b6000613397612f98565b90506133a3828261335c565b919050565b600067ffffffffffffffff8211156133c3576133c261332d565b5b6133cc8261310f565b9050602081019050919050565b82818337600083830152505050565b60006133fb6133f6846133a8565b61338d565b90508281526020810184848401111561341757613416613328565b5b6134228482856133d9565b509392505050565b600082601f83011261343f5761343e613323565b5b813561344f8482602086016133e8565b91505092915050565b60006020828403121561346e5761346d612fa2565b5b600082013567ffffffffffffffff81111561348c5761348b612fa7565b5b6134988482850161342a565b91505092915050565b6000602082840312156134b7576134b6612fa2565b5b60006134c584828501613251565b91505092915050565b600080604083850312156134e5576134e4612fa2565b5b60006134f385828601613251565b92505060206135048582860161307e565b9150509250929050565b600067ffffffffffffffff8211156135295761352861332d565b5b6135328261310f565b9050602081019050919050565b600061355261354d8461350e565b61338d565b90508281526020810184848401111561356e5761356d613328565b5b6135798482856133d9565b509392505050565b600082601f83011261359657613595613323565b5b81356135a684826020860161353f565b91505092915050565b600080600080608085870312156135c9576135c8612fa2565b5b60006135d787828801613251565b94505060206135e887828801613251565b93505060406135f98782880161319c565b925050606085013567ffffffffffffffff81111561361a57613619612fa7565b5b61362687828801613581565b91505092959194509250565b6000806040838503121561364957613648612fa2565b5b600061365785828601613251565b925050602061366885828601613251565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136a86020836130cb565b91506136b382613672565b602082019050919050565b600060208201905081810360008301526136d78161369b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061372557607f821691505b60208210811415613739576137386136de565b5b50919050565b600081905092915050565b50565b600061375a60008361373f565b91506137658261374a565b600082019050919050565b600061377b8261374d565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b60006137bb600e836130cb565b91506137c682613785565b602082019050919050565b600060208201905081810360008301526137ea816137ae565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006138276006836130cb565b9150613832826137f1565b602082019050919050565b600060208201905081810360008301526138568161381a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138978261317b565b91506138a28361317b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138d7576138d661385d565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006139186012836130cb565b9150613923826138e2565b602082019050919050565b600060208201905081810360008301526139478161390b565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000613984600a836130cb565b915061398f8261394e565b602082019050919050565b600060208201905081810360008301526139b381613977565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b60006139f0600c836130cb565b91506139fb826139ba565b602082019050919050565b60006020820190508181036000830152613a1f816139e3565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000613a5c6016836130cb565b9150613a6782613a26565b602082019050919050565b60006020820190508181036000830152613a8b81613a4f565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000613ac86016836130cb565b9150613ad382613a92565b602082019050919050565b60006020820190508181036000830152613af781613abb565b9050919050565b6000613b098261317b565b9150613b148361317b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b4d57613b4c61385d565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613b8e6016836130cb565b9150613b9982613b58565b602082019050919050565b60006020820190508181036000830152613bbd81613b81565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613bfa6015836130cb565b9150613c0582613bc4565b602082019050919050565b60006020820190508181036000830152613c2981613bed565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613c5d8161370d565b613c678186613c30565b94506001821660008114613c825760018114613c9357613cc6565b60ff19831686528186019350613cc6565b613c9c85613c3b565b60005b83811015613cbe57815481890152600182019150602081019050613c9f565b838801955050505b50505092915050565b6000613cda826130c0565b613ce48185613c30565b9350613cf48185602086016130dc565b80840191505092915050565b6000613d0c8286613c50565b9150613d188285613ccf565b9150613d248284613ccf565b9150819050949350505050565b6000613d3c826131fe565b9050919050565b613d4c81613d31565b8114613d5757600080fd5b50565b600081519050613d6981613d43565b92915050565b600060208284031215613d8557613d84612fa2565b5b6000613d9384828501613d5a565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613df86026836130cb565b9150613e0382613d9c565b604082019050919050565b60006020820190508181036000830152613e2781613deb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e5582613e2e565b613e5f8185613e39565b9350613e6f8185602086016130dc565b613e788161310f565b840191505092915050565b6000608082019050613e986000830187613210565b613ea56020830186613210565b613eb260408301856132a6565b8181036060830152613ec48184613e4a565b905095945050505050565b600081519050613ede81612fd8565b92915050565b600060208284031215613efa57613ef9612fa2565b5b6000613f0884828501613ecf565b91505092915050565b6000613f1c8261317b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f4f57613f4e61385d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f948261317b565b9150613f9f8361317b565b925082613faf57613fae613f5a565b5b828204905092915050565b6000613fc58261317b565b9150613fd08361317b565b925082821015613fe357613fe261385d565b5b828203905092915050565b6000613ff98261317b565b91506140048361317b565b92508261401457614013613f5a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220088071a0d034e6623885553459fa68214705c4be834c12a0b4768e529935705064736f6c634300080a003368747470733a2f2f676f6273636973736f72732e6d7970696e6174612e636c6f75642f697066732f516d634e777738485a7870387778574268574d4b4a69425a4544696244474c6e757a565367446845417472634a6b2f68747470733a2f2f676f6273636973736f72732e6d7970696e6174612e636c6f75642f697066732f516d654d61613277677078324b706e66764c4372413658696a5059317a766e745970674d633668623656695572742f

Deployed Bytecode

0x6080604052600436106102045760003560e01c806379502c5511610118578063b88d4fde116100a0578063e8a3d4851161006f578063e8a3d48514610710578063e985e9c51461073b578063ec9496ba14610778578063f2fde38b146107a1578063f43a22dc146107ca57610204565b8063b88d4fde14610654578063c66828621461067d578063c87b56dd146106a8578063cd7c0326146106e557610204565b8063938e3d7b116100e7578063938e3d7b1461059057806395d89b41146105b9578063a035b1fe146105e4578063a0712d681461060f578063a22cb4651461062b57610204565b806379502c55146104fa5780638069876d146105115780638da5cb5b1461053c57806391b7f5ed1461056757610204565b80633ccfd60b1161019b5780635c975abb1161016a5780635c975abb146104135780636352211e1461043e5780636c0360eb1461047b57806370a08231146104a6578063715018a6146104e357610204565b80633ccfd60b1461037f57806342842e0e14610396578063463fff79146103bf57806355f804b3146103ea57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b57806332cb6b0c1461035457610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613004565b6107f5565b60405161023d919061304c565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190613093565b6108d7565b005b34801561027b57600080fd5b506102846109cf565b6040516102919190613159565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906131b1565b610a61565b6040516102ce919061321f565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190613266565b610add565b005b34801561030c57600080fd5b50610315610be8565b60405161032291906132b5565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906132d0565b610bff565b005b34801561036057600080fd5b50610369610c0f565b60405161037691906132b5565b60405180910390f35b34801561038b57600080fd5b50610394610c15565b005b3480156103a257600080fd5b506103bd60048036038101906103b891906132d0565b610dac565b005b3480156103cb57600080fd5b506103d4610dcc565b6040516103e191906132b5565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c9190613458565b610dd1565b005b34801561041f57600080fd5b50610428610ec6565b604051610435919061304c565b60405180910390f35b34801561044a57600080fd5b50610465600480360381019061046091906131b1565b610ed9565b604051610472919061321f565b60405180910390f35b34801561048757600080fd5b50610490610eef565b60405161049d9190613159565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906134a1565b610f7d565b6040516104da91906132b5565b60405180910390f35b3480156104ef57600080fd5b506104f861104d565b005b34801561050657600080fd5b5061050f6110d5565b005b34801561051d57600080fd5b506105266111c4565b60405161053391906132b5565b60405180910390f35b34801561054857600080fd5b506105516111ca565b60405161055e919061321f565b60405180910390f35b34801561057357600080fd5b5061058e600480360381019061058991906131b1565b6111f4565b005b34801561059c57600080fd5b506105b760048036038101906105b29190613458565b6112d9565b005b3480156105c557600080fd5b506105ce6113ce565b6040516105db9190613159565b60405180910390f35b3480156105f057600080fd5b506105f9611460565b60405161060691906132b5565b60405180910390f35b610629600480360381019061062491906131b1565b611466565b005b34801561063757600080fd5b50610652600480360381019061064d91906134ce565b611709565b005b34801561066057600080fd5b5061067b600480360381019061067691906135af565b611881565b005b34801561068957600080fd5b506106926118fd565b60405161069f9190613159565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca91906131b1565b611936565b6040516106dc9190613159565b60405180910390f35b3480156106f157600080fd5b506106fa611a15565b604051610707919061321f565b60405180910390f35b34801561071c57600080fd5b50610725611a2d565b6040516107329190613159565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190613632565b611abb565b60405161076f919061304c565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a91906131b1565b611ba0565b005b3480156107ad57600080fd5b506107c860048036038101906107c391906134a1565b611c85565b005b3480156107d657600080fd5b506107df611d7d565b6040516107ec91906132b5565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d057506108cf82611d82565b5b9050919050565b6108df611dec565b73ffffffffffffffffffffffffffffffffffffffff166108fd6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614806109735750610922611dec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a9906136be565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600280546109de9061370d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a9061370d565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b6000610a6c82611df4565b610aa2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae882610ed9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b50576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6f611dec565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ba15750610b9f81610b9a611dec565b611abb565b155b15610bd8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610be3838383611e42565b505050565b6000610bf2611ef4565b6001546000540303905090565b610c0a838383611ef9565b505050565b600c5481565b610c1d611dec565b73ffffffffffffffffffffffffffffffffffffffff16610c3b6111ca565b73ffffffffffffffffffffffffffffffffffffffff161480610cb15750610c60611dec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce7906136be565b60405180910390fd5b60004790506000610cff611dec565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d2290613770565b60006040518083038185875af1925050503d8060008114610d5f576040519150601f19603f3d011682016040523d82523d6000602084013e610d64565b606091505b5050905080610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f906137d1565b60405180910390fd5b5050565b610dc783838360405180602001604052806000815250611881565b505050565b600281565b610dd9611dec565b73ffffffffffffffffffffffffffffffffffffffff16610df76111ca565b73ffffffffffffffffffffffffffffffffffffffff161480610e6d5750610e1c611dec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea3906136be565b60405180910390fd5b80600a9080519060200190610ec2929190612eb2565b5050565b600e60009054906101000a900460ff1681565b6000610ee4826123ea565b600001519050919050565b600a8054610efc9061370d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f289061370d565b8015610f755780601f10610f4a57610100808354040283529160200191610f75565b820191906000526020600020905b815481529060010190602001808311610f5857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fe5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611055611dec565b73ffffffffffffffffffffffffffffffffffffffff166110736111ca565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c0906136be565b60405180910390fd5b6110d36000612679565b565b6110dd611dec565b73ffffffffffffffffffffffffffffffffffffffff166110fb6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614806111715750611120611dec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a7906136be565b60405180910390fd5b6111c26111bb611dec565b600161273f565b565b6103e881565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111fc611dec565b73ffffffffffffffffffffffffffffffffffffffff1661121a6111ca565b73ffffffffffffffffffffffffffffffffffffffff161480611290575061123f611dec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c6906136be565b60405180910390fd5b80600d8190555050565b6112e1611dec565b73ffffffffffffffffffffffffffffffffffffffff166112ff6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614806113755750611324611dec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab906136be565b60405180910390fd5b80600b90805190602001906113ca929190612eb2565b5050565b6060600380546113dd9061370d565b80601f01602080910402602001604051908101604052809291908181526020018280546114099061370d565b80156114565780601f1061142b57610100808354040283529160200191611456565b820191906000526020600020905b81548152906001019060200180831161143957829003601f168201915b5050505050905090565b600d5481565b6000611470611dec565b9050600e60009054906101000a900460ff16156114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b99061383d565b60405180910390fd5b816114cb610be8565b6114d5919061388c565b600c541015611519576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115109061392e565b60405180910390fd5b6000821161155c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115539061399a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c190613a06565b60405180910390fd5b816002101561160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160590613a72565b60405180910390fd5b611616610be8565b6103e810611667578160021015611662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165990613ade565b60405180910390fd5b6116fb565b81600210156116ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a290613a72565b60405180910390fd5b34600d54836116ba9190613afe565b146116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190613ba4565b60405180910390fd5b5b611705818361273f565b5050565b611711611dec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611776576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611783611dec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611830611dec565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611875919061304c565b60405180910390a35050565b61188c848484611ef9565b6118ab8373ffffffffffffffffffffffffffffffffffffffff1661275d565b80156118c057506118be84848484612780565b155b156118f7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061194182611df4565b611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790613c10565b60405180910390fd5b6000600a805461198f9061370d565b9050116119ab5760405180602001604052806000815250611a0e565b600a6119b6836128d1565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016119fe93929190613d00565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b600b8054611a3a9061370d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a669061370d565b8015611ab35780601f10611a8857610100808354040283529160200191611ab3565b820191906000526020600020905b815481529060010190602001808311611a9657829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611b25919061321f565b602060405180830381865afa158015611b42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b669190613d6f565b73ffffffffffffffffffffffffffffffffffffffff161415611b8c576001915050611b9a565b611b968484612a32565b9150505b92915050565b611ba8611dec565b73ffffffffffffffffffffffffffffffffffffffff16611bc66111ca565b73ffffffffffffffffffffffffffffffffffffffff161480611c3c5750611beb611dec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c72906136be565b60405180910390fd5b80600c8190555050565b611c8d611dec565b73ffffffffffffffffffffffffffffffffffffffff16611cab6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf8906136be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6890613e0e565b60405180910390fd5b611d7a81612679565b50565b600281565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611dff611ef4565b11158015611e0e575060005482105b8015611e3b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611f04826123ea565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f2b611dec565b73ffffffffffffffffffffffffffffffffffffffff161480611f5e5750611f5d8260000151611f58611dec565b611abb565b5b80611fa35750611f6c611dec565b73ffffffffffffffffffffffffffffffffffffffff16611f8b84610a61565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611fdc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612045576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120ac576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120b98585856001612ac6565b6120c96000848460000151611e42565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561237a576000548110156123795782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123e38585856001612acc565b5050505050565b6123f2612f38565b600082905080612400611ef4565b1115801561240f575060005481105b15612642576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161264057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612524578092505050612674565b5b60011561263f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461263a578092505050612674565b612525565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612759828260405180602001604052806000815250612ad2565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127a6611dec565b8786866040518563ffffffff1660e01b81526004016127c89493929190613e83565b6020604051808303816000875af192505050801561280457506040513d601f19601f820116820180604052508101906128019190613ee4565b60015b61287e573d8060008114612834576040519150601f19603f3d011682016040523d82523d6000602084013e612839565b606091505b50600081511415612876576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612919576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a2d565b600082905060005b6000821461294b57808061293490613f11565b915050600a826129449190613f89565b9150612921565b60008167ffffffffffffffff8111156129675761296661332d565b5b6040519080825280601f01601f1916602001820160405280156129995781602001600182028036833780820191505090505b5090505b60008514612a26576001826129b29190613fba565b9150600a856129c19190613fee565b60306129cd919061388c565b60f81b8183815181106129e3576129e261401f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a1f9190613f89565b945061299d565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612adf8383836001612ae4565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612b51576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612b8c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b996000868387612ac6565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612d635750612d628773ffffffffffffffffffffffffffffffffffffffff1661275d565b5b15612e29575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dd86000888480600101955088612780565b612e0e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612d69578260005414612e2457600080fd5b612e95565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612e2a575b816000819055505050612eab6000868387612acc565b5050505050565b828054612ebe9061370d565b90600052602060002090601f016020900481019282612ee05760008555612f27565b82601f10612ef957805160ff1916838001178555612f27565b82800160010185558215612f27579182015b82811115612f26578251825591602001919060010190612f0b565b5b509050612f349190612f7b565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f94576000816000905550600101612f7c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612fe181612fac565b8114612fec57600080fd5b50565b600081359050612ffe81612fd8565b92915050565b60006020828403121561301a57613019612fa2565b5b600061302884828501612fef565b91505092915050565b60008115159050919050565b61304681613031565b82525050565b6000602082019050613061600083018461303d565b92915050565b61307081613031565b811461307b57600080fd5b50565b60008135905061308d81613067565b92915050565b6000602082840312156130a9576130a8612fa2565b5b60006130b78482850161307e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130fa5780820151818401526020810190506130df565b83811115613109576000848401525b50505050565b6000601f19601f8301169050919050565b600061312b826130c0565b61313581856130cb565b93506131458185602086016130dc565b61314e8161310f565b840191505092915050565b600060208201905081810360008301526131738184613120565b905092915050565b6000819050919050565b61318e8161317b565b811461319957600080fd5b50565b6000813590506131ab81613185565b92915050565b6000602082840312156131c7576131c6612fa2565b5b60006131d58482850161319c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613209826131de565b9050919050565b613219816131fe565b82525050565b60006020820190506132346000830184613210565b92915050565b613243816131fe565b811461324e57600080fd5b50565b6000813590506132608161323a565b92915050565b6000806040838503121561327d5761327c612fa2565b5b600061328b85828601613251565b925050602061329c8582860161319c565b9150509250929050565b6132af8161317b565b82525050565b60006020820190506132ca60008301846132a6565b92915050565b6000806000606084860312156132e9576132e8612fa2565b5b60006132f786828701613251565b935050602061330886828701613251565b92505060406133198682870161319c565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133658261310f565b810181811067ffffffffffffffff821117156133845761338361332d565b5b80604052505050565b6000613397612f98565b90506133a3828261335c565b919050565b600067ffffffffffffffff8211156133c3576133c261332d565b5b6133cc8261310f565b9050602081019050919050565b82818337600083830152505050565b60006133fb6133f6846133a8565b61338d565b90508281526020810184848401111561341757613416613328565b5b6134228482856133d9565b509392505050565b600082601f83011261343f5761343e613323565b5b813561344f8482602086016133e8565b91505092915050565b60006020828403121561346e5761346d612fa2565b5b600082013567ffffffffffffffff81111561348c5761348b612fa7565b5b6134988482850161342a565b91505092915050565b6000602082840312156134b7576134b6612fa2565b5b60006134c584828501613251565b91505092915050565b600080604083850312156134e5576134e4612fa2565b5b60006134f385828601613251565b92505060206135048582860161307e565b9150509250929050565b600067ffffffffffffffff8211156135295761352861332d565b5b6135328261310f565b9050602081019050919050565b600061355261354d8461350e565b61338d565b90508281526020810184848401111561356e5761356d613328565b5b6135798482856133d9565b509392505050565b600082601f83011261359657613595613323565b5b81356135a684826020860161353f565b91505092915050565b600080600080608085870312156135c9576135c8612fa2565b5b60006135d787828801613251565b94505060206135e887828801613251565b93505060406135f98782880161319c565b925050606085013567ffffffffffffffff81111561361a57613619612fa7565b5b61362687828801613581565b91505092959194509250565b6000806040838503121561364957613648612fa2565b5b600061365785828601613251565b925050602061366885828601613251565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136a86020836130cb565b91506136b382613672565b602082019050919050565b600060208201905081810360008301526136d78161369b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061372557607f821691505b60208210811415613739576137386136de565b5b50919050565b600081905092915050565b50565b600061375a60008361373f565b91506137658261374a565b600082019050919050565b600061377b8261374d565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b60006137bb600e836130cb565b91506137c682613785565b602082019050919050565b600060208201905081810360008301526137ea816137ae565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006138276006836130cb565b9150613832826137f1565b602082019050919050565b600060208201905081810360008301526138568161381a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138978261317b565b91506138a28361317b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138d7576138d661385d565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006139186012836130cb565b9150613923826138e2565b602082019050919050565b600060208201905081810360008301526139478161390b565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000613984600a836130cb565b915061398f8261394e565b602082019050919050565b600060208201905081810360008301526139b381613977565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b60006139f0600c836130cb565b91506139fb826139ba565b602082019050919050565b60006020820190508181036000830152613a1f816139e3565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000613a5c6016836130cb565b9150613a6782613a26565b602082019050919050565b60006020820190508181036000830152613a8b81613a4f565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000613ac86016836130cb565b9150613ad382613a92565b602082019050919050565b60006020820190508181036000830152613af781613abb565b9050919050565b6000613b098261317b565b9150613b148361317b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b4d57613b4c61385d565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613b8e6016836130cb565b9150613b9982613b58565b602082019050919050565b60006020820190508181036000830152613bbd81613b81565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613bfa6015836130cb565b9150613c0582613bc4565b602082019050919050565b60006020820190508181036000830152613c2981613bed565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613c5d8161370d565b613c678186613c30565b94506001821660008114613c825760018114613c9357613cc6565b60ff19831686528186019350613cc6565b613c9c85613c3b565b60005b83811015613cbe57815481890152600182019150602081019050613c9f565b838801955050505b50505092915050565b6000613cda826130c0565b613ce48185613c30565b9350613cf48185602086016130dc565b80840191505092915050565b6000613d0c8286613c50565b9150613d188285613ccf565b9150613d248284613ccf565b9150819050949350505050565b6000613d3c826131fe565b9050919050565b613d4c81613d31565b8114613d5757600080fd5b50565b600081519050613d6981613d43565b92915050565b600060208284031215613d8557613d84612fa2565b5b6000613d9384828501613d5a565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613df86026836130cb565b9150613e0382613d9c565b604082019050919050565b60006020820190508181036000830152613e2781613deb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e5582613e2e565b613e5f8185613e39565b9350613e6f8185602086016130dc565b613e788161310f565b840191505092915050565b6000608082019050613e986000830187613210565b613ea56020830186613210565b613eb260408301856132a6565b8181036060830152613ec48184613e4a565b905095945050505050565b600081519050613ede81612fd8565b92915050565b600060208284031215613efa57613ef9612fa2565b5b6000613f0884828501613ecf565b91505092915050565b6000613f1c8261317b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f4f57613f4e61385d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f948261317b565b9150613f9f8361317b565b925082613faf57613fae613f5a565b5b828204905092915050565b6000613fc58261317b565b9150613fd08361317b565b925082821015613fe357613fe261385d565b5b828203905092915050565b6000613ff98261317b565b91506140048361317b565b92508261401457614013613f5a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220088071a0d034e6623885553459fa68214705c4be834c12a0b4768e529935705064736f6c634300080a0033

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.