ETH Price: $3,097.55 (-0.18%)
Gas: 2 Gwei

Token

Bored Lion Yatch Club (BLYC)
 

Overview

Max Total Supply

1,349 BLYC

Holders

515

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BLYC
0xaf03aaf662b1e0c07e90894453b3d24a34393ee8
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:
BoredLionYatchClub

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/*
 *                    .:\\|||||||//:.
 *                   \\.-.\|||||/.-.//
 *                   ==(   \\|||//   )==
 *                  ==/\           /\==
 *                  =//| __     __ |\\=
 *                   '//| \O\   /O/ |\\`
 *                   //|\  "   "  /|\\
 * ________________  /|||\_`-v-'_/|||\   _______________
 * \_________      `-./|||\._|_./|||\ .-'     _________/
 *    \________       |/|||\___/|||\|/      ________/
 *       \_______     | /|||||||||\ |     _______/
 *          \______   |  //|||||\\  |   ______/
 *                 `-.|   |/|||\|   |.-'
 *          .ww.     _|   |     |   |_
 *        .\WWW=    / |   |     |   | \
 *        \WWW=    |  |   |     |   |  |
 *        \WW=     |  |   |     |   |  |
 *        ( (      |  |   \     /   |  |
 *         \ \___.-'\  \   \   /   /  /
 *          `-.__.-(...(...)---(...)...)
 * 
 */
// 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 (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.1.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 bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

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

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

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

    // The 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`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

    // Mapping from token ID to approved address.
    mapping(uint256 => 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 auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

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

    /**
     * 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;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

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

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

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

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        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` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

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

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

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

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

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

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

    /**
     * @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 Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

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

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

    /**
     * @dev 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: BoredLionYatchClub.sol



pragma solidity ^0.8.4;



contract BoredLionYatchClub is ERC721A, Ownable {
  uint256 constant EXTRA_MINT_PRICE = 0.001 ether;
  uint256 constant MAX_SUPPLY_PLUS_ONE = 7777;
  uint256 constant MAX_PER_TRANSACTION_PLUS_ONE = 10;

  string tokenBaseUri = "ipfs://bafybeidwh3lpt6thzs3qrwzqr45fqdor6oupeuzcg4zyfjixy62ajilny4/";

  bool public paused = true;

  mapping(address => uint256) private _freeMintedCount;

  constructor() ERC721A("Bored Lion Yatch Club ", "BLYC") {}

  function mint(uint256 _quantity) external payable {
    require(!paused, "Minting paused");

    uint256 _totalSupply = totalSupply();

    require(_totalSupply + _quantity < MAX_SUPPLY_PLUS_ONE, "Exceeds supply");
    require(_quantity < MAX_PER_TRANSACTION_PLUS_ONE, "Exceeds max per tx");

    uint256 payForCount = _quantity;
    uint256 freeMintCount = _freeMintedCount[msg.sender];

    if (freeMintCount < 2) {
      if (_quantity > 2) {
        payForCount = _quantity - 2;
      } else {
        payForCount = 0;
      }

      _freeMintedCount[msg.sender] = 2;
    }

    require(msg.value >= payForCount * EXTRA_MINT_PRICE, "ETH sent not correct");

    _mint(msg.sender, _quantity);
  }

  function freeMintedCount(address owner) external view returns (uint256) {
    return _freeMintedCount[owner];
  }

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

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

  function setBaseURI(string calldata _newBaseUri) external onlyOwner {
    tokenBaseUri = _newBaseUri;
  }

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

  function collectReserves() external onlyOwner {
    _mint(msg.sender, 100);
  }

  function withdraw() external onlyOwner {
    require(
      payable(owner()).send(address(this).balance),
      "Withdraw unsuccessful"
    );
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"collectReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"freeMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"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"}]

608060405260405180608001604052806043815260200162002c1160439139600990805190602001906200003592919062000212565b506001600a60006101000a81548160ff0219169083151502179055503480156200005e57600080fd5b506040518060400160405280601681526020017f426f726564204c696f6e20596174636820436c756220000000000000000000008152506040518060400160405280600481526020017f424c5943000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000e392919062000212565b508060039080519060200190620000fc92919062000212565b506200010d6200013b60201b60201c565b600081905550505062000135620001296200014460201b60201c565b6200014c60201b60201c565b62000327565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022090620002f1565b90600052602060002090601f01602090048101928262000244576000855562000290565b82601f106200025f57805160ff191683800117855562000290565b8280016001018555821562000290579182015b828111156200028f57825182559160200191906001019062000272565b5b5090506200029f9190620002a3565b5090565b5b80821115620002be576000816000905550600101620002a4565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200030a57607f821691505b60208210811415620003215762000320620002c2565b5b50919050565b6128da80620003376000396000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063a0712d681161006f578063a0712d6814610458578063a22cb46514610474578063b88d4fde1461049d578063c87b56dd146104c6578063e985e9c514610503578063f2fde38b146105405761014b565b806370a082311461035a578063715018a6146103975780637ba5e621146103ae5780638da5cb5b146103c557806395d89b41146103f0578063981332351461041b5761014b565b806323b872dd1161010857806323b872dd146102605780633ccfd60b1461028957806342842e0e146102a057806355f804b3146102c95780635c975abb146102f25780636352211e1461031d5761014b565b806301ffc9a714610150578063029877b61461018d57806306fdde03146101a4578063081812fc146101cf578063095ea7b31461020c57806318160ddd14610235575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190611ccf565b610569565b6040516101849190611d17565b60405180910390f35b34801561019957600080fd5b506101a26105fb565b005b3480156101b057600080fd5b506101b9610610565b6040516101c69190611dcb565b60405180910390f35b3480156101db57600080fd5b506101f660048036038101906101f19190611e23565b6106a2565b6040516102039190611e91565b60405180910390f35b34801561021857600080fd5b50610233600480360381019061022e9190611ed8565b61071e565b005b34801561024157600080fd5b5061024a61085f565b6040516102579190611f27565b60405180910390f35b34801561026c57600080fd5b5061028760048036038101906102829190611f42565b610876565b005b34801561029557600080fd5b5061029e610b9b565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190611f42565b610c20565b005b3480156102d557600080fd5b506102f060048036038101906102eb9190611ffa565b610c40565b005b3480156102fe57600080fd5b50610307610c5e565b6040516103149190611d17565b60405180910390f35b34801561032957600080fd5b50610344600480360381019061033f9190611e23565b610c71565b6040516103519190611e91565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190612047565b610c83565b60405161038e9190611f27565b60405180910390f35b3480156103a357600080fd5b506103ac610d3c565b005b3480156103ba57600080fd5b506103c3610d50565b005b3480156103d157600080fd5b506103da610d84565b6040516103e79190611e91565b60405180910390f35b3480156103fc57600080fd5b50610405610dae565b6040516104129190611dcb565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190612047565b610e40565b60405161044f9190611f27565b60405180910390f35b610472600480360381019061046d9190611e23565b610e89565b005b34801561048057600080fd5b5061049b600480360381019061049691906120a0565b611096565b005b3480156104a957600080fd5b506104c460048036038101906104bf9190612210565b61120e565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190611e23565b611281565b6040516104fa9190611dcb565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190612293565b611320565b6040516105379190611d17565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190612047565b6113b4565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105c457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105f45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610603611438565b61060e3360646114b6565b565b60606002805461061f90612302565b80601f016020809104026020016040519081016040528092919081815260200182805461064b90612302565b80156106985780601f1061066d57610100808354040283529160200191610698565b820191906000526020600020905b81548152906001019060200180831161067b57829003601f168201915b5050505050905090565b60006106ad8261168a565b6106e3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061072982610c71565b90508073ffffffffffffffffffffffffffffffffffffffff1661074a6116e9565b73ffffffffffffffffffffffffffffffffffffffff16146107ad57610776816107716116e9565b611320565b6107ac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006108696116f1565b6001546000540303905090565b6000610881826116fa565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108e8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108f4846117c8565b9150915061090a81876109056116e9565b6117ea565b6109565761091f8661091a6116e9565b611320565b610955576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156109bd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109ca868686600161182e565b80156109d557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610aa385610a7f888887611834565b7c02000000000000000000000000000000000000000000000000000000001761185c565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610b2b576000600185019050600060046000838152602001908152602001600020541415610b29576000548114610b28578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b938686866001611887565b505050505050565b610ba3611438565b610bab610d84565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1590612380565b60405180910390fd5b565b610c3b8383836040518060200160405280600081525061120e565b505050565b610c48611438565b818160099190610c59929190611bc0565b505050565b600a60009054906101000a900460ff1681565b6000610c7c826116fa565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ceb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d44611438565b610d4e600061188d565b565b610d58611438565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610dbd90612302565b80601f0160208091040260200160405190810160405280929190818152602001828054610de990612302565b8015610e365780601f10610e0b57610100808354040283529160200191610e36565b820191906000526020600020905b815481529060010190602001808311610e1957829003601f168201915b5050505050905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a60009054906101000a900460ff1615610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed0906123ec565b60405180910390fd5b6000610ee361085f565b9050611e618282610ef4919061243b565b10610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b906124dd565b60405180910390fd5b600a8210610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90612549565b60405180910390fd5b60008290506000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506002811015611031576002841115610fe657600284610fdf9190612569565b9150610feb565b600091505b6002600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b66038d7ea4c6800082611044919061259d565b341015611086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107d90612643565b60405180910390fd5b61109033856114b6565b50505050565b61109e6116e9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611103576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111106116e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111bd6116e9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112029190611d17565b60405180910390a35050565b611219848484610876565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461127b5761124484848484611953565b61127a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061128c8261168a565b6112c2576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112cc611ab3565b90506000815114156112ed5760405180602001604052806000815250611318565b806112f784611b45565b60405160200161130892919061269f565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113bc611438565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561142c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142390612735565b60405180910390fd5b6114358161188d565b50565b611440611b9f565b73ffffffffffffffffffffffffffffffffffffffff1661145e610d84565b73ffffffffffffffffffffffffffffffffffffffff16146114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab906127a1565b60405180910390fd5b565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611523576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561155e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61156b600084838561182e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506115e2836115d36000866000611834565b6115dc85611ba7565b1761185c565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611606578060008190555050506116856000848385611887565b505050565b6000816116956116f1565b111580156116a4575060005482105b80156116e2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806117096116f1565b11611791576000548110156117905760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561178e575b6000811415611784576004600083600190039350838152602001908152602001600020549050611759565b80925050506117c3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861184b868684611bb7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119796116e9565b8786866040518563ffffffff1660e01b815260040161199b9493929190612816565b602060405180830381600087803b1580156119b557600080fd5b505af19250505080156119e657506040513d601f19601f820116820180604052508101906119e39190612877565b60015b611a60573d8060008114611a16576040519150601f19603f3d011682016040523d82523d6000602084013e611a1b565b606091505b50600081511415611a58576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611ac290612302565b80601f0160208091040260200160405190810160405280929190818152602001828054611aee90612302565b8015611b3b5780601f10611b1057610100808354040283529160200191611b3b565b820191906000526020600020905b815481529060010190602001808311611b1e57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611b8b57600183039250600a81066030018353600a81049050611b6b565b508181036020830392508083525050919050565b600033905090565b60006001821460e11b9050919050565b60009392505050565b828054611bcc90612302565b90600052602060002090601f016020900481019282611bee5760008555611c35565b82601f10611c0757803560ff1916838001178555611c35565b82800160010185558215611c35579182015b82811115611c34578235825591602001919060010190611c19565b5b509050611c429190611c46565b5090565b5b80821115611c5f576000816000905550600101611c47565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611cac81611c77565b8114611cb757600080fd5b50565b600081359050611cc981611ca3565b92915050565b600060208284031215611ce557611ce4611c6d565b5b6000611cf384828501611cba565b91505092915050565b60008115159050919050565b611d1181611cfc565b82525050565b6000602082019050611d2c6000830184611d08565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d6c578082015181840152602081019050611d51565b83811115611d7b576000848401525b50505050565b6000601f19601f8301169050919050565b6000611d9d82611d32565b611da78185611d3d565b9350611db7818560208601611d4e565b611dc081611d81565b840191505092915050565b60006020820190508181036000830152611de58184611d92565b905092915050565b6000819050919050565b611e0081611ded565b8114611e0b57600080fd5b50565b600081359050611e1d81611df7565b92915050565b600060208284031215611e3957611e38611c6d565b5b6000611e4784828501611e0e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e7b82611e50565b9050919050565b611e8b81611e70565b82525050565b6000602082019050611ea66000830184611e82565b92915050565b611eb581611e70565b8114611ec057600080fd5b50565b600081359050611ed281611eac565b92915050565b60008060408385031215611eef57611eee611c6d565b5b6000611efd85828601611ec3565b9250506020611f0e85828601611e0e565b9150509250929050565b611f2181611ded565b82525050565b6000602082019050611f3c6000830184611f18565b92915050565b600080600060608486031215611f5b57611f5a611c6d565b5b6000611f6986828701611ec3565b9350506020611f7a86828701611ec3565b9250506040611f8b86828701611e0e565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112611fba57611fb9611f95565b5b8235905067ffffffffffffffff811115611fd757611fd6611f9a565b5b602083019150836001820283011115611ff357611ff2611f9f565b5b9250929050565b6000806020838503121561201157612010611c6d565b5b600083013567ffffffffffffffff81111561202f5761202e611c72565b5b61203b85828601611fa4565b92509250509250929050565b60006020828403121561205d5761205c611c6d565b5b600061206b84828501611ec3565b91505092915050565b61207d81611cfc565b811461208857600080fd5b50565b60008135905061209a81612074565b92915050565b600080604083850312156120b7576120b6611c6d565b5b60006120c585828601611ec3565b92505060206120d68582860161208b565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61211d82611d81565b810181811067ffffffffffffffff8211171561213c5761213b6120e5565b5b80604052505050565b600061214f611c63565b905061215b8282612114565b919050565b600067ffffffffffffffff82111561217b5761217a6120e5565b5b61218482611d81565b9050602081019050919050565b82818337600083830152505050565b60006121b36121ae84612160565b612145565b9050828152602081018484840111156121cf576121ce6120e0565b5b6121da848285612191565b509392505050565b600082601f8301126121f7576121f6611f95565b5b81356122078482602086016121a0565b91505092915050565b6000806000806080858703121561222a57612229611c6d565b5b600061223887828801611ec3565b945050602061224987828801611ec3565b935050604061225a87828801611e0e565b925050606085013567ffffffffffffffff81111561227b5761227a611c72565b5b612287878288016121e2565b91505092959194509250565b600080604083850312156122aa576122a9611c6d565b5b60006122b885828601611ec3565b92505060206122c985828601611ec3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061231a57607f821691505b6020821081141561232e5761232d6122d3565b5b50919050565b7f576974686472617720756e7375636365737366756c0000000000000000000000600082015250565b600061236a601583611d3d565b915061237582612334565b602082019050919050565b600060208201905081810360008301526123998161235d565b9050919050565b7f4d696e74696e6720706175736564000000000000000000000000000000000000600082015250565b60006123d6600e83611d3d565b91506123e1826123a0565b602082019050919050565b60006020820190508181036000830152612405816123c9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061244682611ded565b915061245183611ded565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156124865761248561240c565b5b828201905092915050565b7f4578636565647320737570706c79000000000000000000000000000000000000600082015250565b60006124c7600e83611d3d565b91506124d282612491565b602082019050919050565b600060208201905081810360008301526124f6816124ba565b9050919050565b7f45786365656473206d6178207065722074780000000000000000000000000000600082015250565b6000612533601283611d3d565b915061253e826124fd565b602082019050919050565b6000602082019050818103600083015261256281612526565b9050919050565b600061257482611ded565b915061257f83611ded565b9250828210156125925761259161240c565b5b828203905092915050565b60006125a882611ded565b91506125b383611ded565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125ec576125eb61240c565b5b828202905092915050565b7f4554482073656e74206e6f7420636f7272656374000000000000000000000000600082015250565b600061262d601483611d3d565b9150612638826125f7565b602082019050919050565b6000602082019050818103600083015261265c81612620565b9050919050565b600081905092915050565b600061267982611d32565b6126838185612663565b9350612693818560208601611d4e565b80840191505092915050565b60006126ab828561266e565b91506126b7828461266e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061271f602683611d3d565b915061272a826126c3565b604082019050919050565b6000602082019050818103600083015261274e81612712565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061278b602083611d3d565b915061279682612755565b602082019050919050565b600060208201905081810360008301526127ba8161277e565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006127e8826127c1565b6127f281856127cc565b9350612802818560208601611d4e565b61280b81611d81565b840191505092915050565b600060808201905061282b6000830187611e82565b6128386020830186611e82565b6128456040830185611f18565b818103606083015261285781846127dd565b905095945050505050565b60008151905061287181611ca3565b92915050565b60006020828403121561288d5761288c611c6d565b5b600061289b84828501612862565b9150509291505056fea264697066735822122063b582cac3546453133d58096bc52e89c1a619b04268befbafd83c292e9e363164736f6c63430008090033697066733a2f2f62616679626569647768336c70743674687a73337172777a717234356671646f72366f757065757a6367347a79666a6978793632616a696c6e79342f

Deployed Bytecode

0x60806040526004361061014b5760003560e01c806370a08231116100b6578063a0712d681161006f578063a0712d6814610458578063a22cb46514610474578063b88d4fde1461049d578063c87b56dd146104c6578063e985e9c514610503578063f2fde38b146105405761014b565b806370a082311461035a578063715018a6146103975780637ba5e621146103ae5780638da5cb5b146103c557806395d89b41146103f0578063981332351461041b5761014b565b806323b872dd1161010857806323b872dd146102605780633ccfd60b1461028957806342842e0e146102a057806355f804b3146102c95780635c975abb146102f25780636352211e1461031d5761014b565b806301ffc9a714610150578063029877b61461018d57806306fdde03146101a4578063081812fc146101cf578063095ea7b31461020c57806318160ddd14610235575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190611ccf565b610569565b6040516101849190611d17565b60405180910390f35b34801561019957600080fd5b506101a26105fb565b005b3480156101b057600080fd5b506101b9610610565b6040516101c69190611dcb565b60405180910390f35b3480156101db57600080fd5b506101f660048036038101906101f19190611e23565b6106a2565b6040516102039190611e91565b60405180910390f35b34801561021857600080fd5b50610233600480360381019061022e9190611ed8565b61071e565b005b34801561024157600080fd5b5061024a61085f565b6040516102579190611f27565b60405180910390f35b34801561026c57600080fd5b5061028760048036038101906102829190611f42565b610876565b005b34801561029557600080fd5b5061029e610b9b565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190611f42565b610c20565b005b3480156102d557600080fd5b506102f060048036038101906102eb9190611ffa565b610c40565b005b3480156102fe57600080fd5b50610307610c5e565b6040516103149190611d17565b60405180910390f35b34801561032957600080fd5b50610344600480360381019061033f9190611e23565b610c71565b6040516103519190611e91565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190612047565b610c83565b60405161038e9190611f27565b60405180910390f35b3480156103a357600080fd5b506103ac610d3c565b005b3480156103ba57600080fd5b506103c3610d50565b005b3480156103d157600080fd5b506103da610d84565b6040516103e79190611e91565b60405180910390f35b3480156103fc57600080fd5b50610405610dae565b6040516104129190611dcb565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190612047565b610e40565b60405161044f9190611f27565b60405180910390f35b610472600480360381019061046d9190611e23565b610e89565b005b34801561048057600080fd5b5061049b600480360381019061049691906120a0565b611096565b005b3480156104a957600080fd5b506104c460048036038101906104bf9190612210565b61120e565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190611e23565b611281565b6040516104fa9190611dcb565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190612293565b611320565b6040516105379190611d17565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190612047565b6113b4565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105c457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105f45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610603611438565b61060e3360646114b6565b565b60606002805461061f90612302565b80601f016020809104026020016040519081016040528092919081815260200182805461064b90612302565b80156106985780601f1061066d57610100808354040283529160200191610698565b820191906000526020600020905b81548152906001019060200180831161067b57829003601f168201915b5050505050905090565b60006106ad8261168a565b6106e3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061072982610c71565b90508073ffffffffffffffffffffffffffffffffffffffff1661074a6116e9565b73ffffffffffffffffffffffffffffffffffffffff16146107ad57610776816107716116e9565b611320565b6107ac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006108696116f1565b6001546000540303905090565b6000610881826116fa565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108e8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108f4846117c8565b9150915061090a81876109056116e9565b6117ea565b6109565761091f8661091a6116e9565b611320565b610955576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156109bd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109ca868686600161182e565b80156109d557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610aa385610a7f888887611834565b7c02000000000000000000000000000000000000000000000000000000001761185c565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610b2b576000600185019050600060046000838152602001908152602001600020541415610b29576000548114610b28578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b938686866001611887565b505050505050565b610ba3611438565b610bab610d84565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1590612380565b60405180910390fd5b565b610c3b8383836040518060200160405280600081525061120e565b505050565b610c48611438565b818160099190610c59929190611bc0565b505050565b600a60009054906101000a900460ff1681565b6000610c7c826116fa565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ceb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d44611438565b610d4e600061188d565b565b610d58611438565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610dbd90612302565b80601f0160208091040260200160405190810160405280929190818152602001828054610de990612302565b8015610e365780601f10610e0b57610100808354040283529160200191610e36565b820191906000526020600020905b815481529060010190602001808311610e1957829003601f168201915b5050505050905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a60009054906101000a900460ff1615610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed0906123ec565b60405180910390fd5b6000610ee361085f565b9050611e618282610ef4919061243b565b10610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b906124dd565b60405180910390fd5b600a8210610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90612549565b60405180910390fd5b60008290506000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506002811015611031576002841115610fe657600284610fdf9190612569565b9150610feb565b600091505b6002600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b66038d7ea4c6800082611044919061259d565b341015611086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107d90612643565b60405180910390fd5b61109033856114b6565b50505050565b61109e6116e9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611103576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111106116e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111bd6116e9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112029190611d17565b60405180910390a35050565b611219848484610876565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461127b5761124484848484611953565b61127a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061128c8261168a565b6112c2576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112cc611ab3565b90506000815114156112ed5760405180602001604052806000815250611318565b806112f784611b45565b60405160200161130892919061269f565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113bc611438565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561142c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142390612735565b60405180910390fd5b6114358161188d565b50565b611440611b9f565b73ffffffffffffffffffffffffffffffffffffffff1661145e610d84565b73ffffffffffffffffffffffffffffffffffffffff16146114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab906127a1565b60405180910390fd5b565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611523576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561155e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61156b600084838561182e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506115e2836115d36000866000611834565b6115dc85611ba7565b1761185c565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611606578060008190555050506116856000848385611887565b505050565b6000816116956116f1565b111580156116a4575060005482105b80156116e2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806117096116f1565b11611791576000548110156117905760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561178e575b6000811415611784576004600083600190039350838152602001908152602001600020549050611759565b80925050506117c3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861184b868684611bb7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119796116e9565b8786866040518563ffffffff1660e01b815260040161199b9493929190612816565b602060405180830381600087803b1580156119b557600080fd5b505af19250505080156119e657506040513d601f19601f820116820180604052508101906119e39190612877565b60015b611a60573d8060008114611a16576040519150601f19603f3d011682016040523d82523d6000602084013e611a1b565b606091505b50600081511415611a58576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611ac290612302565b80601f0160208091040260200160405190810160405280929190818152602001828054611aee90612302565b8015611b3b5780601f10611b1057610100808354040283529160200191611b3b565b820191906000526020600020905b815481529060010190602001808311611b1e57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611b8b57600183039250600a81066030018353600a81049050611b6b565b508181036020830392508083525050919050565b600033905090565b60006001821460e11b9050919050565b60009392505050565b828054611bcc90612302565b90600052602060002090601f016020900481019282611bee5760008555611c35565b82601f10611c0757803560ff1916838001178555611c35565b82800160010185558215611c35579182015b82811115611c34578235825591602001919060010190611c19565b5b509050611c429190611c46565b5090565b5b80821115611c5f576000816000905550600101611c47565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611cac81611c77565b8114611cb757600080fd5b50565b600081359050611cc981611ca3565b92915050565b600060208284031215611ce557611ce4611c6d565b5b6000611cf384828501611cba565b91505092915050565b60008115159050919050565b611d1181611cfc565b82525050565b6000602082019050611d2c6000830184611d08565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d6c578082015181840152602081019050611d51565b83811115611d7b576000848401525b50505050565b6000601f19601f8301169050919050565b6000611d9d82611d32565b611da78185611d3d565b9350611db7818560208601611d4e565b611dc081611d81565b840191505092915050565b60006020820190508181036000830152611de58184611d92565b905092915050565b6000819050919050565b611e0081611ded565b8114611e0b57600080fd5b50565b600081359050611e1d81611df7565b92915050565b600060208284031215611e3957611e38611c6d565b5b6000611e4784828501611e0e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e7b82611e50565b9050919050565b611e8b81611e70565b82525050565b6000602082019050611ea66000830184611e82565b92915050565b611eb581611e70565b8114611ec057600080fd5b50565b600081359050611ed281611eac565b92915050565b60008060408385031215611eef57611eee611c6d565b5b6000611efd85828601611ec3565b9250506020611f0e85828601611e0e565b9150509250929050565b611f2181611ded565b82525050565b6000602082019050611f3c6000830184611f18565b92915050565b600080600060608486031215611f5b57611f5a611c6d565b5b6000611f6986828701611ec3565b9350506020611f7a86828701611ec3565b9250506040611f8b86828701611e0e565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112611fba57611fb9611f95565b5b8235905067ffffffffffffffff811115611fd757611fd6611f9a565b5b602083019150836001820283011115611ff357611ff2611f9f565b5b9250929050565b6000806020838503121561201157612010611c6d565b5b600083013567ffffffffffffffff81111561202f5761202e611c72565b5b61203b85828601611fa4565b92509250509250929050565b60006020828403121561205d5761205c611c6d565b5b600061206b84828501611ec3565b91505092915050565b61207d81611cfc565b811461208857600080fd5b50565b60008135905061209a81612074565b92915050565b600080604083850312156120b7576120b6611c6d565b5b60006120c585828601611ec3565b92505060206120d68582860161208b565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61211d82611d81565b810181811067ffffffffffffffff8211171561213c5761213b6120e5565b5b80604052505050565b600061214f611c63565b905061215b8282612114565b919050565b600067ffffffffffffffff82111561217b5761217a6120e5565b5b61218482611d81565b9050602081019050919050565b82818337600083830152505050565b60006121b36121ae84612160565b612145565b9050828152602081018484840111156121cf576121ce6120e0565b5b6121da848285612191565b509392505050565b600082601f8301126121f7576121f6611f95565b5b81356122078482602086016121a0565b91505092915050565b6000806000806080858703121561222a57612229611c6d565b5b600061223887828801611ec3565b945050602061224987828801611ec3565b935050604061225a87828801611e0e565b925050606085013567ffffffffffffffff81111561227b5761227a611c72565b5b612287878288016121e2565b91505092959194509250565b600080604083850312156122aa576122a9611c6d565b5b60006122b885828601611ec3565b92505060206122c985828601611ec3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061231a57607f821691505b6020821081141561232e5761232d6122d3565b5b50919050565b7f576974686472617720756e7375636365737366756c0000000000000000000000600082015250565b600061236a601583611d3d565b915061237582612334565b602082019050919050565b600060208201905081810360008301526123998161235d565b9050919050565b7f4d696e74696e6720706175736564000000000000000000000000000000000000600082015250565b60006123d6600e83611d3d565b91506123e1826123a0565b602082019050919050565b60006020820190508181036000830152612405816123c9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061244682611ded565b915061245183611ded565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156124865761248561240c565b5b828201905092915050565b7f4578636565647320737570706c79000000000000000000000000000000000000600082015250565b60006124c7600e83611d3d565b91506124d282612491565b602082019050919050565b600060208201905081810360008301526124f6816124ba565b9050919050565b7f45786365656473206d6178207065722074780000000000000000000000000000600082015250565b6000612533601283611d3d565b915061253e826124fd565b602082019050919050565b6000602082019050818103600083015261256281612526565b9050919050565b600061257482611ded565b915061257f83611ded565b9250828210156125925761259161240c565b5b828203905092915050565b60006125a882611ded565b91506125b383611ded565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125ec576125eb61240c565b5b828202905092915050565b7f4554482073656e74206e6f7420636f7272656374000000000000000000000000600082015250565b600061262d601483611d3d565b9150612638826125f7565b602082019050919050565b6000602082019050818103600083015261265c81612620565b9050919050565b600081905092915050565b600061267982611d32565b6126838185612663565b9350612693818560208601611d4e565b80840191505092915050565b60006126ab828561266e565b91506126b7828461266e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061271f602683611d3d565b915061272a826126c3565b604082019050919050565b6000602082019050818103600083015261274e81612712565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061278b602083611d3d565b915061279682612755565b602082019050919050565b600060208201905081810360008301526127ba8161277e565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006127e8826127c1565b6127f281856127cc565b9350612802818560208601611d4e565b61280b81611d81565b840191505092915050565b600060808201905061282b6000830187611e82565b6128386020830186611e82565b6128456040830185611f18565b818103606083015261285781846127dd565b905095945050505050565b60008151905061287181611ca3565b92915050565b60006020828403121561288d5761288c611c6d565b5b600061289b84828501612862565b9150509291505056fea264697066735822122063b582cac3546453133d58096bc52e89c1a619b04268befbafd83c292e9e363164736f6c63430008090033

Deployed Bytecode Sourcemap

49587:1938:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19385:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51284:81;;;;;;;;;;;;;:::i;:::-;;25032:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26978:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26526:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18439:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36243:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51371:151;;;;;;;;;;;;;:::i;:::-;;27868:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51097:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49895:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24821:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20064:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3679:103;;;;;;;;;;;;;:::i;:::-;;51210:68;;;;;;;;;;;;;:::i;:::-;;3031:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25201:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50778:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50050:722;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27254:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28124:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25376:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27633:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3937:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19385:615;19470:4;19785:10;19770:25;;:11;:25;;;;:102;;;;19862:10;19847:25;;:11;:25;;;;19770:102;:179;;;;19939:10;19924:25;;:11;:25;;;;19770:179;19750:199;;19385:615;;;:::o;51284:81::-;2917:13;:11;:13::i;:::-;51337:22:::1;51343:10;51355:3;51337:5;:22::i;:::-;51284:81::o:0;25032:100::-;25086:13;25119:5;25112:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25032:100;:::o;26978:204::-;27046:7;27071:16;27079:7;27071;:16::i;:::-;27066:64;;27096:34;;;;;;;;;;;;;;27066:64;27150:15;:24;27166:7;27150:24;;;;;;;;;;;;;;;;;;;;;27143:31;;26978:204;;;:::o;26526:386::-;26599:13;26615:16;26623:7;26615;:16::i;:::-;26599:32;;26671:5;26648:28;;:19;:17;:19::i;:::-;:28;;;26644:175;;26696:44;26713:5;26720:19;:17;:19::i;:::-;26696:16;:44::i;:::-;26691:128;;26768:35;;;;;;;;;;;;;;26691:128;26644:175;26858:2;26831:15;:24;26847:7;26831:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;26896:7;26892:2;26876:28;;26885:5;26876:28;;;;;;;;;;;;26588:324;26526:386;;:::o;18439:315::-;18492:7;18720:15;:13;:15::i;:::-;18705:12;;18689:13;;:28;:46;18682:53;;18439:315;:::o;36243:2800::-;36377:27;36407;36426:7;36407:18;:27::i;:::-;36377:57;;36492:4;36451:45;;36467:19;36451:45;;;36447:86;;36505:28;;;;;;;;;;;;;;36447:86;36547:27;36576:23;36603:28;36623:7;36603:19;:28::i;:::-;36546:85;;;;36731:62;36750:15;36767:4;36773:19;:17;:19::i;:::-;36731:18;:62::i;:::-;36726:174;;36813:43;36830:4;36836:19;:17;:19::i;:::-;36813:16;:43::i;:::-;36808:92;;36865:35;;;;;;;;;;;;;;36808:92;36726:174;36931:1;36917:16;;:2;:16;;;36913:52;;;36942:23;;;;;;;;;;;;;;36913:52;36978:43;37000:4;37006:2;37010:7;37019:1;36978:21;:43::i;:::-;37114:15;37111:160;;;37254:1;37233:19;37226:30;37111:160;37649:18;:24;37668:4;37649:24;;;;;;;;;;;;;;;;37647:26;;;;;;;;;;;;37718:18;:22;37737:2;37718:22;;;;;;;;;;;;;;;;37716:24;;;;;;;;;;;38040:145;38077:2;38125:45;38140:4;38146:2;38150:19;38125:14;:45::i;:::-;15667:8;38098:72;38040:18;:145::i;:::-;38011:17;:26;38029:7;38011:26;;;;;;;;;;;:174;;;;38355:1;15667:8;38305:19;:46;:51;38301:626;;;38377:19;38409:1;38399:7;:11;38377:33;;38566:1;38532:17;:30;38550:11;38532:30;;;;;;;;;;;;:35;38528:384;;;38670:13;;38655:11;:28;38651:242;;38850:19;38817:17;:30;38835:11;38817:30;;;;;;;;;;;:52;;;;38651:242;38528:384;38358:569;38301:626;38974:7;38970:2;38955:27;;38964:4;38955:27;;;;;;;;;;;;38993:42;39014:4;39020:2;39024:7;39033:1;38993:20;:42::i;:::-;36366:2677;;;36243:2800;;;:::o;51371:151::-;2917:13;:11;:13::i;:::-;51441:7:::1;:5;:7::i;:::-;51433:21;;:44;51455:21;51433:44;;;;;;;;;;;;;;;;;;;;;;;51417:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;51371:151::o:0;27868:185::-;28006:39;28023:4;28029:2;28033:7;28006:39;;;;;;;;;;;;:16;:39::i;:::-;27868:185;;;:::o;51097:107::-;2917:13;:11;:13::i;:::-;51187:11:::1;;51172:12;:26;;;;;;;:::i;:::-;;51097:107:::0;;:::o;49895:25::-;;;;;;;;;;;;;:::o;24821:144::-;24885:7;24928:27;24947:7;24928:18;:27::i;:::-;24905:52;;24821:144;;;:::o;20064:224::-;20128:7;20169:1;20152:19;;:5;:19;;;20148:60;;;20180:28;;;;;;;;;;;;;;20148:60;14619:13;20226:18;:25;20245:5;20226:25;;;;;;;;;;;;;;;;:54;20219:61;;20064:224;;;:::o;3679:103::-;2917:13;:11;:13::i;:::-;3744:30:::1;3771:1;3744:18;:30::i;:::-;3679:103::o:0;51210:68::-;2917:13;:11;:13::i;:::-;51266:6:::1;;;;;;;;;;;51265:7;51256:6;;:16;;;;;;;;;;;;;;;;;;51210:68::o:0;3031:87::-;3077:7;3104:6;;;;;;;;;;;3097:13;;3031:87;:::o;25201:104::-;25257:13;25290:7;25283:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25201:104;:::o;50778:115::-;50841:7;50864:16;:23;50881:5;50864:23;;;;;;;;;;;;;;;;50857:30;;50778:115;;;:::o;50050:722::-;50116:6;;;;;;;;;;;50115:7;50107:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;50150:20;50173:13;:11;:13::i;:::-;50150:36;;49731:4;50218:9;50203:12;:24;;;;:::i;:::-;:46;50195:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49788:2;50283:9;:40;50275:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;50355:19;50377:9;50355:31;;50393:21;50417:16;:28;50434:10;50417:28;;;;;;;;;;;;;;;;50393:52;;50474:1;50458:13;:17;50454:191;;;50502:1;50490:9;:13;50486:109;;;50542:1;50530:9;:13;;;;:::i;:::-;50516:27;;50486:109;;;50584:1;50570:15;;50486:109;50636:1;50605:16;:28;50622:10;50605:28;;;;;;;;;;;;;;;:32;;;;50454:191;49676:11;50674;:30;;;;:::i;:::-;50661:9;:43;;50653:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;50738:28;50744:10;50756:9;50738:5;:28::i;:::-;50100:672;;;50050:722;:::o;27254:308::-;27365:19;:17;:19::i;:::-;27353:31;;:8;:31;;;27349:61;;;27393:17;;;;;;;;;;;;;;27349:61;27475:8;27423:18;:39;27442:19;:17;:19::i;:::-;27423:39;;;;;;;;;;;;;;;:49;27463:8;27423:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27535:8;27499:55;;27514:19;:17;:19::i;:::-;27499:55;;;27545:8;27499:55;;;;;;:::i;:::-;;;;;;;;27254:308;;:::o;28124:399::-;28291:31;28304:4;28310:2;28314:7;28291:12;:31::i;:::-;28355:1;28337:2;:14;;;:19;28333:183;;28376:56;28407:4;28413:2;28417:7;28426:5;28376:30;:56::i;:::-;28371:145;;28460:40;;;;;;;;;;;;;;28371:145;28333:183;28124:399;;;;:::o;25376:318::-;25449:13;25480:16;25488:7;25480;:16::i;:::-;25475:59;;25505:29;;;;;;;;;;;;;;25475:59;25547:21;25571:10;:8;:10::i;:::-;25547:34;;25624:1;25605:7;25599:21;:26;;:87;;;;;;;;;;;;;;;;;25652:7;25661:18;25671:7;25661:9;:18::i;:::-;25635:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25599:87;25592:94;;;25376:318;;;:::o;27633:164::-;27730:4;27754:18;:25;27773:5;27754:25;;;;;;;;;;;;;;;:35;27780:8;27754:35;;;;;;;;;;;;;;;;;;;;;;;;;27747:42;;27633:164;;;;:::o;3937:201::-;2917:13;:11;:13::i;:::-;4046:1:::1;4026:22;;:8;:22;;;;4018:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4102:28;4121:8;4102:18;:28::i;:::-;3937:201:::0;:::o;3196:132::-;3271:12;:10;:12::i;:::-;3260:23;;:7;:5;:7::i;:::-;:23;;;3252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3196:132::o;30609:1529::-;30674:20;30697:13;;30674:36;;30739:1;30725:16;;:2;:16;;;30721:48;;;30750:19;;;;;;;;;;;;;;30721:48;30796:1;30784:8;:13;30780:44;;;30806:18;;;;;;;;;;;;;;30780:44;30837:61;30867:1;30871:2;30875:12;30889:8;30837:21;:61::i;:::-;31380:1;14756:2;31351:1;:25;;31350:31;31338:8;:44;31312:18;:22;31331:2;31312:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;31659:139;31696:2;31750:33;31773:1;31777:2;31781:1;31750:14;:33::i;:::-;31717:30;31738:8;31717:20;:30::i;:::-;:66;31659:18;:139::i;:::-;31625:17;:31;31643:12;31625:31;;;;;;;;;;;:173;;;;31815:15;31833:12;31815:30;;31860:11;31889:8;31874:12;:23;31860:37;;31912:101;31964:9;;;;;;31960:2;31939:35;;31956:1;31939:35;;;;;;;;;;;;32008:3;31998:7;:13;31912:101;;32045:3;32029:13;:19;;;;31086:974;;32070:60;32099:1;32103:2;32107:12;32121:8;32070:20;:60::i;:::-;30663:1475;30609:1529;;:::o;28778:273::-;28835:4;28891:7;28872:15;:13;:15::i;:::-;:26;;:66;;;;;28925:13;;28915:7;:23;28872:66;:152;;;;;29023:1;15389:8;28976:17;:26;28994:7;28976:26;;;;;;;;;;;;:43;:48;28872:152;28852:172;;28778:273;;;:::o;47339:105::-;47399:7;47426:10;47419:17;;47339:105;:::o;50899:87::-;50956:7;50979:1;50972:8;;50899:87;:::o;21738:1129::-;21805:7;21825:12;21840:7;21825:22;;21908:4;21889:15;:13;:15::i;:::-;:23;21885:915;;21942:13;;21935:4;:20;21931:869;;;21980:14;21997:17;:23;22015:4;21997:23;;;;;;;;;;;;21980:40;;22113:1;15389:8;22086:6;:23;:28;22082:699;;;22605:113;22622:1;22612:6;:11;22605:113;;;22665:17;:25;22683:6;;;;;;;22665:25;;;;;;;;;;;;22656:34;;22605:113;;;22751:6;22744:13;;;;;;22082:699;21957:843;21931:869;21885:915;22828:31;;;;;;;;;;;;;;21738:1129;;;;:::o;34579:652::-;34674:27;34703:23;34744:53;34800:15;34744:71;;34986:7;34980:4;34973:21;35021:22;35015:4;35008:36;35097:4;35091;35081:21;35058:44;;35193:19;35187:26;35168:45;;34924:300;34579:652;;;:::o;35344:645::-;35486:11;35648:15;35642:4;35638:26;35630:34;;35807:15;35796:9;35792:31;35779:44;;35954:15;35943:9;35940:30;35933:4;35922:9;35919:19;35916:55;35906:65;;35344:645;;;;;:::o;46172:159::-;;;;;:::o;44484:309::-;44619:7;44639:16;15790:3;44665:19;:40;;44639:67;;15790:3;44732:31;44743:4;44749:2;44753:9;44732:10;:31::i;:::-;44724:40;;:61;;44717:68;;;44484:309;;;;;:::o;24312:447::-;24392:14;24560:15;24553:5;24549:27;24540:36;;24734:5;24720:11;24696:22;24692:40;24689:51;24682:5;24679:62;24669:72;;24312:447;;;;:::o;46990:158::-;;;;;:::o;4298:191::-;4372:16;4391:6;;;;;;;;;;;4372:25;;4417:8;4408:6;;:17;;;;;;;;;;;;;;;;;;4472:8;4441:40;;4462:8;4441:40;;;;;;;;;;;;4361:128;4298:191;:::o;42994:716::-;43157:4;43203:2;43178:45;;;43224:19;:17;:19::i;:::-;43245:4;43251:7;43260:5;43178:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43174:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43478:1;43461:6;:13;:18;43457:235;;;43507:40;;;;;;;;;;;;;;43457:235;43650:6;43644:13;43635:6;43631:2;43627:15;43620:38;43174:529;43347:54;;;43337:64;;;:6;:64;;;;43330:71;;;42994:716;;;;;;:::o;50992:99::-;51044:13;51073:12;51066:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50992:99;:::o;47550:1960::-;47607:17;48026:3;48019:4;48013:11;48009:21;48002:28;;48117:3;48111:4;48104:17;48223:3;48679:5;48809:1;48804:3;48800:11;48793:18;;48946:2;48940:4;48936:13;48932:2;48928:22;48923:3;48915:36;48987:2;48981:4;48977:13;48969:21;;48571:697;49006:4;48571:697;;;49197:1;49192:3;49188:11;49181:18;;49248:2;49242:4;49238:13;49234:2;49230:22;49225:3;49217:36;49101:2;49095:4;49091:13;49083:21;;48571:697;;;48575:430;49307:3;49302;49298:13;49422:2;49417:3;49413:12;49406:19;;49485:6;49480:3;49473:19;47646:1857;;47550:1960;;;:::o;1582:98::-;1635:7;1662:10;1655:17;;1582:98;:::o;26142:322::-;26212:14;26443:1;26433:8;26430:15;26405:23;26401:45;26391:55;;26142:322;;;:::o;45369:147::-;45506:6;45369:147;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:116::-;7797:21;7812:5;7797:21;:::i;:::-;7790:5;7787:32;7777:60;;7833:1;7830;7823:12;7777:60;7727:116;:::o;7849:133::-;7892:5;7930:6;7917:20;7908:29;;7946:30;7970:5;7946:30;:::i;:::-;7849:133;;;;:::o;7988:468::-;8053:6;8061;8110:2;8098:9;8089:7;8085:23;8081:32;8078:119;;;8116:79;;:::i;:::-;8078:119;8236:1;8261:53;8306:7;8297:6;8286:9;8282:22;8261:53;:::i;:::-;8251:63;;8207:117;8363:2;8389:50;8431:7;8422:6;8411:9;8407:22;8389:50;:::i;:::-;8379:60;;8334:115;7988:468;;;;;:::o;8462:117::-;8571:1;8568;8561:12;8585:180;8633:77;8630:1;8623:88;8730:4;8727:1;8720:15;8754:4;8751:1;8744:15;8771:281;8854:27;8876:4;8854:27;:::i;:::-;8846:6;8842:40;8984:6;8972:10;8969:22;8948:18;8936:10;8933:34;8930:62;8927:88;;;8995:18;;:::i;:::-;8927:88;9035:10;9031:2;9024:22;8814:238;8771:281;;:::o;9058:129::-;9092:6;9119:20;;:::i;:::-;9109:30;;9148:33;9176:4;9168:6;9148:33;:::i;:::-;9058:129;;;:::o;9193:307::-;9254:4;9344:18;9336:6;9333:30;9330:56;;;9366:18;;:::i;:::-;9330:56;9404:29;9426:6;9404:29;:::i;:::-;9396:37;;9488:4;9482;9478:15;9470:23;;9193:307;;;:::o;9506:154::-;9590:6;9585:3;9580;9567:30;9652:1;9643:6;9638:3;9634:16;9627:27;9506:154;;;:::o;9666:410::-;9743:5;9768:65;9784:48;9825:6;9784:48;:::i;:::-;9768:65;:::i;:::-;9759:74;;9856:6;9849:5;9842:21;9894:4;9887:5;9883:16;9932:3;9923:6;9918:3;9914:16;9911:25;9908:112;;;9939:79;;:::i;:::-;9908:112;10029:41;10063:6;10058:3;10053;10029:41;:::i;:::-;9749:327;9666:410;;;;;:::o;10095:338::-;10150:5;10199:3;10192:4;10184:6;10180:17;10176:27;10166:122;;10207:79;;:::i;:::-;10166:122;10324:6;10311:20;10349:78;10423:3;10415:6;10408:4;10400:6;10396:17;10349:78;:::i;:::-;10340:87;;10156:277;10095:338;;;;:::o;10439:943::-;10534:6;10542;10550;10558;10607:3;10595:9;10586:7;10582:23;10578:33;10575:120;;;10614:79;;:::i;:::-;10575:120;10734:1;10759:53;10804:7;10795:6;10784:9;10780:22;10759:53;:::i;:::-;10749:63;;10705:117;10861:2;10887:53;10932:7;10923:6;10912:9;10908:22;10887:53;:::i;:::-;10877:63;;10832:118;10989:2;11015:53;11060:7;11051:6;11040:9;11036:22;11015:53;:::i;:::-;11005:63;;10960:118;11145:2;11134:9;11130:18;11117:32;11176:18;11168:6;11165:30;11162:117;;;11198:79;;:::i;:::-;11162:117;11303:62;11357:7;11348:6;11337:9;11333:22;11303:62;:::i;:::-;11293:72;;11088:287;10439:943;;;;;;;:::o;11388:474::-;11456:6;11464;11513:2;11501:9;11492:7;11488:23;11484:32;11481:119;;;11519:79;;:::i;:::-;11481:119;11639:1;11664:53;11709:7;11700:6;11689:9;11685:22;11664:53;:::i;:::-;11654:63;;11610:117;11766:2;11792:53;11837:7;11828:6;11817:9;11813:22;11792:53;:::i;:::-;11782:63;;11737:118;11388:474;;;;;:::o;11868:180::-;11916:77;11913:1;11906:88;12013:4;12010:1;12003:15;12037:4;12034:1;12027:15;12054:320;12098:6;12135:1;12129:4;12125:12;12115:22;;12182:1;12176:4;12172:12;12203:18;12193:81;;12259:4;12251:6;12247:17;12237:27;;12193:81;12321:2;12313:6;12310:14;12290:18;12287:38;12284:84;;;12340:18;;:::i;:::-;12284:84;12105:269;12054:320;;;:::o;12380:171::-;12520:23;12516:1;12508:6;12504:14;12497:47;12380:171;:::o;12557:366::-;12699:3;12720:67;12784:2;12779:3;12720:67;:::i;:::-;12713:74;;12796:93;12885:3;12796:93;:::i;:::-;12914:2;12909:3;12905:12;12898:19;;12557:366;;;:::o;12929:419::-;13095:4;13133:2;13122:9;13118:18;13110:26;;13182:9;13176:4;13172:20;13168:1;13157:9;13153:17;13146:47;13210:131;13336:4;13210:131;:::i;:::-;13202:139;;12929:419;;;:::o;13354:164::-;13494:16;13490:1;13482:6;13478:14;13471:40;13354:164;:::o;13524:366::-;13666:3;13687:67;13751:2;13746:3;13687:67;:::i;:::-;13680:74;;13763:93;13852:3;13763:93;:::i;:::-;13881:2;13876:3;13872:12;13865:19;;13524:366;;;:::o;13896:419::-;14062:4;14100:2;14089:9;14085:18;14077:26;;14149:9;14143:4;14139:20;14135:1;14124:9;14120:17;14113:47;14177:131;14303:4;14177:131;:::i;:::-;14169:139;;13896:419;;;:::o;14321:180::-;14369:77;14366:1;14359:88;14466:4;14463:1;14456:15;14490:4;14487:1;14480:15;14507:305;14547:3;14566:20;14584:1;14566:20;:::i;:::-;14561:25;;14600:20;14618:1;14600:20;:::i;:::-;14595:25;;14754:1;14686:66;14682:74;14679:1;14676:81;14673:107;;;14760:18;;:::i;:::-;14673:107;14804:1;14801;14797:9;14790:16;;14507:305;;;;:::o;14818:164::-;14958:16;14954:1;14946:6;14942:14;14935:40;14818:164;:::o;14988:366::-;15130:3;15151:67;15215:2;15210:3;15151:67;:::i;:::-;15144:74;;15227:93;15316:3;15227:93;:::i;:::-;15345:2;15340:3;15336:12;15329:19;;14988:366;;;:::o;15360:419::-;15526:4;15564:2;15553:9;15549:18;15541:26;;15613:9;15607:4;15603:20;15599:1;15588:9;15584:17;15577:47;15641:131;15767:4;15641:131;:::i;:::-;15633:139;;15360:419;;;:::o;15785:168::-;15925:20;15921:1;15913:6;15909:14;15902:44;15785:168;:::o;15959:366::-;16101:3;16122:67;16186:2;16181:3;16122:67;:::i;:::-;16115:74;;16198:93;16287:3;16198:93;:::i;:::-;16316:2;16311:3;16307:12;16300:19;;15959:366;;;:::o;16331:419::-;16497:4;16535:2;16524:9;16520:18;16512:26;;16584:9;16578:4;16574:20;16570:1;16559:9;16555:17;16548:47;16612:131;16738:4;16612:131;:::i;:::-;16604:139;;16331:419;;;:::o;16756:191::-;16796:4;16816:20;16834:1;16816:20;:::i;:::-;16811:25;;16850:20;16868:1;16850:20;:::i;:::-;16845:25;;16889:1;16886;16883:8;16880:34;;;16894:18;;:::i;:::-;16880:34;16939:1;16936;16932:9;16924:17;;16756:191;;;;:::o;16953:348::-;16993:7;17016:20;17034:1;17016:20;:::i;:::-;17011:25;;17050:20;17068:1;17050:20;:::i;:::-;17045:25;;17238:1;17170:66;17166:74;17163:1;17160:81;17155:1;17148:9;17141:17;17137:105;17134:131;;;17245:18;;:::i;:::-;17134:131;17293:1;17290;17286:9;17275:20;;16953:348;;;;:::o;17307:170::-;17447:22;17443:1;17435:6;17431:14;17424:46;17307:170;:::o;17483:366::-;17625:3;17646:67;17710:2;17705:3;17646:67;:::i;:::-;17639:74;;17722:93;17811:3;17722:93;:::i;:::-;17840:2;17835:3;17831:12;17824:19;;17483:366;;;:::o;17855:419::-;18021:4;18059:2;18048:9;18044:18;18036:26;;18108:9;18102:4;18098:20;18094:1;18083:9;18079:17;18072:47;18136:131;18262:4;18136:131;:::i;:::-;18128:139;;17855:419;;;:::o;18280:148::-;18382:11;18419:3;18404:18;;18280:148;;;;:::o;18434:377::-;18540:3;18568:39;18601:5;18568:39;:::i;:::-;18623:89;18705:6;18700:3;18623:89;:::i;:::-;18616:96;;18721:52;18766:6;18761:3;18754:4;18747:5;18743:16;18721:52;:::i;:::-;18798:6;18793:3;18789:16;18782:23;;18544:267;18434:377;;;;:::o;18817:435::-;18997:3;19019:95;19110:3;19101:6;19019:95;:::i;:::-;19012:102;;19131:95;19222:3;19213:6;19131:95;:::i;:::-;19124:102;;19243:3;19236:10;;18817:435;;;;;:::o;19258:225::-;19398:34;19394:1;19386:6;19382:14;19375:58;19467:8;19462:2;19454:6;19450:15;19443:33;19258:225;:::o;19489:366::-;19631:3;19652:67;19716:2;19711:3;19652:67;:::i;:::-;19645:74;;19728:93;19817:3;19728:93;:::i;:::-;19846:2;19841:3;19837:12;19830:19;;19489:366;;;:::o;19861:419::-;20027:4;20065:2;20054:9;20050:18;20042:26;;20114:9;20108:4;20104:20;20100:1;20089:9;20085:17;20078:47;20142:131;20268:4;20142:131;:::i;:::-;20134:139;;19861:419;;;:::o;20286:182::-;20426:34;20422:1;20414:6;20410:14;20403:58;20286:182;:::o;20474:366::-;20616:3;20637:67;20701:2;20696:3;20637:67;:::i;:::-;20630:74;;20713:93;20802:3;20713:93;:::i;:::-;20831:2;20826:3;20822:12;20815:19;;20474:366;;;:::o;20846:419::-;21012:4;21050:2;21039:9;21035:18;21027:26;;21099:9;21093:4;21089:20;21085:1;21074:9;21070:17;21063:47;21127:131;21253:4;21127:131;:::i;:::-;21119:139;;20846:419;;;:::o;21271:98::-;21322:6;21356:5;21350:12;21340:22;;21271:98;;;:::o;21375:168::-;21458:11;21492:6;21487:3;21480:19;21532:4;21527:3;21523:14;21508:29;;21375:168;;;;:::o;21549:360::-;21635:3;21663:38;21695:5;21663:38;:::i;:::-;21717:70;21780:6;21775:3;21717:70;:::i;:::-;21710:77;;21796:52;21841:6;21836:3;21829:4;21822:5;21818:16;21796:52;:::i;:::-;21873:29;21895:6;21873:29;:::i;:::-;21868:3;21864:39;21857:46;;21639:270;21549:360;;;;:::o;21915:640::-;22110:4;22148:3;22137:9;22133:19;22125:27;;22162:71;22230:1;22219:9;22215:17;22206:6;22162:71;:::i;:::-;22243:72;22311:2;22300:9;22296:18;22287:6;22243:72;:::i;:::-;22325;22393:2;22382:9;22378:18;22369:6;22325:72;:::i;:::-;22444:9;22438:4;22434:20;22429:2;22418:9;22414:18;22407:48;22472:76;22543:4;22534:6;22472:76;:::i;:::-;22464:84;;21915:640;;;;;;;:::o;22561:141::-;22617:5;22648:6;22642:13;22633:22;;22664:32;22690:5;22664:32;:::i;:::-;22561:141;;;;:::o;22708:349::-;22777:6;22826:2;22814:9;22805:7;22801:23;22797:32;22794:119;;;22832:79;;:::i;:::-;22794:119;22952:1;22977:63;23032:7;23023:6;23012:9;23008:22;22977:63;:::i;:::-;22967:73;;22923:127;22708:349;;;;:::o

Swarm Source

ipfs://63b582cac3546453133d58096bc52e89c1a619b04268befbafd83c292e9e3631
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.