ETH Price: $2,992.74 (-1.92%)
Gas: 2 Gwei

Bored Rooster Yacht Club (BRYC)
 

Overview

TokenID

104

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
BoredRoosterYachtClub

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-08
*/

// SPDX-License-Identifier: MIT

// https://boredroosteryachtclub.xyz
// https://twitter.com/BoredRoosterYC

// File contracts/OperatorFilter/IOperatorFilterRegistry.sol

pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}


// File contracts/OperatorFilter/OperatorFilterer.sol


pragma solidity ^0.8.13;

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}


// File contracts/OperatorFilter/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}


// File @openzeppelin/contracts/utils/introspection/[email protected]


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


// 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/utils/[email protected]


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// File @openzeppelin/contracts/token/ERC721/[email protected]


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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


// File @openzeppelin/contracts/utils/[email protected]


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


// File erc721a/contracts/[email protected]


// Creator: Chiru Labs

pragma solidity ^0.8.4;







error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @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 Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * 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 See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // 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.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

    /**
     * @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, tokenId.toString())) : '';
    }

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

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

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

        _approve(to, tokenId, owner);
    }

    /**
     * @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 == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_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 &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

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

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

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is 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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        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 Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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


// File @openzeppelin/contracts/access/[email protected]


// 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 @openzeppelin/contracts/interfaces/[email protected]


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}


// File @openzeppelin/contracts/token/common/[email protected]


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

pragma solidity ^0.8.7;

error SaleInactive();
error SoldOut();
error InvalidPrice();
error WithdrawFailed();
error InvalidQuantity();
error InvalidProof();
error InvalidBatchMint();

contract BoredRoosterYachtClub is ERC721A, Ownable, ERC2981, OperatorFilterer {
    uint256 public price = 0 ether;
    uint256 public maxPerWallet = 1;
    uint256 public maxPerTransaction = 1;

    uint256 public immutable supply = 700;

    enum SaleState {
        CLOSED,
        OPEN
    }

    SaleState public saleState = SaleState.CLOSED;

    string public _baseTokenURI;

    mapping(address => uint256) public addressMintBalance;

    address[] public withdrawAddresses = [0xdE5D1E6e3a12935Ba28FdA73cfe13de18c5D6E3a];
    uint256[] public withdrawPercentages = [100];

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _baseUri,
        uint96 _royaltyAmount
    ) ERC721A(_name, _symbol) OperatorFilterer(address(0), false) {
        _baseTokenURI = _baseUri;
        _setDefaultRoyalty(0xdE5D1E6e3a12935Ba28FdA73cfe13de18c5D6E3a, _royaltyAmount);
    }

    function cockPunch(uint256 qty, bytes4 cock_a_doodle_doo) external {
        if (saleState != SaleState.OPEN) revert SaleInactive();
        if (_currentIndex + (qty - 1) > supply) revert SoldOut();
        if (addressMintBalance[msg.sender] + qty > maxPerWallet) revert InvalidQuantity();
        if (qty > maxPerTransaction) revert InvalidQuantity();
        require(cluck(msg.sender, cock_a_doodle_doo), "Use our web, cock");
        require(tx.origin == msg.sender, "Not a real cock");
        addressMintBalance[msg.sender] += qty;

        _safeMint(msg.sender, qty);

    }

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

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

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

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

    function setSaleState(uint8 _state) external onlyOwner {
        saleState = SaleState(_state);
    }

    function cockDev(uint256 qty, address recipient) external onlyOwner {
        if (_currentIndex + (qty - 1) > supply) revert SoldOut();
        _safeMint(recipient, qty);
    }

    function setPerWalletMax(uint256 _val) external onlyOwner {
        maxPerWallet = _val;
    }

    function setPerTransactionMax(uint256 _val) external onlyOwner {
        maxPerTransaction = _val;
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        if (!success) revert WithdrawFailed();
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;

        for (uint256 i; i < withdrawAddresses.length; i++) {
            _withdraw(withdrawAddresses[i], (balance * withdrawPercentages[i]) / 100);
        }
    }

    function setRoyaltyInfo(address receiver, uint96 feeBasisPoints)
        external
        onlyOwner
    {
        _setDefaultRoyalty(receiver, feeBasisPoints);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    function cluck(address _cock, bytes4 _punch) internal pure returns(bool){
        return bytes4(keccak256(abi.encodePacked(_cock))) == _punch;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"uint96","name":"_royaltyAmount","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQuantity","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"SaleInactive","type":"error"},{"inputs":[],"name":"SoldOut","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"},{"inputs":[],"name":"WithdrawFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"cockDev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes4","name":"cock_a_doodle_doo","type":"bytes4"}],"name":"cockPunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":[],"name":"saleState","outputs":[{"internalType":"enum BoredRoosterYachtClub.SaleState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_val","type":"uint256"}],"name":"setPerTransactionMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_val","type":"uint256"}],"name":"setPerWalletMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeBasisPoints","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_state","type":"uint8"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"withdrawAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"withdrawPercentages","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6000600b556001600c819055600d8190556102bc608052600e805460ff1916905560c060405273de5d1e6e3a12935ba28fda73cfe13de18c5d6e3a60a09081526200004e9160119190620003c3565b506040805160208101909152606481526200006e9060129060016200042d565b503480156200007c57600080fd5b50604051620029fe380380620029fe8339810160408190526200009f91620005d1565b60008085858160029080519060200190620000bc92919062000470565b508051620000d290600390602084019062000470565b5050600160005550620000e5336200026c565b6daaeb6d7670e522a718067333cd4e3b156200022a5780156200017857604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200015957600080fd5b505af11580156200016e573d6000803e3d6000fd5b505050506200022a565b6001600160a01b03821615620001c95760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200013e565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200021057600080fd5b505af115801562000225573d6000803e3d6000fd5b505050505b505081516200024190600f90602085019062000470565b506200026273de5d1e6e3a12935ba28fda73cfe13de18c5d6e3a82620002be565b50505050620006c0565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382161115620003325760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b0382166200038a5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000329565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b8280548282559060005260206000209081019282156200041b579160200282015b828111156200041b57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620003e4565b5062000429929150620004ed565b5090565b8280548282559060005260206000209081019282156200041b579160200282015b828111156200041b578251829060ff169055916020019190600101906200044e565b8280546200047e9062000684565b90600052602060002090601f016020900481019282620004a257600085556200041b565b82601f10620004bd57805160ff19168380011785556200041b565b828001600101855582156200041b579182015b828111156200041b578251825591602001919060010190620004d0565b5b80821115620004295760008155600101620004ee565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200052c57600080fd5b81516001600160401b038082111562000549576200054962000504565b604051601f8301601f19908116603f0116810190828211818310171562000574576200057462000504565b816040528381526020925086838588010111156200059157600080fd5b600091505b83821015620005b5578582018301518183018401529082019062000596565b83821115620005c75760008385830101525b9695505050505050565b60008060008060808587031215620005e857600080fd5b84516001600160401b03808211156200060057600080fd5b6200060e888389016200051a565b955060208701519150808211156200062557600080fd5b62000633888389016200051a565b945060408701519150808211156200064a57600080fd5b5062000659878288016200051a565b606087015190935090506001600160601b03811681146200067957600080fd5b939692955090935050565b600181811c908216806200069957607f821691505b602082108103620006ba57634e487b7160e01b600052602260045260246000fd5b50919050565b608051612314620006ea6000396000818161026301528181610663015261116a01526123146000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c80635a67de0711610125578063a22cb465116100ad578063cfc86f7b1161007c578063cfc86f7b146104b0578063d86bed9b146104b8578063e985e9c5146104cb578063f2fde38b14610507578063f5fcc99b1461051a57600080fd5b8063a22cb46514610464578063b88d4fde14610477578063bd3b14d31461048a578063c87b56dd1461049d57600080fd5b8063715018a6116100f4578063715018a6146104275780638da5cb5b1461042f57806391b7f5ed1461044057806395d89b4114610453578063a035b1fe1461045b57600080fd5b80635a67de07146103d4578063603f4d52146103e75780636352211e1461040157806370a082311461041457600080fd5b80632a55205a116101a857806342842e0e1161017757806342842e0e1461038957806344bb82791461039c578063453c2310146103af5780634b980d67146103b857806355f804b3146103c157600080fd5b80632a55205a1461031c5780633406c7261461034e578063391176681461036e5780633ccfd60b1461038157600080fd5b8063081812fc116101ef578063081812fc146102a857806308fd2a16146102d3578063095ea7b3146102e657806318160ddd146102f957806323b872dd1461030957600080fd5b806301ffc9a71461022157806302fa7c4714610249578063047fc9aa1461025e57806306fdde0314610293575b600080fd5b61023461022f366004611d23565b61052d565b60405190151581526020015b60405180910390f35b61025c610257366004611d5c565b61053e565b005b6102857f000000000000000000000000000000000000000000000000000000000000000081565b604051908152602001610240565b61029b610554565b6040516102409190611df7565b6102bb6102b6366004611e0a565b6105e6565b6040516001600160a01b039091168152602001610240565b61025c6102e1366004611e23565b61062a565b61025c6102f4366004611e48565b610814565b6001546000540360001901610285565b61025c610317366004611e72565b6108a1565b61032f61032a366004611eae565b6109fd565b604080516001600160a01b039093168352602083019190915201610240565b61028561035c366004611ed0565b60106020526000908152604090205481565b61025c61037c366004611e0a565b610aa9565b61025c610ab6565b61025c610397366004611e72565b610b4c565b6102bb6103aa366004611e0a565b610c9d565b610285600c5481565b610285600d5481565b61025c6103cf366004611f77565b610cc7565b61025c6103e2366004611fc0565b610ce2565b600e546103f49060ff1681565b6040516102409190611ff9565b6102bb61040f366004611e0a565b610d22565b610285610422366004611ed0565b610d34565b61025c610d83565b6008546001600160a01b03166102bb565b61025c61044e366004611e0a565b610d97565b61029b610da4565b610285600b5481565b61025c61047236600461202f565b610db3565b61025c61048536600461205b565b610e48565b61025c610498366004611e0a565b610fa7565b61029b6104ab366004611e0a565b610fb4565b61029b611038565b6102856104c6366004611e0a565b6110c6565b6102346104d93660046120d7565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61025c610515366004611ed0565b6110e7565b61025c61052836600461210a565b611160565b6000610538826111ca565b92915050565b6105466111ef565b6105508282611249565b5050565b6060600280546105639061212d565b80601f016020809104026020016040519081016040528092919081815260200182805461058f9061212d565b80156105dc5780601f106105b1576101008083540402835291602001916105dc565b820191906000526020600020905b8154815290600101906020018083116105bf57829003601f168201915b5050505050905090565b60006105f182611346565b61060e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6001600e5460ff16600181111561064357610643611fe3565b1461066157604051630fe219dd60e21b815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000061068d60018461217d565b60005461069a9190612194565b11156106b9576040516352df9fe560e01b815260040160405180910390fd5b600c54336000908152601060205260409020546106d7908490612194565b11156106f65760405163524f409b60e01b815260040160405180910390fd5b600d548211156107195760405163524f409b60e01b815260040160405180910390fd5b604080516bffffffffffffffffffffffff193360601b1660208083019190915282518083036014018152603490920190925280519101206001600160e01b03198281169116146107a45760405162461bcd60e51b8152602060048201526011602482015270557365206f7572207765622c20636f636b60781b60448201526064015b60405180910390fd5b3233146107e55760405162461bcd60e51b815260206004820152600f60248201526e4e6f742061207265616c20636f636b60881b604482015260640161079b565b3360009081526010602052604081208054849290610804908490612194565b909155506105509050338361137f565b600061081f82610d22565b9050806001600160a01b0316836001600160a01b0316036108535760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610873575061087181336104d9565b155b15610891576040516367d9dca160e11b815260040160405180910390fd5b61089c838383611399565b505050565b826daaeb6d7670e522a718067333cd4e3b156109ec57336001600160a01b038216036108d7576108d28484846113f5565b6109f7565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610926573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094a91906121ac565b80156109cd5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156109a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cd91906121ac565b6109ec57604051633b79c77360e21b815233600482015260240161079b565b6109f78484846113f5565b50505050565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610a725750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610a91906001600160601b0316876121c9565b610a9b91906121fe565b915196919550909350505050565b610ab16111ef565b600c55565b610abe6111ef565b4760005b60115481101561055057610b3a60118281548110610ae257610ae2612212565b9060005260206000200160009054906101000a90046001600160a01b0316606460128481548110610b1557610b15612212565b906000526020600020015485610b2b91906121c9565b610b3591906121fe565b611400565b80610b4481612228565b915050610ac2565b826daaeb6d7670e522a718067333cd4e3b15610c9257336001600160a01b03821603610b7d576108d2848484611474565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610bcc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf091906121ac565b8015610c735750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610c4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7391906121ac565b610c9257604051633b79c77360e21b815233600482015260240161079b565b6109f7848484611474565b60118181548110610cad57600080fd5b6000918252602090912001546001600160a01b0316905081565b610ccf6111ef565b805161055090600f906020840190611c74565b610cea6111ef565b8060ff166001811115610cff57610cff611fe3565b600e805460ff191660018381811115610d1a57610d1a611fe3565b021790555050565b6000610d2d8261148f565b5192915050565b60006001600160a01b038216610d5d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610d8b6111ef565b610d9560006115b8565b565b610d9f6111ef565b600b55565b6060600380546105639061212d565b336001600160a01b03831603610ddc5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836daaeb6d7670e522a718067333cd4e3b15610f9457336001600160a01b03821603610e7f57610e7a8585858561160a565b610fa0565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610ece573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef291906121ac565b8015610f755750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610f51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7591906121ac565b610f9457604051633b79c77360e21b815233600482015260240161079b565b610fa08585858561160a565b5050505050565b610faf6111ef565b600d55565b6060610fbf82611346565b610fdc57604051630a14c4b560e41b815260040160405180910390fd5b6000610fe6611655565b905080516000036110065760405180602001604052806000815250611031565b8061101084611664565b604051602001611021929190612241565b6040516020818303038152906040525b9392505050565b600f80546110459061212d565b80601f01602080910402602001604051908101604052809291908181526020018280546110719061212d565b80156110be5780601f10611093576101008083540402835291602001916110be565b820191906000526020600020905b8154815290600101906020018083116110a157829003601f168201915b505050505081565b601281815481106110d657600080fd5b600091825260209091200154905081565b6110ef6111ef565b6001600160a01b0381166111545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079b565b61115d816115b8565b50565b6111686111ef565b7f000000000000000000000000000000000000000000000000000000000000000061119460018461217d565b6000546111a19190612194565b11156111c0576040516352df9fe560e01b815260040160405180910390fd5b610550818361137f565b60006001600160e01b0319821663152a902d60e11b148061053857506105388261176d565b6008546001600160a01b03163314610d955760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079b565b6127106001600160601b03821611156112b75760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840161079b565b6001600160a01b03821661130d5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640161079b565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b60008160011115801561135a575060005482105b8015610538575050600090815260046020526040902054600160e01b900460ff161590565b6105508282604051806020016040528060008152506117bd565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61089c8383836117ca565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461144d576040519150601f19603f3d011682016040523d82523d6000602084013e611452565b606091505b505090508061089c57604051631d42c86760e21b815260040160405180910390fd5b61089c83838360405180602001604052806000815250610e48565b604080516060810182526000808252602082018190529181019190915281806001111580156114bf575060005481105b1561159f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061159d5780516001600160a01b031615611533579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611598579392505050565b611533565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6116158484846117ca565b6001600160a01b0383163b151580156116375750611635848484846119b7565b155b156109f7576040516368d2bf6b60e11b815260040160405180910390fd5b6060600f80546105639061212d565b60608160000361168b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116b5578061169f81612228565b91506116ae9050600a836121fe565b915061168f565b60008167ffffffffffffffff8111156116d0576116d0611eeb565b6040519080825280601f01601f1916602001820160405280156116fa576020820181803683370190505b5090505b84156117655761170f60018361217d565b915061171c600a86612270565b611727906030612194565b60f81b81838151811061173c5761173c612212565b60200101906001600160f81b031916908160001a90535061175e600a866121fe565b94506116fe565b949350505050565b60006001600160e01b031982166380ac58cd60e01b148061179e57506001600160e01b03198216635b5e139f60e01b145b8061053857506301ffc9a760e01b6001600160e01b0319831614610538565b61089c8383836001611aa2565b60006117d58261148f565b9050836001600160a01b031681600001516001600160a01b03161461180c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061182a575061182a85336104d9565b8061184557503361183a846105e6565b6001600160a01b0316145b90508061186557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661188c57604051633a954ecd60e21b815260040160405180910390fd5b61189860008487611399565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661196e57600054821461196e578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fa0565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119ec903390899088908890600401612284565b6020604051808303816000875af1925050508015611a27575060408051601f3d908101601f19168201909252611a24918101906122c1565b60015b611a85573d808015611a55576040519150601f19603f3d011682016040523d82523d6000602084013e611a5a565b606091505b508051600003611a7d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611acb57604051622e076360e81b815260040160405180910390fd5b83600003611aec5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611b9e57506001600160a01b0387163b15155b15611c26575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611bef60008884806001019550886119b7565b611c0c576040516368d2bf6b60e11b815260040160405180910390fd5b808203611ba4578260005414611c2157600080fd5b611c6b565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611c27575b50600055610fa0565b828054611c809061212d565b90600052602060002090601f016020900481019282611ca25760008555611ce8565b82601f10611cbb57805160ff1916838001178555611ce8565b82800160010185558215611ce8579182015b82811115611ce8578251825591602001919060010190611ccd565b50611cf4929150611cf8565b5090565b5b80821115611cf45760008155600101611cf9565b6001600160e01b03198116811461115d57600080fd5b600060208284031215611d3557600080fd5b813561103181611d0d565b80356001600160a01b0381168114611d5757600080fd5b919050565b60008060408385031215611d6f57600080fd5b611d7883611d40565b915060208301356001600160601b0381168114611d9457600080fd5b809150509250929050565b60005b83811015611dba578181015183820152602001611da2565b838111156109f75750506000910152565b60008151808452611de3816020860160208601611d9f565b601f01601f19169290920160200192915050565b6020815260006110316020830184611dcb565b600060208284031215611e1c57600080fd5b5035919050565b60008060408385031215611e3657600080fd5b823591506020830135611d9481611d0d565b60008060408385031215611e5b57600080fd5b611e6483611d40565b946020939093013593505050565b600080600060608486031215611e8757600080fd5b611e9084611d40565b9250611e9e60208501611d40565b9150604084013590509250925092565b60008060408385031215611ec157600080fd5b50508035926020909101359150565b600060208284031215611ee257600080fd5b61103182611d40565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f1c57611f1c611eeb565b604051601f8501601f19908116603f01168101908282118183101715611f4457611f44611eeb565b81604052809350858152868686011115611f5d57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f8957600080fd5b813567ffffffffffffffff811115611fa057600080fd5b8201601f81018413611fb157600080fd5b61176584823560208401611f01565b600060208284031215611fd257600080fd5b813560ff8116811461103157600080fd5b634e487b7160e01b600052602160045260246000fd5b602081016002831061201b57634e487b7160e01b600052602160045260246000fd5b91905290565b801515811461115d57600080fd5b6000806040838503121561204257600080fd5b61204b83611d40565b91506020830135611d9481612021565b6000806000806080858703121561207157600080fd5b61207a85611d40565b935061208860208601611d40565b925060408501359150606085013567ffffffffffffffff8111156120ab57600080fd5b8501601f810187136120bc57600080fd5b6120cb87823560208401611f01565b91505092959194509250565b600080604083850312156120ea57600080fd5b6120f383611d40565b915061210160208401611d40565b90509250929050565b6000806040838503121561211d57600080fd5b8235915061210160208401611d40565b600181811c9082168061214157607f821691505b60208210810361216157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561218f5761218f612167565b500390565b600082198211156121a7576121a7612167565b500190565b6000602082840312156121be57600080fd5b815161103181612021565b60008160001904831182151516156121e3576121e3612167565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261220d5761220d6121e8565b500490565b634e487b7160e01b600052603260045260246000fd5b60006001820161223a5761223a612167565b5060010190565b60008351612253818460208801611d9f565b835190830190612267818360208801611d9f565b01949350505050565b60008261227f5761227f6121e8565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122b790830184611dcb565b9695505050505050565b6000602082840312156122d357600080fd5b815161103181611d0d56fea2646970667358221220721e6a1b4c987c6bb067b2699a1a33c7cc8be5758651fc672ed482768cea456f64736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000018426f72656420526f6f7374657220596163687420436c75620000000000000000000000000000000000000000000000000000000000000000000000000000000442525943000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061021c5760003560e01c80635a67de0711610125578063a22cb465116100ad578063cfc86f7b1161007c578063cfc86f7b146104b0578063d86bed9b146104b8578063e985e9c5146104cb578063f2fde38b14610507578063f5fcc99b1461051a57600080fd5b8063a22cb46514610464578063b88d4fde14610477578063bd3b14d31461048a578063c87b56dd1461049d57600080fd5b8063715018a6116100f4578063715018a6146104275780638da5cb5b1461042f57806391b7f5ed1461044057806395d89b4114610453578063a035b1fe1461045b57600080fd5b80635a67de07146103d4578063603f4d52146103e75780636352211e1461040157806370a082311461041457600080fd5b80632a55205a116101a857806342842e0e1161017757806342842e0e1461038957806344bb82791461039c578063453c2310146103af5780634b980d67146103b857806355f804b3146103c157600080fd5b80632a55205a1461031c5780633406c7261461034e578063391176681461036e5780633ccfd60b1461038157600080fd5b8063081812fc116101ef578063081812fc146102a857806308fd2a16146102d3578063095ea7b3146102e657806318160ddd146102f957806323b872dd1461030957600080fd5b806301ffc9a71461022157806302fa7c4714610249578063047fc9aa1461025e57806306fdde0314610293575b600080fd5b61023461022f366004611d23565b61052d565b60405190151581526020015b60405180910390f35b61025c610257366004611d5c565b61053e565b005b6102857f00000000000000000000000000000000000000000000000000000000000002bc81565b604051908152602001610240565b61029b610554565b6040516102409190611df7565b6102bb6102b6366004611e0a565b6105e6565b6040516001600160a01b039091168152602001610240565b61025c6102e1366004611e23565b61062a565b61025c6102f4366004611e48565b610814565b6001546000540360001901610285565b61025c610317366004611e72565b6108a1565b61032f61032a366004611eae565b6109fd565b604080516001600160a01b039093168352602083019190915201610240565b61028561035c366004611ed0565b60106020526000908152604090205481565b61025c61037c366004611e0a565b610aa9565b61025c610ab6565b61025c610397366004611e72565b610b4c565b6102bb6103aa366004611e0a565b610c9d565b610285600c5481565b610285600d5481565b61025c6103cf366004611f77565b610cc7565b61025c6103e2366004611fc0565b610ce2565b600e546103f49060ff1681565b6040516102409190611ff9565b6102bb61040f366004611e0a565b610d22565b610285610422366004611ed0565b610d34565b61025c610d83565b6008546001600160a01b03166102bb565b61025c61044e366004611e0a565b610d97565b61029b610da4565b610285600b5481565b61025c61047236600461202f565b610db3565b61025c61048536600461205b565b610e48565b61025c610498366004611e0a565b610fa7565b61029b6104ab366004611e0a565b610fb4565b61029b611038565b6102856104c6366004611e0a565b6110c6565b6102346104d93660046120d7565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61025c610515366004611ed0565b6110e7565b61025c61052836600461210a565b611160565b6000610538826111ca565b92915050565b6105466111ef565b6105508282611249565b5050565b6060600280546105639061212d565b80601f016020809104026020016040519081016040528092919081815260200182805461058f9061212d565b80156105dc5780601f106105b1576101008083540402835291602001916105dc565b820191906000526020600020905b8154815290600101906020018083116105bf57829003601f168201915b5050505050905090565b60006105f182611346565b61060e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6001600e5460ff16600181111561064357610643611fe3565b1461066157604051630fe219dd60e21b815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000002bc61068d60018461217d565b60005461069a9190612194565b11156106b9576040516352df9fe560e01b815260040160405180910390fd5b600c54336000908152601060205260409020546106d7908490612194565b11156106f65760405163524f409b60e01b815260040160405180910390fd5b600d548211156107195760405163524f409b60e01b815260040160405180910390fd5b604080516bffffffffffffffffffffffff193360601b1660208083019190915282518083036014018152603490920190925280519101206001600160e01b03198281169116146107a45760405162461bcd60e51b8152602060048201526011602482015270557365206f7572207765622c20636f636b60781b60448201526064015b60405180910390fd5b3233146107e55760405162461bcd60e51b815260206004820152600f60248201526e4e6f742061207265616c20636f636b60881b604482015260640161079b565b3360009081526010602052604081208054849290610804908490612194565b909155506105509050338361137f565b600061081f82610d22565b9050806001600160a01b0316836001600160a01b0316036108535760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610873575061087181336104d9565b155b15610891576040516367d9dca160e11b815260040160405180910390fd5b61089c838383611399565b505050565b826daaeb6d7670e522a718067333cd4e3b156109ec57336001600160a01b038216036108d7576108d28484846113f5565b6109f7565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610926573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094a91906121ac565b80156109cd5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156109a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cd91906121ac565b6109ec57604051633b79c77360e21b815233600482015260240161079b565b6109f78484846113f5565b50505050565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610a725750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610a91906001600160601b0316876121c9565b610a9b91906121fe565b915196919550909350505050565b610ab16111ef565b600c55565b610abe6111ef565b4760005b60115481101561055057610b3a60118281548110610ae257610ae2612212565b9060005260206000200160009054906101000a90046001600160a01b0316606460128481548110610b1557610b15612212565b906000526020600020015485610b2b91906121c9565b610b3591906121fe565b611400565b80610b4481612228565b915050610ac2565b826daaeb6d7670e522a718067333cd4e3b15610c9257336001600160a01b03821603610b7d576108d2848484611474565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610bcc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf091906121ac565b8015610c735750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610c4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7391906121ac565b610c9257604051633b79c77360e21b815233600482015260240161079b565b6109f7848484611474565b60118181548110610cad57600080fd5b6000918252602090912001546001600160a01b0316905081565b610ccf6111ef565b805161055090600f906020840190611c74565b610cea6111ef565b8060ff166001811115610cff57610cff611fe3565b600e805460ff191660018381811115610d1a57610d1a611fe3565b021790555050565b6000610d2d8261148f565b5192915050565b60006001600160a01b038216610d5d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610d8b6111ef565b610d9560006115b8565b565b610d9f6111ef565b600b55565b6060600380546105639061212d565b336001600160a01b03831603610ddc5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836daaeb6d7670e522a718067333cd4e3b15610f9457336001600160a01b03821603610e7f57610e7a8585858561160a565b610fa0565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610ece573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef291906121ac565b8015610f755750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610f51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7591906121ac565b610f9457604051633b79c77360e21b815233600482015260240161079b565b610fa08585858561160a565b5050505050565b610faf6111ef565b600d55565b6060610fbf82611346565b610fdc57604051630a14c4b560e41b815260040160405180910390fd5b6000610fe6611655565b905080516000036110065760405180602001604052806000815250611031565b8061101084611664565b604051602001611021929190612241565b6040516020818303038152906040525b9392505050565b600f80546110459061212d565b80601f01602080910402602001604051908101604052809291908181526020018280546110719061212d565b80156110be5780601f10611093576101008083540402835291602001916110be565b820191906000526020600020905b8154815290600101906020018083116110a157829003601f168201915b505050505081565b601281815481106110d657600080fd5b600091825260209091200154905081565b6110ef6111ef565b6001600160a01b0381166111545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079b565b61115d816115b8565b50565b6111686111ef565b7f00000000000000000000000000000000000000000000000000000000000002bc61119460018461217d565b6000546111a19190612194565b11156111c0576040516352df9fe560e01b815260040160405180910390fd5b610550818361137f565b60006001600160e01b0319821663152a902d60e11b148061053857506105388261176d565b6008546001600160a01b03163314610d955760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079b565b6127106001600160601b03821611156112b75760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840161079b565b6001600160a01b03821661130d5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640161079b565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b60008160011115801561135a575060005482105b8015610538575050600090815260046020526040902054600160e01b900460ff161590565b6105508282604051806020016040528060008152506117bd565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61089c8383836117ca565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461144d576040519150601f19603f3d011682016040523d82523d6000602084013e611452565b606091505b505090508061089c57604051631d42c86760e21b815260040160405180910390fd5b61089c83838360405180602001604052806000815250610e48565b604080516060810182526000808252602082018190529181019190915281806001111580156114bf575060005481105b1561159f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061159d5780516001600160a01b031615611533579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611598579392505050565b611533565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6116158484846117ca565b6001600160a01b0383163b151580156116375750611635848484846119b7565b155b156109f7576040516368d2bf6b60e11b815260040160405180910390fd5b6060600f80546105639061212d565b60608160000361168b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116b5578061169f81612228565b91506116ae9050600a836121fe565b915061168f565b60008167ffffffffffffffff8111156116d0576116d0611eeb565b6040519080825280601f01601f1916602001820160405280156116fa576020820181803683370190505b5090505b84156117655761170f60018361217d565b915061171c600a86612270565b611727906030612194565b60f81b81838151811061173c5761173c612212565b60200101906001600160f81b031916908160001a90535061175e600a866121fe565b94506116fe565b949350505050565b60006001600160e01b031982166380ac58cd60e01b148061179e57506001600160e01b03198216635b5e139f60e01b145b8061053857506301ffc9a760e01b6001600160e01b0319831614610538565b61089c8383836001611aa2565b60006117d58261148f565b9050836001600160a01b031681600001516001600160a01b03161461180c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061182a575061182a85336104d9565b8061184557503361183a846105e6565b6001600160a01b0316145b90508061186557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661188c57604051633a954ecd60e21b815260040160405180910390fd5b61189860008487611399565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661196e57600054821461196e578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fa0565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119ec903390899088908890600401612284565b6020604051808303816000875af1925050508015611a27575060408051601f3d908101601f19168201909252611a24918101906122c1565b60015b611a85573d808015611a55576040519150601f19603f3d011682016040523d82523d6000602084013e611a5a565b606091505b508051600003611a7d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611acb57604051622e076360e81b815260040160405180910390fd5b83600003611aec5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611b9e57506001600160a01b0387163b15155b15611c26575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611bef60008884806001019550886119b7565b611c0c576040516368d2bf6b60e11b815260040160405180910390fd5b808203611ba4578260005414611c2157600080fd5b611c6b565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611c27575b50600055610fa0565b828054611c809061212d565b90600052602060002090601f016020900481019282611ca25760008555611ce8565b82601f10611cbb57805160ff1916838001178555611ce8565b82800160010185558215611ce8579182015b82811115611ce8578251825591602001919060010190611ccd565b50611cf4929150611cf8565b5090565b5b80821115611cf45760008155600101611cf9565b6001600160e01b03198116811461115d57600080fd5b600060208284031215611d3557600080fd5b813561103181611d0d565b80356001600160a01b0381168114611d5757600080fd5b919050565b60008060408385031215611d6f57600080fd5b611d7883611d40565b915060208301356001600160601b0381168114611d9457600080fd5b809150509250929050565b60005b83811015611dba578181015183820152602001611da2565b838111156109f75750506000910152565b60008151808452611de3816020860160208601611d9f565b601f01601f19169290920160200192915050565b6020815260006110316020830184611dcb565b600060208284031215611e1c57600080fd5b5035919050565b60008060408385031215611e3657600080fd5b823591506020830135611d9481611d0d565b60008060408385031215611e5b57600080fd5b611e6483611d40565b946020939093013593505050565b600080600060608486031215611e8757600080fd5b611e9084611d40565b9250611e9e60208501611d40565b9150604084013590509250925092565b60008060408385031215611ec157600080fd5b50508035926020909101359150565b600060208284031215611ee257600080fd5b61103182611d40565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f1c57611f1c611eeb565b604051601f8501601f19908116603f01168101908282118183101715611f4457611f44611eeb565b81604052809350858152868686011115611f5d57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f8957600080fd5b813567ffffffffffffffff811115611fa057600080fd5b8201601f81018413611fb157600080fd5b61176584823560208401611f01565b600060208284031215611fd257600080fd5b813560ff8116811461103157600080fd5b634e487b7160e01b600052602160045260246000fd5b602081016002831061201b57634e487b7160e01b600052602160045260246000fd5b91905290565b801515811461115d57600080fd5b6000806040838503121561204257600080fd5b61204b83611d40565b91506020830135611d9481612021565b6000806000806080858703121561207157600080fd5b61207a85611d40565b935061208860208601611d40565b925060408501359150606085013567ffffffffffffffff8111156120ab57600080fd5b8501601f810187136120bc57600080fd5b6120cb87823560208401611f01565b91505092959194509250565b600080604083850312156120ea57600080fd5b6120f383611d40565b915061210160208401611d40565b90509250929050565b6000806040838503121561211d57600080fd5b8235915061210160208401611d40565b600181811c9082168061214157607f821691505b60208210810361216157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561218f5761218f612167565b500390565b600082198211156121a7576121a7612167565b500190565b6000602082840312156121be57600080fd5b815161103181612021565b60008160001904831182151516156121e3576121e3612167565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261220d5761220d6121e8565b500490565b634e487b7160e01b600052603260045260246000fd5b60006001820161223a5761223a612167565b5060010190565b60008351612253818460208801611d9f565b835190830190612267818360208801611d9f565b01949350505050565b60008261227f5761227f6121e8565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122b790830184611dcb565b9695505050505050565b6000602082840312156122d357600080fd5b815161103181611d0d56fea2646970667358221220721e6a1b4c987c6bb067b2699a1a33c7cc8be5758651fc672ed482768cea456f64736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000018426f72656420526f6f7374657220596163687420436c75620000000000000000000000000000000000000000000000000000000000000000000000000000000442525943000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Bored Rooster Yacht Club
Arg [1] : _symbol (string): BRYC
Arg [2] : _baseUri (string): ipfs://
Arg [3] : _royaltyAmount (uint96): 1000

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [5] : 426f72656420526f6f7374657220596163687420436c75620000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4252594300000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [9] : 697066733a2f2f00000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

55425:4179:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58574:204;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;58574:204:0;;;;;;;;58396:170;;;;;;:::i;:::-;;:::i;:::-;;55630:37;;;;;;;;1287:25:1;;;1275:2;1260:18;55630:37:0;1141:177:1;32817:100:0;;;:::i;:::-;;;;;;;:::i;34320:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2423:32:1;;;2405:51;;2393:2;2378:18;34320:204:0;2259:203:1;56377:591:0;;;;;;:::i;:::-;;:::i;33883:371::-;;;;;;:::i;:::-;;:::i;28953:303::-;57068:1;29207:12;28997:7;29191:13;:28;-1:-1:-1;;29191:46:0;28953:303;;58786:197;;;;;;:::i;:::-;;:::i;52734:442::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3822:32:1;;;3804:51;;3886:2;3871:18;;3864:34;;;;3777:18;52734:442:0;3630:274:1;55828:53:0;;;;;;:::i;:::-;;;;;;;;;;;;;;57721:96;;;;;;:::i;:::-;;:::i;58128:260::-;;;:::i;58991:205::-;;;;;;:::i;:::-;;:::i;55890:81::-;;;;;;:::i;:::-;;:::i;55547:31::-;;;;;;55585:36;;;;;;57213:104;;;;;;:::i;:::-;;:::i;57423:103::-;;;;;;:::i;:::-;;:::i;55738:45::-;;;;;;;;;;;;;;;;:::i;32625:125::-;;;;;;:::i;:::-;;:::i;30073:206::-;;;;;;:::i;:::-;;:::i;49351:103::-;;;:::i;48703:87::-;48776:6;;-1:-1:-1;;;;;48776:6:0;48703:87;;57325:90;;;;;;:::i;:::-;;:::i;32986:104::-;;;:::i;55510:30::-;;;;;;34596:287;;;;;;:::i;:::-;;:::i;59204:239::-;;;;;;:::i;:::-;;:::i;57825:106::-;;;;;;:::i;:::-;;:::i;33161:318::-;;;;;;:::i;:::-;;:::i;55792:27::-;;;:::i;55978:44::-;;;;;;:::i;:::-;;:::i;34954:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;35075:25:0;;;35051:4;35075:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34954:164;49609:201;;;;;;:::i;:::-;;:::i;57534:179::-;;;;;;:::i;:::-;;:::i;58574:204::-;58705:4;58734:36;58758:11;58734:23;:36::i;:::-;58727:43;58574:204;-1:-1:-1;;58574:204:0:o;58396:170::-;48589:13;:11;:13::i;:::-;58514:44:::1;58533:8;58543:14;58514:18;:44::i;:::-;58396:170:::0;;:::o;32817:100::-;32871:13;32904:5;32897:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32817:100;:::o;34320:204::-;34388:7;34413:16;34421:7;34413;:16::i;:::-;34408:64;;34438:34;;-1:-1:-1;;;34438:34:0;;;;;;;;;;;34408:64;-1:-1:-1;34492:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34492:24:0;;34320:204::o;56377:591::-;56472:14;56459:9;;;;;:27;;;;;;;:::i;:::-;;56455:54;;56495:14;;-1:-1:-1;;;56495:14:0;;;;;;;;;;;56455:54;56552:6;56541:7;56547:1;56541:3;:7;:::i;:::-;56524:13;;:25;;;;:::i;:::-;:34;56520:56;;;56567:9;;-1:-1:-1;;;56567:9:0;;;;;;;;;;;56520:56;56630:12;;56610:10;56591:30;;;;:18;:30;;;;;;:36;;56624:3;;56591:36;:::i;:::-;:51;56587:81;;;56651:17;;-1:-1:-1;;;56651:17:0;;;;;;;;;;;56587:81;56689:17;;56683:3;:23;56679:53;;;56715:17;;-1:-1:-1;;;56715:17:0;;;;;;;;;;;56679:53;59558:23;;;-1:-1:-1;;56757:10:0;12605:2:1;12601:15;12597:53;59558:23:0;;;;12585:66:1;;;;59558:23:0;;;;;;;;;12667:12:1;;;;59558:23:0;;;59548:34;;;;;-1:-1:-1;;;;;;59541:52:0;;;;;;56743:66;;;;-1:-1:-1;;;56743:66:0;;8699:2:1;56743:66:0;;;8681:21:1;8738:2;8718:18;;;8711:30;-1:-1:-1;;;8757:18:1;;;8750:47;8814:18;;56743:66:0;;;;;;;;;56828:9;56841:10;56828:23;56820:51;;;;-1:-1:-1;;;56820:51:0;;9045:2:1;56820:51:0;;;9027:21:1;9084:2;9064:18;;;9057:30;-1:-1:-1;;;9103:18:1;;;9096:45;9158:18;;56820:51:0;8843:339:1;56820:51:0;56901:10;56882:30;;;;:18;:30;;;;;:37;;56916:3;;56882:30;:37;;56916:3;;56882:37;:::i;:::-;;;;-1:-1:-1;56932:26:0;;-1:-1:-1;56942:10:0;56954:3;56932:9;:26::i;33883:371::-;33956:13;33972:24;33988:7;33972:15;:24::i;:::-;33956:40;;34017:5;-1:-1:-1;;;;;34011:11:0;:2;-1:-1:-1;;;;;34011:11:0;;34007:48;;34031:24;;-1:-1:-1;;;34031:24:0;;;;;;;;;;;34007:48;11312:10;-1:-1:-1;;;;;34072:21:0;;;;;;:63;;-1:-1:-1;34098:37:0;34115:5;11312:10;34954:164;:::i;34098:37::-;34097:38;34072:63;34068:138;;;34159:35;;-1:-1:-1;;;34159:35:0;;;;;;;;;;;34068:138;34218:28;34227:2;34231:7;34240:5;34218:8;:28::i;:::-;33945:309;33883:371;;:::o;58786:197::-;58921:4;2546:42;3686:43;:47;3682:699;;3973:10;-1:-1:-1;;;;;3965:18:0;;;3961:85;;58938:37:::1;58957:4;58963:2;58967:7;58938:18;:37::i;:::-;4024:7:::0;;3961:85;4106:67;;-1:-1:-1;;;4106:67:0;;4155:4;4106:67;;;9399:34:1;4162:10:0;9449:18:1;;;9442:43;2546:42:0;;4106:40;;9334:18:1;;4106:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4202:61:0;;-1:-1:-1;;;4202:61:0;;4251:4;4202:61;;;9399:34:1;-1:-1:-1;;;;;9469:15:1;;9449:18;;;9442:43;2546:42:0;;4202:40;;9334:18:1;;4202:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4060:310;;4324:30;;-1:-1:-1;;;4324:30:0;;4343:10;4324:30;;;2405:51:1;2378:18;;4324:30:0;2259:203:1;4060:310:0;58938:37:::1;58957:4;58963:2;58967:7;58938:18;:37::i;:::-;58786:197:::0;;;;:::o;52734:442::-;52831:7;52889:27;;;:17;:27;;;;;;;;52860:56;;;;;;;;;-1:-1:-1;;;;;52860:56:0;;;;;-1:-1:-1;;;52860:56:0;;;-1:-1:-1;;;;;52860:56:0;;;;;;;;52831:7;;52929:92;;-1:-1:-1;52980:29:0;;;;;;;;;52990:19;52980:29;-1:-1:-1;;;;;52980:29:0;;;;-1:-1:-1;;;52980:29:0;;-1:-1:-1;;;;;52980:29:0;;;;;52929:92;53071:23;;;;53033:21;;53542:5;;53058:36;;-1:-1:-1;;;;;53058:36:0;:10;:36;:::i;:::-;53057:58;;;;:::i;:::-;53136:16;;;;;-1:-1:-1;52734:442:0;;-1:-1:-1;;;;52734:442:0:o;57721:96::-;48589:13;:11;:13::i;:::-;57790:12:::1;:19:::0;57721:96::o;58128:260::-;48589:13;:11;:13::i;:::-;58196:21:::1;58178:15;58230:151;58250:17;:24:::0;58246:28;::::1;58230:151;;;58296:73;58306:17;58324:1;58306:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;58306:20:0::1;58365:3;58339:19;58359:1;58339:22;;;;;;;;:::i;:::-;;;;;;;;;58329:7;:32;;;;:::i;:::-;58328:40;;;;:::i;:::-;58296:9;:73::i;:::-;58276:3:::0;::::1;::::0;::::1;:::i;:::-;;;;58230:151;;58991:205:::0;59130:4;2546:42;3686:43;:47;3682:699;;3973:10;-1:-1:-1;;;;;3965:18:0;;;3961:85;;59147:41:::1;59170:4;59176:2;59180:7;59147:22;:41::i;3961:85::-:0;4106:67;;-1:-1:-1;;;4106:67:0;;4155:4;4106:67;;;9399:34:1;4162:10:0;9449:18:1;;;9442:43;2546:42:0;;4106:40;;9334:18:1;;4106:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4202:61:0;;-1:-1:-1;;;4202:61:0;;4251:4;4202:61;;;9399:34:1;-1:-1:-1;;;;;9469:15:1;;9449:18;;;9442:43;2546:42:0;;4202:40;;9334:18:1;;4202:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4060:310;;4324:30;;-1:-1:-1;;;4324:30:0;;4343:10;4324:30;;;2405:51:1;2378:18;;4324:30:0;2259:203:1;4060:310:0;59147:41:::1;59170:4;59176:2;59180:7;59147:22;:41::i;55890:81::-:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55890:81:0;;-1:-1:-1;55890:81:0;:::o;57213:104::-;48589:13;:11;:13::i;:::-;57286:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;57423:103::-:0;48589:13;:11;:13::i;:::-;57511:6:::1;57501:17;;;;;;;;;;:::i;:::-;57489:9;:29:::0;;-1:-1:-1;;57489:29:0::1;::::0;;;;::::1;;;;;;:::i;:::-;;;;;;57423:103:::0;:::o;32625:125::-;32689:7;32716:21;32729:7;32716:12;:21::i;:::-;:26;;32625:125;-1:-1:-1;;32625:125:0:o;30073:206::-;30137:7;-1:-1:-1;;;;;30161:19:0;;30157:60;;30189:28;;-1:-1:-1;;;30189:28:0;;;;;;;;;;;30157:60;-1:-1:-1;;;;;;30243:19:0;;;;;:12;:19;;;;;:27;;;;30073:206::o;49351:103::-;48589:13;:11;:13::i;:::-;49416:30:::1;49443:1;49416:18;:30::i;:::-;49351:103::o:0;57325:90::-;48589:13;:11;:13::i;:::-;57391:5:::1;:16:::0;57325:90::o;32986:104::-;33042:13;33075:7;33068:14;;;;;:::i;34596:287::-;11312:10;-1:-1:-1;;;;;34695:24:0;;;34691:54;;34728:17;;-1:-1:-1;;;34728:17:0;;;;;;;;;;;34691:54;11312:10;34758:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34758:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34758:53:0;;;;;;;;;;34827:48;;540:41:1;;;34758:42:0;;11312:10;34827:48;;513:18:1;34827:48:0;;;;;;;34596:287;;:::o;59204:239::-;59371:4;2546:42;3686:43;:47;3682:699;;3973:10;-1:-1:-1;;;;;3965:18:0;;;3961:85;;59388:47:::1;59411:4;59417:2;59421:7;59430:4;59388:22;:47::i;:::-;4024:7:::0;;3961:85;4106:67;;-1:-1:-1;;;4106:67:0;;4155:4;4106:67;;;9399:34:1;4162:10:0;9449:18:1;;;9442:43;2546:42:0;;4106:40;;9334:18:1;;4106:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4202:61:0;;-1:-1:-1;;;4202:61:0;;4251:4;4202:61;;;9399:34:1;-1:-1:-1;;;;;9469:15:1;;9449:18;;;9442:43;2546:42:0;;4202:40;;9334:18:1;;4202:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4060:310;;4324:30;;-1:-1:-1;;;4324:30:0;;4343:10;4324:30;;;2405:51:1;2378:18;;4324:30:0;2259:203:1;4060:310:0;59388:47:::1;59411:4;59417:2;59421:7;59430:4;59388:22;:47::i;:::-;59204:239:::0;;;;;:::o;57825:106::-;48589:13;:11;:13::i;:::-;57899:17:::1;:24:::0;57825:106::o;33161:318::-;33234:13;33265:16;33273:7;33265;:16::i;:::-;33260:59;;33290:29;;-1:-1:-1;;;33290:29:0;;;;;;;;;;;33260:59;33332:21;33356:10;:8;:10::i;:::-;33332:34;;33390:7;33384:21;33409:1;33384:26;:87;;;;;;;;;;;;;;;;;33437:7;33446:18;:7;:16;:18::i;:::-;33420:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33384:87;33377:94;33161:318;-1:-1:-1;;;33161:318:0:o;55792:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55978:44::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55978:44:0;:::o;49609:201::-;48589:13;:11;:13::i;:::-;-1:-1:-1;;;;;49698:22:0;::::1;49690:73;;;::::0;-1:-1:-1;;;49690:73:0;;11125:2:1;49690:73:0::1;::::0;::::1;11107:21:1::0;11164:2;11144:18;;;11137:30;11203:34;11183:18;;;11176:62;-1:-1:-1;;;11254:18:1;;;11247:36;11300:19;;49690:73:0::1;10923:402:1::0;49690:73:0::1;49774:28;49793:8;49774:18;:28::i;:::-;49609:201:::0;:::o;57534:179::-;48589:13;:11;:13::i;:::-;57645:6:::1;57634:7;57640:1;57634:3:::0;:7:::1;:::i;:::-;57617:13;;:25;;;;:::i;:::-;:34;57613:56;;;57660:9;;-1:-1:-1::0;;;57660:9:0::1;;;;;;;;;;;57613:56;57680:25;57690:9;57701:3;57680:9;:25::i;52464:215::-:0;52566:4;-1:-1:-1;;;;;;52590:41:0;;-1:-1:-1;;;52590:41:0;;:81;;;52635:36;52659:11;52635:23;:36::i;48868:132::-;48776:6;;-1:-1:-1;;;;;48776:6:0;11312:10;48932:23;48924:68;;;;-1:-1:-1;;;48924:68:0;;11532:2:1;48924:68:0;;;11514:21:1;;;11551:18;;;11544:30;11610:34;11590:18;;;11583:62;11662:18;;48924:68:0;11330:356:1;53826:332:0;53542:5;-1:-1:-1;;;;;53929:33:0;;;;53921:88;;;;-1:-1:-1;;;53921:88:0;;11893:2:1;53921:88:0;;;11875:21:1;11932:2;11912:18;;;11905:30;11971:34;11951:18;;;11944:62;-1:-1:-1;;;12022:18:1;;;12015:40;12072:19;;53921:88:0;11691:406:1;53921:88:0;-1:-1:-1;;;;;54028:22:0;;54020:60;;;;-1:-1:-1;;;54020:60:0;;12304:2:1;54020:60:0;;;12286:21:1;12343:2;12323:18;;;12316:30;12382:27;12362:18;;;12355:55;12427:18;;54020:60:0;12102:349:1;54020:60:0;54115:35;;;;;;;;;-1:-1:-1;;;;;54115:35:0;;;;;;-1:-1:-1;;;;;54115:35:0;;;;;;;;;;-1:-1:-1;;;54093:57:0;;;;:19;:57;53826:332::o;36306:187::-;36363:4;36406:7;57068:1;36387:26;;:53;;;;;36427:13;;36417:7;:23;36387:53;:98;;;;-1:-1:-1;;36458:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36458:27:0;;;;36457:28;;36306:187::o;36501:104::-;36570:27;36580:2;36584:8;36570:27;;;;;;;;;;;;:9;:27::i;44476:196::-;44591:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44591:29:0;-1:-1:-1;;;;;44591:29:0;;;;;;;;;44636:28;;44591:24;;44636:28;;;;;;;44476:196;;;:::o;35185:170::-;35319:28;35329:4;35335:2;35339:7;35319:9;:28::i;57939:181::-;58013:12;58031:8;-1:-1:-1;;;;;58031:13:0;58052:7;58031:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58012:52;;;58080:7;58075:37;;58096:16;;-1:-1:-1;;;58096:16:0;;;;;;;;;;;35426:185;35564:39;35581:4;35587:2;35591:7;35564:39;;;;;;;;;;;;:16;:39::i;31454:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31565:7:0;;57068:1;31614:23;;:47;;;;;31648:13;;31641:4;:20;31614:47;31610:886;;;31682:31;31716:17;;;:11;:17;;;;;;;;;31682:51;;;;;;;;;-1:-1:-1;;;;;31682:51:0;;;;-1:-1:-1;;;31682:51:0;;;;;;;;;;;-1:-1:-1;;;31682:51:0;;;;;;;;;;;;;;31752:729;;31802:14;;-1:-1:-1;;;;;31802:28:0;;31798:101;;31866:9;31454:1109;-1:-1:-1;;;31454:1109:0:o;31798:101::-;-1:-1:-1;;;32241:6:0;32286:17;;;;:11;:17;;;;;;;;;32274:29;;;;;;;;;-1:-1:-1;;;;;32274:29:0;;;;;-1:-1:-1;;;32274:29:0;;;;;;;;;;;-1:-1:-1;;;32274:29:0;;;;;;;;;;;;;32334:28;32330:109;;32402:9;31454:1109;-1:-1:-1;;;31454:1109:0:o;32330:109::-;32201:261;;;31663:833;31610:886;32524:31;;-1:-1:-1;;;32524:31:0;;;;;;;;;;;49970:191;50063:6;;;-1:-1:-1;;;;;50080:17:0;;;-1:-1:-1;;;;;;50080:17:0;;;;;;;50113:40;;50063:6;;;50080:17;50063:6;;50113:40;;50044:16;;50113:40;50033:128;49970:191;:::o;35682:369::-;35849:28;35859:4;35865:2;35869:7;35849:9;:28::i;:::-;-1:-1:-1;;;;;35892:13:0;;12982:19;:23;;35892:76;;;;;35912:56;35943:4;35949:2;35953:7;35962:5;35912:30;:56::i;:::-;35911:57;35892:76;35888:156;;;35992:40;;-1:-1:-1;;;35992:40:0;;;;;;;;;;;57085:114;57145:13;57178;57171:20;;;;;:::i;22326:723::-;22382:13;22603:5;22612:1;22603:10;22599:53;;-1:-1:-1;;22630:10:0;;;;;;;;;;;;-1:-1:-1;;;22630:10:0;;;;;22326:723::o;22599:53::-;22677:5;22662:12;22718:78;22725:9;;22718:78;;22751:8;;;;:::i;:::-;;-1:-1:-1;22774:10:0;;-1:-1:-1;22782:2:0;22774:10;;:::i;:::-;;;22718:78;;;22806:19;22838:6;22828:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22828:17:0;;22806:39;;22856:154;22863:10;;22856:154;;22890:11;22900:1;22890:11;;:::i;:::-;;-1:-1:-1;22959:10:0;22967:2;22959:5;:10;:::i;:::-;22946:24;;:2;:24;:::i;:::-;22933:39;;22916:6;22923;22916:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;22916:56:0;;;;;;;;-1:-1:-1;22987:11:0;22996:2;22987:11;;:::i;:::-;;;22856:154;;;23034:6;22326:723;-1:-1:-1;;;;22326:723:0:o;29704:305::-;29806:4;-1:-1:-1;;;;;;29843:40:0;;-1:-1:-1;;;29843:40:0;;:105;;-1:-1:-1;;;;;;;29900:48:0;;-1:-1:-1;;;29900:48:0;29843:105;:158;;;-1:-1:-1;;;;;;;;;;25373:40:0;;;29965:36;25264:157;36968:163;37091:32;37097:2;37101:8;37111:5;37118:4;37091:5;:32::i;39419:2130::-;39534:35;39572:21;39585:7;39572:12;:21::i;:::-;39534:59;;39632:4;-1:-1:-1;;;;;39610:26:0;:13;:18;;;-1:-1:-1;;;;;39610:26:0;;39606:67;;39645:28;;-1:-1:-1;;;39645:28:0;;;;;;;;;;;39606:67;39686:22;11312:10;-1:-1:-1;;;;;39712:20:0;;;;:73;;-1:-1:-1;39749:36:0;39766:4;11312:10;34954:164;:::i;39749:36::-;39712:126;;;-1:-1:-1;11312:10:0;39802:20;39814:7;39802:11;:20::i;:::-;-1:-1:-1;;;;;39802:36:0;;39712:126;39686:153;;39857:17;39852:66;;39883:35;;-1:-1:-1;;;39883:35:0;;;;;;;;;;;39852:66;-1:-1:-1;;;;;39933:16:0;;39929:52;;39958:23;;-1:-1:-1;;;39958:23:0;;;;;;;;;;;39929:52;40102:35;40119:1;40123:7;40132:4;40102:8;:35::i;:::-;-1:-1:-1;;;;;40433:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40433:31:0;;;;;;;-1:-1:-1;;40433:31:0;;;;;;;40479:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40479:29:0;;;;;;;;;;;40559:20;;;:11;:20;;;;;;40594:18;;-1:-1:-1;;;;;;40627:49:0;;;;-1:-1:-1;;;40660:15:0;40627:49;;;;;;;;;;40950:11;;41010:24;;;;;41053:13;;40559:20;;41010:24;;41053:13;41049:384;;41263:13;;41248:11;:28;41244:174;;41301:20;;41370:28;;;;41344:54;;-1:-1:-1;;;41344:54:0;-1:-1:-1;;;;;;41344:54:0;;;-1:-1:-1;;;;;41301:20:0;;41344:54;;;;41244:174;40408:1036;;;41480:7;41476:2;-1:-1:-1;;;;;41461:27:0;41470:4;-1:-1:-1;;;;;41461:27:0;;;;;;;;;;;41499:42;58786:197;45164:667;45348:72;;-1:-1:-1;;;45348:72:0;;45327:4;;-1:-1:-1;;;;;45348:36:0;;;;;:72;;11312:10;;45399:4;;45405:7;;45414:5;;45348:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45348:72:0;;;;;;;;-1:-1:-1;;45348:72:0;;;;;;;;;;;;:::i;:::-;;;45344:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45582:6;:13;45599:1;45582:18;45578:235;;45628:40;;-1:-1:-1;;;45628:40:0;;;;;;;;;;;45578:235;45771:6;45765:13;45756:6;45752:2;45748:15;45741:38;45344:480;-1:-1:-1;;;;;;45467:55:0;-1:-1:-1;;;45467:55:0;;-1:-1:-1;45164:667:0;;;;;;:::o;37390:1775::-;37529:20;37552:13;-1:-1:-1;;;;;37580:16:0;;37576:48;;37605:19;;-1:-1:-1;;;37605:19:0;;;;;;;;;;;37576:48;37639:8;37651:1;37639:13;37635:44;;37661:18;;-1:-1:-1;;;37661:18:0;;;;;;;;;;;37635:44;-1:-1:-1;;;;;38030:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38089:49:0;;38030:44;;;;;;;;38089:49;;;;-1:-1:-1;;38030:44:0;;;;;;38089:49;;;;;;;;;;;;;;;;38155:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;38205:66:0;;;;-1:-1:-1;;;38255:15:0;38205:66;;;;;;;;;;38155:25;38352:23;;;38396:4;:23;;;;-1:-1:-1;;;;;;38404:13:0;;12982:19;:23;;38404:15;38392:641;;;38440:314;38471:38;;38496:12;;-1:-1:-1;;;;;38471:38:0;;;38488:1;;38471:38;;38488:1;;38471:38;38537:69;38576:1;38580:2;38584:14;;;;;;38600:5;38537:30;:69::i;:::-;38532:174;;38642:40;;-1:-1:-1;;;38642:40:0;;;;;;;;;;;38532:174;38749:3;38733:12;:19;38440:314;;38835:12;38818:13;;:29;38814:43;;38849:8;;;38814:43;38392:641;;;38898:120;38929:40;;38954:14;;;;;-1:-1:-1;;;;;38929:40:0;;;38946:1;;38929:40;;38946:1;;38929:40;39013:3;38997:12;:19;38898:120;;38392:641;-1:-1:-1;39047:13:0;:28;39097:60;58786:197;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:366::-;837:6;845;898:2;886:9;877:7;873:23;869:32;866:52;;;914:1;911;904:12;866:52;937:29;956:9;937:29;:::i;:::-;927:39;;1016:2;1005:9;1001:18;988:32;-1:-1:-1;;;;;1053:5:1;1049:38;1042:5;1039:49;1029:77;;1102:1;1099;1092:12;1029:77;1125:5;1115:15;;;770:366;;;;;:::o;1323:258::-;1395:1;1405:113;1419:6;1416:1;1413:13;1405:113;;;1495:11;;;1489:18;1476:11;;;1469:39;1441:2;1434:10;1405:113;;;1536:6;1533:1;1530:13;1527:48;;;-1:-1:-1;;1571:1:1;1553:16;;1546:27;1323:258::o;1586:::-;1628:3;1666:5;1660:12;1693:6;1688:3;1681:19;1709:63;1765:6;1758:4;1753:3;1749:14;1742:4;1735:5;1731:16;1709:63;:::i;:::-;1826:2;1805:15;-1:-1:-1;;1801:29:1;1792:39;;;;1833:4;1788:50;;1586:258;-1:-1:-1;;1586:258:1:o;1849:220::-;1998:2;1987:9;1980:21;1961:4;2018:45;2059:2;2048:9;2044:18;2036:6;2018:45;:::i;2074:180::-;2133:6;2186:2;2174:9;2165:7;2161:23;2157:32;2154:52;;;2202:1;2199;2192:12;2154:52;-1:-1:-1;2225:23:1;;2074:180;-1:-1:-1;2074:180:1:o;2467:313::-;2534:6;2542;2595:2;2583:9;2574:7;2570:23;2566:32;2563:52;;;2611:1;2608;2601:12;2563:52;2647:9;2634:23;2624:33;;2707:2;2696:9;2692:18;2679:32;2720:30;2744:5;2720:30;:::i;2785:254::-;2853:6;2861;2914:2;2902:9;2893:7;2889:23;2885:32;2882:52;;;2930:1;2927;2920:12;2882:52;2953:29;2972:9;2953:29;:::i;:::-;2943:39;3029:2;3014:18;;;;3001:32;;-1:-1:-1;;;2785:254:1:o;3044:328::-;3121:6;3129;3137;3190:2;3178:9;3169:7;3165:23;3161:32;3158:52;;;3206:1;3203;3196:12;3158:52;3229:29;3248:9;3229:29;:::i;:::-;3219:39;;3277:38;3311:2;3300:9;3296:18;3277:38;:::i;:::-;3267:48;;3362:2;3351:9;3347:18;3334:32;3324:42;;3044:328;;;;;:::o;3377:248::-;3445:6;3453;3506:2;3494:9;3485:7;3481:23;3477:32;3474:52;;;3522:1;3519;3512:12;3474:52;-1:-1:-1;;3545:23:1;;;3615:2;3600:18;;;3587:32;;-1:-1:-1;3377:248:1:o;3909:186::-;3968:6;4021:2;4009:9;4000:7;3996:23;3992:32;3989:52;;;4037:1;4034;4027:12;3989:52;4060:29;4079:9;4060:29;:::i;4100:127::-;4161:10;4156:3;4152:20;4149:1;4142:31;4192:4;4189:1;4182:15;4216:4;4213:1;4206:15;4232:632;4297:5;4327:18;4368:2;4360:6;4357:14;4354:40;;;4374:18;;:::i;:::-;4449:2;4443:9;4417:2;4503:15;;-1:-1:-1;;4499:24:1;;;4525:2;4495:33;4491:42;4479:55;;;4549:18;;;4569:22;;;4546:46;4543:72;;;4595:18;;:::i;:::-;4635:10;4631:2;4624:22;4664:6;4655:15;;4694:6;4686;4679:22;4734:3;4725:6;4720:3;4716:16;4713:25;4710:45;;;4751:1;4748;4741:12;4710:45;4801:6;4796:3;4789:4;4781:6;4777:17;4764:44;4856:1;4849:4;4840:6;4832;4828:19;4824:30;4817:41;;;;4232:632;;;;;:::o;4869:451::-;4938:6;4991:2;4979:9;4970:7;4966:23;4962:32;4959:52;;;5007:1;5004;4997:12;4959:52;5047:9;5034:23;5080:18;5072:6;5069:30;5066:50;;;5112:1;5109;5102:12;5066:50;5135:22;;5188:4;5180:13;;5176:27;-1:-1:-1;5166:55:1;;5217:1;5214;5207:12;5166:55;5240:74;5306:7;5301:2;5288:16;5283:2;5279;5275:11;5240:74;:::i;5325:269::-;5382:6;5435:2;5423:9;5414:7;5410:23;5406:32;5403:52;;;5451:1;5448;5441:12;5403:52;5490:9;5477:23;5540:4;5533:5;5529:16;5522:5;5519:27;5509:55;;5560:1;5557;5550:12;5599:127;5660:10;5655:3;5651:20;5648:1;5641:31;5691:4;5688:1;5681:15;5715:4;5712:1;5705:15;5731:342;5877:2;5862:18;;5910:1;5899:13;;5889:144;;5955:10;5950:3;5946:20;5943:1;5936:31;5990:4;5987:1;5980:15;6018:4;6015:1;6008:15;5889:144;6042:25;;;5731:342;:::o;6078:118::-;6164:5;6157:13;6150:21;6143:5;6140:32;6130:60;;6186:1;6183;6176:12;6201:315;6266:6;6274;6327:2;6315:9;6306:7;6302:23;6298:32;6295:52;;;6343:1;6340;6333:12;6295:52;6366:29;6385:9;6366:29;:::i;:::-;6356:39;;6445:2;6434:9;6430:18;6417:32;6458:28;6480:5;6458:28;:::i;6521:667::-;6616:6;6624;6632;6640;6693:3;6681:9;6672:7;6668:23;6664:33;6661:53;;;6710:1;6707;6700:12;6661:53;6733:29;6752:9;6733:29;:::i;:::-;6723:39;;6781:38;6815:2;6804:9;6800:18;6781:38;:::i;:::-;6771:48;;6866:2;6855:9;6851:18;6838:32;6828:42;;6921:2;6910:9;6906:18;6893:32;6948:18;6940:6;6937:30;6934:50;;;6980:1;6977;6970:12;6934:50;7003:22;;7056:4;7048:13;;7044:27;-1:-1:-1;7034:55:1;;7085:1;7082;7075:12;7034:55;7108:74;7174:7;7169:2;7156:16;7151:2;7147;7143:11;7108:74;:::i;:::-;7098:84;;;6521:667;;;;;;;:::o;7193:260::-;7261:6;7269;7322:2;7310:9;7301:7;7297:23;7293:32;7290:52;;;7338:1;7335;7328:12;7290:52;7361:29;7380:9;7361:29;:::i;:::-;7351:39;;7409:38;7443:2;7432:9;7428:18;7409:38;:::i;:::-;7399:48;;7193:260;;;;;:::o;7458:254::-;7526:6;7534;7587:2;7575:9;7566:7;7562:23;7558:32;7555:52;;;7603:1;7600;7593:12;7555:52;7639:9;7626:23;7616:33;;7668:38;7702:2;7691:9;7687:18;7668:38;:::i;7717:380::-;7796:1;7792:12;;;;7839;;;7860:61;;7914:4;7906:6;7902:17;7892:27;;7860:61;7967:2;7959:6;7956:14;7936:18;7933:38;7930:161;;8013:10;8008:3;8004:20;8001:1;7994:31;8048:4;8045:1;8038:15;8076:4;8073:1;8066:15;7930:161;;7717:380;;;:::o;8102:127::-;8163:10;8158:3;8154:20;8151:1;8144:31;8194:4;8191:1;8184:15;8218:4;8215:1;8208:15;8234:125;8274:4;8302:1;8299;8296:8;8293:34;;;8307:18;;:::i;:::-;-1:-1:-1;8344:9:1;;8234:125::o;8364:128::-;8404:3;8435:1;8431:6;8428:1;8425:13;8422:39;;;8441:18;;:::i;:::-;-1:-1:-1;8477:9:1;;8364:128::o;9496:245::-;9563:6;9616:2;9604:9;9595:7;9591:23;9587:32;9584:52;;;9632:1;9629;9622:12;9584:52;9664:9;9658:16;9683:28;9705:5;9683:28;:::i;9746:168::-;9786:7;9852:1;9848;9844:6;9840:14;9837:1;9834:21;9829:1;9822:9;9815:17;9811:45;9808:71;;;9859:18;;:::i;:::-;-1:-1:-1;9899:9:1;;9746:168::o;9919:127::-;9980:10;9975:3;9971:20;9968:1;9961:31;10011:4;10008:1;10001:15;10035:4;10032:1;10025:15;10051:120;10091:1;10117;10107:35;;10122:18;;:::i;:::-;-1:-1:-1;10156:9:1;;10051:120::o;10176:127::-;10237:10;10232:3;10228:20;10225:1;10218:31;10268:4;10265:1;10258:15;10292:4;10289:1;10282:15;10308:135;10347:3;10368:17;;;10365:43;;10388:18;;:::i;:::-;-1:-1:-1;10435:1:1;10424:13;;10308:135::o;10448:470::-;10627:3;10665:6;10659:13;10681:53;10727:6;10722:3;10715:4;10707:6;10703:17;10681:53;:::i;:::-;10797:13;;10756:16;;;;10819:57;10797:13;10756:16;10853:4;10841:17;;10819:57;:::i;:::-;10892:20;;10448:470;-1:-1:-1;;;;10448:470:1:o;12900:112::-;12932:1;12958;12948:35;;12963:18;;:::i;:::-;-1:-1:-1;12997:9:1;;12900:112::o;13017:489::-;-1:-1:-1;;;;;13286:15:1;;;13268:34;;13338:15;;13333:2;13318:18;;13311:43;13385:2;13370:18;;13363:34;;;13433:3;13428:2;13413:18;;13406:31;;;13211:4;;13454:46;;13480:19;;13472:6;13454:46;:::i;:::-;13446:54;13017:489;-1:-1:-1;;;;;;13017:489:1:o;13511:249::-;13580:6;13633:2;13621:9;13612:7;13608:23;13604:32;13601:52;;;13649:1;13646;13639:12;13601:52;13681:9;13675:16;13700:30;13724:5;13700:30;:::i

Swarm Source

ipfs://721e6a1b4c987c6bb067b2699a1a33c7cc8be5758651fc672ed482768cea456f
Loading...
Loading
Loading...
Loading
[ 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.