ETH Price: $2,437.37 (+3.38%)
Gas: 1.77 Gwei

Token

CubesNFT (CUBES)
 

Overview

Max Total Supply

1,010 CUBES

Holders

842

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CUBES
0x88841c6274dc2f787448b33961daad9685226d99
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:
CubesNFT

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-07
*/

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

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

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _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 {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: contracts/4_CubesNFT.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;



contract CubesNFT is ERC721A, Ownable {
    uint256 public PUBLIC_SALE_TIME;
    uint256 public PUBLIC_SALE_PRICE;
    string BASE_URI;
    mapping(address => uint8) presaleClaimed;

    constructor(string memory baseURI) ERC721A("CubesNFT", "CUBES") {
        PUBLIC_SALE_TIME = block.timestamp + 2592000;
        PUBLIC_SALE_PRICE = 6e15;
        BASE_URI = baseURI;
    }

    function setPublicSaleTime(uint256 newTime) external onlyOwner {
        PUBLIC_SALE_TIME = newTime;
    }

    function setPublicSalePrice(uint256 newPrice) external onlyOwner {
        PUBLIC_SALE_PRICE = newPrice;
    }

    function setBaseURI(string memory newURI) external onlyOwner {
        BASE_URI = newURI;
    }

        function mint(uint8 quantity) external payable {
        uint256 unitPrice = PUBLIC_SALE_PRICE;
        if (PUBLIC_SALE_TIME > block.timestamp) {
            require(quantity == 1, "One mint at a time during presale");
            require(
                presaleClaimed[_msgSender()] < 2,
                "Presale already claimed!"
            );
            require((totalSupply() + quantity) < 1000, "Free mint limit reached");
            presaleClaimed[_msgSender()] += quantity;
            unitPrice = 0;
        }
        require(
            msg.value >= quantity * unitPrice,
            "Insufficient price to purchase"
        );
        _safeMint(_msgSender(), quantity);
        payable(owner()).transfer(msg.value);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_TIME","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"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":[],"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":"payable","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":"payable","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":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTime","type":"uint256"}],"name":"setPublicSaleTime","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620031ba380380620031ba8339818101604052810190620000379190620003a3565b6040518060400160405280600881526020017f43756265734e46540000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f43554245530000000000000000000000000000000000000000000000000000008152508160029081620000b491906200063f565b508060039081620000c691906200063f565b50620000d76200013d60201b60201c565b6000819055505050620000ff620000f36200014260201b60201c565b6200014a60201b60201c565b62278d004262000110919062000755565b600981905550661550f7dca70000600a8190555080600b90816200013591906200063f565b505062000790565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000279826200022e565b810181811067ffffffffffffffff821117156200029b576200029a6200023f565b5b80604052505050565b6000620002b062000210565b9050620002be82826200026e565b919050565b600067ffffffffffffffff821115620002e157620002e06200023f565b5b620002ec826200022e565b9050602081019050919050565b60005b8381101562000319578082015181840152602081019050620002fc565b60008484015250505050565b60006200033c6200033684620002c3565b620002a4565b9050828152602081018484840111156200035b576200035a62000229565b5b62000368848285620002f9565b509392505050565b600082601f83011262000388576200038762000224565b5b81516200039a84826020860162000325565b91505092915050565b600060208284031215620003bc57620003bb6200021a565b5b600082015167ffffffffffffffff811115620003dd57620003dc6200021f565b5b620003eb8482850162000370565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200044757607f821691505b6020821081036200045d576200045c620003ff565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004c77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000488565b620004d3868362000488565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005206200051a6200051484620004eb565b620004f5565b620004eb565b9050919050565b6000819050919050565b6200053c83620004ff565b620005546200054b8262000527565b84845462000495565b825550505050565b600090565b6200056b6200055c565b6200057881848462000531565b505050565b5b81811015620005a0576200059460008262000561565b6001810190506200057e565b5050565b601f821115620005ef57620005b98162000463565b620005c48462000478565b81016020851015620005d4578190505b620005ec620005e38562000478565b8301826200057d565b50505b505050565b600082821c905092915050565b60006200061460001984600802620005f4565b1980831691505092915050565b60006200062f838362000601565b9150826002028217905092915050565b6200064a82620003f4565b67ffffffffffffffff8111156200066657620006656200023f565b5b6200067282546200042e565b6200067f828285620005a4565b600060209050601f831160018114620006b75760008415620006a2578287015190505b620006ae858262000621565b8655506200071e565b601f198416620006c78662000463565b60005b82811015620006f157848901518255600182019150602085019450602081019050620006ca565b868310156200071157848901516200070d601f89168262000601565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200076282620004eb565b91506200076f83620004eb565b92508282019050808211156200078a576200078962000726565b5b92915050565b612a1a80620007a06000396000f3fe6080604052600436106101405760003560e01c80636352211e116100b657806395d89b411161006f57806395d89b4114610412578063a22cb4651461043d578063b88d4fde14610466578063c87b56dd14610482578063e985e9c5146104bf578063f2fde38b146104fc57610140565b80636352211e146103115780636ecd23061461034e57806370a082311461036a578063715018a6146103a7578063791a2519146103be5780638da5cb5b146103e757610140565b806311b7e5e71161010857806311b7e5e71461023157806318160ddd1461025a57806323b872dd14610285578063314da534146102a157806342842e0e146102cc57806355f804b3146102e857610140565b806301ffc9a71461014557806306fdde031461018257806307e89ec0146101ad578063081812fc146101d8578063095ea7b314610215575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190611b77565b610525565b6040516101799190611bbf565b60405180910390f35b34801561018e57600080fd5b506101976105b7565b6040516101a49190611c6a565b60405180910390f35b3480156101b957600080fd5b506101c2610649565b6040516101cf9190611ca5565b60405180910390f35b3480156101e457600080fd5b506101ff60048036038101906101fa9190611cec565b61064f565b60405161020c9190611d5a565b60405180910390f35b61022f600480360381019061022a9190611da1565b6106ce565b005b34801561023d57600080fd5b5061025860048036038101906102539190611cec565b610812565b005b34801561026657600080fd5b5061026f610824565b60405161027c9190611ca5565b60405180910390f35b61029f600480360381019061029a9190611de1565b61083b565b005b3480156102ad57600080fd5b506102b6610b5d565b6040516102c39190611ca5565b60405180910390f35b6102e660048036038101906102e19190611de1565b610b63565b005b3480156102f457600080fd5b5061030f600480360381019061030a9190611f69565b610b83565b005b34801561031d57600080fd5b5061033860048036038101906103339190611cec565b610b9e565b6040516103459190611d5a565b60405180910390f35b61036860048036038101906103639190611feb565b610bb0565b005b34801561037657600080fd5b50610391600480360381019061038c9190612018565b610e2f565b60405161039e9190611ca5565b60405180910390f35b3480156103b357600080fd5b506103bc610ee7565b005b3480156103ca57600080fd5b506103e560048036038101906103e09190611cec565b610efb565b005b3480156103f357600080fd5b506103fc610f0d565b6040516104099190611d5a565b60405180910390f35b34801561041e57600080fd5b50610427610f37565b6040516104349190611c6a565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f9190612071565b610fc9565b005b610480600480360381019061047b9190612152565b6110d4565b005b34801561048e57600080fd5b506104a960048036038101906104a49190611cec565b611147565b6040516104b69190611c6a565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e191906121d5565b6111e5565b6040516104f39190611bbf565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190612018565b611279565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105b05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105c690612244565b80601f01602080910402602001604051908101604052809291908181526020018280546105f290612244565b801561063f5780601f106106145761010080835404028352916020019161063f565b820191906000526020600020905b81548152906001019060200180831161062257829003601f168201915b5050505050905090565b600a5481565b600061065a826112fc565b610690576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d982610b9e565b90508073ffffffffffffffffffffffffffffffffffffffff166106fa61135b565b73ffffffffffffffffffffffffffffffffffffffff161461075d576107268161072161135b565b6111e5565b61075c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61081a611363565b8060098190555050565b600061082e6113e1565b6001546000540303905090565b6000610846826113e6565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108ad576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108b9846114b2565b915091506108cf81876108ca61135b565b6114d9565b61091b576108e4866108df61135b565b6111e5565b61091a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610981576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61098e868686600161151d565b801561099957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a6785610a43888887611523565b7c02000000000000000000000000000000000000000000000000000000001761154b565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610aed5760006001850190506000600460008381526020019081526020016000205403610aeb576000548114610aea578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b558686866001611576565b505050505050565b60095481565b610b7e838383604051806020016040528060008152506110d4565b505050565b610b8b611363565b80600b9081610b9a9190612421565b5050565b6000610ba9826113e6565b9050919050565b6000600a549050426009541115610d785760018260ff1614610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe90612565565b60405180910390fd5b6002600c6000610c1561157c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1610610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c97906125d1565b60405180910390fd5b6103e88260ff16610caf610824565b610cb99190612620565b10610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf0906126a0565b60405180910390fd5b81600c6000610d0661157c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16610d5b91906126c0565b92506101000a81548160ff021916908360ff160217905550600090505b808260ff16610d8791906126f5565b341015610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090612783565b60405180910390fd5b610ddd610dd461157c565b8360ff16611584565b610de5610f0d565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610e2a573d6000803e3d6000fd5b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e96576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eef611363565b610ef960006115a2565b565b610f03611363565b80600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f4690612244565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7290612244565b8015610fbf5780601f10610f9457610100808354040283529160200191610fbf565b820191906000526020600020905b815481529060010190602001808311610fa257829003601f168201915b5050505050905090565b8060076000610fd661135b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661108361135b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110c89190611bbf565b60405180910390a35050565b6110df84848461083b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146111415761110a84848484611668565b611140576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611152826112fc565b611188576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006111926117b8565b905060008151036111b257604051806020016040528060008152506111dd565b806111bc8461184a565b6040516020016111cd9291906127df565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611281611363565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e790612875565b60405180910390fd5b6112f9816115a2565b50565b6000816113076113e1565b11158015611316575060005482105b8015611354575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b61136b61157c565b73ffffffffffffffffffffffffffffffffffffffff16611389610f0d565b73ffffffffffffffffffffffffffffffffffffffff16146113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d6906128e1565b60405180910390fd5b565b600090565b600080829050806113f56113e1565b1161147b5760005481101561147a5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611478575b6000810361146e576004600083600190039350838152602001908152602001600020549050611444565b80925050506114ad565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861153a86868461189a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b61159e8282604051806020016040528060008152506118a3565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261168e61135b565b8786866040518563ffffffff1660e01b81526004016116b09493929190612956565b6020604051808303816000875af19250505080156116ec57506040513d601f19601f820116820180604052508101906116e991906129b7565b60015b611765573d806000811461171c576040519150601f19603f3d011682016040523d82523d6000602084013e611721565b606091505b50600081510361175d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b80546117c790612244565b80601f01602080910402602001604051908101604052809291908181526020018280546117f390612244565b80156118405780601f1061181557610100808354040283529160200191611840565b820191906000526020600020905b81548152906001019060200180831161182357829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561188557600184039350600a81066030018453600a8104905080611863575b50828103602084039350808452505050919050565b60009392505050565b6118ad8383611940565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461193b57600080549050600083820390505b6118ed6000868380600101945086611668565b611923576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106118da57816000541461193857600080fd5b50505b505050565b60008054905060008203611980576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61198d600084838561151d565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611a04836119f56000866000611523565b6119fe85611afb565b1761154b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611aa557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611a6a565b5060008203611ae0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611af66000848385611576565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b5481611b1f565b8114611b5f57600080fd5b50565b600081359050611b7181611b4b565b92915050565b600060208284031215611b8d57611b8c611b15565b5b6000611b9b84828501611b62565b91505092915050565b60008115159050919050565b611bb981611ba4565b82525050565b6000602082019050611bd46000830184611bb0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c14578082015181840152602081019050611bf9565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c3c82611bda565b611c468185611be5565b9350611c56818560208601611bf6565b611c5f81611c20565b840191505092915050565b60006020820190508181036000830152611c848184611c31565b905092915050565b6000819050919050565b611c9f81611c8c565b82525050565b6000602082019050611cba6000830184611c96565b92915050565b611cc981611c8c565b8114611cd457600080fd5b50565b600081359050611ce681611cc0565b92915050565b600060208284031215611d0257611d01611b15565b5b6000611d1084828501611cd7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d4482611d19565b9050919050565b611d5481611d39565b82525050565b6000602082019050611d6f6000830184611d4b565b92915050565b611d7e81611d39565b8114611d8957600080fd5b50565b600081359050611d9b81611d75565b92915050565b60008060408385031215611db857611db7611b15565b5b6000611dc685828601611d8c565b9250506020611dd785828601611cd7565b9150509250929050565b600080600060608486031215611dfa57611df9611b15565b5b6000611e0886828701611d8c565b9350506020611e1986828701611d8c565b9250506040611e2a86828701611cd7565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611e7682611c20565b810181811067ffffffffffffffff82111715611e9557611e94611e3e565b5b80604052505050565b6000611ea8611b0b565b9050611eb48282611e6d565b919050565b600067ffffffffffffffff821115611ed457611ed3611e3e565b5b611edd82611c20565b9050602081019050919050565b82818337600083830152505050565b6000611f0c611f0784611eb9565b611e9e565b905082815260208101848484011115611f2857611f27611e39565b5b611f33848285611eea565b509392505050565b600082601f830112611f5057611f4f611e34565b5b8135611f60848260208601611ef9565b91505092915050565b600060208284031215611f7f57611f7e611b15565b5b600082013567ffffffffffffffff811115611f9d57611f9c611b1a565b5b611fa984828501611f3b565b91505092915050565b600060ff82169050919050565b611fc881611fb2565b8114611fd357600080fd5b50565b600081359050611fe581611fbf565b92915050565b60006020828403121561200157612000611b15565b5b600061200f84828501611fd6565b91505092915050565b60006020828403121561202e5761202d611b15565b5b600061203c84828501611d8c565b91505092915050565b61204e81611ba4565b811461205957600080fd5b50565b60008135905061206b81612045565b92915050565b6000806040838503121561208857612087611b15565b5b600061209685828601611d8c565b92505060206120a78582860161205c565b9150509250929050565b600067ffffffffffffffff8211156120cc576120cb611e3e565b5b6120d582611c20565b9050602081019050919050565b60006120f56120f0846120b1565b611e9e565b90508281526020810184848401111561211157612110611e39565b5b61211c848285611eea565b509392505050565b600082601f83011261213957612138611e34565b5b81356121498482602086016120e2565b91505092915050565b6000806000806080858703121561216c5761216b611b15565b5b600061217a87828801611d8c565b945050602061218b87828801611d8c565b935050604061219c87828801611cd7565b925050606085013567ffffffffffffffff8111156121bd576121bc611b1a565b5b6121c987828801612124565b91505092959194509250565b600080604083850312156121ec576121eb611b15565b5b60006121fa85828601611d8c565b925050602061220b85828601611d8c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061225c57607f821691505b60208210810361226f5761226e612215565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026122d77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261229a565b6122e1868361229a565b95508019841693508086168417925050509392505050565b6000819050919050565b600061231e61231961231484611c8c565b6122f9565b611c8c565b9050919050565b6000819050919050565b61233883612303565b61234c61234482612325565b8484546122a7565b825550505050565b600090565b612361612354565b61236c81848461232f565b505050565b5b8181101561239057612385600082612359565b600181019050612372565b5050565b601f8211156123d5576123a681612275565b6123af8461228a565b810160208510156123be578190505b6123d26123ca8561228a565b830182612371565b50505b505050565b600082821c905092915050565b60006123f8600019846008026123da565b1980831691505092915050565b600061241183836123e7565b9150826002028217905092915050565b61242a82611bda565b67ffffffffffffffff81111561244357612442611e3e565b5b61244d8254612244565b612458828285612394565b600060209050601f83116001811461248b5760008415612479578287015190505b6124838582612405565b8655506124eb565b601f19841661249986612275565b60005b828110156124c15784890151825560018201915060208501945060208101905061249c565b868310156124de57848901516124da601f8916826123e7565b8355505b6001600288020188555050505b505050505050565b7f4f6e65206d696e7420617420612074696d6520647572696e672070726573616c60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b600061254f602183611be5565b915061255a826124f3565b604082019050919050565b6000602082019050818103600083015261257e81612542565b9050919050565b7f50726573616c6520616c726561647920636c61696d6564210000000000000000600082015250565b60006125bb601883611be5565b91506125c682612585565b602082019050919050565b600060208201905081810360008301526125ea816125ae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061262b82611c8c565b915061263683611c8c565b925082820190508082111561264e5761264d6125f1565b5b92915050565b7f46726565206d696e74206c696d69742072656163686564000000000000000000600082015250565b600061268a601783611be5565b915061269582612654565b602082019050919050565b600060208201905081810360008301526126b98161267d565b9050919050565b60006126cb82611fb2565b91506126d683611fb2565b9250828201905060ff8111156126ef576126ee6125f1565b5b92915050565b600061270082611c8c565b915061270b83611c8c565b925082820261271981611c8c565b915082820484148315176127305761272f6125f1565b5b5092915050565b7f496e73756666696369656e7420707269636520746f2070757263686173650000600082015250565b600061276d601e83611be5565b915061277882612737565b602082019050919050565b6000602082019050818103600083015261279c81612760565b9050919050565b600081905092915050565b60006127b982611bda565b6127c381856127a3565b93506127d3818560208601611bf6565b80840191505092915050565b60006127eb82856127ae565b91506127f782846127ae565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061285f602683611be5565b915061286a82612803565b604082019050919050565b6000602082019050818103600083015261288e81612852565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006128cb602083611be5565b91506128d682612895565b602082019050919050565b600060208201905081810360008301526128fa816128be565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061292882612901565b612932818561290c565b9350612942818560208601611bf6565b61294b81611c20565b840191505092915050565b600060808201905061296b6000830187611d4b565b6129786020830186611d4b565b6129856040830185611c96565b8181036060830152612997818461291d565b905095945050505050565b6000815190506129b181611b4b565b92915050565b6000602082840312156129cd576129cc611b15565b5b60006129db848285016129a2565b9150509291505056fea2646970667358221220ae34849472b771200b11dac6ad7260fc647eb755d0311680ff7748232040b1ad64736f6c634300081200330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000006668747470733a2f2f736361726c65742d686f6c792d73706f6f6e62696c6c2d3739322e6d7970696e6174612e636c6f75642f697066732f516d64695956357047424b3743384a434b697848314d48643159396737774856345a756956484334576d6b4775782f0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101405760003560e01c80636352211e116100b657806395d89b411161006f57806395d89b4114610412578063a22cb4651461043d578063b88d4fde14610466578063c87b56dd14610482578063e985e9c5146104bf578063f2fde38b146104fc57610140565b80636352211e146103115780636ecd23061461034e57806370a082311461036a578063715018a6146103a7578063791a2519146103be5780638da5cb5b146103e757610140565b806311b7e5e71161010857806311b7e5e71461023157806318160ddd1461025a57806323b872dd14610285578063314da534146102a157806342842e0e146102cc57806355f804b3146102e857610140565b806301ffc9a71461014557806306fdde031461018257806307e89ec0146101ad578063081812fc146101d8578063095ea7b314610215575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190611b77565b610525565b6040516101799190611bbf565b60405180910390f35b34801561018e57600080fd5b506101976105b7565b6040516101a49190611c6a565b60405180910390f35b3480156101b957600080fd5b506101c2610649565b6040516101cf9190611ca5565b60405180910390f35b3480156101e457600080fd5b506101ff60048036038101906101fa9190611cec565b61064f565b60405161020c9190611d5a565b60405180910390f35b61022f600480360381019061022a9190611da1565b6106ce565b005b34801561023d57600080fd5b5061025860048036038101906102539190611cec565b610812565b005b34801561026657600080fd5b5061026f610824565b60405161027c9190611ca5565b60405180910390f35b61029f600480360381019061029a9190611de1565b61083b565b005b3480156102ad57600080fd5b506102b6610b5d565b6040516102c39190611ca5565b60405180910390f35b6102e660048036038101906102e19190611de1565b610b63565b005b3480156102f457600080fd5b5061030f600480360381019061030a9190611f69565b610b83565b005b34801561031d57600080fd5b5061033860048036038101906103339190611cec565b610b9e565b6040516103459190611d5a565b60405180910390f35b61036860048036038101906103639190611feb565b610bb0565b005b34801561037657600080fd5b50610391600480360381019061038c9190612018565b610e2f565b60405161039e9190611ca5565b60405180910390f35b3480156103b357600080fd5b506103bc610ee7565b005b3480156103ca57600080fd5b506103e560048036038101906103e09190611cec565b610efb565b005b3480156103f357600080fd5b506103fc610f0d565b6040516104099190611d5a565b60405180910390f35b34801561041e57600080fd5b50610427610f37565b6040516104349190611c6a565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f9190612071565b610fc9565b005b610480600480360381019061047b9190612152565b6110d4565b005b34801561048e57600080fd5b506104a960048036038101906104a49190611cec565b611147565b6040516104b69190611c6a565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e191906121d5565b6111e5565b6040516104f39190611bbf565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190612018565b611279565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105b05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105c690612244565b80601f01602080910402602001604051908101604052809291908181526020018280546105f290612244565b801561063f5780601f106106145761010080835404028352916020019161063f565b820191906000526020600020905b81548152906001019060200180831161062257829003601f168201915b5050505050905090565b600a5481565b600061065a826112fc565b610690576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d982610b9e565b90508073ffffffffffffffffffffffffffffffffffffffff166106fa61135b565b73ffffffffffffffffffffffffffffffffffffffff161461075d576107268161072161135b565b6111e5565b61075c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61081a611363565b8060098190555050565b600061082e6113e1565b6001546000540303905090565b6000610846826113e6565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108ad576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108b9846114b2565b915091506108cf81876108ca61135b565b6114d9565b61091b576108e4866108df61135b565b6111e5565b61091a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610981576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61098e868686600161151d565b801561099957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a6785610a43888887611523565b7c02000000000000000000000000000000000000000000000000000000001761154b565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610aed5760006001850190506000600460008381526020019081526020016000205403610aeb576000548114610aea578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b558686866001611576565b505050505050565b60095481565b610b7e838383604051806020016040528060008152506110d4565b505050565b610b8b611363565b80600b9081610b9a9190612421565b5050565b6000610ba9826113e6565b9050919050565b6000600a549050426009541115610d785760018260ff1614610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe90612565565b60405180910390fd5b6002600c6000610c1561157c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1610610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c97906125d1565b60405180910390fd5b6103e88260ff16610caf610824565b610cb99190612620565b10610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf0906126a0565b60405180910390fd5b81600c6000610d0661157c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16610d5b91906126c0565b92506101000a81548160ff021916908360ff160217905550600090505b808260ff16610d8791906126f5565b341015610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090612783565b60405180910390fd5b610ddd610dd461157c565b8360ff16611584565b610de5610f0d565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610e2a573d6000803e3d6000fd5b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e96576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eef611363565b610ef960006115a2565b565b610f03611363565b80600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f4690612244565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7290612244565b8015610fbf5780601f10610f9457610100808354040283529160200191610fbf565b820191906000526020600020905b815481529060010190602001808311610fa257829003601f168201915b5050505050905090565b8060076000610fd661135b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661108361135b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110c89190611bbf565b60405180910390a35050565b6110df84848461083b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146111415761110a84848484611668565b611140576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611152826112fc565b611188576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006111926117b8565b905060008151036111b257604051806020016040528060008152506111dd565b806111bc8461184a565b6040516020016111cd9291906127df565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611281611363565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e790612875565b60405180910390fd5b6112f9816115a2565b50565b6000816113076113e1565b11158015611316575060005482105b8015611354575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b61136b61157c565b73ffffffffffffffffffffffffffffffffffffffff16611389610f0d565b73ffffffffffffffffffffffffffffffffffffffff16146113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d6906128e1565b60405180910390fd5b565b600090565b600080829050806113f56113e1565b1161147b5760005481101561147a5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611478575b6000810361146e576004600083600190039350838152602001908152602001600020549050611444565b80925050506114ad565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861153a86868461189a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b61159e8282604051806020016040528060008152506118a3565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261168e61135b565b8786866040518563ffffffff1660e01b81526004016116b09493929190612956565b6020604051808303816000875af19250505080156116ec57506040513d601f19601f820116820180604052508101906116e991906129b7565b60015b611765573d806000811461171c576040519150601f19603f3d011682016040523d82523d6000602084013e611721565b606091505b50600081510361175d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b80546117c790612244565b80601f01602080910402602001604051908101604052809291908181526020018280546117f390612244565b80156118405780601f1061181557610100808354040283529160200191611840565b820191906000526020600020905b81548152906001019060200180831161182357829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561188557600184039350600a81066030018453600a8104905080611863575b50828103602084039350808452505050919050565b60009392505050565b6118ad8383611940565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461193b57600080549050600083820390505b6118ed6000868380600101945086611668565b611923576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106118da57816000541461193857600080fd5b50505b505050565b60008054905060008203611980576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61198d600084838561151d565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611a04836119f56000866000611523565b6119fe85611afb565b1761154b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611aa557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611a6a565b5060008203611ae0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611af66000848385611576565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b5481611b1f565b8114611b5f57600080fd5b50565b600081359050611b7181611b4b565b92915050565b600060208284031215611b8d57611b8c611b15565b5b6000611b9b84828501611b62565b91505092915050565b60008115159050919050565b611bb981611ba4565b82525050565b6000602082019050611bd46000830184611bb0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c14578082015181840152602081019050611bf9565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c3c82611bda565b611c468185611be5565b9350611c56818560208601611bf6565b611c5f81611c20565b840191505092915050565b60006020820190508181036000830152611c848184611c31565b905092915050565b6000819050919050565b611c9f81611c8c565b82525050565b6000602082019050611cba6000830184611c96565b92915050565b611cc981611c8c565b8114611cd457600080fd5b50565b600081359050611ce681611cc0565b92915050565b600060208284031215611d0257611d01611b15565b5b6000611d1084828501611cd7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d4482611d19565b9050919050565b611d5481611d39565b82525050565b6000602082019050611d6f6000830184611d4b565b92915050565b611d7e81611d39565b8114611d8957600080fd5b50565b600081359050611d9b81611d75565b92915050565b60008060408385031215611db857611db7611b15565b5b6000611dc685828601611d8c565b9250506020611dd785828601611cd7565b9150509250929050565b600080600060608486031215611dfa57611df9611b15565b5b6000611e0886828701611d8c565b9350506020611e1986828701611d8c565b9250506040611e2a86828701611cd7565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611e7682611c20565b810181811067ffffffffffffffff82111715611e9557611e94611e3e565b5b80604052505050565b6000611ea8611b0b565b9050611eb48282611e6d565b919050565b600067ffffffffffffffff821115611ed457611ed3611e3e565b5b611edd82611c20565b9050602081019050919050565b82818337600083830152505050565b6000611f0c611f0784611eb9565b611e9e565b905082815260208101848484011115611f2857611f27611e39565b5b611f33848285611eea565b509392505050565b600082601f830112611f5057611f4f611e34565b5b8135611f60848260208601611ef9565b91505092915050565b600060208284031215611f7f57611f7e611b15565b5b600082013567ffffffffffffffff811115611f9d57611f9c611b1a565b5b611fa984828501611f3b565b91505092915050565b600060ff82169050919050565b611fc881611fb2565b8114611fd357600080fd5b50565b600081359050611fe581611fbf565b92915050565b60006020828403121561200157612000611b15565b5b600061200f84828501611fd6565b91505092915050565b60006020828403121561202e5761202d611b15565b5b600061203c84828501611d8c565b91505092915050565b61204e81611ba4565b811461205957600080fd5b50565b60008135905061206b81612045565b92915050565b6000806040838503121561208857612087611b15565b5b600061209685828601611d8c565b92505060206120a78582860161205c565b9150509250929050565b600067ffffffffffffffff8211156120cc576120cb611e3e565b5b6120d582611c20565b9050602081019050919050565b60006120f56120f0846120b1565b611e9e565b90508281526020810184848401111561211157612110611e39565b5b61211c848285611eea565b509392505050565b600082601f83011261213957612138611e34565b5b81356121498482602086016120e2565b91505092915050565b6000806000806080858703121561216c5761216b611b15565b5b600061217a87828801611d8c565b945050602061218b87828801611d8c565b935050604061219c87828801611cd7565b925050606085013567ffffffffffffffff8111156121bd576121bc611b1a565b5b6121c987828801612124565b91505092959194509250565b600080604083850312156121ec576121eb611b15565b5b60006121fa85828601611d8c565b925050602061220b85828601611d8c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061225c57607f821691505b60208210810361226f5761226e612215565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026122d77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261229a565b6122e1868361229a565b95508019841693508086168417925050509392505050565b6000819050919050565b600061231e61231961231484611c8c565b6122f9565b611c8c565b9050919050565b6000819050919050565b61233883612303565b61234c61234482612325565b8484546122a7565b825550505050565b600090565b612361612354565b61236c81848461232f565b505050565b5b8181101561239057612385600082612359565b600181019050612372565b5050565b601f8211156123d5576123a681612275565b6123af8461228a565b810160208510156123be578190505b6123d26123ca8561228a565b830182612371565b50505b505050565b600082821c905092915050565b60006123f8600019846008026123da565b1980831691505092915050565b600061241183836123e7565b9150826002028217905092915050565b61242a82611bda565b67ffffffffffffffff81111561244357612442611e3e565b5b61244d8254612244565b612458828285612394565b600060209050601f83116001811461248b5760008415612479578287015190505b6124838582612405565b8655506124eb565b601f19841661249986612275565b60005b828110156124c15784890151825560018201915060208501945060208101905061249c565b868310156124de57848901516124da601f8916826123e7565b8355505b6001600288020188555050505b505050505050565b7f4f6e65206d696e7420617420612074696d6520647572696e672070726573616c60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b600061254f602183611be5565b915061255a826124f3565b604082019050919050565b6000602082019050818103600083015261257e81612542565b9050919050565b7f50726573616c6520616c726561647920636c61696d6564210000000000000000600082015250565b60006125bb601883611be5565b91506125c682612585565b602082019050919050565b600060208201905081810360008301526125ea816125ae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061262b82611c8c565b915061263683611c8c565b925082820190508082111561264e5761264d6125f1565b5b92915050565b7f46726565206d696e74206c696d69742072656163686564000000000000000000600082015250565b600061268a601783611be5565b915061269582612654565b602082019050919050565b600060208201905081810360008301526126b98161267d565b9050919050565b60006126cb82611fb2565b91506126d683611fb2565b9250828201905060ff8111156126ef576126ee6125f1565b5b92915050565b600061270082611c8c565b915061270b83611c8c565b925082820261271981611c8c565b915082820484148315176127305761272f6125f1565b5b5092915050565b7f496e73756666696369656e7420707269636520746f2070757263686173650000600082015250565b600061276d601e83611be5565b915061277882612737565b602082019050919050565b6000602082019050818103600083015261279c81612760565b9050919050565b600081905092915050565b60006127b982611bda565b6127c381856127a3565b93506127d3818560208601611bf6565b80840191505092915050565b60006127eb82856127ae565b91506127f782846127ae565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061285f602683611be5565b915061286a82612803565b604082019050919050565b6000602082019050818103600083015261288e81612852565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006128cb602083611be5565b91506128d682612895565b602082019050919050565b600060208201905081810360008301526128fa816128be565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061292882612901565b612932818561290c565b9350612942818560208601611bf6565b61294b81611c20565b840191505092915050565b600060808201905061296b6000830187611d4b565b6129786020830186611d4b565b6129856040830185611c96565b8181036060830152612997818461291d565b905095945050505050565b6000815190506129b181611b4b565b92915050565b6000602082840312156129cd576129cc611b15565b5b60006129db848285016129a2565b9150509291505056fea2646970667358221220ae34849472b771200b11dac6ad7260fc647eb755d0311680ff7748232040b1ad64736f6c63430008120033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000006668747470733a2f2f736361726c65742d686f6c792d73706f6f6e62696c6c2d3739322e6d7970696e6174612e636c6f75642f697066732f516d64695956357047424b3743384a434b697848314d48643159396737774856345a756956484334576d6b4775782f0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://scarlet-holy-spoonbill-792.mypinata.cloud/ipfs/QmdiYV5pGBK7C8JCKixH1MHd1Y9g7wHV4ZuiVHC4WmkGux/

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000066
Arg [2] : 68747470733a2f2f736361726c65742d686f6c792d73706f6f6e62696c6c2d37
Arg [3] : 39322e6d7970696e6174612e636c6f75642f697066732f516d64695956357047
Arg [4] : 424b3743384a434b697848314d48643159396737774856345a75695648433457
Arg [5] : 6d6b4775782f0000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

55017:1603:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21885:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22787:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55100:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29278:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28711:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55409:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18538:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32917:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55062:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35838:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55645:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24180:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55754:754;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19722:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2664:103;;;;;;;;;;;;;:::i;:::-;;55525:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2016:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22963:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29836:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36629:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23173:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30227:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2922:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21885:639;21970:4;22309:10;22294:25;;:11;:25;;;;:102;;;;22386:10;22371:25;;:11;:25;;;;22294:102;:179;;;;22463:10;22448:25;;:11;:25;;;;22294:179;22274:199;;21885:639;;;:::o;22787:100::-;22841:13;22874:5;22867:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22787:100;:::o;55100:32::-;;;;:::o;29278:218::-;29354:7;29379:16;29387:7;29379;:16::i;:::-;29374:64;;29404:34;;;;;;;;;;;;;;29374:64;29458:15;:24;29474:7;29458:24;;;;;;;;;;;:30;;;;;;;;;;;;29451:37;;29278:218;;;:::o;28711:408::-;28800:13;28816:16;28824:7;28816;:16::i;:::-;28800:32;;28872:5;28849:28;;:19;:17;:19::i;:::-;:28;;;28845:175;;28897:44;28914:5;28921:19;:17;:19::i;:::-;28897:16;:44::i;:::-;28892:128;;28969:35;;;;;;;;;;;;;;28892:128;28845:175;29065:2;29032:15;:24;29048:7;29032:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29103:7;29099:2;29083:28;;29092:5;29083:28;;;;;;;;;;;;28789:330;28711:408;;:::o;55409:108::-;1902:13;:11;:13::i;:::-;55502:7:::1;55483:16;:26;;;;55409:108:::0;:::o;18538:323::-;18599:7;18827:15;:13;:15::i;:::-;18812:12;;18796:13;;:28;:46;18789:53;;18538:323;:::o;32917:2825::-;33059:27;33089;33108:7;33089:18;:27::i;:::-;33059:57;;33174:4;33133:45;;33149:19;33133:45;;;33129:86;;33187:28;;;;;;;;;;;;;;33129:86;33229:27;33258:23;33285:35;33312:7;33285:26;:35::i;:::-;33228:92;;;;33420:68;33445:15;33462:4;33468:19;:17;:19::i;:::-;33420:24;:68::i;:::-;33415:180;;33508:43;33525:4;33531:19;:17;:19::i;:::-;33508:16;:43::i;:::-;33503:92;;33560:35;;;;;;;;;;;;;;33503:92;33415:180;33626:1;33612:16;;:2;:16;;;33608:52;;33637:23;;;;;;;;;;;;;;33608:52;33673:43;33695:4;33701:2;33705:7;33714:1;33673:21;:43::i;:::-;33809:15;33806:160;;;33949:1;33928:19;33921:30;33806:160;34346:18;:24;34365:4;34346:24;;;;;;;;;;;;;;;;34344:26;;;;;;;;;;;;34415:18;:22;34434:2;34415:22;;;;;;;;;;;;;;;;34413:24;;;;;;;;;;;34737:146;34774:2;34823:45;34838:4;34844:2;34848:19;34823:14;:45::i;:::-;14937:8;34795:73;34737:18;:146::i;:::-;34708:17;:26;34726:7;34708:26;;;;;;;;;;;:175;;;;35054:1;14937:8;35003:19;:47;:52;34999:627;;35076:19;35108:1;35098:7;:11;35076:33;;35265:1;35231:17;:30;35249:11;35231:30;;;;;;;;;;;;:35;35227:384;;35369:13;;35354:11;:28;35350:242;;35549:19;35516:17;:30;35534:11;35516:30;;;;;;;;;;;:52;;;;35350:242;35227:384;35057:569;34999:627;35673:7;35669:2;35654:27;;35663:4;35654:27;;;;;;;;;;;;35692:42;35713:4;35719:2;35723:7;35732:1;35692:20;:42::i;:::-;33048:2694;;;32917:2825;;;:::o;55062:31::-;;;;:::o;35838:193::-;35984:39;36001:4;36007:2;36011:7;35984:39;;;;;;;;;;;;:16;:39::i;:::-;35838:193;;;:::o;55645:97::-;1902:13;:11;:13::i;:::-;55728:6:::1;55717:8;:17;;;;;;:::i;:::-;;55645:97:::0;:::o;24180:152::-;24252:7;24295:27;24314:7;24295:18;:27::i;:::-;24272:52;;24180:152;;;:::o;55754:754::-;55812:17;55832;;55812:37;;55883:15;55864:16;;:34;55860:426;;;55935:1;55923:8;:13;;;55915:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;56046:1;56015:14;:28;56030:12;:10;:12::i;:::-;56015:28;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;55989:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;56159:4;56147:8;56131:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;56130:33;56122:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;56238:8;56206:14;:28;56221:12;:10;:12::i;:::-;56206:28;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;56273:1;56261:13;;55860:426;56342:9;56331:8;:20;;;;;;:::i;:::-;56318:9;:33;;56296:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;56420:33;56430:12;:10;:12::i;:::-;56444:8;56420:33;;:9;:33::i;:::-;56472:7;:5;:7::i;:::-;56464:25;;:36;56490:9;56464:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55801:707;55754:754;:::o;19722:233::-;19794:7;19835:1;19818:19;;:5;:19;;;19814:60;;19846:28;;;;;;;;;;;;;;19814:60;13881:13;19892:18;:25;19911:5;19892:25;;;;;;;;;;;;;;;;:55;19885:62;;19722:233;;;:::o;2664:103::-;1902:13;:11;:13::i;:::-;2729:30:::1;2756:1;2729:18;:30::i;:::-;2664:103::o:0;55525:112::-;1902:13;:11;:13::i;:::-;55621:8:::1;55601:17;:28;;;;55525:112:::0;:::o;2016:87::-;2062:7;2089:6;;;;;;;;;;;2082:13;;2016:87;:::o;22963:104::-;23019:13;23052:7;23045:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22963:104;:::o;29836:234::-;29983:8;29931:18;:39;29950:19;:17;:19::i;:::-;29931:39;;;;;;;;;;;;;;;:49;29971:8;29931:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30043:8;30007:55;;30022:19;:17;:19::i;:::-;30007:55;;;30053:8;30007:55;;;;;;:::i;:::-;;;;;;;;29836:234;;:::o;36629:407::-;36804:31;36817:4;36823:2;36827:7;36804:12;:31::i;:::-;36868:1;36850:2;:14;;;:19;36846:183;;36889:56;36920:4;36926:2;36930:7;36939:5;36889:30;:56::i;:::-;36884:145;;36973:40;;;;;;;;;;;;;;36884:145;36846:183;36629:407;;;;:::o;23173:318::-;23246:13;23277:16;23285:7;23277;:16::i;:::-;23272:59;;23302:29;;;;;;;;;;;;;;23272:59;23344:21;23368:10;:8;:10::i;:::-;23344:34;;23421:1;23402:7;23396:21;:26;:87;;;;;;;;;;;;;;;;;23449:7;23458:18;23468:7;23458:9;:18::i;:::-;23432:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23396:87;23389:94;;;23173:318;;;:::o;30227:164::-;30324:4;30348:18;:25;30367:5;30348:25;;;;;;;;;;;;;;;:35;30374:8;30348:35;;;;;;;;;;;;;;;;;;;;;;;;;30341:42;;30227:164;;;;:::o;2922:201::-;1902:13;:11;:13::i;:::-;3031:1:::1;3011:22;;:8;:22;;::::0;3003:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3087:28;3106:8;3087:18;:28::i;:::-;2922:201:::0;:::o;30649:282::-;30714:4;30770:7;30751:15;:13;:15::i;:::-;:26;;:66;;;;;30804:13;;30794:7;:23;30751:66;:153;;;;;30903:1;14657:8;30855:17;:26;30873:7;30855:26;;;;;;;;;;;;:44;:49;30751:153;30731:173;;30649:282;;;:::o;52957:105::-;53017:7;53044:10;53037:17;;52957:105;:::o;2181:132::-;2256:12;:10;:12::i;:::-;2245:23;;:7;:5;:7::i;:::-;:23;;;2237:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2181:132::o;18054:92::-;18110:7;18054:92;:::o;25335:1275::-;25402:7;25422:12;25437:7;25422:22;;25505:4;25486:15;:13;:15::i;:::-;:23;25482:1061;;25539:13;;25532:4;:20;25528:1015;;;25577:14;25594:17;:23;25612:4;25594:23;;;;;;;;;;;;25577:40;;25711:1;14657:8;25683:6;:24;:29;25679:845;;26348:113;26365:1;26355:6;:11;26348:113;;26408:17;:25;26426:6;;;;;;;26408:25;;;;;;;;;;;;26399:34;;26348:113;;;26494:6;26487:13;;;;;;25679:845;25554:989;25528:1015;25482:1061;26571:31;;;;;;;;;;;;;;25335:1275;;;;:::o;31812:485::-;31914:27;31943:23;31984:38;32025:15;:24;32041:7;32025:24;;;;;;;;;;;31984:65;;32202:18;32179:41;;32259:19;32253:26;32234:45;;32164:126;31812:485;;;:::o;31040:659::-;31189:11;31354:16;31347:5;31343:28;31334:37;;31514:16;31503:9;31499:32;31486:45;;31664:15;31653:9;31650:30;31642:5;31631:9;31628:20;31625:56;31615:66;;31040:659;;;;;:::o;37698:159::-;;;;;:::o;52266:311::-;52401:7;52421:16;15061:3;52447:19;:41;;52421:68;;15061:3;52515:31;52526:4;52532:2;52536:9;52515:10;:31::i;:::-;52507:40;;:62;;52500:69;;;52266:311;;;;;:::o;27158:450::-;27238:14;27406:16;27399:5;27395:28;27386:37;;27583:5;27569:11;27544:23;27540:41;27537:52;27530:5;27527:63;27517:73;;27158:450;;;;:::o;38522:158::-;;;;;:::o;567:98::-;620:7;647:10;640:17;;567:98;:::o;46789:112::-;46866:27;46876:2;46880:8;46866:27;;;;;;;;;;;;:9;:27::i;:::-;46789:112;;:::o;3283:191::-;3357:16;3376:6;;;;;;;;;;;3357:25;;3402:8;3393:6;;:17;;;;;;;;;;;;;;;;;;3457:8;3426:40;;3447:8;3426:40;;;;;;;;;;;;3346:128;3283:191;:::o;39120:716::-;39283:4;39329:2;39304:45;;;39350:19;:17;:19::i;:::-;39371:4;39377:7;39386:5;39304:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39300:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39604:1;39587:6;:13;:18;39583:235;;39633:40;;;;;;;;;;;;;;39583:235;39776:6;39770:13;39761:6;39757:2;39753:15;39746:38;39300:529;39473:54;;;39463:64;;;:6;:64;;;;39456:71;;;39120:716;;;;;;:::o;56516:101::-;56568:13;56601:8;56594:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56516:101;:::o;53164:1745::-;53229:17;53663:4;53656;53650:11;53646:22;53755:1;53749:4;53742:15;53830:4;53827:1;53823:12;53816:19;;53912:1;53907:3;53900:14;54016:3;54255:5;54237:428;54263:1;54237:428;;;54303:1;54298:3;54294:11;54287:18;;54474:2;54468:4;54464:13;54460:2;54456:22;54451:3;54443:36;54568:2;54562:4;54558:13;54550:21;;54635:4;54237:428;54625:25;54237:428;54241:21;54704:3;54699;54695:13;54819:4;54814:3;54810:14;54803:21;;54884:6;54879:3;54872:19;53268:1634;;;53164:1745;;;:::o;51967:147::-;52104:6;51967:147;;;;;:::o;46016:689::-;46147:19;46153:2;46157:8;46147:5;:19::i;:::-;46226:1;46208:2;:14;;;:19;46204:483;;46248:11;46262:13;;46248:27;;46294:13;46316:8;46310:3;:14;46294:30;;46343:233;46374:62;46413:1;46417:2;46421:7;;;;;;46430:5;46374:30;:62::i;:::-;46369:167;;46472:40;;;;;;;;;;;;;;46369:167;46571:3;46563:5;:11;46343:233;;46658:3;46641:13;;:20;46637:34;;46663:8;;;46637:34;46229:458;;46204:483;46016:689;;;:::o;40298:2966::-;40371:20;40394:13;;40371:36;;40434:1;40422:8;:13;40418:44;;40444:18;;;;;;;;;;;;;;40418:44;40475:61;40505:1;40509:2;40513:12;40527:8;40475:21;:61::i;:::-;41019:1;14019:2;40989:1;:26;;40988:32;40976:8;:45;40950:18;:22;40969:2;40950:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41298:139;41335:2;41389:33;41412:1;41416:2;41420:1;41389:14;:33::i;:::-;41356:30;41377:8;41356:20;:30::i;:::-;:66;41298:18;:139::i;:::-;41264:17;:31;41282:12;41264:31;;;;;;;;;;;:173;;;;41454:16;41485:11;41514:8;41499:12;:23;41485:37;;42035:16;42031:2;42027:25;42015:37;;42407:12;42367:8;42326:1;42264:25;42205:1;42144;42117:335;42778:1;42764:12;42760:20;42718:346;42819:3;42810:7;42807:16;42718:346;;43037:7;43027:8;43024:1;42997:25;42994:1;42991;42986:59;42872:1;42863:7;42859:15;42848:26;;42718:346;;;42722:77;43109:1;43097:8;:13;43093:45;;43119:19;;;;;;;;;;;;;;43093:45;43171:3;43155:13;:19;;;;40724:2462;;43196:60;43225:1;43229:2;43233:12;43247:8;43196:20;:60::i;:::-;40360:2904;40298:2966;;:::o;27710:324::-;27780:14;28013:1;28003:8;28000:15;27974:24;27970:46;27960:56;;27710:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:118::-;3030:24;3048:5;3030:24;:::i;:::-;3025:3;3018:37;2943:118;;:::o;3067:222::-;3160:4;3198:2;3187:9;3183:18;3175:26;;3211:71;3279:1;3268:9;3264:17;3255:6;3211:71;:::i;:::-;3067:222;;;;:::o;3295:122::-;3368:24;3386:5;3368:24;:::i;:::-;3361:5;3358:35;3348:63;;3407:1;3404;3397:12;3348:63;3295:122;:::o;3423:139::-;3469:5;3507:6;3494:20;3485:29;;3523:33;3550:5;3523:33;:::i;:::-;3423:139;;;;:::o;3568:329::-;3627:6;3676:2;3664:9;3655:7;3651:23;3647:32;3644:119;;;3682:79;;:::i;:::-;3644:119;3802:1;3827:53;3872:7;3863:6;3852:9;3848:22;3827:53;:::i;:::-;3817:63;;3773:117;3568:329;;;;:::o;3903:126::-;3940:7;3980:42;3973:5;3969:54;3958:65;;3903:126;;;:::o;4035:96::-;4072:7;4101:24;4119:5;4101:24;:::i;:::-;4090:35;;4035:96;;;:::o;4137:118::-;4224:24;4242:5;4224:24;:::i;:::-;4219:3;4212:37;4137:118;;:::o;4261:222::-;4354:4;4392:2;4381:9;4377:18;4369:26;;4405:71;4473:1;4462:9;4458:17;4449:6;4405:71;:::i;:::-;4261:222;;;;:::o;4489:122::-;4562:24;4580:5;4562:24;:::i;:::-;4555:5;4552:35;4542:63;;4601:1;4598;4591:12;4542:63;4489:122;:::o;4617:139::-;4663:5;4701:6;4688:20;4679:29;;4717:33;4744:5;4717:33;:::i;:::-;4617:139;;;;:::o;4762:474::-;4830:6;4838;4887:2;4875:9;4866:7;4862:23;4858:32;4855:119;;;4893:79;;:::i;:::-;4855:119;5013:1;5038:53;5083:7;5074:6;5063:9;5059:22;5038:53;:::i;:::-;5028:63;;4984:117;5140:2;5166:53;5211:7;5202:6;5191:9;5187:22;5166:53;:::i;:::-;5156:63;;5111:118;4762:474;;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:86::-;8528:7;8568:4;8561:5;8557:16;8546:27;;8493:86;;;:::o;8585:118::-;8656:22;8672:5;8656:22;:::i;:::-;8649:5;8646:33;8636:61;;8693:1;8690;8683:12;8636:61;8585:118;:::o;8709:135::-;8753:5;8791:6;8778:20;8769:29;;8807:31;8832:5;8807:31;:::i;:::-;8709:135;;;;:::o;8850:325::-;8907:6;8956:2;8944:9;8935:7;8931:23;8927:32;8924:119;;;8962:79;;:::i;:::-;8924:119;9082:1;9107:51;9150:7;9141:6;9130:9;9126:22;9107:51;:::i;:::-;9097:61;;9053:115;8850:325;;;;:::o;9181:329::-;9240:6;9289:2;9277:9;9268:7;9264:23;9260:32;9257:119;;;9295:79;;:::i;:::-;9257:119;9415:1;9440:53;9485:7;9476:6;9465:9;9461:22;9440:53;:::i;:::-;9430:63;;9386:117;9181:329;;;;:::o;9516:116::-;9586:21;9601:5;9586:21;:::i;:::-;9579:5;9576:32;9566:60;;9622:1;9619;9612:12;9566:60;9516:116;:::o;9638:133::-;9681:5;9719:6;9706:20;9697:29;;9735:30;9759:5;9735:30;:::i;:::-;9638:133;;;;:::o;9777:468::-;9842:6;9850;9899:2;9887:9;9878:7;9874:23;9870:32;9867:119;;;9905:79;;:::i;:::-;9867:119;10025:1;10050:53;10095:7;10086:6;10075:9;10071:22;10050:53;:::i;:::-;10040:63;;9996:117;10152:2;10178:50;10220:7;10211:6;10200:9;10196:22;10178:50;:::i;:::-;10168:60;;10123:115;9777:468;;;;;:::o;10251:307::-;10312:4;10402:18;10394:6;10391:30;10388:56;;;10424:18;;:::i;:::-;10388:56;10462:29;10484:6;10462:29;:::i;:::-;10454:37;;10546:4;10540;10536:15;10528:23;;10251:307;;;:::o;10564:423::-;10641:5;10666:65;10682:48;10723:6;10682:48;:::i;:::-;10666:65;:::i;:::-;10657:74;;10754:6;10747:5;10740:21;10792:4;10785:5;10781:16;10830:3;10821:6;10816:3;10812:16;10809:25;10806:112;;;10837:79;;:::i;:::-;10806:112;10927:54;10974:6;10969:3;10964;10927:54;:::i;:::-;10647:340;10564:423;;;;;:::o;11006:338::-;11061:5;11110:3;11103:4;11095:6;11091:17;11087:27;11077:122;;11118:79;;:::i;:::-;11077:122;11235:6;11222:20;11260:78;11334:3;11326:6;11319:4;11311:6;11307:17;11260:78;:::i;:::-;11251:87;;11067:277;11006:338;;;;:::o;11350:943::-;11445:6;11453;11461;11469;11518:3;11506:9;11497:7;11493:23;11489:33;11486:120;;;11525:79;;:::i;:::-;11486:120;11645:1;11670:53;11715:7;11706:6;11695:9;11691:22;11670:53;:::i;:::-;11660:63;;11616:117;11772:2;11798:53;11843:7;11834:6;11823:9;11819:22;11798:53;:::i;:::-;11788:63;;11743:118;11900:2;11926:53;11971:7;11962:6;11951:9;11947:22;11926:53;:::i;:::-;11916:63;;11871:118;12056:2;12045:9;12041:18;12028:32;12087:18;12079:6;12076:30;12073:117;;;12109:79;;:::i;:::-;12073:117;12214:62;12268:7;12259:6;12248:9;12244:22;12214:62;:::i;:::-;12204:72;;11999:287;11350:943;;;;;;;:::o;12299:474::-;12367:6;12375;12424:2;12412:9;12403:7;12399:23;12395:32;12392:119;;;12430:79;;:::i;:::-;12392:119;12550:1;12575:53;12620:7;12611:6;12600:9;12596:22;12575:53;:::i;:::-;12565:63;;12521:117;12677:2;12703:53;12748:7;12739:6;12728:9;12724:22;12703:53;:::i;:::-;12693:63;;12648:118;12299:474;;;;;:::o;12779:180::-;12827:77;12824:1;12817:88;12924:4;12921:1;12914:15;12948:4;12945:1;12938:15;12965:320;13009:6;13046:1;13040:4;13036:12;13026:22;;13093:1;13087:4;13083:12;13114:18;13104:81;;13170:4;13162:6;13158:17;13148:27;;13104:81;13232:2;13224:6;13221:14;13201:18;13198:38;13195:84;;13251:18;;:::i;:::-;13195:84;13016:269;12965:320;;;:::o;13291:141::-;13340:4;13363:3;13355:11;;13386:3;13383:1;13376:14;13420:4;13417:1;13407:18;13399:26;;13291:141;;;:::o;13438:93::-;13475:6;13522:2;13517;13510:5;13506:14;13502:23;13492:33;;13438:93;;;:::o;13537:107::-;13581:8;13631:5;13625:4;13621:16;13600:37;;13537:107;;;;:::o;13650:393::-;13719:6;13769:1;13757:10;13753:18;13792:97;13822:66;13811:9;13792:97;:::i;:::-;13910:39;13940:8;13929:9;13910:39;:::i;:::-;13898:51;;13982:4;13978:9;13971:5;13967:21;13958:30;;14031:4;14021:8;14017:19;14010:5;14007:30;13997:40;;13726:317;;13650:393;;;;;:::o;14049:60::-;14077:3;14098:5;14091:12;;14049:60;;;:::o;14115:142::-;14165:9;14198:53;14216:34;14225:24;14243:5;14225:24;:::i;:::-;14216:34;:::i;:::-;14198:53;:::i;:::-;14185:66;;14115:142;;;:::o;14263:75::-;14306:3;14327:5;14320:12;;14263:75;;;:::o;14344:269::-;14454:39;14485:7;14454:39;:::i;:::-;14515:91;14564:41;14588:16;14564:41;:::i;:::-;14556:6;14549:4;14543:11;14515:91;:::i;:::-;14509:4;14502:105;14420:193;14344:269;;;:::o;14619:73::-;14664:3;14619:73;:::o;14698:189::-;14775:32;;:::i;:::-;14816:65;14874:6;14866;14860:4;14816:65;:::i;:::-;14751:136;14698:189;;:::o;14893:186::-;14953:120;14970:3;14963:5;14960:14;14953:120;;;15024:39;15061:1;15054:5;15024:39;:::i;:::-;14997:1;14990:5;14986:13;14977:22;;14953:120;;;14893:186;;:::o;15085:543::-;15186:2;15181:3;15178:11;15175:446;;;15220:38;15252:5;15220:38;:::i;:::-;15304:29;15322:10;15304:29;:::i;:::-;15294:8;15290:44;15487:2;15475:10;15472:18;15469:49;;;15508:8;15493:23;;15469:49;15531:80;15587:22;15605:3;15587:22;:::i;:::-;15577:8;15573:37;15560:11;15531:80;:::i;:::-;15190:431;;15175:446;15085:543;;;:::o;15634:117::-;15688:8;15738:5;15732:4;15728:16;15707:37;;15634:117;;;;:::o;15757:169::-;15801:6;15834:51;15882:1;15878:6;15870:5;15867:1;15863:13;15834:51;:::i;:::-;15830:56;15915:4;15909;15905:15;15895:25;;15808:118;15757:169;;;;:::o;15931:295::-;16007:4;16153:29;16178:3;16172:4;16153:29;:::i;:::-;16145:37;;16215:3;16212:1;16208:11;16202:4;16199:21;16191:29;;15931:295;;;;:::o;16231:1395::-;16348:37;16381:3;16348:37;:::i;:::-;16450:18;16442:6;16439:30;16436:56;;;16472:18;;:::i;:::-;16436:56;16516:38;16548:4;16542:11;16516:38;:::i;:::-;16601:67;16661:6;16653;16647:4;16601:67;:::i;:::-;16695:1;16719:4;16706:17;;16751:2;16743:6;16740:14;16768:1;16763:618;;;;17425:1;17442:6;17439:77;;;17491:9;17486:3;17482:19;17476:26;17467:35;;17439:77;17542:67;17602:6;17595:5;17542:67;:::i;:::-;17536:4;17529:81;17398:222;16733:887;;16763:618;16815:4;16811:9;16803:6;16799:22;16849:37;16881:4;16849:37;:::i;:::-;16908:1;16922:208;16936:7;16933:1;16930:14;16922:208;;;17015:9;17010:3;17006:19;17000:26;16992:6;16985:42;17066:1;17058:6;17054:14;17044:24;;17113:2;17102:9;17098:18;17085:31;;16959:4;16956:1;16952:12;16947:17;;16922:208;;;17158:6;17149:7;17146:19;17143:179;;;17216:9;17211:3;17207:19;17201:26;17259:48;17301:4;17293:6;17289:17;17278:9;17259:48;:::i;:::-;17251:6;17244:64;17166:156;17143:179;17368:1;17364;17356:6;17352:14;17348:22;17342:4;17335:36;16770:611;;;16733:887;;16323:1303;;;16231:1395;;:::o;17632:220::-;17772:34;17768:1;17760:6;17756:14;17749:58;17841:3;17836:2;17828:6;17824:15;17817:28;17632:220;:::o;17858:366::-;18000:3;18021:67;18085:2;18080:3;18021:67;:::i;:::-;18014:74;;18097:93;18186:3;18097:93;:::i;:::-;18215:2;18210:3;18206:12;18199:19;;17858:366;;;:::o;18230:419::-;18396:4;18434:2;18423:9;18419:18;18411:26;;18483:9;18477:4;18473:20;18469:1;18458:9;18454:17;18447:47;18511:131;18637:4;18511:131;:::i;:::-;18503:139;;18230:419;;;:::o;18655:174::-;18795:26;18791:1;18783:6;18779:14;18772:50;18655:174;:::o;18835:366::-;18977:3;18998:67;19062:2;19057:3;18998:67;:::i;:::-;18991:74;;19074:93;19163:3;19074:93;:::i;:::-;19192:2;19187:3;19183:12;19176:19;;18835:366;;;:::o;19207:419::-;19373:4;19411:2;19400:9;19396:18;19388:26;;19460:9;19454:4;19450:20;19446:1;19435:9;19431:17;19424:47;19488:131;19614:4;19488:131;:::i;:::-;19480:139;;19207:419;;;:::o;19632:180::-;19680:77;19677:1;19670:88;19777:4;19774:1;19767:15;19801:4;19798:1;19791:15;19818:191;19858:3;19877:20;19895:1;19877:20;:::i;:::-;19872:25;;19911:20;19929:1;19911:20;:::i;:::-;19906:25;;19954:1;19951;19947:9;19940:16;;19975:3;19972:1;19969:10;19966:36;;;19982:18;;:::i;:::-;19966:36;19818:191;;;;:::o;20015:173::-;20155:25;20151:1;20143:6;20139:14;20132:49;20015:173;:::o;20194:366::-;20336:3;20357:67;20421:2;20416:3;20357:67;:::i;:::-;20350:74;;20433:93;20522:3;20433:93;:::i;:::-;20551:2;20546:3;20542:12;20535:19;;20194:366;;;:::o;20566:419::-;20732:4;20770:2;20759:9;20755:18;20747:26;;20819:9;20813:4;20809:20;20805:1;20794:9;20790:17;20783:47;20847:131;20973:4;20847:131;:::i;:::-;20839:139;;20566:419;;;:::o;20991:188::-;21029:3;21048:18;21064:1;21048:18;:::i;:::-;21043:23;;21080:18;21096:1;21080:18;:::i;:::-;21075:23;;21121:1;21118;21114:9;21107:16;;21144:4;21139:3;21136:13;21133:39;;;21152:18;;:::i;:::-;21133:39;20991:188;;;;:::o;21185:410::-;21225:7;21248:20;21266:1;21248:20;:::i;:::-;21243:25;;21282:20;21300:1;21282:20;:::i;:::-;21277:25;;21337:1;21334;21330:9;21359:30;21377:11;21359:30;:::i;:::-;21348:41;;21538:1;21529:7;21525:15;21522:1;21519:22;21499:1;21492:9;21472:83;21449:139;;21568:18;;:::i;:::-;21449:139;21233:362;21185:410;;;;:::o;21601:180::-;21741:32;21737:1;21729:6;21725:14;21718:56;21601:180;:::o;21787:366::-;21929:3;21950:67;22014:2;22009:3;21950:67;:::i;:::-;21943:74;;22026:93;22115:3;22026:93;:::i;:::-;22144:2;22139:3;22135:12;22128:19;;21787:366;;;:::o;22159:419::-;22325:4;22363:2;22352:9;22348:18;22340:26;;22412:9;22406:4;22402:20;22398:1;22387:9;22383:17;22376:47;22440:131;22566:4;22440:131;:::i;:::-;22432:139;;22159:419;;;:::o;22584:148::-;22686:11;22723:3;22708:18;;22584:148;;;;:::o;22738:390::-;22844:3;22872:39;22905:5;22872:39;:::i;:::-;22927:89;23009:6;23004:3;22927:89;:::i;:::-;22920:96;;23025:65;23083:6;23078:3;23071:4;23064:5;23060:16;23025:65;:::i;:::-;23115:6;23110:3;23106:16;23099:23;;22848:280;22738:390;;;;:::o;23134:435::-;23314:3;23336:95;23427:3;23418:6;23336:95;:::i;:::-;23329:102;;23448:95;23539:3;23530:6;23448:95;:::i;:::-;23441:102;;23560:3;23553:10;;23134:435;;;;;:::o;23575:225::-;23715:34;23711:1;23703:6;23699:14;23692:58;23784:8;23779:2;23771:6;23767:15;23760:33;23575:225;:::o;23806:366::-;23948:3;23969:67;24033:2;24028:3;23969:67;:::i;:::-;23962:74;;24045:93;24134:3;24045:93;:::i;:::-;24163:2;24158:3;24154:12;24147:19;;23806:366;;;:::o;24178:419::-;24344:4;24382:2;24371:9;24367:18;24359:26;;24431:9;24425:4;24421:20;24417:1;24406:9;24402:17;24395:47;24459:131;24585:4;24459:131;:::i;:::-;24451:139;;24178:419;;;:::o;24603:182::-;24743:34;24739:1;24731:6;24727:14;24720:58;24603:182;:::o;24791:366::-;24933:3;24954:67;25018:2;25013:3;24954:67;:::i;:::-;24947:74;;25030:93;25119:3;25030:93;:::i;:::-;25148:2;25143:3;25139:12;25132:19;;24791:366;;;:::o;25163:419::-;25329:4;25367:2;25356:9;25352:18;25344:26;;25416:9;25410:4;25406:20;25402:1;25391:9;25387:17;25380:47;25444:131;25570:4;25444:131;:::i;:::-;25436:139;;25163:419;;;:::o;25588:98::-;25639:6;25673:5;25667:12;25657:22;;25588:98;;;:::o;25692:168::-;25775:11;25809:6;25804:3;25797:19;25849:4;25844:3;25840:14;25825:29;;25692:168;;;;:::o;25866:373::-;25952:3;25980:38;26012:5;25980:38;:::i;:::-;26034:70;26097:6;26092:3;26034:70;:::i;:::-;26027:77;;26113:65;26171:6;26166:3;26159:4;26152:5;26148:16;26113:65;:::i;:::-;26203:29;26225:6;26203:29;:::i;:::-;26198:3;26194:39;26187:46;;25956:283;25866:373;;;;:::o;26245:640::-;26440:4;26478:3;26467:9;26463:19;26455:27;;26492:71;26560:1;26549:9;26545:17;26536:6;26492:71;:::i;:::-;26573:72;26641:2;26630:9;26626:18;26617:6;26573:72;:::i;:::-;26655;26723:2;26712:9;26708:18;26699:6;26655:72;:::i;:::-;26774:9;26768:4;26764:20;26759:2;26748:9;26744:18;26737:48;26802:76;26873:4;26864:6;26802:76;:::i;:::-;26794:84;;26245:640;;;;;;;:::o;26891:141::-;26947:5;26978:6;26972:13;26963:22;;26994:32;27020:5;26994:32;:::i;:::-;26891:141;;;;:::o;27038:349::-;27107:6;27156:2;27144:9;27135:7;27131:23;27127:32;27124:119;;;27162:79;;:::i;:::-;27124:119;27282:1;27307:63;27362:7;27353:6;27342:9;27338:22;27307:63;:::i;:::-;27297:73;;27253:127;27038:349;;;;:::o

Swarm Source

ipfs://ae34849472b771200b11dac6ad7260fc647eb755d0311680ff7748232040b1ad
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.