ETH Price: $3,307.50 (-0.54%)
Gas: 12 Gwei

Token

Visibility Serums (VS)
 

Overview

Max Total Supply

133 VS

Holders

17

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 VS
0x7a9c64ff738770b8ab83e7d468c8791dc5d97375
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:
Token

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Token.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "erc721a/contracts/extensions/ERC721ABurnable.sol";
import "./StartTokenIdHelper.sol";


contract Token is StartTokenIdHelper, ERC721ABurnable, Ownable, ReentrancyGuard {

    string private _baseTokenURI;
    uint256 public limitSupply;
    address public contractAddress;
    mapping(uint256 => bool) usedTokens;

    enum SaleState { Locked, Presale, Sale }

    SaleState public saleState = SaleState.Locked;
    uint256 public price;
    uint16 public transactionLimit;


    event SaleStart(uint256 indexed _saleStartTime, SaleState indexed _saleState, uint256 _price, uint16 _transactionLimit);
    event SalePaused(uint256 indexed _salePauseTime, SaleState indexed _saleState);
    event LimitSupplyDefined(uint256 indexed _limitDefinedTime, uint256 _limitSupply);
    event ContractDefined(uint256 indexed _contractDefinedTime, address indexed _contractAddress);


    constructor(
        string memory name_, string memory symbol_,string memory baseURI_, uint256 startTokenId_
    ) StartTokenIdHelper(startTokenId_) ERC721A(name_, symbol_) {
        _baseTokenURI = baseURI_;
    }

    function _startTokenId() internal view override returns (uint256) {
        return startTokenId;
    }

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

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

    function setLimitSupply(uint256 limit_) external onlyOwner  {
        require(limitSupply == 0, "Token: Limit supply has already defined.");
        limitSupply = limit_;
        emit LimitSupplyDefined(block.timestamp, limitSupply);
    }

    function checkContract(address contract_) public view returns (bool) {
        return ERC165Checker.supportsInterface(contract_, type(IERC721).interfaceId);
    }

    function setContract(address contract_) external onlyOwner {
        require(contractAddress == address(0), "Token: Contract address has already defined.");
        require(checkContract(contract_), "Token: Contract address dose not support IERC721.");

        contractAddress = contract_;
        emit ContractDefined(block.timestamp, contractAddress);
    }

    function configureSaleState(SaleState saleState_, uint256 price_, uint16 transactionLimit_) external onlyOwner {
        require(limitSupply != 0, "Token: Limit supply should be defined.");
        require(saleState_ != SaleState.Locked, "Token: Cannot lock sale.");

        if (saleState_ == SaleState.Presale) {
            require(contractAddress != address(0), "Token: Contract address should be defined.");
        }

        if (saleState != SaleState.Locked) {
            emit SalePaused(block.timestamp, saleState);
        }

        saleState = saleState_;
        price = price_;
        transactionLimit = transactionLimit_;

        emit SaleStart(block.timestamp, saleState, price, transactionLimit);
    }

    function pauseAnySale() external onlyOwner {
        SaleState _saleState = saleState;
        saleState = SaleState.Locked;
        emit SalePaused(block.timestamp, _saleState);
    }

    function _preValidateMint(uint256 tokensAmount) internal {
        require(tokensAmount <= transactionLimit, "Token: Limited amount of tokens per transaction.");
        require(_totalMinted() + tokensAmount <= limitSupply, "Token: Limited amount of tokens.");
        require(price * tokensAmount <= msg.value, "Token: Insufficient funds.");
    }

    function mint(uint16 tokensAmount) external payable nonReentrant {
        require(saleState == SaleState.Sale, "Token: Sale is not active.");
        _preValidateMint(tokensAmount);
        _safeMint(msg.sender, tokensAmount);
    }

    function presaleMint(uint256[] memory tokens_) external payable nonReentrant {
        require(saleState == SaleState.Presale, "Token: Presale is paused.");

        uint256 tokensAmount = tokens_.length;
        _preValidateMint(tokensAmount);

        for (uint256 i = 0; i < tokensAmount; i += 1) {
            require(IERC721(contractAddress).ownerOf(tokens_[i]) == msg.sender, "Token: Sender is not owner of token.");
            require(!usedTokens[tokens_[i]], "Token: Presale, token already used.");
            usedTokens[tokens_[i]] = true;
        }

        _safeMint(msg.sender, tokensAmount);
    }


    function withdraw(address payable wallet, uint256 amount) external onlyOwner {
        require(amount <= address(this).balance);
        wallet.transfer(amount);
    }

    function getOwnershipAt(uint256 index) external view returns (TokenOwnership memory) {
        return _ownershipAt(index);
    }

    function totalMinted() external view returns (uint256) {
        return _totalMinted();
    }

    function totalBurned() external view returns (uint256) {
        return _totalBurned();
    }

    function numberBurned(address owner) external view returns (uint256) {
        return _numberBurned(owner);
    }
}

File 2 of 12 : StartTokenIdHelper.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creators: Chiru Labs

pragma solidity ^0.8.4;

/**
 * This Helper is used to return a dynamic value in the overridden _startTokenId() function.
 * Extending this Helper before the ERC721A contract give us access to the herein set `startTokenId`
 * to be returned by the overridden `_startTokenId()` function of ERC721A in the ERC721AStartTokenId mocks.
 */
contract StartTokenIdHelper {
    uint256 public startTokenId;

    constructor(uint256 startTokenId_) {
        startTokenId = startTokenId_;
    }
}

File 3 of 12 : ERC721ABurnable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721ABurnable.sol';
import '../ERC721A.sol';

/**
 * @title ERC721ABurnable.
 *
 * @dev ERC721A token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual override {
        _burn(tokenId, true);
    }
}

File 4 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 12 : ERC165Checker.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.2) (utils/introspection/ERC165Checker.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Library used to query support of an interface declared via {IERC165}.
 *
 * Note that these functions return the actual result of the query: they do not
 * `revert` if an interface is not supported. It is up to the caller to decide
 * what to do in these cases.
 */
library ERC165Checker {
    // As per the EIP-165 spec, no interface should ever match 0xffffffff
    bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff;

    /**
     * @dev Returns true if `account` supports the {IERC165} interface,
     */
    function supportsERC165(address account) internal view returns (bool) {
        // Any contract that implements ERC165 must explicitly indicate support of
        // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid
        return
            _supportsERC165Interface(account, type(IERC165).interfaceId) &&
            !_supportsERC165Interface(account, _INTERFACE_ID_INVALID);
    }

    /**
     * @dev Returns true if `account` supports the interface defined by
     * `interfaceId`. Support for {IERC165} itself is queried automatically.
     *
     * See {IERC165-supportsInterface}.
     */
    function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) {
        // query support of both ERC165 as per the spec and support of _interfaceId
        return supportsERC165(account) && _supportsERC165Interface(account, interfaceId);
    }

    /**
     * @dev Returns a boolean array where each value corresponds to the
     * interfaces passed in and whether they're supported or not. This allows
     * you to batch check interfaces for a contract where your expectation
     * is that some interfaces may not be supported.
     *
     * See {IERC165-supportsInterface}.
     *
     * _Available since v3.4._
     */
    function getSupportedInterfaces(address account, bytes4[] memory interfaceIds)
        internal
        view
        returns (bool[] memory)
    {
        // an array of booleans corresponding to interfaceIds and whether they're supported or not
        bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length);

        // query support of ERC165 itself
        if (supportsERC165(account)) {
            // query support of each interface in interfaceIds
            for (uint256 i = 0; i < interfaceIds.length; i++) {
                interfaceIdsSupported[i] = _supportsERC165Interface(account, interfaceIds[i]);
            }
        }

        return interfaceIdsSupported;
    }

    /**
     * @dev Returns true if `account` supports all the interfaces defined in
     * `interfaceIds`. Support for {IERC165} itself is queried automatically.
     *
     * Batch-querying can lead to gas savings by skipping repeated checks for
     * {IERC165} support.
     *
     * See {IERC165-supportsInterface}.
     */
    function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) {
        // query support of ERC165 itself
        if (!supportsERC165(account)) {
            return false;
        }

        // query support of each interface in _interfaceIds
        for (uint256 i = 0; i < interfaceIds.length; i++) {
            if (!_supportsERC165Interface(account, interfaceIds[i])) {
                return false;
            }
        }

        // all interfaces supported
        return true;
    }

    /**
     * @notice Query if a contract implements an interface, does not check ERC165 support
     * @param account The address of the contract to query for support of an interface
     * @param interfaceId The interface identifier, as specified in ERC-165
     * @return true if the contract at account indicates support of the interface with
     * identifier interfaceId, false otherwise
     * @dev Assumes that account contains a contract that supports ERC165, otherwise
     * the behavior of this method is undefined. This precondition can be checked
     * with {supportsERC165}.
     * Interface identification is specified in ERC-165.
     */
    function _supportsERC165Interface(address account, bytes4 interfaceId) private view returns (bool) {
        // prepare call
        bytes memory encodedParams = abi.encodeWithSelector(IERC165.supportsInterface.selector, interfaceId);

        // perform static call
        bool success;
        uint256 returnSize;
        uint256 returnValue;
        assembly {
            success := staticcall(30000, account, add(encodedParams, 0x20), mload(encodedParams), 0x00, 0x20)
            returnSize := returndatasize()
            returnValue := mload(0x00)
        }

        return success && returnSize >= 0x20 && returnValue > 0;
    }
}

File 6 of 12 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 7 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

File 8 of 12 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

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

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

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

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

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

File 9 of 12 : IERC721ABurnable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of ERC721ABurnable.
 */
interface IERC721ABurnable is IERC721A {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) external;
}

File 10 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

File 12 of 12 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"uint256","name":"startTokenId_","type":"uint256"}],"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":"uint256","name":"_contractDefinedTime","type":"uint256"},{"indexed":true,"internalType":"address","name":"_contractAddress","type":"address"}],"name":"ContractDefined","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_limitDefinedTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_limitSupply","type":"uint256"}],"name":"LimitSupplyDefined","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":"uint256","name":"_salePauseTime","type":"uint256"},{"indexed":true,"internalType":"enum Token.SaleState","name":"_saleState","type":"uint8"}],"name":"SalePaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_saleStartTime","type":"uint256"},{"indexed":true,"internalType":"enum Token.SaleState","name":"_saleState","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"},{"indexed":false,"internalType":"uint16","name":"_transactionLimit","type":"uint16"}],"name":"SaleStart","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contract_","type":"address"}],"name":"checkContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum Token.SaleState","name":"saleState_","type":"uint8"},{"internalType":"uint256","name":"price_","type":"uint256"},{"internalType":"uint16","name":"transactionLimit_","type":"uint16"}],"name":"configureSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint256","name":"index","type":"uint256"}],"name":"getOwnershipAt","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"tokensAmount","type":"uint16"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pauseAnySale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokens_","type":"uint256[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"saleState","outputs":[{"internalType":"enum Token.SaleState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contract_","type":"address"}],"name":"setContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit_","type":"uint256"}],"name":"setLimitSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transactionLimit","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":[{"internalType":"address payable","name":"wallet","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600f60006101000a81548160ff021916908360028111156200002d576200002c620004fb565b5b02179055503480156200003f57600080fd5b506040516200494638038062004946833981810160405281019062000065919062000321565b8383828060008190555050816003908051906020019062000088929190620001dc565b508060049080519060200190620000a1929190620001dc565b50620000b26200010560201b60201c565b6001819055505050620000da620000ce6200010e60201b60201c565b6200011660201b60201c565b6001600a8190555081600b9080519060200190620000fa929190620001dc565b5050505050620005c7565b60008054905090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ea906200048f565b90600052602060002090601f0160209004810192826200020e57600085556200025a565b82601f106200022957805160ff19168380011785556200025a565b828001600101855582156200025a579182015b82811115620002595782518255916020019190600101906200023c565b5b5090506200026991906200026d565b5090565b5b80821115620002885760008160009055506001016200026e565b5090565b6000620002a36200029d8462000419565b620003f0565b905082815260208101848484011115620002c257620002c16200058d565b5b620002cf84828562000459565b509392505050565b600082601f830112620002ef57620002ee62000588565b5b8151620003018482602086016200028c565b91505092915050565b6000815190506200031b81620005ad565b92915050565b600080600080608085870312156200033e576200033d62000597565b5b600085015167ffffffffffffffff8111156200035f576200035e62000592565b5b6200036d87828801620002d7565b945050602085015167ffffffffffffffff81111562000391576200039062000592565b5b6200039f87828801620002d7565b935050604085015167ffffffffffffffff811115620003c357620003c262000592565b5b620003d187828801620002d7565b9250506060620003e4878288016200030a565b91505092959194509250565b6000620003fc6200040f565b90506200040a8282620004c5565b919050565b6000604051905090565b600067ffffffffffffffff82111562000437576200043662000559565b5b62000442826200059c565b9050602081019050919050565b6000819050919050565b60005b83811015620004795780820151818401526020810190506200045c565b8381111562000489576000848401525b50505050565b60006002820490506001821680620004a857607f821691505b60208210811415620004bf57620004be6200052a565b5b50919050565b620004d0826200059c565b810181811067ffffffffffffffff82111715620004f257620004f162000559565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620005b8816200044f565b8114620005c457600080fd5b50565b61436f80620005d76000396000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063c87b56dd116100ab578063f19605d61161006f578063f19605d614610781578063f2523633146107ac578063f2fde38b146107e9578063f3fef3a314610812578063f6b4dfb41461083b5761021a565b8063c87b56dd14610674578063d7b12454146106b1578063d89135cd146106ee578063e6798baa14610719578063e985e9c5146107445761021a565b806395d89b41116100f257806395d89b41146105ae578063a035b1fe146105d9578063a22cb46514610604578063a2309ff81461062d578063b88d4fde146106585761021a565b8063715018a61461052c578063728905551461054357806375f890ab1461055a5780638da5cb5b146105835761021a565b80632ddcb21f116101a657806343f3c8861161017557806343f3c8861461044257806355f804b31461045e578063603f4d52146104875780636352211e146104b257806370a08231146104ef5761021a565b80632ddcb21f146103a95780633713c1a1146103d457806342842e0e146103fd57806342966c68146104195761021a565b806318160ddd116101ed57806318160ddd146102e057806323b872dd1461030b57806323cf0a22146103275780632478d639146103435780632b21fcf5146103805761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906131e3565b610866565b604051610253919061377c565b60405180910390f35b34801561026857600080fd5b506102716108f8565b60405161027e91906137cd565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613306565b61098a565b6040516102bb9190613715565b60405180910390f35b6102de60048036038101906102d9919061315a565b610a09565b005b3480156102ec57600080fd5b506102f5610b4d565b6040516103029190613a25565b60405180910390f35b61032560048036038101906103209190613044565b610b64565b005b610341600480360381019061033c91906132d9565b610e89565b005b34801561034f57600080fd5b5061036a60048036038101906103659190612f6a565b610f72565b6040516103779190613a25565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a2919061323d565b610f84565b005b3480156103b557600080fd5b506103be611246565b6040516103cb9190613a25565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613306565b61124c565b005b61041760048036038101906104129190613044565b6112dd565b005b34801561042557600080fd5b50610440600480360381019061043b9190613306565b6112fd565b005b61045c6004803603810190610457919061319a565b61130b565b005b34801561046a57600080fd5b5061048560048036038101906104809190613290565b611607565b005b34801561049357600080fd5b5061049c611629565b6040516104a991906137b2565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d49190613306565b61163c565b6040516104e69190613715565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190612f6a565b61164e565b6040516105239190613a25565b60405180910390f35b34801561053857600080fd5b50610541611707565b005b34801561054f57600080fd5b5061055861171b565b005b34801561056657600080fd5b50610581600480360381019061057c9190612f6a565b6117a5565b005b34801561058f57600080fd5b50610598611930565b6040516105a59190613715565b60405180910390f35b3480156105ba57600080fd5b506105c361195a565b6040516105d091906137cd565b60405180910390f35b3480156105e557600080fd5b506105ee6119ec565b6040516105fb9190613a25565b60405180910390f35b34801561061057600080fd5b5061062b6004803603810190610626919061311a565b6119f2565b005b34801561063957600080fd5b50610642611afd565b60405161064f9190613a25565b60405180910390f35b610672600480360381019061066d9190613097565b611b0c565b005b34801561068057600080fd5b5061069b60048036038101906106969190613306565b611b7f565b6040516106a891906137cd565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d39190612f6a565b611c1e565b6040516106e5919061377c565b60405180910390f35b3480156106fa57600080fd5b50610703611c51565b6040516107109190613a25565b60405180910390f35b34801561072557600080fd5b5061072e611c60565b60405161073b9190613a25565b60405180910390f35b34801561075057600080fd5b5061076b60048036038101906107669190613004565b611c66565b604051610778919061377c565b60405180910390f35b34801561078d57600080fd5b50610796611cfa565b6040516107a39190613a0a565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613306565b611d0e565b6040516107e091906139ef565b60405180910390f35b3480156107f557600080fd5b50610810600480360381019061080b9190612f6a565b611d26565b005b34801561081e57600080fd5b5061083960048036038101906108349190612fc4565b611daa565b005b34801561084757600080fd5b50610850611e0a565b60405161085d9190613715565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461090790613d2d565b80601f016020809104026020016040519081016040528092919081815260200182805461093390613d2d565b80156109805780601f1061095557610100808354040283529160200191610980565b820191906000526020600020905b81548152906001019060200180831161096357829003601f168201915b5050505050905090565b600061099582611e30565b6109cb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a148261163c565b90508073ffffffffffffffffffffffffffffffffffffffff16610a35611e8f565b73ffffffffffffffffffffffffffffffffffffffff1614610a9857610a6181610a5c611e8f565b611c66565b610a97576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b57611e97565b6002546001540303905090565b6000610b6f82611ea0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bd6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610be284611f6e565b91509150610bf88187610bf3611e8f565b611f95565b610c4457610c0d86610c08611e8f565b611c66565b610c43576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610cab576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cb88686866001611fd9565b8015610cc357600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d9185610d6d888887611fdf565b7c020000000000000000000000000000000000000000000000000000000017612007565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e19576000600185019050600060056000838152602001908152602001600020541415610e17576001548114610e16578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e818686866001612032565b505050505050565b6002600a541415610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec6906139af565b60405180910390fd5b6002600a81905550600280811115610eea57610ee9613dbf565b5b600f60009054906101000a900460ff166002811115610f0c57610f0b613dbf565b5b14610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f43906138ef565b60405180910390fd5b610f598161ffff16612038565b610f67338261ffff16612139565b6001600a8190555050565b6000610f7d82612157565b9050919050565b610f8c6121ae565b6000600c541415610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc99061380f565b60405180910390fd5b60006002811115610fe657610fe5613dbf565b5b836002811115610ff957610ff8613dbf565b5b141561103a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611031906138af565b60405180910390fd5b6001600281111561104e5761104d613dbf565b5b83600281111561106157611060613dbf565b5b14156110fa57600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f09061386f565b60405180910390fd5b5b6000600281111561110e5761110d613dbf565b5b600f60009054906101000a900460ff1660028111156111305761112f613dbf565b5b1461118557600f60009054906101000a900460ff16600281111561115757611156613dbf565b5b427fa9f0c629ec390f076c64c47aa5cd60c99e3e31854d2c840e93d8b37072c995d860405160405180910390a35b82600f60006101000a81548160ff021916908360028111156111aa576111a9613dbf565b5b02179055508160108190555080601160006101000a81548161ffff021916908361ffff160217905550600f60009054906101000a900460ff1660028111156111f5576111f4613dbf565b5b427f871c6d5d77be00e9fa46d49f0fa1ff1b3382f2b63f2344f3565ddf9acfe101dc601054601160009054906101000a900461ffff16604051611239929190613a40565b60405180910390a3505050565b600c5481565b6112546121ae565b6000600c5414611299576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112909061382f565b60405180910390fd5b80600c81905550427fadefae3c5ad66a9b34bfccb0f287c4a2b0a25c56a8d06393765a8ee1e126e27a600c546040516112d29190613a25565b60405180910390a250565b6112f883838360405180602001604052806000815250611b0c565b505050565b61130881600161222c565b50565b6002600a541415611351576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611348906139af565b60405180910390fd5b6002600a819055506001600281111561136d5761136c613dbf565b5b600f60009054906101000a900460ff16600281111561138f5761138e613dbf565b5b146113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c69061390f565b60405180910390fd5b6000815190506113de81612038565b60005b818110156115f0573373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e85848151811061145157611450613e1d565b5b60200260200101516040518263ffffffff1660e01b81526004016114759190613a25565b60206040518083038186803b15801561148d57600080fd5b505afa1580156114a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c59190612f97565b73ffffffffffffffffffffffffffffffffffffffff161461151b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611512906139cf565b60405180910390fd5b600e600084838151811061153257611531613e1d565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff1615611596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158d9061398f565b60405180910390fd5b6001600e60008584815181106115af576115ae613e1d565b5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506001816115e99190613b5f565b90506113e1565b506115fb3382612139565b506001600a8190555050565b61160f6121ae565b80600b9080519060200190611625929190612c3d565b5050565b600f60009054906101000a900460ff1681565b600061164782611ea0565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116b6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61170f6121ae565b6117196000612480565b565b6117236121ae565b6000600f60009054906101000a900460ff1690506000600f60006101000a81548160ff0219169083600281111561175d5761175c613dbf565b5b021790555080600281111561177557611774613dbf565b5b427fa9f0c629ec390f076c64c47aa5cd60c99e3e31854d2c840e93d8b37072c995d860405160405180910390a350565b6117ad6121ae565b600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461183e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611835906138cf565b60405180910390fd5b61184781611c1e565b611886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187d9061388f565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16427f7d197ea6b567f552ff6f7ce790c29df487be8cd1897daadc0cb5964816d515df60405160405180910390a350565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461196990613d2d565b80601f016020809104026020016040519081016040528092919081815260200182805461199590613d2d565b80156119e25780601f106119b7576101008083540402835291602001916119e2565b820191906000526020600020905b8154815290600101906020018083116119c557829003601f168201915b5050505050905090565b60105481565b80600860006119ff611e8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611aac611e8f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611af1919061377c565b60405180910390a35050565b6000611b07612546565b905090565b611b17848484610b64565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b7957611b4284848484612559565b611b78576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611b8a82611e30565b611bc0576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611bca6126b9565b9050600081511415611beb5760405180602001604052806000815250611c16565b80611bf58461274b565b604051602001611c069291906136f1565b6040516020818303038152906040525b915050919050565b6000611c4a827f80ac58cd000000000000000000000000000000000000000000000000000000006127a4565b9050919050565b6000611c5b6127c9565b905090565b60005481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601160009054906101000a900461ffff1681565b611d16612cc3565b611d1f826127d3565b9050919050565b611d2e6121ae565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d959061384f565b60405180910390fd5b611da781612480565b50565b611db26121ae565b47811115611dbf57600080fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611e05573d6000803e3d6000fd5b505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600081611e3b611e97565b11158015611e4a575060015482105b8015611e88575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b60008054905090565b60008082905080611eaf611e97565b11611f3757600154811015611f365760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611f34575b6000811415611f2a576005600083600190039350838152602001908152602001600020549050611eff565b8092505050611f69565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ff68686846127fe565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b601160009054906101000a900461ffff1661ffff1681111561208f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612086906137ef565b60405180910390fd5b600c548161209b612546565b6120a59190613b5f565b11156120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dd9061396f565b60405180910390fd5b34816010546120f59190613bb5565b1115612136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212d9061394f565b60405180910390fd5b50565b612153828260405180602001604052806000815250612807565b5050565b600067ffffffffffffffff6080600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6121b66128a5565b73ffffffffffffffffffffffffffffffffffffffff166121d4611930565b73ffffffffffffffffffffffffffffffffffffffff161461222a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122219061392f565b60405180910390fd5b565b600061223783611ea0565b9050600081905060008061224a86611f6e565b9150915084156122b3576122668184612261611e8f565b611f95565b6122b25761227b83612276611e8f565b611c66565b6122b1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6122c1836000886001611fd9565b80156122cc57600082555b600160806001901b03600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123748361233185600088611fdf565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612007565b600560008881526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000851614156123fc5760006001870190506000600560008381526020019081526020016000205414156123fa5760015481146123f9578460056000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612466836000886001612032565b600260008154809291906001019190505550505050505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612550611e97565b60015403905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261257f611e8f565b8786866040518563ffffffff1660e01b81526004016125a19493929190613730565b602060405180830381600087803b1580156125bb57600080fd5b505af19250505080156125ec57506040513d601f19601f820116820180604052508101906125e99190613210565b60015b612666573d806000811461261c576040519150601f19603f3d011682016040523d82523d6000602084013e612621565b606091505b5060008151141561265e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b80546126c890613d2d565b80601f01602080910402602001604051908101604052809291908181526020018280546126f490613d2d565b80156127415780601f1061271657610100808354040283529160200191612741565b820191906000526020600020905b81548152906001019060200180831161272457829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561278f57600184039350600a81066030018453600a810490508061278a5761278f565b612764565b50828103602084039350808452505050919050565b60006127af836128ad565b80156127c157506127c083836128fa565b5b905092915050565b6000600254905090565b6127db612cc3565b6127f760056000848152602001908152602001600020546129b9565b9050919050565b60009392505050565b6128118383612a6f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146128a05760006001549050600083820390505b6128526000868380600101945086612559565b612888576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061283f57816001541461289d57600080fd5b50505b505050565b600033905090565b60006128d9827f01ffc9a7000000000000000000000000000000000000000000000000000000006128fa565b80156128f357506128f18263ffffffff60e01b6128fa565b155b9050919050565b6000806301ffc9a760e01b836040516024016129169190613797565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505090506000806000602060008551602087018a617530fa92503d915060005190508280156129a1575060208210155b80156129ad5750600081115b94505050505092915050565b6129c1612cc3565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600060015490506000821415612ab1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612abe6000848385611fd9565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612b3583612b266000866000611fdf565b612b2f85612c2d565b17612007565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612bd657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612b9b565b506000821415612c12576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050612c286000848385612032565b505050565b60006001821460e11b9050919050565b828054612c4990613d2d565b90600052602060002090601f016020900481019282612c6b5760008555612cb2565b82601f10612c8457805160ff1916838001178555612cb2565b82800160010185558215612cb2579182015b82811115612cb1578251825591602001919060010190612c96565b5b509050612cbf9190612d12565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612d2b576000816000905550600101612d13565b5090565b6000612d42612d3d84613a8e565b613a69565b90508083825260208201905082856020860282011115612d6557612d64613e80565b5b60005b85811015612d955781612d7b8882612f55565b845260208401935060208301925050600181019050612d68565b5050509392505050565b6000612db2612dad84613aba565b613a69565b905082815260208101848484011115612dce57612dcd613e85565b5b612dd9848285613ceb565b509392505050565b6000612df4612def84613aeb565b613a69565b905082815260208101848484011115612e1057612e0f613e85565b5b612e1b848285613ceb565b509392505050565b600081359050612e328161429f565b92915050565b600081519050612e478161429f565b92915050565b600081359050612e5c816142b6565b92915050565b600082601f830112612e7757612e76613e7b565b5b8135612e87848260208601612d2f565b91505092915050565b600081359050612e9f816142cd565b92915050565b600081359050612eb4816142e4565b92915050565b600081519050612ec9816142e4565b92915050565b600082601f830112612ee457612ee3613e7b565b5b8135612ef4848260208601612d9f565b91505092915050565b600081359050612f0c816142fb565b92915050565b600082601f830112612f2757612f26613e7b565b5b8135612f37848260208601612de1565b91505092915050565b600081359050612f4f8161430b565b92915050565b600081359050612f6481614322565b92915050565b600060208284031215612f8057612f7f613e8f565b5b6000612f8e84828501612e23565b91505092915050565b600060208284031215612fad57612fac613e8f565b5b6000612fbb84828501612e38565b91505092915050565b60008060408385031215612fdb57612fda613e8f565b5b6000612fe985828601612e4d565b9250506020612ffa85828601612f55565b9150509250929050565b6000806040838503121561301b5761301a613e8f565b5b600061302985828601612e23565b925050602061303a85828601612e23565b9150509250929050565b60008060006060848603121561305d5761305c613e8f565b5b600061306b86828701612e23565b935050602061307c86828701612e23565b925050604061308d86828701612f55565b9150509250925092565b600080600080608085870312156130b1576130b0613e8f565b5b60006130bf87828801612e23565b94505060206130d087828801612e23565b93505060406130e187828801612f55565b925050606085013567ffffffffffffffff81111561310257613101613e8a565b5b61310e87828801612ecf565b91505092959194509250565b6000806040838503121561313157613130613e8f565b5b600061313f85828601612e23565b925050602061315085828601612e90565b9150509250929050565b6000806040838503121561317157613170613e8f565b5b600061317f85828601612e23565b925050602061319085828601612f55565b9150509250929050565b6000602082840312156131b0576131af613e8f565b5b600082013567ffffffffffffffff8111156131ce576131cd613e8a565b5b6131da84828501612e62565b91505092915050565b6000602082840312156131f9576131f8613e8f565b5b600061320784828501612ea5565b91505092915050565b60006020828403121561322657613225613e8f565b5b600061323484828501612eba565b91505092915050565b60008060006060848603121561325657613255613e8f565b5b600061326486828701612efd565b935050602061327586828701612f55565b925050604061328686828701612f40565b9150509250925092565b6000602082840312156132a6576132a5613e8f565b5b600082013567ffffffffffffffff8111156132c4576132c3613e8a565b5b6132d084828501612f12565b91505092915050565b6000602082840312156132ef576132ee613e8f565b5b60006132fd84828501612f40565b91505092915050565b60006020828403121561331c5761331b613e8f565b5b600061332a84828501612f55565b91505092915050565b61333c81613c0f565b82525050565b61334b81613c0f565b82525050565b61335a81613c33565b82525050565b61336981613c33565b82525050565b61337881613c3f565b82525050565b600061338982613b1c565b6133938185613b32565b93506133a3818560208601613cfa565b6133ac81613e94565b840191505092915050565b6133c081613cd9565b82525050565b60006133d182613b27565b6133db8185613b43565b93506133eb818560208601613cfa565b6133f481613e94565b840191505092915050565b600061340a82613b27565b6134148185613b54565b9350613424818560208601613cfa565b80840191505092915050565b600061343d603083613b43565b915061344882613ea5565b604082019050919050565b6000613460602683613b43565b915061346b82613ef4565b604082019050919050565b6000613483602883613b43565b915061348e82613f43565b604082019050919050565b60006134a6602683613b43565b91506134b182613f92565b604082019050919050565b60006134c9602a83613b43565b91506134d482613fe1565b604082019050919050565b60006134ec603183613b43565b91506134f782614030565b604082019050919050565b600061350f601883613b43565b915061351a8261407f565b602082019050919050565b6000613532602c83613b43565b915061353d826140a8565b604082019050919050565b6000613555601a83613b43565b9150613560826140f7565b602082019050919050565b6000613578601983613b43565b915061358382614120565b602082019050919050565b600061359b602083613b43565b91506135a682614149565b602082019050919050565b60006135be601a83613b43565b91506135c982614172565b602082019050919050565b60006135e1602083613b43565b91506135ec8261419b565b602082019050919050565b6000613604602383613b43565b915061360f826141c4565b604082019050919050565b6000613627601f83613b43565b915061363282614213565b602082019050919050565b600061364a602483613b43565b91506136558261423c565b604082019050919050565b6080820160008201516136766000850182613333565b50602082015161368960208501826136e2565b50604082015161369c6040850182613351565b5060608201516136af60608501826136c4565b50505050565b6136be81613c7e565b82525050565b6136cd81613cac565b82525050565b6136dc81613cbb565b82525050565b6136eb81613cc5565b82525050565b60006136fd82856133ff565b915061370982846133ff565b91508190509392505050565b600060208201905061372a6000830184613342565b92915050565b60006080820190506137456000830187613342565b6137526020830186613342565b61375f60408301856136d3565b8181036060830152613771818461337e565b905095945050505050565b60006020820190506137916000830184613360565b92915050565b60006020820190506137ac600083018461336f565b92915050565b60006020820190506137c760008301846133b7565b92915050565b600060208201905081810360008301526137e781846133c6565b905092915050565b6000602082019050818103600083015261380881613430565b9050919050565b6000602082019050818103600083015261382881613453565b9050919050565b6000602082019050818103600083015261384881613476565b9050919050565b6000602082019050818103600083015261386881613499565b9050919050565b60006020820190508181036000830152613888816134bc565b9050919050565b600060208201905081810360008301526138a8816134df565b9050919050565b600060208201905081810360008301526138c881613502565b9050919050565b600060208201905081810360008301526138e881613525565b9050919050565b6000602082019050818103600083015261390881613548565b9050919050565b600060208201905081810360008301526139288161356b565b9050919050565b600060208201905081810360008301526139488161358e565b9050919050565b60006020820190508181036000830152613968816135b1565b9050919050565b60006020820190508181036000830152613988816135d4565b9050919050565b600060208201905081810360008301526139a8816135f7565b9050919050565b600060208201905081810360008301526139c88161361a565b9050919050565b600060208201905081810360008301526139e88161363d565b9050919050565b6000608082019050613a046000830184613660565b92915050565b6000602082019050613a1f60008301846136b5565b92915050565b6000602082019050613a3a60008301846136d3565b92915050565b6000604082019050613a5560008301856136d3565b613a6260208301846136b5565b9392505050565b6000613a73613a84565b9050613a7f8282613d5f565b919050565b6000604051905090565b600067ffffffffffffffff821115613aa957613aa8613e4c565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613ad557613ad4613e4c565b5b613ade82613e94565b9050602081019050919050565b600067ffffffffffffffff821115613b0657613b05613e4c565b5b613b0f82613e94565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b6a82613cbb565b9150613b7583613cbb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613baa57613ba9613d90565b5b828201905092915050565b6000613bc082613cbb565b9150613bcb83613cbb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c0457613c03613d90565b5b828202905092915050565b6000613c1a82613c8c565b9050919050565b6000613c2c82613c8c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050613c798261428b565b919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b6000613ce482613c6b565b9050919050565b82818337600083830152505050565b60005b83811015613d18578082015181840152602081019050613cfd565b83811115613d27576000848401525b50505050565b60006002820490506001821680613d4557607f821691505b60208210811415613d5957613d58613dee565b5b50919050565b613d6882613e94565b810181811067ffffffffffffffff82111715613d8757613d86613e4c565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f546f6b656e3a204c696d6974656420616d6f756e74206f6620746f6b656e732060008201527f706572207472616e73616374696f6e2e00000000000000000000000000000000602082015250565b7f546f6b656e3a204c696d697420737570706c792073686f756c6420626520646560008201527f66696e65642e0000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a204c696d697420737570706c792068617320616c72656164792060008201527f646566696e65642e000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a20436f6e747261637420616464726573732073686f756c64206260008201527f6520646566696e65642e00000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a20436f6e7472616374206164647265737320646f7365206e6f7460008201527f20737570706f727420494552433732312e000000000000000000000000000000602082015250565b7f546f6b656e3a2043616e6e6f74206c6f636b2073616c652e0000000000000000600082015250565b7f546f6b656e3a20436f6e747261637420616464726573732068617320616c726560008201527f61647920646566696e65642e0000000000000000000000000000000000000000602082015250565b7f546f6b656e3a2053616c65206973206e6f74206163746976652e000000000000600082015250565b7f546f6b656e3a2050726573616c65206973207061757365642e00000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e3a20496e73756666696369656e742066756e64732e000000000000600082015250565b7f546f6b656e3a204c696d6974656420616d6f756e74206f6620746f6b656e732e600082015250565b7f546f6b656e3a2050726573616c652c20746f6b656e20616c726561647920757360008201527f65642e0000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f546f6b656e3a2053656e646572206973206e6f74206f776e6572206f6620746f60008201527f6b656e2e00000000000000000000000000000000000000000000000000000000602082015250565b6003811061429c5761429b613dbf565b5b50565b6142a881613c0f565b81146142b357600080fd5b50565b6142bf81613c21565b81146142ca57600080fd5b50565b6142d681613c33565b81146142e157600080fd5b50565b6142ed81613c3f565b81146142f857600080fd5b50565b6003811061430857600080fd5b50565b61431481613c7e565b811461431f57600080fd5b50565b61432b81613cbb565b811461433657600080fd5b5056fea2646970667358221220779647c07a9658473164b32f55849bd04ead3437ae31985ec0fbaf4db525270f64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000115669736962696c69747920536572756d73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000256530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063715018a611610123578063c87b56dd116100ab578063f19605d61161006f578063f19605d614610781578063f2523633146107ac578063f2fde38b146107e9578063f3fef3a314610812578063f6b4dfb41461083b5761021a565b8063c87b56dd14610674578063d7b12454146106b1578063d89135cd146106ee578063e6798baa14610719578063e985e9c5146107445761021a565b806395d89b41116100f257806395d89b41146105ae578063a035b1fe146105d9578063a22cb46514610604578063a2309ff81461062d578063b88d4fde146106585761021a565b8063715018a61461052c578063728905551461054357806375f890ab1461055a5780638da5cb5b146105835761021a565b80632ddcb21f116101a657806343f3c8861161017557806343f3c8861461044257806355f804b31461045e578063603f4d52146104875780636352211e146104b257806370a08231146104ef5761021a565b80632ddcb21f146103a95780633713c1a1146103d457806342842e0e146103fd57806342966c68146104195761021a565b806318160ddd116101ed57806318160ddd146102e057806323b872dd1461030b57806323cf0a22146103275780632478d639146103435780632b21fcf5146103805761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906131e3565b610866565b604051610253919061377c565b60405180910390f35b34801561026857600080fd5b506102716108f8565b60405161027e91906137cd565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613306565b61098a565b6040516102bb9190613715565b60405180910390f35b6102de60048036038101906102d9919061315a565b610a09565b005b3480156102ec57600080fd5b506102f5610b4d565b6040516103029190613a25565b60405180910390f35b61032560048036038101906103209190613044565b610b64565b005b610341600480360381019061033c91906132d9565b610e89565b005b34801561034f57600080fd5b5061036a60048036038101906103659190612f6a565b610f72565b6040516103779190613a25565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a2919061323d565b610f84565b005b3480156103b557600080fd5b506103be611246565b6040516103cb9190613a25565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613306565b61124c565b005b61041760048036038101906104129190613044565b6112dd565b005b34801561042557600080fd5b50610440600480360381019061043b9190613306565b6112fd565b005b61045c6004803603810190610457919061319a565b61130b565b005b34801561046a57600080fd5b5061048560048036038101906104809190613290565b611607565b005b34801561049357600080fd5b5061049c611629565b6040516104a991906137b2565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d49190613306565b61163c565b6040516104e69190613715565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190612f6a565b61164e565b6040516105239190613a25565b60405180910390f35b34801561053857600080fd5b50610541611707565b005b34801561054f57600080fd5b5061055861171b565b005b34801561056657600080fd5b50610581600480360381019061057c9190612f6a565b6117a5565b005b34801561058f57600080fd5b50610598611930565b6040516105a59190613715565b60405180910390f35b3480156105ba57600080fd5b506105c361195a565b6040516105d091906137cd565b60405180910390f35b3480156105e557600080fd5b506105ee6119ec565b6040516105fb9190613a25565b60405180910390f35b34801561061057600080fd5b5061062b6004803603810190610626919061311a565b6119f2565b005b34801561063957600080fd5b50610642611afd565b60405161064f9190613a25565b60405180910390f35b610672600480360381019061066d9190613097565b611b0c565b005b34801561068057600080fd5b5061069b60048036038101906106969190613306565b611b7f565b6040516106a891906137cd565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d39190612f6a565b611c1e565b6040516106e5919061377c565b60405180910390f35b3480156106fa57600080fd5b50610703611c51565b6040516107109190613a25565b60405180910390f35b34801561072557600080fd5b5061072e611c60565b60405161073b9190613a25565b60405180910390f35b34801561075057600080fd5b5061076b60048036038101906107669190613004565b611c66565b604051610778919061377c565b60405180910390f35b34801561078d57600080fd5b50610796611cfa565b6040516107a39190613a0a565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613306565b611d0e565b6040516107e091906139ef565b60405180910390f35b3480156107f557600080fd5b50610810600480360381019061080b9190612f6a565b611d26565b005b34801561081e57600080fd5b5061083960048036038101906108349190612fc4565b611daa565b005b34801561084757600080fd5b50610850611e0a565b60405161085d9190613715565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461090790613d2d565b80601f016020809104026020016040519081016040528092919081815260200182805461093390613d2d565b80156109805780601f1061095557610100808354040283529160200191610980565b820191906000526020600020905b81548152906001019060200180831161096357829003601f168201915b5050505050905090565b600061099582611e30565b6109cb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a148261163c565b90508073ffffffffffffffffffffffffffffffffffffffff16610a35611e8f565b73ffffffffffffffffffffffffffffffffffffffff1614610a9857610a6181610a5c611e8f565b611c66565b610a97576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b57611e97565b6002546001540303905090565b6000610b6f82611ea0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bd6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610be284611f6e565b91509150610bf88187610bf3611e8f565b611f95565b610c4457610c0d86610c08611e8f565b611c66565b610c43576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610cab576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cb88686866001611fd9565b8015610cc357600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d9185610d6d888887611fdf565b7c020000000000000000000000000000000000000000000000000000000017612007565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e19576000600185019050600060056000838152602001908152602001600020541415610e17576001548114610e16578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e818686866001612032565b505050505050565b6002600a541415610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec6906139af565b60405180910390fd5b6002600a81905550600280811115610eea57610ee9613dbf565b5b600f60009054906101000a900460ff166002811115610f0c57610f0b613dbf565b5b14610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f43906138ef565b60405180910390fd5b610f598161ffff16612038565b610f67338261ffff16612139565b6001600a8190555050565b6000610f7d82612157565b9050919050565b610f8c6121ae565b6000600c541415610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc99061380f565b60405180910390fd5b60006002811115610fe657610fe5613dbf565b5b836002811115610ff957610ff8613dbf565b5b141561103a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611031906138af565b60405180910390fd5b6001600281111561104e5761104d613dbf565b5b83600281111561106157611060613dbf565b5b14156110fa57600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f09061386f565b60405180910390fd5b5b6000600281111561110e5761110d613dbf565b5b600f60009054906101000a900460ff1660028111156111305761112f613dbf565b5b1461118557600f60009054906101000a900460ff16600281111561115757611156613dbf565b5b427fa9f0c629ec390f076c64c47aa5cd60c99e3e31854d2c840e93d8b37072c995d860405160405180910390a35b82600f60006101000a81548160ff021916908360028111156111aa576111a9613dbf565b5b02179055508160108190555080601160006101000a81548161ffff021916908361ffff160217905550600f60009054906101000a900460ff1660028111156111f5576111f4613dbf565b5b427f871c6d5d77be00e9fa46d49f0fa1ff1b3382f2b63f2344f3565ddf9acfe101dc601054601160009054906101000a900461ffff16604051611239929190613a40565b60405180910390a3505050565b600c5481565b6112546121ae565b6000600c5414611299576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112909061382f565b60405180910390fd5b80600c81905550427fadefae3c5ad66a9b34bfccb0f287c4a2b0a25c56a8d06393765a8ee1e126e27a600c546040516112d29190613a25565b60405180910390a250565b6112f883838360405180602001604052806000815250611b0c565b505050565b61130881600161222c565b50565b6002600a541415611351576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611348906139af565b60405180910390fd5b6002600a819055506001600281111561136d5761136c613dbf565b5b600f60009054906101000a900460ff16600281111561138f5761138e613dbf565b5b146113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c69061390f565b60405180910390fd5b6000815190506113de81612038565b60005b818110156115f0573373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e85848151811061145157611450613e1d565b5b60200260200101516040518263ffffffff1660e01b81526004016114759190613a25565b60206040518083038186803b15801561148d57600080fd5b505afa1580156114a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c59190612f97565b73ffffffffffffffffffffffffffffffffffffffff161461151b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611512906139cf565b60405180910390fd5b600e600084838151811061153257611531613e1d565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff1615611596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158d9061398f565b60405180910390fd5b6001600e60008584815181106115af576115ae613e1d565b5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506001816115e99190613b5f565b90506113e1565b506115fb3382612139565b506001600a8190555050565b61160f6121ae565b80600b9080519060200190611625929190612c3d565b5050565b600f60009054906101000a900460ff1681565b600061164782611ea0565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116b6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61170f6121ae565b6117196000612480565b565b6117236121ae565b6000600f60009054906101000a900460ff1690506000600f60006101000a81548160ff0219169083600281111561175d5761175c613dbf565b5b021790555080600281111561177557611774613dbf565b5b427fa9f0c629ec390f076c64c47aa5cd60c99e3e31854d2c840e93d8b37072c995d860405160405180910390a350565b6117ad6121ae565b600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461183e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611835906138cf565b60405180910390fd5b61184781611c1e565b611886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187d9061388f565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16427f7d197ea6b567f552ff6f7ce790c29df487be8cd1897daadc0cb5964816d515df60405160405180910390a350565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461196990613d2d565b80601f016020809104026020016040519081016040528092919081815260200182805461199590613d2d565b80156119e25780601f106119b7576101008083540402835291602001916119e2565b820191906000526020600020905b8154815290600101906020018083116119c557829003601f168201915b5050505050905090565b60105481565b80600860006119ff611e8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611aac611e8f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611af1919061377c565b60405180910390a35050565b6000611b07612546565b905090565b611b17848484610b64565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b7957611b4284848484612559565b611b78576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611b8a82611e30565b611bc0576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611bca6126b9565b9050600081511415611beb5760405180602001604052806000815250611c16565b80611bf58461274b565b604051602001611c069291906136f1565b6040516020818303038152906040525b915050919050565b6000611c4a827f80ac58cd000000000000000000000000000000000000000000000000000000006127a4565b9050919050565b6000611c5b6127c9565b905090565b60005481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601160009054906101000a900461ffff1681565b611d16612cc3565b611d1f826127d3565b9050919050565b611d2e6121ae565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d959061384f565b60405180910390fd5b611da781612480565b50565b611db26121ae565b47811115611dbf57600080fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611e05573d6000803e3d6000fd5b505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600081611e3b611e97565b11158015611e4a575060015482105b8015611e88575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b60008054905090565b60008082905080611eaf611e97565b11611f3757600154811015611f365760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611f34575b6000811415611f2a576005600083600190039350838152602001908152602001600020549050611eff565b8092505050611f69565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ff68686846127fe565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b601160009054906101000a900461ffff1661ffff1681111561208f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612086906137ef565b60405180910390fd5b600c548161209b612546565b6120a59190613b5f565b11156120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dd9061396f565b60405180910390fd5b34816010546120f59190613bb5565b1115612136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212d9061394f565b60405180910390fd5b50565b612153828260405180602001604052806000815250612807565b5050565b600067ffffffffffffffff6080600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6121b66128a5565b73ffffffffffffffffffffffffffffffffffffffff166121d4611930565b73ffffffffffffffffffffffffffffffffffffffff161461222a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122219061392f565b60405180910390fd5b565b600061223783611ea0565b9050600081905060008061224a86611f6e565b9150915084156122b3576122668184612261611e8f565b611f95565b6122b25761227b83612276611e8f565b611c66565b6122b1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6122c1836000886001611fd9565b80156122cc57600082555b600160806001901b03600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123748361233185600088611fdf565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612007565b600560008881526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000851614156123fc5760006001870190506000600560008381526020019081526020016000205414156123fa5760015481146123f9578460056000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612466836000886001612032565b600260008154809291906001019190505550505050505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612550611e97565b60015403905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261257f611e8f565b8786866040518563ffffffff1660e01b81526004016125a19493929190613730565b602060405180830381600087803b1580156125bb57600080fd5b505af19250505080156125ec57506040513d601f19601f820116820180604052508101906125e99190613210565b60015b612666573d806000811461261c576040519150601f19603f3d011682016040523d82523d6000602084013e612621565b606091505b5060008151141561265e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b80546126c890613d2d565b80601f01602080910402602001604051908101604052809291908181526020018280546126f490613d2d565b80156127415780601f1061271657610100808354040283529160200191612741565b820191906000526020600020905b81548152906001019060200180831161272457829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561278f57600184039350600a81066030018453600a810490508061278a5761278f565b612764565b50828103602084039350808452505050919050565b60006127af836128ad565b80156127c157506127c083836128fa565b5b905092915050565b6000600254905090565b6127db612cc3565b6127f760056000848152602001908152602001600020546129b9565b9050919050565b60009392505050565b6128118383612a6f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146128a05760006001549050600083820390505b6128526000868380600101945086612559565b612888576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061283f57816001541461289d57600080fd5b50505b505050565b600033905090565b60006128d9827f01ffc9a7000000000000000000000000000000000000000000000000000000006128fa565b80156128f357506128f18263ffffffff60e01b6128fa565b155b9050919050565b6000806301ffc9a760e01b836040516024016129169190613797565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505090506000806000602060008551602087018a617530fa92503d915060005190508280156129a1575060208210155b80156129ad5750600081115b94505050505092915050565b6129c1612cc3565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600060015490506000821415612ab1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612abe6000848385611fd9565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612b3583612b266000866000611fdf565b612b2f85612c2d565b17612007565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612bd657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612b9b565b506000821415612c12576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050612c286000848385612032565b505050565b60006001821460e11b9050919050565b828054612c4990613d2d565b90600052602060002090601f016020900481019282612c6b5760008555612cb2565b82601f10612c8457805160ff1916838001178555612cb2565b82800160010185558215612cb2579182015b82811115612cb1578251825591602001919060010190612c96565b5b509050612cbf9190612d12565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612d2b576000816000905550600101612d13565b5090565b6000612d42612d3d84613a8e565b613a69565b90508083825260208201905082856020860282011115612d6557612d64613e80565b5b60005b85811015612d955781612d7b8882612f55565b845260208401935060208301925050600181019050612d68565b5050509392505050565b6000612db2612dad84613aba565b613a69565b905082815260208101848484011115612dce57612dcd613e85565b5b612dd9848285613ceb565b509392505050565b6000612df4612def84613aeb565b613a69565b905082815260208101848484011115612e1057612e0f613e85565b5b612e1b848285613ceb565b509392505050565b600081359050612e328161429f565b92915050565b600081519050612e478161429f565b92915050565b600081359050612e5c816142b6565b92915050565b600082601f830112612e7757612e76613e7b565b5b8135612e87848260208601612d2f565b91505092915050565b600081359050612e9f816142cd565b92915050565b600081359050612eb4816142e4565b92915050565b600081519050612ec9816142e4565b92915050565b600082601f830112612ee457612ee3613e7b565b5b8135612ef4848260208601612d9f565b91505092915050565b600081359050612f0c816142fb565b92915050565b600082601f830112612f2757612f26613e7b565b5b8135612f37848260208601612de1565b91505092915050565b600081359050612f4f8161430b565b92915050565b600081359050612f6481614322565b92915050565b600060208284031215612f8057612f7f613e8f565b5b6000612f8e84828501612e23565b91505092915050565b600060208284031215612fad57612fac613e8f565b5b6000612fbb84828501612e38565b91505092915050565b60008060408385031215612fdb57612fda613e8f565b5b6000612fe985828601612e4d565b9250506020612ffa85828601612f55565b9150509250929050565b6000806040838503121561301b5761301a613e8f565b5b600061302985828601612e23565b925050602061303a85828601612e23565b9150509250929050565b60008060006060848603121561305d5761305c613e8f565b5b600061306b86828701612e23565b935050602061307c86828701612e23565b925050604061308d86828701612f55565b9150509250925092565b600080600080608085870312156130b1576130b0613e8f565b5b60006130bf87828801612e23565b94505060206130d087828801612e23565b93505060406130e187828801612f55565b925050606085013567ffffffffffffffff81111561310257613101613e8a565b5b61310e87828801612ecf565b91505092959194509250565b6000806040838503121561313157613130613e8f565b5b600061313f85828601612e23565b925050602061315085828601612e90565b9150509250929050565b6000806040838503121561317157613170613e8f565b5b600061317f85828601612e23565b925050602061319085828601612f55565b9150509250929050565b6000602082840312156131b0576131af613e8f565b5b600082013567ffffffffffffffff8111156131ce576131cd613e8a565b5b6131da84828501612e62565b91505092915050565b6000602082840312156131f9576131f8613e8f565b5b600061320784828501612ea5565b91505092915050565b60006020828403121561322657613225613e8f565b5b600061323484828501612eba565b91505092915050565b60008060006060848603121561325657613255613e8f565b5b600061326486828701612efd565b935050602061327586828701612f55565b925050604061328686828701612f40565b9150509250925092565b6000602082840312156132a6576132a5613e8f565b5b600082013567ffffffffffffffff8111156132c4576132c3613e8a565b5b6132d084828501612f12565b91505092915050565b6000602082840312156132ef576132ee613e8f565b5b60006132fd84828501612f40565b91505092915050565b60006020828403121561331c5761331b613e8f565b5b600061332a84828501612f55565b91505092915050565b61333c81613c0f565b82525050565b61334b81613c0f565b82525050565b61335a81613c33565b82525050565b61336981613c33565b82525050565b61337881613c3f565b82525050565b600061338982613b1c565b6133938185613b32565b93506133a3818560208601613cfa565b6133ac81613e94565b840191505092915050565b6133c081613cd9565b82525050565b60006133d182613b27565b6133db8185613b43565b93506133eb818560208601613cfa565b6133f481613e94565b840191505092915050565b600061340a82613b27565b6134148185613b54565b9350613424818560208601613cfa565b80840191505092915050565b600061343d603083613b43565b915061344882613ea5565b604082019050919050565b6000613460602683613b43565b915061346b82613ef4565b604082019050919050565b6000613483602883613b43565b915061348e82613f43565b604082019050919050565b60006134a6602683613b43565b91506134b182613f92565b604082019050919050565b60006134c9602a83613b43565b91506134d482613fe1565b604082019050919050565b60006134ec603183613b43565b91506134f782614030565b604082019050919050565b600061350f601883613b43565b915061351a8261407f565b602082019050919050565b6000613532602c83613b43565b915061353d826140a8565b604082019050919050565b6000613555601a83613b43565b9150613560826140f7565b602082019050919050565b6000613578601983613b43565b915061358382614120565b602082019050919050565b600061359b602083613b43565b91506135a682614149565b602082019050919050565b60006135be601a83613b43565b91506135c982614172565b602082019050919050565b60006135e1602083613b43565b91506135ec8261419b565b602082019050919050565b6000613604602383613b43565b915061360f826141c4565b604082019050919050565b6000613627601f83613b43565b915061363282614213565b602082019050919050565b600061364a602483613b43565b91506136558261423c565b604082019050919050565b6080820160008201516136766000850182613333565b50602082015161368960208501826136e2565b50604082015161369c6040850182613351565b5060608201516136af60608501826136c4565b50505050565b6136be81613c7e565b82525050565b6136cd81613cac565b82525050565b6136dc81613cbb565b82525050565b6136eb81613cc5565b82525050565b60006136fd82856133ff565b915061370982846133ff565b91508190509392505050565b600060208201905061372a6000830184613342565b92915050565b60006080820190506137456000830187613342565b6137526020830186613342565b61375f60408301856136d3565b8181036060830152613771818461337e565b905095945050505050565b60006020820190506137916000830184613360565b92915050565b60006020820190506137ac600083018461336f565b92915050565b60006020820190506137c760008301846133b7565b92915050565b600060208201905081810360008301526137e781846133c6565b905092915050565b6000602082019050818103600083015261380881613430565b9050919050565b6000602082019050818103600083015261382881613453565b9050919050565b6000602082019050818103600083015261384881613476565b9050919050565b6000602082019050818103600083015261386881613499565b9050919050565b60006020820190508181036000830152613888816134bc565b9050919050565b600060208201905081810360008301526138a8816134df565b9050919050565b600060208201905081810360008301526138c881613502565b9050919050565b600060208201905081810360008301526138e881613525565b9050919050565b6000602082019050818103600083015261390881613548565b9050919050565b600060208201905081810360008301526139288161356b565b9050919050565b600060208201905081810360008301526139488161358e565b9050919050565b60006020820190508181036000830152613968816135b1565b9050919050565b60006020820190508181036000830152613988816135d4565b9050919050565b600060208201905081810360008301526139a8816135f7565b9050919050565b600060208201905081810360008301526139c88161361a565b9050919050565b600060208201905081810360008301526139e88161363d565b9050919050565b6000608082019050613a046000830184613660565b92915050565b6000602082019050613a1f60008301846136b5565b92915050565b6000602082019050613a3a60008301846136d3565b92915050565b6000604082019050613a5560008301856136d3565b613a6260208301846136b5565b9392505050565b6000613a73613a84565b9050613a7f8282613d5f565b919050565b6000604051905090565b600067ffffffffffffffff821115613aa957613aa8613e4c565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613ad557613ad4613e4c565b5b613ade82613e94565b9050602081019050919050565b600067ffffffffffffffff821115613b0657613b05613e4c565b5b613b0f82613e94565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b6a82613cbb565b9150613b7583613cbb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613baa57613ba9613d90565b5b828201905092915050565b6000613bc082613cbb565b9150613bcb83613cbb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c0457613c03613d90565b5b828202905092915050565b6000613c1a82613c8c565b9050919050565b6000613c2c82613c8c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050613c798261428b565b919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b6000613ce482613c6b565b9050919050565b82818337600083830152505050565b60005b83811015613d18578082015181840152602081019050613cfd565b83811115613d27576000848401525b50505050565b60006002820490506001821680613d4557607f821691505b60208210811415613d5957613d58613dee565b5b50919050565b613d6882613e94565b810181811067ffffffffffffffff82111715613d8757613d86613e4c565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f546f6b656e3a204c696d6974656420616d6f756e74206f6620746f6b656e732060008201527f706572207472616e73616374696f6e2e00000000000000000000000000000000602082015250565b7f546f6b656e3a204c696d697420737570706c792073686f756c6420626520646560008201527f66696e65642e0000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a204c696d697420737570706c792068617320616c72656164792060008201527f646566696e65642e000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a20436f6e747261637420616464726573732073686f756c64206260008201527f6520646566696e65642e00000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a20436f6e7472616374206164647265737320646f7365206e6f7460008201527f20737570706f727420494552433732312e000000000000000000000000000000602082015250565b7f546f6b656e3a2043616e6e6f74206c6f636b2073616c652e0000000000000000600082015250565b7f546f6b656e3a20436f6e747261637420616464726573732068617320616c726560008201527f61647920646566696e65642e0000000000000000000000000000000000000000602082015250565b7f546f6b656e3a2053616c65206973206e6f74206163746976652e000000000000600082015250565b7f546f6b656e3a2050726573616c65206973207061757365642e00000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e3a20496e73756666696369656e742066756e64732e000000000000600082015250565b7f546f6b656e3a204c696d6974656420616d6f756e74206f6620746f6b656e732e600082015250565b7f546f6b656e3a2050726573616c652c20746f6b656e20616c726561647920757360008201527f65642e0000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f546f6b656e3a2053656e646572206973206e6f74206f776e6572206f6620746f60008201527f6b656e2e00000000000000000000000000000000000000000000000000000000602082015250565b6003811061429c5761429b613dbf565b5b50565b6142a881613c0f565b81146142b357600080fd5b50565b6142bf81613c21565b81146142ca57600080fd5b50565b6142d681613c33565b81146142e157600080fd5b50565b6142ed81613c3f565b81146142f857600080fd5b50565b6003811061430857600080fd5b50565b61431481613c7e565b811461431f57600080fd5b50565b61432b81613cbb565b811461433657600080fd5b5056fea2646970667358221220779647c07a9658473164b32f55849bd04ead3437ae31985ec0fbaf4db525270f64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000115669736962696c69747920536572756d73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000256530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Visibility Serums
Arg [1] : symbol_ (string): VS
Arg [2] : baseURI_ (string):
Arg [3] : startTokenId_ (uint256): 1

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [5] : 5669736962696c69747920536572756d73000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 5653000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000


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.