ETH Price: $3,456.81 (-0.76%)
Gas: 2 Gwei

Token

Ahoy Pirates! (AP)
 

Overview

Max Total Supply

5,555 AP

Holders

2,465

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 AP
0x22d11f427ff1ae9c32d11588cca20a34fe6dda48
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:
AhoyPirates

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-13
*/

// File: @openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            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`.
     *
     * 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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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`
    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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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 `_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));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try 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))
                }
            }
        }
    }

    /**
     * @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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: AhoyPirates.sol


pragma solidity ^0.8.4;




contract AhoyPirates is ERC721A, Ownable {
    using StringsUpgradeable for uint256;
    string public baseURI = "ipfs://QmSL46RdZPAZAMJtWkCh82cYucL9vC9nAKqRdnKo88yyL1/";
    uint256 public price = 0.005 ether;
    uint256 public maxPerTx = 20;
    uint256 public maxFreePerWallet = 2;
    uint256 public totalFree = 5000;
    uint256 public maxSupply = 5555;
    bool public mintEnabled = false;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor(uint256 _preMint) ERC721A("Ahoy Pirates!", "AP") {
        _safeMint(msg.sender, _preMint);
    }

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalSupply() + count < totalFree + 1) &&
        (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet));

        if (isFree) {
            cost = 0;
        }

        require(msg.value >= count * cost, "Send the exact amount.");
        require(totalSupply() + count < maxSupply + 1, "No more.");
        require(mintEnabled, "Minting is not live yet.");
        require(count < maxPerTx + 1, "Max per TX reached.");

        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }

        _safeMint(msg.sender, count);
    }

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

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI set of nonexistent token"
        );

        return string(abi.encodePacked(baseURI, _tokenId.toString(), ".json"));
    }

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

    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }

    function setFreeAmount(uint256 amount) external onlyOwner {
        totalFree = amount;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function flipSale() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_preMint","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060405260366080818152906200202660a03980516200002991600991602090910190620003fd565b506611c37937e08000600a556014600b556002600c55611388600d556115b3600e55600f805460ff191690553480156200006257600080fd5b506040516200207c3803806200207c8339810160408190526200008591620004d4565b6040518060400160405280600d81526020016c41686f7920506972617465732160981b81525060405180604001604052806002815260200161041560f41b8152508160029080519060200190620000de929190620003fd565b508051620000f4906003906020840190620003fd565b505060016000555062000107336200011a565b6200011333826200016c565b50620005a3565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200018e8282604051806020016040528060008152506200019260201b60201c565b5050565b6000546001600160a01b038416620001bc57604051622e076360e81b815260040160405180910390fd5b82620001db5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15620002a7575b60405182906001600160a01b038816906000906000805160206200205c833981519152908290a460018201916200026c90600090889087620002fc565b6200028a576040516368d2bf6b60e11b815260040160405180910390fd5b8082106200022f578260005414620002a157600080fd5b620002dc565b5b6040516001830192906001600160a01b038816906000906000805160206200205c833981519152908290a4808210620002a8575b506000908155620002f6908583866001600160e01b038516565b50505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029062000333903390899088908890600401620004ed565b602060405180830381600087803b1580156200034e57600080fd5b505af192505050801562000381575060408051601f3d908101601f191682019092526200037e91810190620004a3565b60015b620003e0573d808015620003b2576040519150601f19603f3d011682016040523d82523d6000602084013e620003b7565b606091505b508051620003d8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b8280546200040b9062000566565b90600052602060002090601f0160209004810192826200042f57600085556200047a565b82601f106200044a57805160ff19168380011785556200047a565b828001600101855582156200047a579182015b828111156200047a5782518255916020019190600101906200045d565b50620004889291506200048c565b5090565b5b808211156200048857600081556001016200048d565b600060208284031215620004b5578081fd5b81516001600160e01b031981168114620004cd578182fd5b9392505050565b600060208284031215620004e6578081fd5b5051919050565b600060018060a01b0380871683526020818716818501528560408501526080606085015284519150816080850152825b828110156200053b5785810182015185820160a0015281016200051d565b828111156200054d578360a084870101525b5050601f01601f19169190910160a00195945050505050565b600181811c908216806200057b57607f821691505b602082108114156200059d57634e487b7160e01b600052602260045260246000fd5b50919050565b611a7380620005b36000396000f3fe6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063a702735711610095578063d5abeb0111610064578063d5abeb01146104e0578063e985e9c5146104f6578063f2fde38b1461053f578063f968adbe1461055f57600080fd5b8063a702735714610470578063b88d4fde14610486578063c87b56dd146104a6578063d1239730146104c657600080fd5b806395d89b41116100d157806395d89b4114610412578063a035b1fe14610427578063a0712d681461043d578063a22cb4651461045057600080fd5b80638da5cb5b146103b457806391b7f5ed146103d257806392910eec146103f257600080fd5b80633ccfd60b1161016f5780636c0360eb1161013e5780636c0360eb1461035557806370a082311461036a578063715018a61461038a5780637ba5e6211461039f57600080fd5b80633ccfd60b146102e057806342842e0e146102f557806355f804b3146103155780636352211e1461033557600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102aa578063333e44e6146102ca57600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed3660046116d0565b610575565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105c7565b6040516101fe91906118a5565b34801561023557600080fd5b5061024961024436600461174e565b610659565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c3660046116a7565b61069d565b005b34801561028f57600080fd5b5060015460005403600019015b6040519081526020016101fe565b3480156102b657600080fd5b506102816102c53660046115b9565b610770565b3480156102d657600080fd5b5061029c600d5481565b3480156102ec57600080fd5b50610281610780565b34801561030157600080fd5b506102816103103660046115b9565b6107e6565b34801561032157600080fd5b50610281610330366004611708565b610801565b34801561034157600080fd5b5061024961035036600461174e565b61083e565b34801561036157600080fd5b5061021c610849565b34801561037657600080fd5b5061029c61038536600461156d565b6108d7565b34801561039657600080fd5b50610281610926565b3480156103ab57600080fd5b5061028161095c565b3480156103c057600080fd5b506008546001600160a01b0316610249565b3480156103de57600080fd5b506102816103ed36600461174e565b61099a565b3480156103fe57600080fd5b5061028161040d36600461174e565b6109c9565b34801561041e57600080fd5b5061021c6109f8565b34801561043357600080fd5b5061029c600a5481565b61028161044b36600461174e565b610a07565b34801561045c57600080fd5b5061028161046b36600461166d565b610bf2565b34801561047c57600080fd5b5061029c600c5481565b34801561049257600080fd5b506102816104a13660046115f4565b610c88565b3480156104b257600080fd5b5061021c6104c136600461174e565b610cd2565b3480156104d257600080fd5b50600f546101f29060ff1681565b3480156104ec57600080fd5b5061029c600e5481565b34801561050257600080fd5b506101f2610511366004611587565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561054b57600080fd5b5061028161055a36600461156d565b610d70565b34801561056b57600080fd5b5061029c600b5481565b60006301ffc9a760e01b6001600160e01b0319831614806105a657506380ac58cd60e01b6001600160e01b03198316145b806105c15750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105d69061197b565b80601f01602080910402602001604051908101604052809291908181526020018280546106029061197b565b801561064f5780601f106106245761010080835404028352916020019161064f565b820191906000526020600020905b81548152906001019060200180831161063257829003601f168201915b5050505050905090565b600061066482610e0b565b610681576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106a882610e40565b9050806001600160a01b0316836001600160a01b031614156106dd5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610714576106f78133610511565b610714576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61077b838383610eb0565b505050565b6008546001600160a01b031633146107b35760405162461bcd60e51b81526004016107aa906118b8565b60405180910390fd5b6040514790339082156108fc029083906000818181858888f193505050501580156107e2573d6000803e3d6000fd5b5050565b61077b83838360405180602001604052806000815250610c88565b6008546001600160a01b0316331461082b5760405162461bcd60e51b81526004016107aa906118b8565b80516107e2906009906020840190611442565b60006105c182610e40565b600980546108569061197b565b80601f01602080910402602001604051908101604052809291908181526020018280546108829061197b565b80156108cf5780601f106108a4576101008083540402835291602001916108cf565b820191906000526020600020905b8154815290600101906020018083116108b257829003601f168201915b505050505081565b60006001600160a01b038216610900576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109505760405162461bcd60e51b81526004016107aa906118b8565b61095a6000611053565b565b6008546001600160a01b031633146109865760405162461bcd60e51b81526004016107aa906118b8565b600f805460ff19811660ff90911615179055565b6008546001600160a01b031633146109c45760405162461bcd60e51b81526004016107aa906118b8565b600a55565b6008546001600160a01b031633146109f35760405162461bcd60e51b81526004016107aa906118b8565b600d55565b6060600380546105d69061197b565b600a54600d54600090610a1b9060016118ed565b6001546000548591900360001901610a3391906118ed565b108015610a5c5750600c5433600090815260106020526040902054610a599085906118ed565b11155b90508015610a6957600091505b610a738284611919565b341015610abb5760405162461bcd60e51b815260206004820152601660248201527529b2b732103a34329032bc30b1ba1030b6b7bab73a1760511b60448201526064016107aa565b600e54610ac99060016118ed565b6001546000548591900360001901610ae191906118ed565b10610b195760405162461bcd60e51b815260206004820152600860248201526727379036b7b9329760c11b60448201526064016107aa565b600f5460ff16610b6b5760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e67206973206e6f74206c697665207965742e000000000000000060448201526064016107aa565b600b54610b799060016118ed565b8310610bbd5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016107aa565b8015610be8573360009081526010602052604081208054859290610be29084906118ed565b90915550505b61077b33846110a5565b6001600160a01b038216331415610c1c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c93848484610eb0565b6001600160a01b0383163b15610ccc57610caf848484846110bf565b610ccc576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610cdd82610e0b565b610d3e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107aa565b6009610d49836111b7565b604051602001610d5a9291906117ae565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610d9a5760405162461bcd60e51b81526004016107aa906118b8565b6001600160a01b038116610dff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107aa565b610e0881611053565b50565b600081600111158015610e1f575060005482105b80156105c1575050600090815260046020526040902054600160e01b161590565b60008180600111610e9757600054811015610e9757600081815260046020526040902054600160e01b8116610e95575b80610e8e575060001901600081815260046020526040902054610e70565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610ebb82610e40565b9050836001600160a01b0316816001600160a01b031614610eee5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610f0c5750610f0c8533610511565b80610f27575033610f1c84610659565b6001600160a01b0316145b905080610f4757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610f6e57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661100b57600183016000818152600460205260409020546110095760005481146110095760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107e28282604051806020016040528060008152506112d1565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906110f4903390899088908890600401611868565b602060405180830381600087803b15801561110e57600080fd5b505af192505050801561113e575060408051601f3d908101601f1916820190925261113b918101906116ec565b60015b611199573d80801561116c576040519150601f19603f3d011682016040523d82523d6000602084013e611171565b606091505b508051611191576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816111db5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561120557806111ef816119b6565b91506111fe9050600a83611905565b91506111df565b60008167ffffffffffffffff81111561122e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611258576020820181803683370190505b5090505b84156111af5761126d600183611938565b915061127a600a866119d1565b6112859060306118ed565b60f81b8183815181106112a857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506112ca600a86611905565b945061125c565b6000546001600160a01b0384166112fa57604051622e076360e81b815260040160405180910390fd5b826113185760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156113ed575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46113b660008784806001019550876110bf565b6113d3576040516368d2bf6b60e11b815260040160405180910390fd5b80821061136b5782600054146113e857600080fd5b611432565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106113ee575b506000908155610ccc9085838684565b82805461144e9061197b565b90600052602060002090601f01602090048101928261147057600085556114b6565b82601f1061148957805160ff19168380011785556114b6565b828001600101855582156114b6579182015b828111156114b657825182559160200191906001019061149b565b506114c29291506114c6565b5090565b5b808211156114c257600081556001016114c7565b600067ffffffffffffffff808411156114f6576114f6611a11565b604051601f8501601f19908116603f0116810190828211818310171561151e5761151e611a11565b8160405280935085815286868601111561153757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461156857600080fd5b919050565b60006020828403121561157e578081fd5b610e8e82611551565b60008060408385031215611599578081fd5b6115a283611551565b91506115b060208401611551565b90509250929050565b6000806000606084860312156115cd578081fd5b6115d684611551565b92506115e460208501611551565b9150604084013590509250925092565b60008060008060808587031215611609578081fd5b61161285611551565b935061162060208601611551565b925060408501359150606085013567ffffffffffffffff811115611642578182fd5b8501601f81018713611652578182fd5b611661878235602084016114db565b91505092959194509250565b6000806040838503121561167f578182fd5b61168883611551565b91506020830135801515811461169c578182fd5b809150509250929050565b600080604083850312156116b9578182fd5b6116c283611551565b946020939093013593505050565b6000602082840312156116e1578081fd5b8135610e8e81611a27565b6000602082840312156116fd578081fd5b8151610e8e81611a27565b600060208284031215611719578081fd5b813567ffffffffffffffff81111561172f578182fd5b8201601f8101841361173f578182fd5b6111af848235602084016114db565b60006020828403121561175f578081fd5b5035919050565b6000815180845261177e81602086016020860161194f565b601f01601f19169290920160200192915050565b600081516117a481856020860161194f565b9290920192915050565b600080845482600182811c9150808316806117ca57607f831692505b60208084108214156117ea57634e487b7160e01b87526022600452602487fd5b8180156117fe576001811461180f5761183b565b60ff1986168952848901965061183b565b60008b815260209020885b868110156118335781548b82015290850190830161181a565b505084890196505b50505050505061185f61184e8286611792565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061189b90830184611766565b9695505050505050565b602081526000610e8e6020830184611766565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611900576119006119e5565b500190565b600082611914576119146119fb565b500490565b6000816000190483118215151615611933576119336119e5565b500290565b60008282101561194a5761194a6119e5565b500390565b60005b8381101561196a578181015183820152602001611952565b83811115610ccc5750506000910152565b600181811c9082168061198f57607f821691505b602082108114156119b057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119ca576119ca6119e5565b5060010190565b6000826119e0576119e06119fb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e0857600080fdfea2646970667358221220563f1c53746787b3c7ca847f2ceaaea0ece36e99dc92dbf86eb5d5fbf4d1560964736f6c63430008040033697066733a2f2f516d534c343652645a50415a414d4a74576b43683832635975634c397643396e414b7152646e4b6f383879794c312fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000000000000000000000000000000000000000000a

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063a702735711610095578063d5abeb0111610064578063d5abeb01146104e0578063e985e9c5146104f6578063f2fde38b1461053f578063f968adbe1461055f57600080fd5b8063a702735714610470578063b88d4fde14610486578063c87b56dd146104a6578063d1239730146104c657600080fd5b806395d89b41116100d157806395d89b4114610412578063a035b1fe14610427578063a0712d681461043d578063a22cb4651461045057600080fd5b80638da5cb5b146103b457806391b7f5ed146103d257806392910eec146103f257600080fd5b80633ccfd60b1161016f5780636c0360eb1161013e5780636c0360eb1461035557806370a082311461036a578063715018a61461038a5780637ba5e6211461039f57600080fd5b80633ccfd60b146102e057806342842e0e146102f557806355f804b3146103155780636352211e1461033557600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102aa578063333e44e6146102ca57600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed3660046116d0565b610575565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105c7565b6040516101fe91906118a5565b34801561023557600080fd5b5061024961024436600461174e565b610659565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c3660046116a7565b61069d565b005b34801561028f57600080fd5b5060015460005403600019015b6040519081526020016101fe565b3480156102b657600080fd5b506102816102c53660046115b9565b610770565b3480156102d657600080fd5b5061029c600d5481565b3480156102ec57600080fd5b50610281610780565b34801561030157600080fd5b506102816103103660046115b9565b6107e6565b34801561032157600080fd5b50610281610330366004611708565b610801565b34801561034157600080fd5b5061024961035036600461174e565b61083e565b34801561036157600080fd5b5061021c610849565b34801561037657600080fd5b5061029c61038536600461156d565b6108d7565b34801561039657600080fd5b50610281610926565b3480156103ab57600080fd5b5061028161095c565b3480156103c057600080fd5b506008546001600160a01b0316610249565b3480156103de57600080fd5b506102816103ed36600461174e565b61099a565b3480156103fe57600080fd5b5061028161040d36600461174e565b6109c9565b34801561041e57600080fd5b5061021c6109f8565b34801561043357600080fd5b5061029c600a5481565b61028161044b36600461174e565b610a07565b34801561045c57600080fd5b5061028161046b36600461166d565b610bf2565b34801561047c57600080fd5b5061029c600c5481565b34801561049257600080fd5b506102816104a13660046115f4565b610c88565b3480156104b257600080fd5b5061021c6104c136600461174e565b610cd2565b3480156104d257600080fd5b50600f546101f29060ff1681565b3480156104ec57600080fd5b5061029c600e5481565b34801561050257600080fd5b506101f2610511366004611587565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561054b57600080fd5b5061028161055a36600461156d565b610d70565b34801561056b57600080fd5b5061029c600b5481565b60006301ffc9a760e01b6001600160e01b0319831614806105a657506380ac58cd60e01b6001600160e01b03198316145b806105c15750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105d69061197b565b80601f01602080910402602001604051908101604052809291908181526020018280546106029061197b565b801561064f5780601f106106245761010080835404028352916020019161064f565b820191906000526020600020905b81548152906001019060200180831161063257829003601f168201915b5050505050905090565b600061066482610e0b565b610681576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106a882610e40565b9050806001600160a01b0316836001600160a01b031614156106dd5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610714576106f78133610511565b610714576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61077b838383610eb0565b505050565b6008546001600160a01b031633146107b35760405162461bcd60e51b81526004016107aa906118b8565b60405180910390fd5b6040514790339082156108fc029083906000818181858888f193505050501580156107e2573d6000803e3d6000fd5b5050565b61077b83838360405180602001604052806000815250610c88565b6008546001600160a01b0316331461082b5760405162461bcd60e51b81526004016107aa906118b8565b80516107e2906009906020840190611442565b60006105c182610e40565b600980546108569061197b565b80601f01602080910402602001604051908101604052809291908181526020018280546108829061197b565b80156108cf5780601f106108a4576101008083540402835291602001916108cf565b820191906000526020600020905b8154815290600101906020018083116108b257829003601f168201915b505050505081565b60006001600160a01b038216610900576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109505760405162461bcd60e51b81526004016107aa906118b8565b61095a6000611053565b565b6008546001600160a01b031633146109865760405162461bcd60e51b81526004016107aa906118b8565b600f805460ff19811660ff90911615179055565b6008546001600160a01b031633146109c45760405162461bcd60e51b81526004016107aa906118b8565b600a55565b6008546001600160a01b031633146109f35760405162461bcd60e51b81526004016107aa906118b8565b600d55565b6060600380546105d69061197b565b600a54600d54600090610a1b9060016118ed565b6001546000548591900360001901610a3391906118ed565b108015610a5c5750600c5433600090815260106020526040902054610a599085906118ed565b11155b90508015610a6957600091505b610a738284611919565b341015610abb5760405162461bcd60e51b815260206004820152601660248201527529b2b732103a34329032bc30b1ba1030b6b7bab73a1760511b60448201526064016107aa565b600e54610ac99060016118ed565b6001546000548591900360001901610ae191906118ed565b10610b195760405162461bcd60e51b815260206004820152600860248201526727379036b7b9329760c11b60448201526064016107aa565b600f5460ff16610b6b5760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e67206973206e6f74206c697665207965742e000000000000000060448201526064016107aa565b600b54610b799060016118ed565b8310610bbd5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016107aa565b8015610be8573360009081526010602052604081208054859290610be29084906118ed565b90915550505b61077b33846110a5565b6001600160a01b038216331415610c1c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c93848484610eb0565b6001600160a01b0383163b15610ccc57610caf848484846110bf565b610ccc576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610cdd82610e0b565b610d3e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107aa565b6009610d49836111b7565b604051602001610d5a9291906117ae565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610d9a5760405162461bcd60e51b81526004016107aa906118b8565b6001600160a01b038116610dff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107aa565b610e0881611053565b50565b600081600111158015610e1f575060005482105b80156105c1575050600090815260046020526040902054600160e01b161590565b60008180600111610e9757600054811015610e9757600081815260046020526040902054600160e01b8116610e95575b80610e8e575060001901600081815260046020526040902054610e70565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610ebb82610e40565b9050836001600160a01b0316816001600160a01b031614610eee5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610f0c5750610f0c8533610511565b80610f27575033610f1c84610659565b6001600160a01b0316145b905080610f4757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610f6e57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661100b57600183016000818152600460205260409020546110095760005481146110095760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107e28282604051806020016040528060008152506112d1565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906110f4903390899088908890600401611868565b602060405180830381600087803b15801561110e57600080fd5b505af192505050801561113e575060408051601f3d908101601f1916820190925261113b918101906116ec565b60015b611199573d80801561116c576040519150601f19603f3d011682016040523d82523d6000602084013e611171565b606091505b508051611191576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816111db5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561120557806111ef816119b6565b91506111fe9050600a83611905565b91506111df565b60008167ffffffffffffffff81111561122e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611258576020820181803683370190505b5090505b84156111af5761126d600183611938565b915061127a600a866119d1565b6112859060306118ed565b60f81b8183815181106112a857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506112ca600a86611905565b945061125c565b6000546001600160a01b0384166112fa57604051622e076360e81b815260040160405180910390fd5b826113185760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156113ed575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46113b660008784806001019550876110bf565b6113d3576040516368d2bf6b60e11b815260040160405180910390fd5b80821061136b5782600054146113e857600080fd5b611432565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106113ee575b506000908155610ccc9085838684565b82805461144e9061197b565b90600052602060002090601f01602090048101928261147057600085556114b6565b82601f1061148957805160ff19168380011785556114b6565b828001600101855582156114b6579182015b828111156114b657825182559160200191906001019061149b565b506114c29291506114c6565b5090565b5b808211156114c257600081556001016114c7565b600067ffffffffffffffff808411156114f6576114f6611a11565b604051601f8501601f19908116603f0116810190828211818310171561151e5761151e611a11565b8160405280935085815286868601111561153757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461156857600080fd5b919050565b60006020828403121561157e578081fd5b610e8e82611551565b60008060408385031215611599578081fd5b6115a283611551565b91506115b060208401611551565b90509250929050565b6000806000606084860312156115cd578081fd5b6115d684611551565b92506115e460208501611551565b9150604084013590509250925092565b60008060008060808587031215611609578081fd5b61161285611551565b935061162060208601611551565b925060408501359150606085013567ffffffffffffffff811115611642578182fd5b8501601f81018713611652578182fd5b611661878235602084016114db565b91505092959194509250565b6000806040838503121561167f578182fd5b61168883611551565b91506020830135801515811461169c578182fd5b809150509250929050565b600080604083850312156116b9578182fd5b6116c283611551565b946020939093013593505050565b6000602082840312156116e1578081fd5b8135610e8e81611a27565b6000602082840312156116fd578081fd5b8151610e8e81611a27565b600060208284031215611719578081fd5b813567ffffffffffffffff81111561172f578182fd5b8201601f8101841361173f578182fd5b6111af848235602084016114db565b60006020828403121561175f578081fd5b5035919050565b6000815180845261177e81602086016020860161194f565b601f01601f19169290920160200192915050565b600081516117a481856020860161194f565b9290920192915050565b600080845482600182811c9150808316806117ca57607f831692505b60208084108214156117ea57634e487b7160e01b87526022600452602487fd5b8180156117fe576001811461180f5761183b565b60ff1986168952848901965061183b565b60008b815260209020885b868110156118335781548b82015290850190830161181a565b505084890196505b50505050505061185f61184e8286611792565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061189b90830184611766565b9695505050505050565b602081526000610e8e6020830184611766565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611900576119006119e5565b500190565b600082611914576119146119fb565b500490565b6000816000190483118215151615611933576119336119e5565b500290565b60008282101561194a5761194a6119e5565b500390565b60005b8381101561196a578181015183820152602001611952565b83811115610ccc5750506000910152565b600181811c9082168061198f57607f821691505b602082108114156119b057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119ca576119ca6119e5565b5060010190565b6000826119e0576119e06119fb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e0857600080fdfea2646970667358221220563f1c53746787b3c7ca847f2ceaaea0ece36e99dc92dbf86eb5d5fbf4d1560964736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000000a

-----Decoded View---------------
Arg [0] : _preMint (uint256): 10

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a


Deployed Bytecode Sourcemap

44364:2338:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19027:615;;;;;;;;;;-1:-1:-1;19027:615:0;;;;;:::i;:::-;;:::i;:::-;;;6939:14:1;;6932:22;6914:41;;6902:2;6887:18;19027:615:0;;;;;;;;24040:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26108:204::-;;;;;;;;;;-1:-1:-1;26108:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6237:32:1;;;6219:51;;6207:2;6192:18;26108:204:0;6174:102:1;25568:474:0;;;;;;;;;;-1:-1:-1;25568:474:0;;;;;:::i;:::-;;:::i;:::-;;18081:315;;;;;;;;;;-1:-1:-1;46151:1:0;18347:12;18134:7;18331:13;:28;-1:-1:-1;;18331:46:0;18081:315;;;9905:25:1;;;9893:2;9878:18;18081:315:0;9860:76:1;26994:170:0;;;;;;;;;;-1:-1:-1;26994:170:0;;;;;:::i;:::-;;:::i;44660:31::-;;;;;;;;;;;;;;;;46559:140;;;;;;;;;;;;;:::i;27235:185::-;;;;;;;;;;-1:-1:-1;27235:185:0;;;;;:::i;:::-;;:::i;46168:88::-;;;;;;;;;;-1:-1:-1;46168:88:0;;;;;:::i;:::-;;:::i;23829:144::-;;;;;;;;;;-1:-1:-1;23829:144:0;;;;;:::i;:::-;;:::i;44455:80::-;;;;;;;;;;;;;:::i;19706:224::-;;;;;;;;;;-1:-1:-1;19706:224:0;;;;;:::i;:::-;;:::i;5137:103::-;;;;;;;;;;;;;:::i;46467:84::-;;;;;;;;;;;;;:::i;4486:87::-;;;;;;;;;;-1:-1:-1;4559:6:0;;-1:-1:-1;;;;;4559:6:0;4486:87;;46367:92;;;;;;;;;;-1:-1:-1;46367:92:0;;;;;:::i;:::-;;:::i;46264:95::-;;;;;;;;;;-1:-1:-1;46264:95:0;;;;;:::i;:::-;;:::i;24209:104::-;;;;;;;;;;;;;:::i;44542:34::-;;;;;;;;;;;;;;;;44957:676;;;;;;:::i;:::-;;:::i;26384:308::-;;;;;;;;;;-1:-1:-1;26384:308:0;;;;;:::i;:::-;;:::i;44618:35::-;;;;;;;;;;;;;;;;27491:396;;;;;;;;;;-1:-1:-1;27491:396:0;;;;;:::i;:::-;;:::i;45749:302::-;;;;;;;;;;-1:-1:-1;45749:302:0;;;;;:::i;:::-;;:::i;44736:31::-;;;;;;;;;;-1:-1:-1;44736:31:0;;;;;;;;44698;;;;;;;;;;;;;;;;26763:164;;;;;;;;;;-1:-1:-1;26763:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26884:25:0;;;26860:4;26884:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26763:164;5395:201;;;;;;;;;;-1:-1:-1;5395:201:0;;;;;:::i;:::-;;:::i;44583:28::-;;;;;;;;;;;;;;;;19027:615;19112:4;-1:-1:-1;;;;;;;;;19412:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;19489:25:0;;;19412:102;:179;;;-1:-1:-1;;;;;;;;;;19566:25:0;;;19412:179;19392:199;19027:615;-1:-1:-1;;19027:615:0:o;24040:100::-;24094:13;24127:5;24120:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24040:100;:::o;26108:204::-;26176:7;26201:16;26209:7;26201;:16::i;:::-;26196:64;;26226:34;;-1:-1:-1;;;26226:34:0;;;;;;;;;;;26196:64;-1:-1:-1;26280:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26280:24:0;;26108:204::o;25568:474::-;25641:13;25673:27;25692:7;25673:18;:27::i;:::-;25641:61;;25723:5;-1:-1:-1;;;;;25717:11:0;:2;-1:-1:-1;;;;;25717:11:0;;25713:48;;;25737:24;;-1:-1:-1;;;25737:24:0;;;;;;;;;;;25713:48;42211:10;-1:-1:-1;;;;;25778:28:0;;;25774:175;;25826:44;25843:5;42211:10;26763:164;:::i;25826:44::-;25821:128;;25898:35;;-1:-1:-1;;;25898:35:0;;;;;;;;;;;25821:128;25961:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;25961:29:0;-1:-1:-1;;;;;25961:29:0;;;;;;;;;26006:28;;25961:24;;26006:28;;;;;;;25568:474;;;:::o;26994:170::-;27128:28;27138:4;27144:2;27148:7;27128:9;:28::i;:::-;26994:170;;;:::o;46559:140::-;4559:6;;-1:-1:-1;;;;;4559:6:0;42211:10;4706:23;4698:68;;;;-1:-1:-1;;;4698:68:0;;;;;;;:::i;:::-;;;;;;;;;46654:37:::1;::::0;46622:21:::1;::::0;46662:10:::1;::::0;46654:37;::::1;;;::::0;46622:21;;46607:12:::1;46654:37:::0;46607:12;46654:37;46622:21;46662:10;46654:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;4777:1;46559:140::o:0;27235:185::-;27373:39;27390:4;27396:2;27400:7;27373:39;;;;;;;;;;;;:16;:39::i;46168:88::-;4559:6;;-1:-1:-1;;;;;4559:6:0;42211:10;4706:23;4698:68;;;;-1:-1:-1;;;4698:68:0;;;;;;;:::i;:::-;46235:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;23829:144::-:0;23893:7;23936:27;23955:7;23936:18;:27::i;44455:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19706:224::-;19770:7;-1:-1:-1;;;;;19794:19:0;;19790:60;;19822:28;;-1:-1:-1;;;19822:28:0;;;;;;;;;;;19790:60;-1:-1:-1;;;;;;19868:25:0;;;;;:18;:25;;;;;;15045:13;19868:54;;19706:224::o;5137:103::-;4559:6;;-1:-1:-1;;;;;4559:6:0;42211:10;4706:23;4698:68;;;;-1:-1:-1;;;4698:68:0;;;;;;;:::i;:::-;5202:30:::1;5229:1;5202:18;:30::i;:::-;5137:103::o:0;46467:84::-;4559:6;;-1:-1:-1;;;;;4559:6:0;42211:10;4706:23;4698:68;;;;-1:-1:-1;;;4698:68:0;;;;;;;:::i;:::-;46532:11:::1;::::0;;-1:-1:-1;;46517:26:0;::::1;46532:11;::::0;;::::1;46531:12;46517:26;::::0;;46467:84::o;46367:92::-;4559:6;;-1:-1:-1;;;;;4559:6:0;42211:10;4706:23;4698:68;;;;-1:-1:-1;;;4698:68:0;;;;;;;:::i;:::-;46434:5:::1;:17:::0;46367:92::o;46264:95::-;4559:6;;-1:-1:-1;;;;;4559:6:0;42211:10;4706:23;4698:68;;;;-1:-1:-1;;;4698:68:0;;;;;;;:::i;:::-;46333:9:::1;:18:::0;46264:95::o;24209:104::-;24265:13;24298:7;24291:14;;;;;:::i;44957:676::-;45029:5;;45085:9;;45014:12;;45085:13;;45097:1;45085:13;:::i;:::-;46151:1;18347:12;18134:7;18331:13;45077:5;;18331:28;;-1:-1:-1;;18331:46:0;45061:21;;;;:::i;:::-;:37;45060:111;;;;-1:-1:-1;45154:16:0;;45131:10;45113:29;;;;:17;:29;;;;;;:37;;45145:5;;45113:37;:::i;:::-;:57;;45060:111;45045:127;;45189:6;45185:47;;;45219:1;45212:8;;45185:47;45265:12;45273:4;45265:5;:12;:::i;:::-;45252:9;:25;;45244:60;;;;-1:-1:-1;;;45244:60:0;;8909:2:1;45244:60:0;;;8891:21:1;8948:2;8928:18;;;8921:30;-1:-1:-1;;;8967:18:1;;;8960:52;9029:18;;45244:60:0;8881:172:1;45244:60:0;45347:9;;:13;;45359:1;45347:13;:::i;:::-;46151:1;18347:12;18134:7;18331:13;45339:5;;18331:28;;-1:-1:-1;;18331:46:0;45323:21;;;;:::i;:::-;:37;45315:58;;;;-1:-1:-1;;;45315:58:0;;7799:2:1;45315:58:0;;;7781:21:1;7838:1;7818:18;;;7811:29;-1:-1:-1;;;7856:18:1;;;7849:38;7904:18;;45315:58:0;7771:157:1;45315:58:0;45392:11;;;;45384:48;;;;-1:-1:-1;;;45384:48:0;;9260:2:1;45384:48:0;;;9242:21:1;9299:2;9279:18;;;9272:30;9338:26;9318:18;;;9311:54;9382:18;;45384:48:0;9232:174:1;45384:48:0;45459:8;;:12;;45470:1;45459:12;:::i;:::-;45451:5;:20;45443:52;;;;-1:-1:-1;;;45443:52:0;;9613:2:1;45443:52:0;;;9595:21:1;9652:2;9632:18;;;9625:30;-1:-1:-1;;;9671:18:1;;;9664:49;9730:18;;45443:52:0;9585:169:1;45443:52:0;45512:6;45508:77;;;45553:10;45535:29;;;;:17;:29;;;;;:38;;45568:5;;45535:29;:38;;45568:5;;45535:38;:::i;:::-;;;;-1:-1:-1;;45508:77:0;45597:28;45607:10;45619:5;45597:9;:28::i;26384:308::-;-1:-1:-1;;;;;26483:31:0;;42211:10;26483:31;26479:61;;;26523:17;;-1:-1:-1;;;26523:17:0;;;;;;;;;;;26479:61;42211:10;26553:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26553:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26553:60:0;;;;;;;;;;26629:55;;6914:41:1;;;26553:49:0;;42211:10;26629:55;;6887:18:1;26629:55:0;;;;;;;26384:308;;:::o;27491:396::-;27658:28;27668:4;27674:2;27678:7;27658:9;:28::i;:::-;-1:-1:-1;;;;;27701:14:0;;;:19;27697:183;;27740:56;27771:4;27777:2;27781:7;27790:5;27740:30;:56::i;:::-;27735:145;;27824:40;;-1:-1:-1;;;27824:40:0;;;;;;;;;;;27735:145;27491:396;;;;:::o;45749:302::-;45823:13;45871:17;45879:8;45871:7;:17::i;:::-;45849:111;;;;-1:-1:-1;;;45849:111:0;;8135:2:1;45849:111:0;;;8117:21:1;8174:2;8154:18;;;8147:30;8213:34;8193:18;;;8186:62;-1:-1:-1;;;8264:18:1;;;8257:42;8316:19;;45849:111:0;8107:234:1;45849:111:0;46004:7;46013:19;:8;:17;:19::i;:::-;45987:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45973:70;;45749:302;;;:::o;5395:201::-;4559:6;;-1:-1:-1;;;;;4559:6:0;42211:10;4706:23;4698:68;;;;-1:-1:-1;;;4698:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5484:22:0;::::1;5476:73;;;::::0;-1:-1:-1;;;5476:73:0;;7392:2:1;5476:73:0::1;::::0;::::1;7374:21:1::0;7431:2;7411:18;;;7404:30;7470:34;7450:18;;;7443:62;-1:-1:-1;;;7521:18:1;;;7514:36;7567:19;;5476:73:0::1;7364:228:1::0;5476:73:0::1;5560:28;5579:8;5560:18;:28::i;:::-;5395:201:::0;:::o;28142:273::-;28199:4;28255:7;46151:1;28236:26;;:66;;;;;28289:13;;28279:7;:23;28236:66;:152;;;;-1:-1:-1;;28340:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;28340:43:0;:48;;28142:273::o;21344:1129::-;21411:7;21446;;46151:1;21495:23;21491:915;;21548:13;;21541:4;:20;21537:869;;;21586:14;21603:23;;;:17;:23;;;;;;-1:-1:-1;;;21692:23:0;;21688:699;;22211:113;22218:11;22211:113;;-1:-1:-1;;;22289:6:0;22271:25;;;;:17;:25;;;;;;22211:113;;;22357:6;21344:1129;-1:-1:-1;;;21344:1129:0:o;21688:699::-;21537:869;;22434:31;;-1:-1:-1;;;22434:31:0;;;;;;;;;;;33381:2515;33496:27;33526;33545:7;33526:18;:27::i;:::-;33496:57;;33611:4;-1:-1:-1;;;;;33570:45:0;33586:19;-1:-1:-1;;;;;33570:45:0;;33566:86;;33624:28;;-1:-1:-1;;;33624:28:0;;;;;;;;;;;33566:86;33665:22;42211:10;-1:-1:-1;;;;;33691:27:0;;;;:87;;-1:-1:-1;33735:43:0;33752:4;42211:10;26763:164;:::i;33735:43::-;33691:147;;;-1:-1:-1;42211:10:0;33795:20;33807:7;33795:11;:20::i;:::-;-1:-1:-1;;;;;33795:43:0;;33691:147;33665:174;;33857:17;33852:66;;33883:35;;-1:-1:-1;;;33883:35:0;;;;;;;;;;;33852:66;-1:-1:-1;;;;;33933:16:0;;33929:52;;33958:23;;-1:-1:-1;;;33958:23:0;;;;;;;;;;;33929:52;34110:24;;;;:15;:24;;;;;;;;34103:31;;-1:-1:-1;;;;;;34103:31:0;;;-1:-1:-1;;;;;34502:24:0;;;;;:18;:24;;;;;34500:26;;-1:-1:-1;;34500:26:0;;;34571:22;;;;;;;34569:24;;-1:-1:-1;34569:24:0;;;34864:26;;;:17;:26;;;;;-1:-1:-1;;;34952:15:0;15699:3;34952:41;34910:84;;:128;;34864:174;;;35158:46;;35154:626;;35262:1;35252:11;;35230:19;35385:30;;;:17;:30;;;;;;35381:384;;35523:13;;35508:11;:28;35504:242;;35670:30;;;;:17;:30;;;;;:52;;;35504:242;35154:626;;35827:7;35823:2;-1:-1:-1;;;;;35808:27:0;35817:4;-1:-1:-1;;;;;35808:27:0;;;;;;;;;;;33381:2515;;;;;:::o;5756:191::-;5849:6;;;-1:-1:-1;;;;;5866:17:0;;;-1:-1:-1;;;;;;5866:17:0;;;;;;;5899:40;;5849:6;;;5866:17;5849:6;;5899:40;;5830:16;;5899:40;5756:191;;:::o;28499:104::-;28568:27;28578:2;28582:8;28568:27;;;;;;;;;;;;:9;:27::i;39593:716::-;39777:88;;-1:-1:-1;;;39777:88:0;;39756:4;;-1:-1:-1;;;;;39777:45:0;;;;;:88;;42211:10;;39844:4;;39850:7;;39859:5;;39777:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39777:88:0;;;;;;;;-1:-1:-1;;39777:88:0;;;;;;;;;;;;:::i;:::-;;;39773:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40060:13:0;;40056:235;;40106:40;;-1:-1:-1;;;40106:40:0;;;;;;;;;;;40056:235;40249:6;40243:13;40234:6;40230:2;40226:15;40219:38;39773:529;-1:-1:-1;;;;;;39936:64:0;-1:-1:-1;;;39936:64:0;;-1:-1:-1;39773:529:0;39593:716;;;;;;:::o;464:723::-;520:13;741:10;737:53;;-1:-1:-1;;768:10:0;;;;;;;;;;;;-1:-1:-1;;;768:10:0;;;;;464:723::o;737:53::-;815:5;800:12;856:78;863:9;;856:78;;889:8;;;;:::i;:::-;;-1:-1:-1;912:10:0;;-1:-1:-1;920:2:0;912:10;;:::i;:::-;;;856:78;;;944:19;976:6;966:17;;;;;;-1:-1:-1;;;966:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;966:17:0;;944:39;;994:154;1001:10;;994:154;;1028:11;1038:1;1028:11;;:::i;:::-;;-1:-1:-1;1097:10:0;1105:2;1097:5;:10;:::i;:::-;1084:24;;:2;:24;:::i;:::-;1071:39;;1054:6;1061;1054:14;;;;;;-1:-1:-1;;;1054:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;1054:56:0;;;;;;;;-1:-1:-1;1125:11:0;1134:2;1125:11;;:::i;:::-;;;994:154;;28976:2236;29099:20;29122:13;-1:-1:-1;;;;;29150:16:0;;29146:48;;29175:19;;-1:-1:-1;;;29175:19:0;;;;;;;;;;;29146:48;29209:13;29205:44;;29231:18;;-1:-1:-1;;;29231:18:0;;;;;;;;;;;29205:44;-1:-1:-1;;;;;29798:22:0;;;;;;:18;:22;;;;15182:2;29798:22;;;:70;;29836:31;29824:44;;29798:70;;;30111:31;;;:17;:31;;;;;30204:15;15699:3;30204:41;30162:84;;-1:-1:-1;30282:13:0;;15962:3;30267:56;30162:162;30111:213;;:31;;30405:23;;;;30449:14;:19;30445:635;;30489:313;30520:38;;30545:12;;-1:-1:-1;;;;;30520:38:0;;;30537:1;;30520:38;;30537:1;;30520:38;30586:69;30625:1;30629:2;30633:14;;;;;;30649:5;30586:30;:69::i;:::-;30581:174;;30691:40;;-1:-1:-1;;;30691:40:0;;;;;;;;;;;30581:174;30797:3;30782:12;:18;30489:313;;30883:12;30866:13;;:29;30862:43;;30897:8;;;30862:43;30445:635;;;30946:119;30977:40;;31002:14;;;;;-1:-1:-1;;;;;30977:40:0;;;30994:1;;30977:40;;30994:1;;30977:40;31060:3;31045:12;:18;30946:119;;30445:635;-1:-1:-1;31094:13:0;:28;;;31144:60;;31177:2;31181:12;31195:8;31144:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;3582:6;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;4057:6;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:1;;4068:120;-1:-1:-1;4068:120:1:o;4193:257::-;4234:3;4272:5;4266:12;4299:6;4294:3;4287:19;4315:63;4371:6;4364:4;4359:3;4355:14;4348:4;4341:5;4337:16;4315:63;:::i;:::-;4432:2;4411:15;-1:-1:-1;;4407:29:1;4398:39;;;;4439:4;4394:50;;4242:208;-1:-1:-1;;4242:208:1:o;4455:185::-;4497:3;4535:5;4529:12;4550:52;4595:6;4590:3;4583:4;4576:5;4572:16;4550:52;:::i;:::-;4618:16;;;;;4505:135;-1:-1:-1;;4505:135:1:o;4763:1305::-;5040:3;5069;5104:6;5098:13;5134:3;5156:1;5184:9;5180:2;5176:18;5166:28;;5244:2;5233:9;5229:18;5266;5256:2;;5310:4;5302:6;5298:17;5288:27;;5256:2;5336;5384;5376:6;5373:14;5353:18;5350:38;5347:2;;;-1:-1:-1;;;5411:33:1;;5467:4;5464:1;5457:15;5497:4;5418:3;5485:17;5347:2;5528:18;5555:104;;;;5673:1;5668:322;;;;5521:469;;5555:104;-1:-1:-1;;5588:24:1;;5576:37;;5633:16;;;;-1:-1:-1;5555:104:1;;5668:322;9988:4;10007:17;;;10057:4;10041:21;;5763:3;5779:165;5793:6;5790:1;5787:13;5779:165;;;5871:14;;5858:11;;;5851:35;5914:16;;;;5808:10;;5779:165;;;5783:3;;5973:6;5968:3;5964:16;5957:23;;5521:469;;;;;;;6006:56;6031:30;6057:3;6049:6;6031:30;:::i;:::-;-1:-1:-1;;;4705:20:1;;4750:1;4741:11;;4695:63;6006:56;5999:63;5048:1020;-1:-1:-1;;;;;5048:1020:1:o;6281:488::-;-1:-1:-1;;;;;6550:15:1;;;6532:34;;6602:15;;6597:2;6582:18;;6575:43;6649:2;6634:18;;6627:34;;;6697:3;6692:2;6677:18;;6670:31;;;6475:4;;6718:45;;6743:19;;6735:6;6718:45;:::i;:::-;6710:53;6484:285;-1:-1:-1;;;;;;6484:285:1:o;6966:219::-;7115:2;7104:9;7097:21;7078:4;7135:44;7175:2;7164:9;7160:18;7152:6;7135:44;:::i;8346:356::-;8548:2;8530:21;;;8567:18;;;8560:30;8626:34;8621:2;8606:18;;8599:62;8693:2;8678:18;;8520:182::o;10073:128::-;10113:3;10144:1;10140:6;10137:1;10134:13;10131:2;;;10150:18;;:::i;:::-;-1:-1:-1;10186:9:1;;10121:80::o;10206:120::-;10246:1;10272;10262:2;;10277:18;;:::i;:::-;-1:-1:-1;10311:9:1;;10252:74::o;10331:168::-;10371:7;10437:1;10433;10429:6;10425:14;10422:1;10419:21;10414:1;10407:9;10400:17;10396:45;10393:2;;;10444:18;;:::i;:::-;-1:-1:-1;10484:9:1;;10383:116::o;10504:125::-;10544:4;10572:1;10569;10566:8;10563:2;;;10577:18;;:::i;:::-;-1:-1:-1;10614:9:1;;10553:76::o;10634:258::-;10706:1;10716:113;10730:6;10727:1;10724:13;10716:113;;;10806:11;;;10800:18;10787:11;;;10780:39;10752:2;10745:10;10716:113;;;10847:6;10844:1;10841:13;10838:2;;;-1:-1:-1;;10882:1:1;10864:16;;10857:27;10687:205::o;10897:380::-;10976:1;10972:12;;;;11019;;;11040:2;;11094:4;11086:6;11082:17;11072:27;;11040:2;11147;11139:6;11136:14;11116:18;11113:38;11110:2;;;11193:10;11188:3;11184:20;11181:1;11174:31;11228:4;11225:1;11218:15;11256:4;11253:1;11246:15;11110:2;;10952:325;;;:::o;11282:135::-;11321:3;-1:-1:-1;;11342:17:1;;11339:2;;;11362:18;;:::i;:::-;-1:-1:-1;11409:1:1;11398:13;;11329:88::o;11422:112::-;11454:1;11480;11470:2;;11485:18;;:::i;:::-;-1:-1:-1;11519:9:1;;11460:74::o;11539:127::-;11600:10;11595:3;11591:20;11588:1;11581:31;11631:4;11628:1;11621:15;11655:4;11652:1;11645:15;11671:127;11732:10;11727:3;11723:20;11720:1;11713:31;11763:4;11760:1;11753:15;11787:4;11784:1;11777:15;11803:127;11864:10;11859:3;11855:20;11852:1;11845:31;11895:4;11892:1;11885:15;11919:4;11916:1;11909:15;11935:131;-1:-1:-1;;;;;;12009:32:1;;11999:43;;11989:2;;12056:1;12053;12046:12

Swarm Source

ipfs://563f1c53746787b3c7ca847f2ceaaea0ece36e99dc92dbf86eb5d5fbf4d15609
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.