ETH Price: $2,648.60 (+0.23%)
Gas: 9.01 Gwei

Token

Cortal Xeason (CRL)
 

Overview

Max Total Supply

88 CRL

Holders

10

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cixin.eth
Balance
13 CRL
0x001b4d9dd4d95b021a50c99d09de97c87a1a09c0
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:
Cortal

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-21
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

contract Cortal is ERC721A, Ownable {

    uint256 public constant MAX_SUPPLY = 88;

    constructor() ERC721A("Cortal Xeason", "CRL") {
        _safeMint(msg.sender, 1);
    }

    // metadata URI
    string private _baseTokenURI;

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

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    function mint(uint256 quantity) external payable {
        require(totalSupply() + quantity <= MAX_SUPPLY, "Exceed max supply.");
        _safeMint(msg.sender, quantity);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"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":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"baseURI","type":"string"}],"name":"setBaseURI","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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600d81526020017f436f7274616c20586561736f6e000000000000000000000000000000000000008152506040518060400160405280600381526020017f43524c000000000000000000000000000000000000000000000000000000000081525081600290816200008f9190620008e7565b508060039081620000a19190620008e7565b50620000b2620000f360201b60201c565b6000819055505050620000da620000ce620000f860201b60201c565b6200010060201b60201c565b620000ed336001620001c660201b60201c565b62000ba6565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001e8828260405180602001604052806000815250620001ec60201b60201c565b5050565b620001fe83836200029d60201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200029857600080549050600083820390505b6200024760008683806001019450866200048460201b60201c565b6200027e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106200022c5781600054146200029557600080fd5b50505b505050565b60008054905060008203620002de576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002f36000848385620005e560201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200038283620003646000866000620005eb60201b60201c565b62000375856200061b60201b60201c565b176200062b60201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200042557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050620003e8565b506000820362000461576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506200047f60008483856200065660201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620004b26200065c60201b60201c565b8786866040518563ffffffff1660e01b8152600401620004d6949392919062000abe565b6020604051808303816000875af19250505080156200051557506040513d601f19601f8201168201806040525081019062000512919062000b74565b60015b62000592573d806000811462000548576040519150601f19603f3d011682016040523d82523d6000602084013e6200054d565b606091505b5060008151036200058a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e86200060a8686846200066460201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006ef57607f821691505b602082108103620007055762000704620006a7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200076f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000730565b6200077b868362000730565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007c8620007c2620007bc8462000793565b6200079d565b62000793565b9050919050565b6000819050919050565b620007e483620007a7565b620007fc620007f382620007cf565b8484546200073d565b825550505050565b600090565b6200081362000804565b62000820818484620007d9565b505050565b5b8181101562000848576200083c60008262000809565b60018101905062000826565b5050565b601f821115620008975762000861816200070b565b6200086c8462000720565b810160208510156200087c578190505b620008946200088b8562000720565b83018262000825565b50505b505050565b600082821c905092915050565b6000620008bc600019846008026200089c565b1980831691505092915050565b6000620008d78383620008a9565b9150826002028217905092915050565b620008f2826200066d565b67ffffffffffffffff8111156200090e576200090d62000678565b5b6200091a8254620006d6565b620009278282856200084c565b600060209050601f8311600181146200095f57600084156200094a578287015190505b620009568582620008c9565b865550620009c6565b601f1984166200096f866200070b565b60005b82811015620009995784890151825560018201915060208501945060208101905062000972565b86831015620009b95784890151620009b5601f891682620008a9565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009fb82620009ce565b9050919050565b62000a0d81620009ee565b82525050565b62000a1e8162000793565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000a6057808201518184015260208101905062000a43565b60008484015250505050565b6000601f19601f8301169050919050565b600062000a8a8262000a24565b62000a96818562000a2f565b935062000aa881856020860162000a40565b62000ab38162000a6c565b840191505092915050565b600060808201905062000ad5600083018762000a02565b62000ae4602083018662000a02565b62000af3604083018562000a13565b818103606083015262000b07818462000a7d565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000b4e8162000b17565b811462000b5a57600080fd5b50565b60008151905062000b6e8162000b43565b92915050565b60006020828403121562000b8d5762000b8c62000b12565b5b600062000b9d8482850162000b5d565b91505092915050565b6126d38062000bb66000396000f3fe60806040526004361061012a5760003560e01c80636352211e116100ab578063a0712d681161006f578063a0712d68146103a5578063a22cb465146103c1578063b88d4fde146103ea578063c87b56dd14610406578063e985e9c514610443578063f2fde38b146104805761012a565b80636352211e146102be57806370a08231146102fb578063715018a6146103385780638da5cb5b1461034f57806395d89b411461037a5761012a565b806323b872dd116100f257806323b872dd1461021b57806332cb6b0c146102375780633ccfd60b1461026257806342842e0e1461027957806355f804b3146102955761012a565b806301ffc9a71461012f57806306fdde031461016c578063081812fc14610197578063095ea7b3146101d457806318160ddd146101f0575b600080fd5b34801561013b57600080fd5b506101566004803603810190610151919061191d565b6104a9565b6040516101639190611965565b60405180910390f35b34801561017857600080fd5b5061018161053b565b60405161018e9190611a10565b60405180910390f35b3480156101a357600080fd5b506101be60048036038101906101b99190611a68565b6105cd565b6040516101cb9190611ad6565b60405180910390f35b6101ee60048036038101906101e99190611b1d565b61064c565b005b3480156101fc57600080fd5b50610205610790565b6040516102129190611b6c565b60405180910390f35b61023560048036038101906102309190611b87565b6107a7565b005b34801561024357600080fd5b5061024c610ac9565b6040516102599190611b6c565b60405180910390f35b34801561026e57600080fd5b50610277610ace565b005b610293600480360381019061028e9190611b87565b610b85565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190611c3f565b610ba5565b005b3480156102ca57600080fd5b506102e560048036038101906102e09190611a68565b610bc3565b6040516102f29190611ad6565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190611c8c565b610bd5565b60405161032f9190611b6c565b60405180910390f35b34801561034457600080fd5b5061034d610c8d565b005b34801561035b57600080fd5b50610364610ca1565b6040516103719190611ad6565b60405180910390f35b34801561038657600080fd5b5061038f610ccb565b60405161039c9190611a10565b60405180910390f35b6103bf60048036038101906103ba9190611a68565b610d5d565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190611ce5565b610dc0565b005b61040460048036038101906103ff9190611e55565b610ecb565b005b34801561041257600080fd5b5061042d60048036038101906104289190611a68565b610f3e565b60405161043a9190611a10565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190611ed8565b610fdb565b6040516104779190611965565b60405180910390f35b34801561048c57600080fd5b506104a760048036038101906104a29190611c8c565b61106f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061050457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105345750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461054a90611f47565b80601f016020809104026020016040519081016040528092919081815260200182805461057690611f47565b80156105c35780601f10610598576101008083540402835291602001916105c3565b820191906000526020600020905b8154815290600101906020018083116105a657829003601f168201915b5050505050905090565b60006105d8826110f2565b61060e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061065782610bc3565b90508073ffffffffffffffffffffffffffffffffffffffff16610678611151565b73ffffffffffffffffffffffffffffffffffffffff16146106db576106a48161069f611151565b610fdb565b6106da576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061079a611159565b6001546000540303905090565b60006107b28261115e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610819576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108258461122a565b9150915061083b8187610836611151565b611251565b610887576108508661084b611151565b610fdb565b610886576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036108ed576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108fa8686866001611295565b801561090557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506109d3856109af88888761129b565b7c0200000000000000000000000000000000000000000000000000000000176112c3565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610a595760006001850190506000600460008381526020019081526020016000205403610a57576000548114610a56578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ac186868660016112ee565b505050505050565b605881565b610ad66112f4565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610afc90611fa9565b60006040518083038185875af1925050503d8060008114610b39576040519150601f19603f3d011682016040523d82523d6000602084013e610b3e565b606091505b5050905080610b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b799061200a565b60405180910390fd5b50565b610ba083838360405180602001604052806000815250610ecb565b505050565b610bad6112f4565b818160099182610bbe9291906121e1565b505050565b6000610bce8261115e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c3c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610c956112f4565b610c9f6000611372565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610cda90611f47565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0690611f47565b8015610d535780601f10610d2857610100808354040283529160200191610d53565b820191906000526020600020905b815481529060010190602001808311610d3657829003601f168201915b5050505050905090565b605881610d68610790565b610d7291906122e0565b1115610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa90612360565b60405180910390fd5b610dbd3382611438565b50565b8060076000610dcd611151565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e7a611151565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ebf9190611965565b60405180910390a35050565b610ed68484846107a7565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610f3857610f0184848484611456565b610f37576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060610f49826110f2565b610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f906123f2565b60405180910390fd5b6000610f926115a6565b90506000815103610fb25760405180602001604052806000815250610fd3565b80604051602001610fc3919061249a565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110776112f4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd9061252e565b60405180910390fd5b6110ef81611372565b50565b6000816110fd611159565b1115801561110c575060005482105b801561114a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061116d611159565b116111f3576000548110156111f25760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036111f0575b600081036111e65760046000836001900393508381526020019081526020016000205490506111bc565b8092505050611225565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86112b2868684611638565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6112fc611641565b73ffffffffffffffffffffffffffffffffffffffff1661131a610ca1565b73ffffffffffffffffffffffffffffffffffffffff1614611370576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113679061259a565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611452828260405180602001604052806000815250611649565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261147c611151565b8786866040518563ffffffff1660e01b815260040161149e949392919061260f565b6020604051808303816000875af19250505080156114da57506040513d601f19601f820116820180604052508101906114d79190612670565b60015b611553573d806000811461150a576040519150601f19603f3d011682016040523d82523d6000602084013e61150f565b606091505b50600081510361154b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546115b590611f47565b80601f01602080910402602001604051908101604052809291908181526020018280546115e190611f47565b801561162e5780601f106116035761010080835404028352916020019161162e565b820191906000526020600020905b81548152906001019060200180831161161157829003601f168201915b5050505050905090565b60009392505050565b600033905090565b61165383836116e6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116e157600080549050600083820390505b6116936000868380600101945086611456565b6116c9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106116805781600054146116de57600080fd5b50505b505050565b60008054905060008203611726576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117336000848385611295565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506117aa8361179b600086600061129b565b6117a4856118a1565b176112c3565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461184b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611810565b5060008203611886576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061189c60008483856112ee565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6118fa816118c5565b811461190557600080fd5b50565b600081359050611917816118f1565b92915050565b600060208284031215611933576119326118bb565b5b600061194184828501611908565b91505092915050565b60008115159050919050565b61195f8161194a565b82525050565b600060208201905061197a6000830184611956565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119ba57808201518184015260208101905061199f565b60008484015250505050565b6000601f19601f8301169050919050565b60006119e282611980565b6119ec818561198b565b93506119fc81856020860161199c565b611a05816119c6565b840191505092915050565b60006020820190508181036000830152611a2a81846119d7565b905092915050565b6000819050919050565b611a4581611a32565b8114611a5057600080fd5b50565b600081359050611a6281611a3c565b92915050565b600060208284031215611a7e57611a7d6118bb565b5b6000611a8c84828501611a53565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ac082611a95565b9050919050565b611ad081611ab5565b82525050565b6000602082019050611aeb6000830184611ac7565b92915050565b611afa81611ab5565b8114611b0557600080fd5b50565b600081359050611b1781611af1565b92915050565b60008060408385031215611b3457611b336118bb565b5b6000611b4285828601611b08565b9250506020611b5385828601611a53565b9150509250929050565b611b6681611a32565b82525050565b6000602082019050611b816000830184611b5d565b92915050565b600080600060608486031215611ba057611b9f6118bb565b5b6000611bae86828701611b08565b9350506020611bbf86828701611b08565b9250506040611bd086828701611a53565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112611bff57611bfe611bda565b5b8235905067ffffffffffffffff811115611c1c57611c1b611bdf565b5b602083019150836001820283011115611c3857611c37611be4565b5b9250929050565b60008060208385031215611c5657611c556118bb565b5b600083013567ffffffffffffffff811115611c7457611c736118c0565b5b611c8085828601611be9565b92509250509250929050565b600060208284031215611ca257611ca16118bb565b5b6000611cb084828501611b08565b91505092915050565b611cc28161194a565b8114611ccd57600080fd5b50565b600081359050611cdf81611cb9565b92915050565b60008060408385031215611cfc57611cfb6118bb565b5b6000611d0a85828601611b08565b9250506020611d1b85828601611cd0565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611d62826119c6565b810181811067ffffffffffffffff82111715611d8157611d80611d2a565b5b80604052505050565b6000611d946118b1565b9050611da08282611d59565b919050565b600067ffffffffffffffff821115611dc057611dbf611d2a565b5b611dc9826119c6565b9050602081019050919050565b82818337600083830152505050565b6000611df8611df384611da5565b611d8a565b905082815260208101848484011115611e1457611e13611d25565b5b611e1f848285611dd6565b509392505050565b600082601f830112611e3c57611e3b611bda565b5b8135611e4c848260208601611de5565b91505092915050565b60008060008060808587031215611e6f57611e6e6118bb565b5b6000611e7d87828801611b08565b9450506020611e8e87828801611b08565b9350506040611e9f87828801611a53565b925050606085013567ffffffffffffffff811115611ec057611ebf6118c0565b5b611ecc87828801611e27565b91505092959194509250565b60008060408385031215611eef57611eee6118bb565b5b6000611efd85828601611b08565b9250506020611f0e85828601611b08565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f5f57607f821691505b602082108103611f7257611f71611f18565b5b50919050565b600081905092915050565b50565b6000611f93600083611f78565b9150611f9e82611f83565b600082019050919050565b6000611fb482611f86565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000611ff460108361198b565b9150611fff82611fbe565b602082019050919050565b6000602082019050818103600083015261202381611fe7565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026120977fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261205a565b6120a1868361205a565b95508019841693508086168417925050509392505050565b6000819050919050565b60006120de6120d96120d484611a32565b6120b9565b611a32565b9050919050565b6000819050919050565b6120f8836120c3565b61210c612104826120e5565b848454612067565b825550505050565b600090565b612121612114565b61212c8184846120ef565b505050565b5b8181101561215057612145600082612119565b600181019050612132565b5050565b601f8211156121955761216681612035565b61216f8461204a565b8101602085101561217e578190505b61219261218a8561204a565b830182612131565b50505b505050565b600082821c905092915050565b60006121b86000198460080261219a565b1980831691505092915050565b60006121d183836121a7565b9150826002028217905092915050565b6121eb838361202a565b67ffffffffffffffff81111561220457612203611d2a565b5b61220e8254611f47565b612219828285612154565b6000601f8311600181146122485760008415612236578287013590505b61224085826121c5565b8655506122a8565b601f19841661225686612035565b60005b8281101561227e57848901358255600182019150602085019450602081019050612259565b8683101561229b5784890135612297601f8916826121a7565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122eb82611a32565b91506122f683611a32565b925082820190508082111561230e5761230d6122b1565b5b92915050565b7f457863656564206d617820737570706c792e0000000000000000000000000000600082015250565b600061234a60128361198b565b915061235582612314565b602082019050919050565b600060208201905081810360008301526123798161233d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006123dc602f8361198b565b91506123e782612380565b604082019050919050565b6000602082019050818103600083015261240b816123cf565b9050919050565b600081905092915050565b600061242882611980565b6124328185612412565b935061244281856020860161199c565b80840191505092915050565b7f6d6574612e6a736f6e0000000000000000000000000000000000000000000000600082015250565b6000612484600983612412565b915061248f8261244e565b600982019050919050565b60006124a6828461241d565b91506124b182612477565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061251860268361198b565b9150612523826124bc565b604082019050919050565b600060208201905081810360008301526125478161250b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061258460208361198b565b915061258f8261254e565b602082019050919050565b600060208201905081810360008301526125b381612577565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006125e1826125ba565b6125eb81856125c5565b93506125fb81856020860161199c565b612604816119c6565b840191505092915050565b60006080820190506126246000830187611ac7565b6126316020830186611ac7565b61263e6040830185611b5d565b818103606083015261265081846125d6565b905095945050505050565b60008151905061266a816118f1565b92915050565b600060208284031215612686576126856118bb565b5b60006126948482850161265b565b9150509291505056fea26469706673582212203f9151edfca808975b73357d48a54e1c8405a44fd4e85dc44e98fc3e5d9b32e364736f6c63430008110033

Deployed Bytecode

0x60806040526004361061012a5760003560e01c80636352211e116100ab578063a0712d681161006f578063a0712d68146103a5578063a22cb465146103c1578063b88d4fde146103ea578063c87b56dd14610406578063e985e9c514610443578063f2fde38b146104805761012a565b80636352211e146102be57806370a08231146102fb578063715018a6146103385780638da5cb5b1461034f57806395d89b411461037a5761012a565b806323b872dd116100f257806323b872dd1461021b57806332cb6b0c146102375780633ccfd60b1461026257806342842e0e1461027957806355f804b3146102955761012a565b806301ffc9a71461012f57806306fdde031461016c578063081812fc14610197578063095ea7b3146101d457806318160ddd146101f0575b600080fd5b34801561013b57600080fd5b506101566004803603810190610151919061191d565b6104a9565b6040516101639190611965565b60405180910390f35b34801561017857600080fd5b5061018161053b565b60405161018e9190611a10565b60405180910390f35b3480156101a357600080fd5b506101be60048036038101906101b99190611a68565b6105cd565b6040516101cb9190611ad6565b60405180910390f35b6101ee60048036038101906101e99190611b1d565b61064c565b005b3480156101fc57600080fd5b50610205610790565b6040516102129190611b6c565b60405180910390f35b61023560048036038101906102309190611b87565b6107a7565b005b34801561024357600080fd5b5061024c610ac9565b6040516102599190611b6c565b60405180910390f35b34801561026e57600080fd5b50610277610ace565b005b610293600480360381019061028e9190611b87565b610b85565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190611c3f565b610ba5565b005b3480156102ca57600080fd5b506102e560048036038101906102e09190611a68565b610bc3565b6040516102f29190611ad6565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190611c8c565b610bd5565b60405161032f9190611b6c565b60405180910390f35b34801561034457600080fd5b5061034d610c8d565b005b34801561035b57600080fd5b50610364610ca1565b6040516103719190611ad6565b60405180910390f35b34801561038657600080fd5b5061038f610ccb565b60405161039c9190611a10565b60405180910390f35b6103bf60048036038101906103ba9190611a68565b610d5d565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190611ce5565b610dc0565b005b61040460048036038101906103ff9190611e55565b610ecb565b005b34801561041257600080fd5b5061042d60048036038101906104289190611a68565b610f3e565b60405161043a9190611a10565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190611ed8565b610fdb565b6040516104779190611965565b60405180910390f35b34801561048c57600080fd5b506104a760048036038101906104a29190611c8c565b61106f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061050457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105345750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461054a90611f47565b80601f016020809104026020016040519081016040528092919081815260200182805461057690611f47565b80156105c35780601f10610598576101008083540402835291602001916105c3565b820191906000526020600020905b8154815290600101906020018083116105a657829003601f168201915b5050505050905090565b60006105d8826110f2565b61060e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061065782610bc3565b90508073ffffffffffffffffffffffffffffffffffffffff16610678611151565b73ffffffffffffffffffffffffffffffffffffffff16146106db576106a48161069f611151565b610fdb565b6106da576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061079a611159565b6001546000540303905090565b60006107b28261115e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610819576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108258461122a565b9150915061083b8187610836611151565b611251565b610887576108508661084b611151565b610fdb565b610886576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036108ed576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108fa8686866001611295565b801561090557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506109d3856109af88888761129b565b7c0200000000000000000000000000000000000000000000000000000000176112c3565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610a595760006001850190506000600460008381526020019081526020016000205403610a57576000548114610a56578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ac186868660016112ee565b505050505050565b605881565b610ad66112f4565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610afc90611fa9565b60006040518083038185875af1925050503d8060008114610b39576040519150601f19603f3d011682016040523d82523d6000602084013e610b3e565b606091505b5050905080610b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b799061200a565b60405180910390fd5b50565b610ba083838360405180602001604052806000815250610ecb565b505050565b610bad6112f4565b818160099182610bbe9291906121e1565b505050565b6000610bce8261115e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c3c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610c956112f4565b610c9f6000611372565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610cda90611f47565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0690611f47565b8015610d535780601f10610d2857610100808354040283529160200191610d53565b820191906000526020600020905b815481529060010190602001808311610d3657829003601f168201915b5050505050905090565b605881610d68610790565b610d7291906122e0565b1115610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa90612360565b60405180910390fd5b610dbd3382611438565b50565b8060076000610dcd611151565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e7a611151565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ebf9190611965565b60405180910390a35050565b610ed68484846107a7565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610f3857610f0184848484611456565b610f37576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060610f49826110f2565b610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f906123f2565b60405180910390fd5b6000610f926115a6565b90506000815103610fb25760405180602001604052806000815250610fd3565b80604051602001610fc3919061249a565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110776112f4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd9061252e565b60405180910390fd5b6110ef81611372565b50565b6000816110fd611159565b1115801561110c575060005482105b801561114a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061116d611159565b116111f3576000548110156111f25760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036111f0575b600081036111e65760046000836001900393508381526020019081526020016000205490506111bc565b8092505050611225565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86112b2868684611638565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6112fc611641565b73ffffffffffffffffffffffffffffffffffffffff1661131a610ca1565b73ffffffffffffffffffffffffffffffffffffffff1614611370576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113679061259a565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611452828260405180602001604052806000815250611649565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261147c611151565b8786866040518563ffffffff1660e01b815260040161149e949392919061260f565b6020604051808303816000875af19250505080156114da57506040513d601f19601f820116820180604052508101906114d79190612670565b60015b611553573d806000811461150a576040519150601f19603f3d011682016040523d82523d6000602084013e61150f565b606091505b50600081510361154b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546115b590611f47565b80601f01602080910402602001604051908101604052809291908181526020018280546115e190611f47565b801561162e5780601f106116035761010080835404028352916020019161162e565b820191906000526020600020905b81548152906001019060200180831161161157829003601f168201915b5050505050905090565b60009392505050565b600033905090565b61165383836116e6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116e157600080549050600083820390505b6116936000868380600101945086611456565b6116c9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106116805781600054146116de57600080fd5b50505b505050565b60008054905060008203611726576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117336000848385611295565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506117aa8361179b600086600061129b565b6117a4856118a1565b176112c3565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461184b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611810565b5060008203611886576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061189c60008483856112ee565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6118fa816118c5565b811461190557600080fd5b50565b600081359050611917816118f1565b92915050565b600060208284031215611933576119326118bb565b5b600061194184828501611908565b91505092915050565b60008115159050919050565b61195f8161194a565b82525050565b600060208201905061197a6000830184611956565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119ba57808201518184015260208101905061199f565b60008484015250505050565b6000601f19601f8301169050919050565b60006119e282611980565b6119ec818561198b565b93506119fc81856020860161199c565b611a05816119c6565b840191505092915050565b60006020820190508181036000830152611a2a81846119d7565b905092915050565b6000819050919050565b611a4581611a32565b8114611a5057600080fd5b50565b600081359050611a6281611a3c565b92915050565b600060208284031215611a7e57611a7d6118bb565b5b6000611a8c84828501611a53565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ac082611a95565b9050919050565b611ad081611ab5565b82525050565b6000602082019050611aeb6000830184611ac7565b92915050565b611afa81611ab5565b8114611b0557600080fd5b50565b600081359050611b1781611af1565b92915050565b60008060408385031215611b3457611b336118bb565b5b6000611b4285828601611b08565b9250506020611b5385828601611a53565b9150509250929050565b611b6681611a32565b82525050565b6000602082019050611b816000830184611b5d565b92915050565b600080600060608486031215611ba057611b9f6118bb565b5b6000611bae86828701611b08565b9350506020611bbf86828701611b08565b9250506040611bd086828701611a53565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112611bff57611bfe611bda565b5b8235905067ffffffffffffffff811115611c1c57611c1b611bdf565b5b602083019150836001820283011115611c3857611c37611be4565b5b9250929050565b60008060208385031215611c5657611c556118bb565b5b600083013567ffffffffffffffff811115611c7457611c736118c0565b5b611c8085828601611be9565b92509250509250929050565b600060208284031215611ca257611ca16118bb565b5b6000611cb084828501611b08565b91505092915050565b611cc28161194a565b8114611ccd57600080fd5b50565b600081359050611cdf81611cb9565b92915050565b60008060408385031215611cfc57611cfb6118bb565b5b6000611d0a85828601611b08565b9250506020611d1b85828601611cd0565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611d62826119c6565b810181811067ffffffffffffffff82111715611d8157611d80611d2a565b5b80604052505050565b6000611d946118b1565b9050611da08282611d59565b919050565b600067ffffffffffffffff821115611dc057611dbf611d2a565b5b611dc9826119c6565b9050602081019050919050565b82818337600083830152505050565b6000611df8611df384611da5565b611d8a565b905082815260208101848484011115611e1457611e13611d25565b5b611e1f848285611dd6565b509392505050565b600082601f830112611e3c57611e3b611bda565b5b8135611e4c848260208601611de5565b91505092915050565b60008060008060808587031215611e6f57611e6e6118bb565b5b6000611e7d87828801611b08565b9450506020611e8e87828801611b08565b9350506040611e9f87828801611a53565b925050606085013567ffffffffffffffff811115611ec057611ebf6118c0565b5b611ecc87828801611e27565b91505092959194509250565b60008060408385031215611eef57611eee6118bb565b5b6000611efd85828601611b08565b9250506020611f0e85828601611b08565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f5f57607f821691505b602082108103611f7257611f71611f18565b5b50919050565b600081905092915050565b50565b6000611f93600083611f78565b9150611f9e82611f83565b600082019050919050565b6000611fb482611f86565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000611ff460108361198b565b9150611fff82611fbe565b602082019050919050565b6000602082019050818103600083015261202381611fe7565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026120977fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261205a565b6120a1868361205a565b95508019841693508086168417925050509392505050565b6000819050919050565b60006120de6120d96120d484611a32565b6120b9565b611a32565b9050919050565b6000819050919050565b6120f8836120c3565b61210c612104826120e5565b848454612067565b825550505050565b600090565b612121612114565b61212c8184846120ef565b505050565b5b8181101561215057612145600082612119565b600181019050612132565b5050565b601f8211156121955761216681612035565b61216f8461204a565b8101602085101561217e578190505b61219261218a8561204a565b830182612131565b50505b505050565b600082821c905092915050565b60006121b86000198460080261219a565b1980831691505092915050565b60006121d183836121a7565b9150826002028217905092915050565b6121eb838361202a565b67ffffffffffffffff81111561220457612203611d2a565b5b61220e8254611f47565b612219828285612154565b6000601f8311600181146122485760008415612236578287013590505b61224085826121c5565b8655506122a8565b601f19841661225686612035565b60005b8281101561227e57848901358255600182019150602085019450602081019050612259565b8683101561229b5784890135612297601f8916826121a7565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122eb82611a32565b91506122f683611a32565b925082820190508082111561230e5761230d6122b1565b5b92915050565b7f457863656564206d617820737570706c792e0000000000000000000000000000600082015250565b600061234a60128361198b565b915061235582612314565b602082019050919050565b600060208201905081810360008301526123798161233d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006123dc602f8361198b565b91506123e782612380565b604082019050919050565b6000602082019050818103600083015261240b816123cf565b9050919050565b600081905092915050565b600061242882611980565b6124328185612412565b935061244281856020860161199c565b80840191505092915050565b7f6d6574612e6a736f6e0000000000000000000000000000000000000000000000600082015250565b6000612484600983612412565b915061248f8261244e565b600982019050919050565b60006124a6828461241d565b91506124b182612477565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061251860268361198b565b9150612523826124bc565b604082019050919050565b600060208201905081810360008301526125478161250b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061258460208361198b565b915061258f8261254e565b602082019050919050565b600060208201905081810360008301526125b381612577565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006125e1826125ba565b6125eb81856125c5565b93506125fb81856020860161199c565b612604816119c6565b840191505092915050565b60006080820190506126246000830187611ac7565b6126316020830186611ac7565b61263e6040830185611b5d565b818103606083015261265081846125d6565b905095945050505050565b60008151905061266a816118f1565b92915050565b600060208284031215612686576126856118bb565b5b60006126948482850161265b565b9150509291505056fea26469706673582212203f9151edfca808975b73357d48a54e1c8405a44fd4e85dc44e98fc3e5d9b32e364736f6c63430008110033

Deployed Bytecode Sourcemap

52097:1183:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17569:636;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18468:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24859:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24292:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14246:311;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28471:2735;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52142:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52917:173;;;;;;;;;;;;;:::i;:::-;;31302:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52467:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19861:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15406:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51280:103;;;;;;;;;;;;;:::i;:::-;;50632:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18644:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53098:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25417:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32093:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52581:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25808:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51538:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17569:636;17654:4;17989:10;17974:25;;:11;:25;;;;:98;;;;18062:10;18047:25;;:11;:25;;;;17974:98;:171;;;;18135:10;18120:25;;:11;:25;;;;17974:171;17958:187;;17569:636;;;:::o;18468:100::-;18522:13;18555:5;18548:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18468:100;:::o;24859:218::-;24935:7;24960:16;24968:7;24960;:16::i;:::-;24955:64;;24985:34;;;;;;;;;;;;;;24955:64;25039:15;:24;25055:7;25039:24;;;;;;;;;;;:30;;;;;;;;;;;;25032:37;;24859:218;;;:::o;24292:408::-;24381:13;24397:16;24405:7;24397;:16::i;:::-;24381:32;;24453:5;24430:28;;:19;:17;:19::i;:::-;:28;;;24426:175;;24478:44;24495:5;24502:19;:17;:19::i;:::-;24478:16;:44::i;:::-;24473:128;;24550:35;;;;;;;;;;;;;;24473:128;24426:175;24646:2;24613:15;:24;24629:7;24613:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;24684:7;24680:2;24664:28;;24673:5;24664:28;;;;;;;;;;;;24370:330;24292:408;;:::o;14246:311::-;14307:7;14527:15;:13;:15::i;:::-;14512:12;;14496:13;;:28;:46;14489:53;;14246:311;:::o;28471:2735::-;28613:27;28643;28662:7;28643:18;:27::i;:::-;28613:57;;28728:4;28687:45;;28703:19;28687:45;;;28683:86;;28741:28;;;;;;;;;;;;;;28683:86;28783:27;28812:23;28839:35;28866:7;28839:26;:35::i;:::-;28782:92;;;;28974:68;28999:15;29016:4;29022:19;:17;:19::i;:::-;28974:24;:68::i;:::-;28969:180;;29062:43;29079:4;29085:19;:17;:19::i;:::-;29062:16;:43::i;:::-;29057:92;;29114:35;;;;;;;;;;;;;;29057:92;28969:180;29180:1;29166:16;;:2;:16;;;29162:52;;29191:23;;;;;;;;;;;;;;29162:52;29227:43;29249:4;29255:2;29259:7;29268:1;29227:21;:43::i;:::-;29363:15;29360:156;;;29499:1;29478:19;29471:30;29360:156;29884:18;:24;29903:4;29884:24;;;;;;;;;;;;;;;;29882:26;;;;;;;;;;;;29958:18;:22;29977:2;29958:22;;;;;;;;;;;;;;;;29956:24;;;;;;;;;;;30265:134;30298:2;30343:45;30358:4;30364:2;30368:19;30343:14;:45::i;:::-;10649:8;30315:73;30265:18;:134::i;:::-;30236:17;:26;30254:7;30236:26;;;;;;;;;;;:163;;;;30562:1;10649:8;30511:19;:47;:52;30507:587;;30580:19;30612:1;30602:7;:11;30580:33;;30761:1;30727:17;:30;30745:11;30727:30;;;;;;;;;;;;:35;30723:360;;30857:13;;30842:11;:28;30838:230;;31029:19;30996:17;:30;31014:11;30996:30;;;;;;;;;;;:52;;;;30838:230;30723:360;30565:529;30507:587;31137:7;31133:2;31118:27;;31127:4;31118:27;;;;;;;;;;;;31156:42;31177:4;31183:2;31187:7;31196:1;31156:20;:42::i;:::-;28602:2604;;;28471:2735;;;:::o;52142:39::-;52179:2;52142:39;:::o;52917:173::-;50518:13;:11;:13::i;:::-;52968:12:::1;52985:10;:15;;53009:21;52985:50;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52967:68;;;53054:7;53046:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;52956:134;52917:173::o:0;31302:193::-;31448:39;31465:4;31471:2;31475:7;31448:39;;;;;;;;;;;;:16;:39::i;:::-;31302:193;;;:::o;52467:106::-;50518:13;:11;:13::i;:::-;52558:7:::1;;52542:13;:23;;;;;;;:::i;:::-;;52467:106:::0;;:::o;19861:152::-;19933:7;19976:27;19995:7;19976:18;:27::i;:::-;19953:52;;19861:152;;;:::o;15406:233::-;15478:7;15519:1;15502:19;;:5;:19;;;15498:60;;15530:28;;;;;;;;;;;;;;15498:60;9593:13;15576:18;:25;15595:5;15576:25;;;;;;;;;;;;;;;;:55;15569:62;;15406:233;;;:::o;51280:103::-;50518:13;:11;:13::i;:::-;51345:30:::1;51372:1;51345:18;:30::i;:::-;51280:103::o:0;50632:87::-;50678:7;50705:6;;;;;;;;;;;50698:13;;50632:87;:::o;18644:104::-;18700:13;18733:7;18726:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18644:104;:::o;53098:179::-;52179:2;53182:8;53166:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;53158:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;53238:31;53248:10;53260:8;53238:9;:31::i;:::-;53098:179;:::o;25417:234::-;25564:8;25512:18;:39;25531:19;:17;:19::i;:::-;25512:39;;;;;;;;;;;;;;;:49;25552:8;25512:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;25624:8;25588:55;;25603:19;:17;:19::i;:::-;25588:55;;;25634:8;25588:55;;;;;;:::i;:::-;;;;;;;;25417:234;;:::o;32093:407::-;32268:31;32281:4;32287:2;32291:7;32268:12;:31::i;:::-;32332:1;32314:2;:14;;;:19;32310:183;;32353:56;32384:4;32390:2;32394:7;32403:5;32353:30;:56::i;:::-;32348:145;;32437:40;;;;;;;;;;;;;;32348:145;32310:183;32093:407;;;;:::o;52581:328::-;52654:13;52688:16;52696:7;52688;:16::i;:::-;52680:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52769:21;52793:10;:8;:10::i;:::-;52769:34;;52846:1;52827:7;52821:21;:26;:80;;;;;;;;;;;;;;;;;52874:7;52857:38;;;;;;;;:::i;:::-;;;;;;;;;;;;;52821:80;52814:87;;;52581:328;;;:::o;25808:164::-;25905:4;25929:18;:25;25948:5;25929:25;;;;;;;;;;;;;;;:35;25955:8;25929:35;;;;;;;;;;;;;;;;;;;;;;;;;25922:42;;25808:164;;;;:::o;51538:201::-;50518:13;:11;:13::i;:::-;51647:1:::1;51627:22;;:8;:22;;::::0;51619:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;51703:28;51722:8;51703:18;:28::i;:::-;51538:201:::0;:::o;26230:279::-;26295:4;26347:7;26328:15;:13;:15::i;:::-;:26;;:62;;;;;26377:13;;26367:7;:23;26328:62;:145;;;;;26472:1;10369:8;26424:17;:26;26442:7;26424:26;;;;;;;;;;;;:44;:49;26328:145;26312:161;;26230:279;;;:::o;47926:105::-;47986:7;48013:10;48006:17;;47926:105;:::o;13762:92::-;13818:7;13762:92;:::o;21016:1187::-;21083:7;21103:12;21118:7;21103:22;;21178:4;21159:15;:13;:15::i;:::-;:23;21155:985;;21208:13;;21201:4;:20;21197:943;;;21242:14;21259:17;:23;21277:4;21259:23;;;;;;;;;;;;21242:40;;21368:1;10369:8;21340:6;:24;:29;21336:789;;21965:105;21982:1;21972:6;:11;21965:105;;22021:17;:25;22039:6;;;;;;;22021:25;;;;;;;;;;;;22012:34;;21965:105;;;22099:6;22092:13;;;;;;21336:789;21223:917;21197:943;21155:985;22164:31;;;;;;;;;;;;;;21016:1187;;;;:::o;27378:473::-;27468:27;27497:23;27538:38;27579:15;:24;27595:7;27579:24;;;;;;;;;;;27538:65;;27756:18;27733:41;;27813:19;27807:26;27788:45;;27718:126;27378:473;;;:::o;26618:647::-;26767:11;26928:16;26921:5;26917:28;26908:37;;27084:16;27073:9;27069:32;27056:45;;27230:15;27219:9;27216:30;27208:5;27197:9;27194:20;27191:56;27181:66;;26618:647;;;;;:::o;33162:159::-;;;;;:::o;47235:311::-;47370:7;47390:16;10773:3;47416:19;:41;;47390:68;;10773:3;47484:31;47495:4;47501:2;47505:9;47484:10;:31::i;:::-;47476:40;;:62;;47469:69;;;47235:311;;;;;:::o;22751:442::-;22831:14;22995:16;22988:5;22984:28;22975:37;;23168:5;23154:11;23129:23;23125:41;23122:52;23115:5;23112:63;23102:73;;22751:442;;;;:::o;33986:158::-;;;;;:::o;50797:132::-;50872:12;:10;:12::i;:::-;50861:23;;:7;:5;:7::i;:::-;:23;;;50853:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50797:132::o;51899:191::-;51973:16;51992:6;;;;;;;;;;;51973:25;;52018:8;52009:6;;:17;;;;;;;;;;;;;;;;;;52073:8;52042:40;;52063:8;52042:40;;;;;;;;;;;;51962:128;51899:191;:::o;41894:112::-;41971:27;41981:2;41985:8;41971:27;;;;;;;;;;;;:9;:27::i;:::-;41894:112;;:::o;34584:716::-;34747:4;34793:2;34768:45;;;34814:19;:17;:19::i;:::-;34835:4;34841:7;34850:5;34768:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34764:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35068:1;35051:6;:13;:18;35047:235;;35097:40;;;;;;;;;;;;;;35047:235;35240:6;35234:13;35225:6;35221:2;35217:15;35210:38;34764:529;34937:54;;;34927:64;;;:6;:64;;;;34920:71;;;34584:716;;;;;;:::o;52345:114::-;52405:13;52438;52431:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52345:114;:::o;46936:147::-;47073:6;46936:147;;;;;:::o;49848:98::-;49901:7;49928:10;49921:17;;49848:98;:::o;41160:650::-;41291:19;41297:2;41301:8;41291:5;:19::i;:::-;41362:1;41344:2;:14;;;:19;41340:456;;41380:11;41394:13;;41380:27;;41422:13;41444:8;41438:3;:14;41422:30;;41467:230;41494:62;41533:1;41537:2;41541:7;;;;;;41550:5;41494:30;:62::i;:::-;41489:159;;41588:40;;;;;;;;;;;;;;41489:159;41692:3;41684:5;:11;41467:230;;41771:3;41754:13;;:20;41750:34;;41776:8;;;41750:34;41365:431;;41340:456;41160:650;;;:::o;35762:2722::-;35835:20;35858:13;;35835:36;;35898:1;35886:8;:13;35882:44;;35908:18;;;;;;;;;;;;;;35882:44;35939:61;35969:1;35973:2;35977:12;35991:8;35939:21;:61::i;:::-;36455:1;9731:2;36425:1;:26;;36424:32;36412:8;:45;36386:18;:22;36405:2;36386:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;36710:127;36743:2;36793:33;36816:1;36820:2;36824:1;36793:14;:33::i;:::-;36760:30;36781:8;36760:20;:30::i;:::-;:66;36710:18;:127::i;:::-;36676:17;:31;36694:12;36676:31;;;;;;;;;;;:161;;;;36850:16;36877:11;36906:8;36891:12;:23;36877:37;;37395:16;37391:2;37387:25;37375:37;;37707:12;37675:8;37642:1;37588:25;37537:1;37484;37465:283;38042:1;38028:12;38024:20;37986:314;38079:3;38070:7;38067:16;37986:314;;38277:7;38267:8;38264:1;38237:25;38234:1;38231;38226:59;38128:1;38119:7;38115:15;38104:26;;37986:314;;;37990:69;38337:1;38325:8;:13;38321:45;;38347:19;;;;;;;;;;;;;;38321:45;38395:3;38379:13;:19;;;;36184:2222;;38416:60;38445:1;38449:2;38453:12;38467:8;38416:20;:60::i;:::-;35824:2660;35762:2722;;:::o;23295:320::-;23365:14;23594:1;23584:8;23581:15;23555:24;23551:46;23541:56;;23295:320;;;:::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:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::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:117;6222:1;6219;6212:12;6250:553;6308:8;6318:6;6368:3;6361:4;6353:6;6349:17;6345:27;6335:122;;6376:79;;:::i;:::-;6335:122;6489:6;6476:20;6466:30;;6519:18;6511:6;6508:30;6505:117;;;6541:79;;:::i;:::-;6505:117;6655:4;6647:6;6643:17;6631:29;;6709:3;6701:4;6693:6;6689:17;6679:8;6675:32;6672:41;6669:128;;;6716:79;;:::i;:::-;6669:128;6250:553;;;;;:::o;6809:529::-;6880:6;6888;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7091:1;7080:9;7076:17;7063:31;7121:18;7113:6;7110:30;7107:117;;;7143:79;;:::i;:::-;7107:117;7256:65;7313:7;7304:6;7293:9;7289:22;7256:65;:::i;:::-;7238:83;;;;7034:297;6809:529;;;;;:::o;7344:329::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7549:117;7344:329;;;;:::o;7679:116::-;7749:21;7764:5;7749:21;:::i;:::-;7742:5;7739:32;7729:60;;7785:1;7782;7775:12;7729:60;7679:116;:::o;7801:133::-;7844:5;7882:6;7869:20;7860:29;;7898:30;7922:5;7898:30;:::i;:::-;7801:133;;;;:::o;7940:468::-;8005:6;8013;8062:2;8050:9;8041:7;8037:23;8033:32;8030:119;;;8068:79;;:::i;:::-;8030:119;8188:1;8213:53;8258:7;8249:6;8238:9;8234:22;8213:53;:::i;:::-;8203:63;;8159:117;8315:2;8341:50;8383:7;8374:6;8363:9;8359:22;8341:50;:::i;:::-;8331:60;;8286:115;7940:468;;;;;:::o;8414:117::-;8523:1;8520;8513:12;8537:180;8585:77;8582:1;8575:88;8682:4;8679:1;8672:15;8706:4;8703:1;8696:15;8723:281;8806:27;8828:4;8806:27;:::i;:::-;8798:6;8794:40;8936:6;8924:10;8921:22;8900:18;8888:10;8885:34;8882:62;8879:88;;;8947:18;;:::i;:::-;8879:88;8987:10;8983:2;8976:22;8766:238;8723:281;;:::o;9010:129::-;9044:6;9071:20;;:::i;:::-;9061:30;;9100:33;9128:4;9120:6;9100:33;:::i;:::-;9010:129;;;:::o;9145:307::-;9206:4;9296:18;9288:6;9285:30;9282:56;;;9318:18;;:::i;:::-;9282:56;9356:29;9378:6;9356:29;:::i;:::-;9348:37;;9440:4;9434;9430:15;9422:23;;9145:307;;;:::o;9458:146::-;9555:6;9550:3;9545;9532:30;9596:1;9587:6;9582:3;9578:16;9571:27;9458:146;;;:::o;9610:423::-;9687:5;9712:65;9728:48;9769:6;9728:48;:::i;:::-;9712:65;:::i;:::-;9703:74;;9800:6;9793:5;9786:21;9838:4;9831:5;9827:16;9876:3;9867:6;9862:3;9858:16;9855:25;9852:112;;;9883:79;;:::i;:::-;9852:112;9973:54;10020:6;10015:3;10010;9973:54;:::i;:::-;9693:340;9610:423;;;;;:::o;10052:338::-;10107:5;10156:3;10149:4;10141:6;10137:17;10133:27;10123:122;;10164:79;;:::i;:::-;10123:122;10281:6;10268:20;10306:78;10380:3;10372:6;10365:4;10357:6;10353:17;10306:78;:::i;:::-;10297:87;;10113:277;10052:338;;;;:::o;10396:943::-;10491:6;10499;10507;10515;10564:3;10552:9;10543:7;10539:23;10535:33;10532:120;;;10571:79;;:::i;:::-;10532:120;10691:1;10716:53;10761:7;10752:6;10741:9;10737:22;10716:53;:::i;:::-;10706:63;;10662:117;10818:2;10844:53;10889:7;10880:6;10869:9;10865:22;10844:53;:::i;:::-;10834:63;;10789:118;10946:2;10972:53;11017:7;11008:6;10997:9;10993:22;10972:53;:::i;:::-;10962:63;;10917:118;11102:2;11091:9;11087:18;11074:32;11133:18;11125:6;11122:30;11119:117;;;11155:79;;:::i;:::-;11119:117;11260:62;11314:7;11305:6;11294:9;11290:22;11260:62;:::i;:::-;11250:72;;11045:287;10396:943;;;;;;;:::o;11345:474::-;11413:6;11421;11470:2;11458:9;11449:7;11445:23;11441:32;11438:119;;;11476:79;;:::i;:::-;11438:119;11596:1;11621:53;11666:7;11657:6;11646:9;11642:22;11621:53;:::i;:::-;11611:63;;11567:117;11723:2;11749:53;11794:7;11785:6;11774:9;11770:22;11749:53;:::i;:::-;11739:63;;11694:118;11345:474;;;;;:::o;11825:180::-;11873:77;11870:1;11863:88;11970:4;11967:1;11960:15;11994:4;11991:1;11984:15;12011:320;12055:6;12092:1;12086:4;12082:12;12072:22;;12139:1;12133:4;12129:12;12160:18;12150:81;;12216:4;12208:6;12204:17;12194:27;;12150:81;12278:2;12270:6;12267:14;12247:18;12244:38;12241:84;;12297:18;;:::i;:::-;12241:84;12062:269;12011:320;;;:::o;12337:147::-;12438:11;12475:3;12460:18;;12337:147;;;;:::o;12490:114::-;;:::o;12610:398::-;12769:3;12790:83;12871:1;12866:3;12790:83;:::i;:::-;12783:90;;12882:93;12971:3;12882:93;:::i;:::-;13000:1;12995:3;12991:11;12984:18;;12610:398;;;:::o;13014:379::-;13198:3;13220:147;13363:3;13220:147;:::i;:::-;13213:154;;13384:3;13377:10;;13014:379;;;:::o;13399:166::-;13539:18;13535:1;13527:6;13523:14;13516:42;13399:166;:::o;13571:366::-;13713:3;13734:67;13798:2;13793:3;13734:67;:::i;:::-;13727:74;;13810:93;13899:3;13810:93;:::i;:::-;13928:2;13923:3;13919:12;13912:19;;13571:366;;;:::o;13943:419::-;14109:4;14147:2;14136:9;14132:18;14124:26;;14196:9;14190:4;14186:20;14182:1;14171:9;14167:17;14160:47;14224:131;14350:4;14224:131;:::i;:::-;14216:139;;13943:419;;;:::o;14368:97::-;14427:6;14455:3;14445:13;;14368:97;;;;:::o;14471:141::-;14520:4;14543:3;14535:11;;14566:3;14563:1;14556:14;14600:4;14597:1;14587:18;14579:26;;14471:141;;;:::o;14618:93::-;14655:6;14702:2;14697;14690:5;14686:14;14682:23;14672:33;;14618:93;;;:::o;14717:107::-;14761:8;14811:5;14805:4;14801:16;14780:37;;14717:107;;;;:::o;14830:393::-;14899:6;14949:1;14937:10;14933:18;14972:97;15002:66;14991:9;14972:97;:::i;:::-;15090:39;15120:8;15109:9;15090:39;:::i;:::-;15078:51;;15162:4;15158:9;15151:5;15147:21;15138:30;;15211:4;15201:8;15197:19;15190:5;15187:30;15177:40;;14906:317;;14830:393;;;;;:::o;15229:60::-;15257:3;15278:5;15271:12;;15229:60;;;:::o;15295:142::-;15345:9;15378:53;15396:34;15405:24;15423:5;15405:24;:::i;:::-;15396:34;:::i;:::-;15378:53;:::i;:::-;15365:66;;15295:142;;;:::o;15443:75::-;15486:3;15507:5;15500:12;;15443:75;;;:::o;15524:269::-;15634:39;15665:7;15634:39;:::i;:::-;15695:91;15744:41;15768:16;15744:41;:::i;:::-;15736:6;15729:4;15723:11;15695:91;:::i;:::-;15689:4;15682:105;15600:193;15524:269;;;:::o;15799:73::-;15844:3;15799:73;:::o;15878:189::-;15955:32;;:::i;:::-;15996:65;16054:6;16046;16040:4;15996:65;:::i;:::-;15931:136;15878:189;;:::o;16073:186::-;16133:120;16150:3;16143:5;16140:14;16133:120;;;16204:39;16241:1;16234:5;16204:39;:::i;:::-;16177:1;16170:5;16166:13;16157:22;;16133:120;;;16073:186;;:::o;16265:543::-;16366:2;16361:3;16358:11;16355:446;;;16400:38;16432:5;16400:38;:::i;:::-;16484:29;16502:10;16484:29;:::i;:::-;16474:8;16470:44;16667:2;16655:10;16652:18;16649:49;;;16688:8;16673:23;;16649:49;16711:80;16767:22;16785:3;16767:22;:::i;:::-;16757:8;16753:37;16740:11;16711:80;:::i;:::-;16370:431;;16355:446;16265:543;;;:::o;16814:117::-;16868:8;16918:5;16912:4;16908:16;16887:37;;16814:117;;;;:::o;16937:169::-;16981:6;17014:51;17062:1;17058:6;17050:5;17047:1;17043:13;17014:51;:::i;:::-;17010:56;17095:4;17089;17085:15;17075:25;;16988:118;16937:169;;;;:::o;17111:295::-;17187:4;17333:29;17358:3;17352:4;17333:29;:::i;:::-;17325:37;;17395:3;17392:1;17388:11;17382:4;17379:21;17371:29;;17111:295;;;;:::o;17411:1403::-;17535:44;17575:3;17570;17535:44;:::i;:::-;17644:18;17636:6;17633:30;17630:56;;;17666:18;;:::i;:::-;17630:56;17710:38;17742:4;17736:11;17710:38;:::i;:::-;17795:67;17855:6;17847;17841:4;17795:67;:::i;:::-;17889:1;17918:2;17910:6;17907:14;17935:1;17930:632;;;;18606:1;18623:6;18620:84;;;18679:9;18674:3;18670:19;18657:33;18648:42;;18620:84;18730:67;18790:6;18783:5;18730:67;:::i;:::-;18724:4;18717:81;18579:229;17900:908;;17930:632;17982:4;17978:9;17970:6;17966:22;18016:37;18048:4;18016:37;:::i;:::-;18075:1;18089:215;18103:7;18100:1;18097:14;18089:215;;;18189:9;18184:3;18180:19;18167:33;18159:6;18152:49;18240:1;18232:6;18228:14;18218:24;;18287:2;18276:9;18272:18;18259:31;;18126:4;18123:1;18119:12;18114:17;;18089:215;;;18332:6;18323:7;18320:19;18317:186;;;18397:9;18392:3;18388:19;18375:33;18440:48;18482:4;18474:6;18470:17;18459:9;18440:48;:::i;:::-;18432:6;18425:64;18340:163;18317:186;18549:1;18545;18537:6;18533:14;18529:22;18523:4;18516:36;17937:625;;;17900:908;;17510:1304;;;17411:1403;;;:::o;18820:180::-;18868:77;18865:1;18858:88;18965:4;18962:1;18955:15;18989:4;18986:1;18979:15;19006:191;19046:3;19065:20;19083:1;19065:20;:::i;:::-;19060:25;;19099:20;19117:1;19099:20;:::i;:::-;19094:25;;19142:1;19139;19135:9;19128:16;;19163:3;19160:1;19157:10;19154:36;;;19170:18;;:::i;:::-;19154:36;19006:191;;;;:::o;19203:168::-;19343:20;19339:1;19331:6;19327:14;19320:44;19203:168;:::o;19377:366::-;19519:3;19540:67;19604:2;19599:3;19540:67;:::i;:::-;19533:74;;19616:93;19705:3;19616:93;:::i;:::-;19734:2;19729:3;19725:12;19718:19;;19377:366;;;:::o;19749:419::-;19915:4;19953:2;19942:9;19938:18;19930:26;;20002:9;19996:4;19992:20;19988:1;19977:9;19973:17;19966:47;20030:131;20156:4;20030:131;:::i;:::-;20022:139;;19749:419;;;:::o;20174:234::-;20314:34;20310:1;20302:6;20298:14;20291:58;20383:17;20378:2;20370:6;20366:15;20359:42;20174:234;:::o;20414:366::-;20556:3;20577:67;20641:2;20636:3;20577:67;:::i;:::-;20570:74;;20653:93;20742:3;20653:93;:::i;:::-;20771:2;20766:3;20762:12;20755:19;;20414:366;;;:::o;20786:419::-;20952:4;20990:2;20979:9;20975:18;20967:26;;21039:9;21033:4;21029:20;21025:1;21014:9;21010:17;21003:47;21067:131;21193:4;21067:131;:::i;:::-;21059:139;;20786:419;;;:::o;21211:148::-;21313:11;21350:3;21335:18;;21211:148;;;;:::o;21365:390::-;21471:3;21499:39;21532:5;21499:39;:::i;:::-;21554:89;21636:6;21631:3;21554:89;:::i;:::-;21547:96;;21652:65;21710:6;21705:3;21698:4;21691:5;21687:16;21652:65;:::i;:::-;21742:6;21737:3;21733:16;21726:23;;21475:280;21365:390;;;;:::o;21761:159::-;21901:11;21897:1;21889:6;21885:14;21878:35;21761:159;:::o;21926:400::-;22086:3;22107:84;22189:1;22184:3;22107:84;:::i;:::-;22100:91;;22200:93;22289:3;22200:93;:::i;:::-;22318:1;22313:3;22309:11;22302:18;;21926:400;;;:::o;22332:541::-;22565:3;22587:95;22678:3;22669:6;22587:95;:::i;:::-;22580:102;;22699:148;22843:3;22699:148;:::i;:::-;22692:155;;22864:3;22857:10;;22332:541;;;;:::o;22879:225::-;23019:34;23015:1;23007:6;23003:14;22996:58;23088:8;23083:2;23075:6;23071:15;23064:33;22879:225;:::o;23110:366::-;23252:3;23273:67;23337:2;23332:3;23273:67;:::i;:::-;23266:74;;23349:93;23438:3;23349:93;:::i;:::-;23467:2;23462:3;23458:12;23451:19;;23110:366;;;:::o;23482:419::-;23648:4;23686:2;23675:9;23671:18;23663:26;;23735:9;23729:4;23725:20;23721:1;23710:9;23706:17;23699:47;23763:131;23889:4;23763:131;:::i;:::-;23755:139;;23482:419;;;:::o;23907:182::-;24047:34;24043:1;24035:6;24031:14;24024:58;23907:182;:::o;24095:366::-;24237:3;24258:67;24322:2;24317:3;24258:67;:::i;:::-;24251:74;;24334:93;24423:3;24334:93;:::i;:::-;24452:2;24447:3;24443:12;24436:19;;24095:366;;;:::o;24467:419::-;24633:4;24671:2;24660:9;24656:18;24648:26;;24720:9;24714:4;24710:20;24706:1;24695:9;24691:17;24684:47;24748:131;24874:4;24748:131;:::i;:::-;24740:139;;24467:419;;;:::o;24892:98::-;24943:6;24977:5;24971:12;24961:22;;24892:98;;;:::o;24996:168::-;25079:11;25113:6;25108:3;25101:19;25153:4;25148:3;25144:14;25129:29;;24996:168;;;;:::o;25170:373::-;25256:3;25284:38;25316:5;25284:38;:::i;:::-;25338:70;25401:6;25396:3;25338:70;:::i;:::-;25331:77;;25417:65;25475:6;25470:3;25463:4;25456:5;25452:16;25417:65;:::i;:::-;25507:29;25529:6;25507:29;:::i;:::-;25502:3;25498:39;25491:46;;25260:283;25170:373;;;;:::o;25549:640::-;25744:4;25782:3;25771:9;25767:19;25759:27;;25796:71;25864:1;25853:9;25849:17;25840:6;25796:71;:::i;:::-;25877:72;25945:2;25934:9;25930:18;25921:6;25877:72;:::i;:::-;25959;26027:2;26016:9;26012:18;26003:6;25959:72;:::i;:::-;26078:9;26072:4;26068:20;26063:2;26052:9;26048:18;26041:48;26106:76;26177:4;26168:6;26106:76;:::i;:::-;26098:84;;25549:640;;;;;;;:::o;26195:141::-;26251:5;26282:6;26276:13;26267:22;;26298:32;26324:5;26298:32;:::i;:::-;26195:141;;;;:::o;26342:349::-;26411:6;26460:2;26448:9;26439:7;26435:23;26431:32;26428:119;;;26466:79;;:::i;:::-;26428:119;26586:1;26611:63;26666:7;26657:6;26646:9;26642:22;26611:63;:::i;:::-;26601:73;;26557:127;26342:349;;;;:::o

Swarm Source

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