ETH Price: $3,421.12 (+7.17%)
Gas: 15 Gwei

Token

Naughty Neighbors (NN)
 

Overview

Max Total Supply

6,415 NN

Holders

1,286

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 NN
0xb55b4ff4032b9d691b57187b4b6aa22d2a3b5224
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:
Neighbors

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-15
*/

/**
 *Submitted for verification at Etherscan.io on 2023-10-14
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/NaughtyNeighbors.sol



pragma solidity ^0.8.21;
contract Neighbors is ERC721A, Ownable {
    uint256 public maxSupply = 500;
    uint256 public cost = 0 ether;
    uint256 public maxPerTx = 5;
        // Refund constants
    uint256 public constant REFUND_BASE_GAS = 30_000;
    uint256 public constant MAX_REFUND_GAS_USED = 200_000;
    uint256 public constant MAX_REFUND_BASE_FEE = 200 gwei;
    uint256 public constant MAX_REFUND_PRIORITY_FEE = 2 gwei;
    string public baseURI;
    bool public sale;

    error SaleNotActive();
    error MaxSupplyReached();
    error MaxPerTxReached();

    constructor(string memory _initURI) payable ERC721A("Naughty Neighbors", "NN") {
        baseURI = _initURI;
    }
    receive() external payable {}
    function mint(uint256 _amount) external refundsGas {
        if (!sale) revert SaleNotActive();
        if (_totalMinted() + _amount > maxSupply) revert MaxSupplyReached();
        if (_amount > maxPerTx) revert MaxPerTxReached();
        _mint(msg.sender, _amount);
    }

    function airdrop(address _to, uint256 _amount) external onlyOwner {
        _mint(_to, _amount);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        return string(abi.encodePacked(baseURI, _toString(tokenId), ""));
    }

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

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

    function setCost(uint256 _cost) external onlyOwner {
        cost = _cost;
    }

    function setSupply(uint256 _maxSupply) external onlyOwner {
        maxSupply = _maxSupply;
    }

    function setMaxPerTx(uint256 _maxPerTx) external onlyOwner {
        maxPerTx = _maxPerTx;
    }

    function startSale() external onlyOwner {
        sale = !sale;
    }
    modifier refundsGas() {
        uint256 startGas = gasleft();
        _;
        _refundGas(startGas);
    }

    // slightly modified from https://github.com/nounsDAO/nouns-monorepo/blob/10bb478328bdb5f4c5efffed9a8c5186f9fe974a/packages/nouns-contracts/contracts/governance/NounsDAOLogicV2.sol#LL1033C2-L1048C21
    function _refundGas(uint256 startGas) internal {
        unchecked {
            uint256 balance = address(this).balance;
            if (balance == 0) {
                return;
            }
            uint256 basefee = _min(block.basefee, MAX_REFUND_BASE_FEE);
            uint256 gasPrice = _min(tx.gasprice, basefee + MAX_REFUND_PRIORITY_FEE);
            uint256 gasUsed = _min(startGas - gasleft() + REFUND_BASE_GAS, MAX_REFUND_GAS_USED);
            uint256 refundAmount = _min(gasPrice * gasUsed, balance);
            tx.origin.call{value: refundAmount}("");
        }
    }

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

    function _min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }
    function withdraw() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initURI","type":"string"}],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MaxPerTxReached","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SaleNotActive","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_REFUND_BASE_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_REFUND_GAS_USED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_REFUND_PRIORITY_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REFUND_BASE_GAS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526101f46009555f600a556005600b55604051620030af380380620030af83398181016040528101906200003891906200036f565b6040518060400160405280601181526020017f4e617567687479204e65696768626f72730000000000000000000000000000008152506040518060400160405280600281526020017f4e4e0000000000000000000000000000000000000000000000000000000000008152508160029081620000b59190620005f5565b508060039081620000c79190620005f5565b50620000d86200011860201b60201c565b5f819055505050620000ff620000f36200012060201b60201c565b6200012760201b60201c565b80600c9081620001109190620005f5565b5050620006d9565b5f6001905090565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6200024b8262000203565b810181811067ffffffffffffffff821117156200026d576200026c62000213565b5b80604052505050565b5f62000281620001ea565b90506200028f828262000240565b919050565b5f67ffffffffffffffff821115620002b157620002b062000213565b5b620002bc8262000203565b9050602081019050919050565b5f5b83811015620002e8578082015181840152602081019050620002cb565b5f8484015250505050565b5f62000309620003038462000294565b62000276565b905082815260208101848484011115620003285762000327620001ff565b5b62000335848285620002c9565b509392505050565b5f82601f830112620003545762000353620001fb565b5b815162000366848260208601620002f3565b91505092915050565b5f60208284031215620003875762000386620001f3565b5b5f82015167ffffffffffffffff811115620003a757620003a6620001f7565b5b620003b5848285016200033d565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200040d57607f821691505b602082108103620004235762000422620003c8565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004877fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200044a565b6200049386836200044a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004dd620004d7620004d184620004ab565b620004b4565b620004ab565b9050919050565b5f819050919050565b620004f883620004bd565b620005106200050782620004e4565b84845462000456565b825550505050565b5f90565b6200052662000518565b62000533818484620004ed565b505050565b5b818110156200055a576200054e5f826200051c565b60018101905062000539565b5050565b601f821115620005a957620005738162000429565b6200057e846200043b565b810160208510156200058e578190505b620005a66200059d856200043b565b83018262000538565b50505b505050565b5f82821c905092915050565b5f620005cb5f1984600802620005ae565b1980831691505092915050565b5f620005e58383620005ba565b9150826002028217905092915050565b6200060082620003be565b67ffffffffffffffff8111156200061c576200061b62000213565b5b620006288254620003f5565b620006358282856200055e565b5f60209050601f8311600181146200066b575f841562000656578287015190505b620006628582620005d8565b865550620006d1565b601f1984166200067b8662000429565b5f5b82811015620006a4578489015182556001820191506020850194506020810190506200067d565b86831015620006c45784890151620006c0601f891682620005ba565b8355505b6001600288020188555050505b505050505050565b6129c880620006e75f395ff3fe6080604052600436106101fc575f3560e01c806370a082311161010c578063b88d4fde1161009f578063d5abeb011161006e578063d5abeb01146106a1578063e985e9c5146106cb578063f2fde38b14610707578063f968adbe1461072f578063fbfee8761461075957610203565b8063b88d4fde146105f7578063bc4cd08414610613578063c6f6f2161461063d578063c87b56dd1461066557610203565b806395d89b41116100db57806395d89b4114610567578063a0712d6814610591578063a22cb465146105b9578063b66a0e5d146105e157610203565b806370a08231146104c3578063715018a6146104ff5780638ba4cc3c146105155780638da5cb5b1461053d57610203565b80633b4c4b251161018f57806344a0d68a1161015e57806344a0d68a146103e357806355f804b31461040b5780636352211e146104335780636ad1fe021461046f5780636c0360eb1461049957610203565b80633b4c4b251461035f5780633be8ef3f146103875780633ccfd60b146103b157806342842e0e146103c757610203565b8063095ea7b3116101cb578063095ea7b3146102d357806313faede6146102ef57806318160ddd1461031957806323b872dd1461034357610203565b806301ffc9a714610207578063042bc3de1461024357806306fdde031461026d578063081812fc1461029757610203565b3661020357005b5f80fd5b348015610212575f80fd5b5061022d60048036038101906102289190611d1c565b610783565b60405161023a9190611d61565b60405180910390f35b34801561024e575f80fd5b50610257610814565b6040516102649190611d92565b60405180910390f35b348015610278575f80fd5b5061028161081b565b60405161028e9190611e35565b60405180910390f35b3480156102a2575f80fd5b506102bd60048036038101906102b89190611e7f565b6108ab565b6040516102ca9190611ee9565b60405180910390f35b6102ed60048036038101906102e89190611f2c565b610925565b005b3480156102fa575f80fd5b50610303610a64565b6040516103109190611d92565b60405180910390f35b348015610324575f80fd5b5061032d610a6a565b60405161033a9190611d92565b60405180910390f35b61035d60048036038101906103589190611f6a565b610a7f565b005b34801561036a575f80fd5b5061038560048036038101906103809190611e7f565b610d8d565b005b348015610392575f80fd5b5061039b610d9f565b6040516103a89190611d92565b60405180910390f35b3480156103bc575f80fd5b506103c5610da5565b005b6103e160048036038101906103dc9190611f6a565b610e58565b005b3480156103ee575f80fd5b5061040960048036038101906104049190611e7f565b610e77565b005b348015610416575f80fd5b50610431600480360381019061042c919061201b565b610e89565b005b34801561043e575f80fd5b5061045960048036038101906104549190611e7f565b610ea7565b6040516104669190611ee9565b60405180910390f35b34801561047a575f80fd5b50610483610eb8565b6040516104909190611d61565b60405180910390f35b3480156104a4575f80fd5b506104ad610eca565b6040516104ba9190611e35565b60405180910390f35b3480156104ce575f80fd5b506104e960048036038101906104e49190612066565b610f56565b6040516104f69190611d92565b60405180910390f35b34801561050a575f80fd5b5061051361100b565b005b348015610520575f80fd5b5061053b60048036038101906105369190611f2c565b61101e565b005b348015610548575f80fd5b50610551611034565b60405161055e9190611ee9565b60405180910390f35b348015610572575f80fd5b5061057b61105c565b6040516105889190611e35565b60405180910390f35b34801561059c575f80fd5b506105b760048036038101906105b29190611e7f565b6110ec565b005b3480156105c4575f80fd5b506105df60048036038101906105da91906120bb565b6111d6565b005b3480156105ec575f80fd5b506105f56112dc565b005b610611600480360381019061060c9190612221565b61130e565b005b34801561061e575f80fd5b50610627611380565b6040516106349190611d92565b60405180910390f35b348015610648575f80fd5b50610663600480360381019061065e9190611e7f565b611389565b005b348015610670575f80fd5b5061068b60048036038101906106869190611e7f565b61139b565b6040516106989190611e35565b60405180910390f35b3480156106ac575f80fd5b506106b561140e565b6040516106c29190611d92565b60405180910390f35b3480156106d6575f80fd5b506106f160048036038101906106ec91906122a1565b611414565b6040516106fe9190611d61565b60405180910390f35b348015610712575f80fd5b5061072d60048036038101906107289190612066565b6114a2565b005b34801561073a575f80fd5b50610743611524565b6040516107509190611d92565b60405180910390f35b348015610764575f80fd5b5061076d61152a565b60405161077a9190611d92565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107dd57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b62030d4081565b60606002805461082a9061230c565b80601f01602080910402602001604051908101604052809291908181526020018280546108569061230c565b80156108a15780601f10610878576101008083540402835291602001916108a1565b820191905f5260205f20905b81548152906001019060200180831161088457829003601f168201915b5050505050905090565b5f6108b582611532565b6108eb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61092f82610ea7565b90508073ffffffffffffffffffffffffffffffffffffffff1661095061158c565b73ffffffffffffffffffffffffffffffffffffffff16146109b35761097c8161097761158c565b611414565b6109b2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a5481565b5f610a73611593565b6001545f540303905090565b5f610a898261159b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610af0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610afb8461165e565b91509150610b118187610b0c61158c565b611681565b610b5d57610b2686610b2161158c565b611414565b610b5c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610bc2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bcf86868660016116c4565b8015610bd9575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610ca185610c7d8888876116ca565b7c0200000000000000000000000000000000000000000000000000000000176116f1565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610d1d575f6001850190505f60045f8381526020019081526020015f205403610d1b575f548114610d1a578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d85868686600161171b565b505050505050565b610d95611721565b8060098190555050565b61753081565b610dad611721565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610dd290612369565b5f6040518083038185875af1925050503d805f8114610e0c576040519150601f19603f3d011682016040523d82523d5f602084013e610e11565b606091505b5050905080610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c906123c7565b60405180910390fd5b50565b610e7283838360405180602001604052805f81525061130e565b505050565b610e7f611721565b80600a8190555050565b610e91611721565b8181600c9182610ea292919061258c565b505050565b5f610eb18261159b565b9050919050565b600d5f9054906101000a900460ff1681565b600c8054610ed79061230c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f039061230c565b8015610f4e5780601f10610f2557610100808354040283529160200191610f4e565b820191905f5260205f20905b815481529060010190602001808311610f3157829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fbc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b611013611721565b61101c5f61179f565b565b611026611721565b6110308282611862565b5050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461106b9061230c565b80601f01602080910402602001604051908101604052809291908181526020018280546110979061230c565b80156110e25780601f106110b9576101008083540402835291602001916110e2565b820191905f5260205f20905b8154815290600101906020018083116110c557829003601f168201915b5050505050905090565b5f5a9050600d5f9054906101000a900460ff16611135576040517fb7b2409700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60095482611141611a0b565b61114b9190612686565b1115611183576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b548211156111bf576040517f84eef40b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111c93383611862565b6111d281611a1c565b5050565b8060075f6111e261158c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661128b61158c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112d09190611d61565b60405180910390a35050565b6112e4611721565b600d5f9054906101000a900460ff1615600d5f6101000a81548160ff021916908315150217905550565b611319848484610a7f565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461137a5761134384848484611ae6565b611379576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b642e90edd00081565b611391611721565b80600b8190555050565b60606113a682611532565b6113dc576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c6113e783611c31565b6040516020016113f8929190612793565b6040516020818303038152906040529050919050565b60095481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6114aa611721565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f90612831565b60405180910390fd5b6115218161179f565b50565b600b5481565b637735940081565b5f8161153c611593565b1115801561154a57505f5482105b801561158557505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f80829050806115a9611593565b11611627575f54811015611626575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611624575b5f810361161a5760045f836001900393508381526020019081526020015f205490506115f3565b8092505050611659565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86116e0868684611c80565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611729611c88565b73ffffffffffffffffffffffffffffffffffffffff16611747611034565b73ffffffffffffffffffffffffffffffffffffffff161461179d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179490612899565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805490505f82036118a0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118ac5f8483856116c4565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555061191e8361190f5f865f6116ca565b61191885611c8f565b176116f1565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146119b85780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460018101905061197f565b505f82036119f2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050611a065f84838561171b565b505050565b5f611a14611593565b5f5403905090565b5f4790505f8103611a2d5750611ae3565b5f611a3d48642e90edd000611c9e565b90505f611a503a63773594008401611c9e565b90505f611a666175305a87030162030d40611c9e565b90505f611a7582840286611c9e565b90503273ffffffffffffffffffffffffffffffffffffffff1681604051611a9b90612369565b5f6040518083038185875af1925050503d805f8114611ad5576040519150601f19603f3d011682016040523d82523d5f602084013e611ada565b606091505b50505050505050505b50565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b0b61158c565b8786866040518563ffffffff1660e01b8152600401611b2d9493929190612909565b6020604051808303815f875af1925050508015611b6857506040513d601f19601f82011682018060405250810190611b659190612967565b60015b611bde573d805f8114611b96576040519150601f19603f3d011682016040523d82523d5f602084013e611b9b565b606091505b505f815103611bd6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391505f825281835b600115611c6b57600184039350600a81066030018453600a8104905080611c49575b50828103602084039350808452505050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b5f818310611cac5781611cae565b825b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611cfb81611cc7565b8114611d05575f80fd5b50565b5f81359050611d1681611cf2565b92915050565b5f60208284031215611d3157611d30611cbf565b5b5f611d3e84828501611d08565b91505092915050565b5f8115159050919050565b611d5b81611d47565b82525050565b5f602082019050611d745f830184611d52565b92915050565b5f819050919050565b611d8c81611d7a565b82525050565b5f602082019050611da55f830184611d83565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611de2578082015181840152602081019050611dc7565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611e0782611dab565b611e118185611db5565b9350611e21818560208601611dc5565b611e2a81611ded565b840191505092915050565b5f6020820190508181035f830152611e4d8184611dfd565b905092915050565b611e5e81611d7a565b8114611e68575f80fd5b50565b5f81359050611e7981611e55565b92915050565b5f60208284031215611e9457611e93611cbf565b5b5f611ea184828501611e6b565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611ed382611eaa565b9050919050565b611ee381611ec9565b82525050565b5f602082019050611efc5f830184611eda565b92915050565b611f0b81611ec9565b8114611f15575f80fd5b50565b5f81359050611f2681611f02565b92915050565b5f8060408385031215611f4257611f41611cbf565b5b5f611f4f85828601611f18565b9250506020611f6085828601611e6b565b9150509250929050565b5f805f60608486031215611f8157611f80611cbf565b5b5f611f8e86828701611f18565b9350506020611f9f86828701611f18565b9250506040611fb086828701611e6b565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112611fdb57611fda611fba565b5b8235905067ffffffffffffffff811115611ff857611ff7611fbe565b5b60208301915083600182028301111561201457612013611fc2565b5b9250929050565b5f806020838503121561203157612030611cbf565b5b5f83013567ffffffffffffffff81111561204e5761204d611cc3565b5b61205a85828601611fc6565b92509250509250929050565b5f6020828403121561207b5761207a611cbf565b5b5f61208884828501611f18565b91505092915050565b61209a81611d47565b81146120a4575f80fd5b50565b5f813590506120b581612091565b92915050565b5f80604083850312156120d1576120d0611cbf565b5b5f6120de85828601611f18565b92505060206120ef858286016120a7565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61213382611ded565b810181811067ffffffffffffffff82111715612152576121516120fd565b5b80604052505050565b5f612164611cb6565b9050612170828261212a565b919050565b5f67ffffffffffffffff82111561218f5761218e6120fd565b5b61219882611ded565b9050602081019050919050565b828183375f83830152505050565b5f6121c56121c084612175565b61215b565b9050828152602081018484840111156121e1576121e06120f9565b5b6121ec8482856121a5565b509392505050565b5f82601f83011261220857612207611fba565b5b81356122188482602086016121b3565b91505092915050565b5f805f806080858703121561223957612238611cbf565b5b5f61224687828801611f18565b945050602061225787828801611f18565b935050604061226887828801611e6b565b925050606085013567ffffffffffffffff81111561228957612288611cc3565b5b612295878288016121f4565b91505092959194509250565b5f80604083850312156122b7576122b6611cbf565b5b5f6122c485828601611f18565b92505060206122d585828601611f18565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061232357607f821691505b602082108103612336576123356122df565b5b50919050565b5f81905092915050565b50565b5f6123545f8361233c565b915061235f82612346565b5f82019050919050565b5f61237382612349565b9150819050919050565b7f5472616e73666572206661696c656400000000000000000000000000000000005f82015250565b5f6123b1600f83611db5565b91506123bc8261237d565b602082019050919050565b5f6020820190508181035f8301526123de816123a5565b9050919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261244b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612410565b6124558683612410565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61249061248b61248684611d7a565b61246d565b611d7a565b9050919050565b5f819050919050565b6124a983612476565b6124bd6124b582612497565b84845461241c565b825550505050565b5f90565b6124d16124c5565b6124dc8184846124a0565b505050565b5b818110156124ff576124f45f826124c9565b6001810190506124e2565b5050565b601f82111561254457612515816123ef565b61251e84612401565b8101602085101561252d578190505b61254161253985612401565b8301826124e1565b50505b505050565b5f82821c905092915050565b5f6125645f1984600802612549565b1980831691505092915050565b5f61257c8383612555565b9150826002028217905092915050565b61259683836123e5565b67ffffffffffffffff8111156125af576125ae6120fd565b5b6125b9825461230c565b6125c4828285612503565b5f601f8311600181146125f1575f84156125df578287013590505b6125e98582612571565b865550612650565b601f1984166125ff866123ef565b5f5b8281101561262657848901358255600182019150602085019450602081019050612601565b86831015612643578489013561263f601f891682612555565b8355505b6001600288020188555050505b50505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61269082611d7a565b915061269b83611d7a565b92508282019050808211156126b3576126b2612659565b5b92915050565b5f81905092915050565b5f81546126cf8161230c565b6126d981866126b9565b9450600182165f81146126f357600181146127085761273a565b60ff198316865281151582028601935061273a565b612711856123ef565b5f5b8381101561273257815481890152600182019150602081019050612713565b838801955050505b50505092915050565b5f61274d82611dab565b61275781856126b9565b9350612767818560208601611dc5565b80840191505092915050565b5f61277e5f836126b9565b915061278982612346565b5f82019050919050565b5f61279e82856126c3565b91506127aa8284612743565b91506127b582612773565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61281b602683611db5565b9150612826826127c1565b604082019050919050565b5f6020820190508181035f8301526128488161280f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612883602083611db5565b915061288e8261284f565b602082019050919050565b5f6020820190508181035f8301526128b081612877565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6128db826128b7565b6128e581856128c1565b93506128f5818560208601611dc5565b6128fe81611ded565b840191505092915050565b5f60808201905061291c5f830187611eda565b6129296020830186611eda565b6129366040830185611d83565b818103606083015261294881846128d1565b905095945050505050565b5f8151905061296181611cf2565b92915050565b5f6020828403121561297c5761297b611cbf565b5b5f61298984828501612953565b9150509291505056fea2646970667358221220d5a8e2caebb4227a72ad673b738f6d87003b95e7af9ede8606685ddaa0eca74a64736f6c6343000815003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656968657a6d6c6866687477706d33746e35626a376e676774676179643269766c61796a6a746f3773766936346e6b6d3568716174652f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101fc575f3560e01c806370a082311161010c578063b88d4fde1161009f578063d5abeb011161006e578063d5abeb01146106a1578063e985e9c5146106cb578063f2fde38b14610707578063f968adbe1461072f578063fbfee8761461075957610203565b8063b88d4fde146105f7578063bc4cd08414610613578063c6f6f2161461063d578063c87b56dd1461066557610203565b806395d89b41116100db57806395d89b4114610567578063a0712d6814610591578063a22cb465146105b9578063b66a0e5d146105e157610203565b806370a08231146104c3578063715018a6146104ff5780638ba4cc3c146105155780638da5cb5b1461053d57610203565b80633b4c4b251161018f57806344a0d68a1161015e57806344a0d68a146103e357806355f804b31461040b5780636352211e146104335780636ad1fe021461046f5780636c0360eb1461049957610203565b80633b4c4b251461035f5780633be8ef3f146103875780633ccfd60b146103b157806342842e0e146103c757610203565b8063095ea7b3116101cb578063095ea7b3146102d357806313faede6146102ef57806318160ddd1461031957806323b872dd1461034357610203565b806301ffc9a714610207578063042bc3de1461024357806306fdde031461026d578063081812fc1461029757610203565b3661020357005b5f80fd5b348015610212575f80fd5b5061022d60048036038101906102289190611d1c565b610783565b60405161023a9190611d61565b60405180910390f35b34801561024e575f80fd5b50610257610814565b6040516102649190611d92565b60405180910390f35b348015610278575f80fd5b5061028161081b565b60405161028e9190611e35565b60405180910390f35b3480156102a2575f80fd5b506102bd60048036038101906102b89190611e7f565b6108ab565b6040516102ca9190611ee9565b60405180910390f35b6102ed60048036038101906102e89190611f2c565b610925565b005b3480156102fa575f80fd5b50610303610a64565b6040516103109190611d92565b60405180910390f35b348015610324575f80fd5b5061032d610a6a565b60405161033a9190611d92565b60405180910390f35b61035d60048036038101906103589190611f6a565b610a7f565b005b34801561036a575f80fd5b5061038560048036038101906103809190611e7f565b610d8d565b005b348015610392575f80fd5b5061039b610d9f565b6040516103a89190611d92565b60405180910390f35b3480156103bc575f80fd5b506103c5610da5565b005b6103e160048036038101906103dc9190611f6a565b610e58565b005b3480156103ee575f80fd5b5061040960048036038101906104049190611e7f565b610e77565b005b348015610416575f80fd5b50610431600480360381019061042c919061201b565b610e89565b005b34801561043e575f80fd5b5061045960048036038101906104549190611e7f565b610ea7565b6040516104669190611ee9565b60405180910390f35b34801561047a575f80fd5b50610483610eb8565b6040516104909190611d61565b60405180910390f35b3480156104a4575f80fd5b506104ad610eca565b6040516104ba9190611e35565b60405180910390f35b3480156104ce575f80fd5b506104e960048036038101906104e49190612066565b610f56565b6040516104f69190611d92565b60405180910390f35b34801561050a575f80fd5b5061051361100b565b005b348015610520575f80fd5b5061053b60048036038101906105369190611f2c565b61101e565b005b348015610548575f80fd5b50610551611034565b60405161055e9190611ee9565b60405180910390f35b348015610572575f80fd5b5061057b61105c565b6040516105889190611e35565b60405180910390f35b34801561059c575f80fd5b506105b760048036038101906105b29190611e7f565b6110ec565b005b3480156105c4575f80fd5b506105df60048036038101906105da91906120bb565b6111d6565b005b3480156105ec575f80fd5b506105f56112dc565b005b610611600480360381019061060c9190612221565b61130e565b005b34801561061e575f80fd5b50610627611380565b6040516106349190611d92565b60405180910390f35b348015610648575f80fd5b50610663600480360381019061065e9190611e7f565b611389565b005b348015610670575f80fd5b5061068b60048036038101906106869190611e7f565b61139b565b6040516106989190611e35565b60405180910390f35b3480156106ac575f80fd5b506106b561140e565b6040516106c29190611d92565b60405180910390f35b3480156106d6575f80fd5b506106f160048036038101906106ec91906122a1565b611414565b6040516106fe9190611d61565b60405180910390f35b348015610712575f80fd5b5061072d60048036038101906107289190612066565b6114a2565b005b34801561073a575f80fd5b50610743611524565b6040516107509190611d92565b60405180910390f35b348015610764575f80fd5b5061076d61152a565b60405161077a9190611d92565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107dd57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b62030d4081565b60606002805461082a9061230c565b80601f01602080910402602001604051908101604052809291908181526020018280546108569061230c565b80156108a15780601f10610878576101008083540402835291602001916108a1565b820191905f5260205f20905b81548152906001019060200180831161088457829003601f168201915b5050505050905090565b5f6108b582611532565b6108eb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61092f82610ea7565b90508073ffffffffffffffffffffffffffffffffffffffff1661095061158c565b73ffffffffffffffffffffffffffffffffffffffff16146109b35761097c8161097761158c565b611414565b6109b2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a5481565b5f610a73611593565b6001545f540303905090565b5f610a898261159b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610af0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610afb8461165e565b91509150610b118187610b0c61158c565b611681565b610b5d57610b2686610b2161158c565b611414565b610b5c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610bc2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bcf86868660016116c4565b8015610bd9575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610ca185610c7d8888876116ca565b7c0200000000000000000000000000000000000000000000000000000000176116f1565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610d1d575f6001850190505f60045f8381526020019081526020015f205403610d1b575f548114610d1a578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d85868686600161171b565b505050505050565b610d95611721565b8060098190555050565b61753081565b610dad611721565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610dd290612369565b5f6040518083038185875af1925050503d805f8114610e0c576040519150601f19603f3d011682016040523d82523d5f602084013e610e11565b606091505b5050905080610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c906123c7565b60405180910390fd5b50565b610e7283838360405180602001604052805f81525061130e565b505050565b610e7f611721565b80600a8190555050565b610e91611721565b8181600c9182610ea292919061258c565b505050565b5f610eb18261159b565b9050919050565b600d5f9054906101000a900460ff1681565b600c8054610ed79061230c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f039061230c565b8015610f4e5780601f10610f2557610100808354040283529160200191610f4e565b820191905f5260205f20905b815481529060010190602001808311610f3157829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fbc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b611013611721565b61101c5f61179f565b565b611026611721565b6110308282611862565b5050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461106b9061230c565b80601f01602080910402602001604051908101604052809291908181526020018280546110979061230c565b80156110e25780601f106110b9576101008083540402835291602001916110e2565b820191905f5260205f20905b8154815290600101906020018083116110c557829003601f168201915b5050505050905090565b5f5a9050600d5f9054906101000a900460ff16611135576040517fb7b2409700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60095482611141611a0b565b61114b9190612686565b1115611183576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b548211156111bf576040517f84eef40b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111c93383611862565b6111d281611a1c565b5050565b8060075f6111e261158c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661128b61158c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112d09190611d61565b60405180910390a35050565b6112e4611721565b600d5f9054906101000a900460ff1615600d5f6101000a81548160ff021916908315150217905550565b611319848484610a7f565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461137a5761134384848484611ae6565b611379576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b642e90edd00081565b611391611721565b80600b8190555050565b60606113a682611532565b6113dc576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c6113e783611c31565b6040516020016113f8929190612793565b6040516020818303038152906040529050919050565b60095481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6114aa611721565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f90612831565b60405180910390fd5b6115218161179f565b50565b600b5481565b637735940081565b5f8161153c611593565b1115801561154a57505f5482105b801561158557505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f80829050806115a9611593565b11611627575f54811015611626575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611624575b5f810361161a5760045f836001900393508381526020019081526020015f205490506115f3565b8092505050611659565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86116e0868684611c80565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611729611c88565b73ffffffffffffffffffffffffffffffffffffffff16611747611034565b73ffffffffffffffffffffffffffffffffffffffff161461179d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179490612899565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805490505f82036118a0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118ac5f8483856116c4565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555061191e8361190f5f865f6116ca565b61191885611c8f565b176116f1565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146119b85780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460018101905061197f565b505f82036119f2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050611a065f84838561171b565b505050565b5f611a14611593565b5f5403905090565b5f4790505f8103611a2d5750611ae3565b5f611a3d48642e90edd000611c9e565b90505f611a503a63773594008401611c9e565b90505f611a666175305a87030162030d40611c9e565b90505f611a7582840286611c9e565b90503273ffffffffffffffffffffffffffffffffffffffff1681604051611a9b90612369565b5f6040518083038185875af1925050503d805f8114611ad5576040519150601f19603f3d011682016040523d82523d5f602084013e611ada565b606091505b50505050505050505b50565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b0b61158c565b8786866040518563ffffffff1660e01b8152600401611b2d9493929190612909565b6020604051808303815f875af1925050508015611b6857506040513d601f19601f82011682018060405250810190611b659190612967565b60015b611bde573d805f8114611b96576040519150601f19603f3d011682016040523d82523d5f602084013e611b9b565b606091505b505f815103611bd6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391505f825281835b600115611c6b57600184039350600a81066030018453600a8104905080611c49575b50828103602084039350808452505050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b5f818310611cac5781611cae565b825b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611cfb81611cc7565b8114611d05575f80fd5b50565b5f81359050611d1681611cf2565b92915050565b5f60208284031215611d3157611d30611cbf565b5b5f611d3e84828501611d08565b91505092915050565b5f8115159050919050565b611d5b81611d47565b82525050565b5f602082019050611d745f830184611d52565b92915050565b5f819050919050565b611d8c81611d7a565b82525050565b5f602082019050611da55f830184611d83565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611de2578082015181840152602081019050611dc7565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611e0782611dab565b611e118185611db5565b9350611e21818560208601611dc5565b611e2a81611ded565b840191505092915050565b5f6020820190508181035f830152611e4d8184611dfd565b905092915050565b611e5e81611d7a565b8114611e68575f80fd5b50565b5f81359050611e7981611e55565b92915050565b5f60208284031215611e9457611e93611cbf565b5b5f611ea184828501611e6b565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611ed382611eaa565b9050919050565b611ee381611ec9565b82525050565b5f602082019050611efc5f830184611eda565b92915050565b611f0b81611ec9565b8114611f15575f80fd5b50565b5f81359050611f2681611f02565b92915050565b5f8060408385031215611f4257611f41611cbf565b5b5f611f4f85828601611f18565b9250506020611f6085828601611e6b565b9150509250929050565b5f805f60608486031215611f8157611f80611cbf565b5b5f611f8e86828701611f18565b9350506020611f9f86828701611f18565b9250506040611fb086828701611e6b565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112611fdb57611fda611fba565b5b8235905067ffffffffffffffff811115611ff857611ff7611fbe565b5b60208301915083600182028301111561201457612013611fc2565b5b9250929050565b5f806020838503121561203157612030611cbf565b5b5f83013567ffffffffffffffff81111561204e5761204d611cc3565b5b61205a85828601611fc6565b92509250509250929050565b5f6020828403121561207b5761207a611cbf565b5b5f61208884828501611f18565b91505092915050565b61209a81611d47565b81146120a4575f80fd5b50565b5f813590506120b581612091565b92915050565b5f80604083850312156120d1576120d0611cbf565b5b5f6120de85828601611f18565b92505060206120ef858286016120a7565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61213382611ded565b810181811067ffffffffffffffff82111715612152576121516120fd565b5b80604052505050565b5f612164611cb6565b9050612170828261212a565b919050565b5f67ffffffffffffffff82111561218f5761218e6120fd565b5b61219882611ded565b9050602081019050919050565b828183375f83830152505050565b5f6121c56121c084612175565b61215b565b9050828152602081018484840111156121e1576121e06120f9565b5b6121ec8482856121a5565b509392505050565b5f82601f83011261220857612207611fba565b5b81356122188482602086016121b3565b91505092915050565b5f805f806080858703121561223957612238611cbf565b5b5f61224687828801611f18565b945050602061225787828801611f18565b935050604061226887828801611e6b565b925050606085013567ffffffffffffffff81111561228957612288611cc3565b5b612295878288016121f4565b91505092959194509250565b5f80604083850312156122b7576122b6611cbf565b5b5f6122c485828601611f18565b92505060206122d585828601611f18565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061232357607f821691505b602082108103612336576123356122df565b5b50919050565b5f81905092915050565b50565b5f6123545f8361233c565b915061235f82612346565b5f82019050919050565b5f61237382612349565b9150819050919050565b7f5472616e73666572206661696c656400000000000000000000000000000000005f82015250565b5f6123b1600f83611db5565b91506123bc8261237d565b602082019050919050565b5f6020820190508181035f8301526123de816123a5565b9050919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261244b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612410565b6124558683612410565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61249061248b61248684611d7a565b61246d565b611d7a565b9050919050565b5f819050919050565b6124a983612476565b6124bd6124b582612497565b84845461241c565b825550505050565b5f90565b6124d16124c5565b6124dc8184846124a0565b505050565b5b818110156124ff576124f45f826124c9565b6001810190506124e2565b5050565b601f82111561254457612515816123ef565b61251e84612401565b8101602085101561252d578190505b61254161253985612401565b8301826124e1565b50505b505050565b5f82821c905092915050565b5f6125645f1984600802612549565b1980831691505092915050565b5f61257c8383612555565b9150826002028217905092915050565b61259683836123e5565b67ffffffffffffffff8111156125af576125ae6120fd565b5b6125b9825461230c565b6125c4828285612503565b5f601f8311600181146125f1575f84156125df578287013590505b6125e98582612571565b865550612650565b601f1984166125ff866123ef565b5f5b8281101561262657848901358255600182019150602085019450602081019050612601565b86831015612643578489013561263f601f891682612555565b8355505b6001600288020188555050505b50505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61269082611d7a565b915061269b83611d7a565b92508282019050808211156126b3576126b2612659565b5b92915050565b5f81905092915050565b5f81546126cf8161230c565b6126d981866126b9565b9450600182165f81146126f357600181146127085761273a565b60ff198316865281151582028601935061273a565b612711856123ef565b5f5b8381101561273257815481890152600182019150602081019050612713565b838801955050505b50505092915050565b5f61274d82611dab565b61275781856126b9565b9350612767818560208601611dc5565b80840191505092915050565b5f61277e5f836126b9565b915061278982612346565b5f82019050919050565b5f61279e82856126c3565b91506127aa8284612743565b91506127b582612773565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61281b602683611db5565b9150612826826127c1565b604082019050919050565b5f6020820190508181035f8301526128488161280f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612883602083611db5565b915061288e8261284f565b602082019050919050565b5f6020820190508181035f8301526128b081612877565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6128db826128b7565b6128e581856128c1565b93506128f5818560208601611dc5565b6128fe81611ded565b840191505092915050565b5f60808201905061291c5f830187611eda565b6129296020830186611eda565b6129366040830185611d83565b818103606083015261294881846128d1565b905095945050505050565b5f8151905061296181611cf2565b92915050565b5f6020828403121561297c5761297b611cbf565b5b5f61298984828501612953565b9150509291505056fea2646970667358221220d5a8e2caebb4227a72ad673b738f6d87003b95e7af9ede8606685ddaa0eca74a64736f6c63430008150033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656968657a6d6c6866687477706d33746e35626a376e676774676179643269766c61796a6a746f3773766936346e6b6d3568716174652f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initURI (string): ipfs://bafybeihezmlhfhtwpm3tn5bj7nggtgayd2ivlayjjto7svi64nkm5hqate/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 697066733a2f2f6261667962656968657a6d6c6866687477706d33746e35626a
Arg [3] : 376e676774676179643269766c61796a6a746f3773766936346e6b6d35687161
Arg [4] : 74652f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

55205:3339:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22101:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55442:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23003:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29494:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28927:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55288:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18754:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33133:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56937:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55387:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58369:172;;;;;;;;;;;;;:::i;:::-;;36054:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56847:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56739:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24396:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55654:16;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55626:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19938:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2880:103;;;;;;;;;;;;;:::i;:::-;;56212:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2232:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23179:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55927:277;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30052:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57150:71;;;;;;;;;;;;;:::i;:::-;;36845:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55502:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57044:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56324:291;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55251:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30443:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3138:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55324:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55563:56;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22101:639;22186:4;22525:10;22510:25;;:11;:25;;;;:102;;;;22602:10;22587:25;;:11;:25;;;;22510:102;:179;;;;22679:10;22664:25;;:11;:25;;;;22510:179;22490:199;;22101:639;;;:::o;55442:53::-;55488:7;55442:53;:::o;23003:100::-;23057:13;23090:5;23083:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23003:100;:::o;29494:218::-;29570:7;29595:16;29603:7;29595;:16::i;:::-;29590:64;;29620:34;;;;;;;;;;;;;;29590:64;29674:15;:24;29690:7;29674:24;;;;;;;;;;;:30;;;;;;;;;;;;29667:37;;29494:218;;;:::o;28927:408::-;29016:13;29032:16;29040:7;29032;:16::i;:::-;29016:32;;29088:5;29065:28;;:19;:17;:19::i;:::-;:28;;;29061:175;;29113:44;29130:5;29137:19;:17;:19::i;:::-;29113:16;:44::i;:::-;29108:128;;29185:35;;;;;;;;;;;;;;29108:128;29061:175;29281:2;29248:15;:24;29264:7;29248:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29319:7;29315:2;29299:28;;29308:5;29299:28;;;;;;;;;;;;29005:330;28927:408;;:::o;55288:29::-;;;;:::o;18754:323::-;18815:7;19043:15;:13;:15::i;:::-;19028:12;;19012:13;;:28;:46;19005:53;;18754:323;:::o;33133:2825::-;33275:27;33305;33324:7;33305:18;:27::i;:::-;33275:57;;33390:4;33349:45;;33365:19;33349:45;;;33345:86;;33403:28;;;;;;;;;;;;;;33345:86;33445:27;33474:23;33501:35;33528:7;33501:26;:35::i;:::-;33444:92;;;;33636:68;33661:15;33678:4;33684:19;:17;:19::i;:::-;33636:24;:68::i;:::-;33631:180;;33724:43;33741:4;33747:19;:17;:19::i;:::-;33724:16;:43::i;:::-;33719:92;;33776:35;;;;;;;;;;;;;;33719:92;33631:180;33842:1;33828:16;;:2;:16;;;33824:52;;33853:23;;;;;;;;;;;;;;33824:52;33889:43;33911:4;33917:2;33921:7;33930:1;33889:21;:43::i;:::-;34025:15;34022:160;;;34165:1;34144:19;34137:30;34022:160;34562:18;:24;34581:4;34562:24;;;;;;;;;;;;;;;;34560:26;;;;;;;;;;;;34631:18;:22;34650:2;34631:22;;;;;;;;;;;;;;;;34629:24;;;;;;;;;;;34953:146;34990:2;35039:45;35054:4;35060:2;35064:19;35039:14;:45::i;:::-;15153:8;35011:73;34953:18;:146::i;:::-;34924:17;:26;34942:7;34924:26;;;;;;;;;;;:175;;;;35270:1;15153:8;35219:19;:47;:52;35215:627;;35292:19;35324:1;35314:7;:11;35292:33;;35481:1;35447:17;:30;35465:11;35447:30;;;;;;;;;;;;:35;35443:384;;35585:13;;35570:11;:28;35566:242;;35765:19;35732:17;:30;35750:11;35732:30;;;;;;;;;;;:52;;;;35566:242;35443:384;35273:569;35215:627;35889:7;35885:2;35870:27;;35879:4;35870:27;;;;;;;;;;;;35908:42;35929:4;35935:2;35939:7;35948:1;35908:20;:42::i;:::-;33264:2694;;;33133:2825;;;:::o;56937:99::-;2118:13;:11;:13::i;:::-;57018:10:::1;57006:9;:22;;;;56937:99:::0;:::o;55387:48::-;55429:6;55387:48;:::o;58369:172::-;2118:13;:11;:13::i;:::-;58420:12:::1;58438:10;:15;;58461:21;58438:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58419:68;;;58506:7;58498:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;58408:133;58369:172::o:0;36054:193::-;36200:39;36217:4;36223:2;36227:7;36200:39;;;;;;;;;;;;:16;:39::i;:::-;36054:193;;;:::o;56847:82::-;2118:13;:11;:13::i;:::-;56916:5:::1;56909:4;:12;;;;56847:82:::0;:::o;56739:100::-;2118:13;:11;:13::i;:::-;56824:7:::1;;56814;:17;;;;;;;:::i;:::-;;56739:100:::0;;:::o;24396:152::-;24468:7;24511:27;24530:7;24511:18;:27::i;:::-;24488:52;;24396:152;;;:::o;55654:16::-;;;;;;;;;;;;;:::o;55626:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19938:233::-;20010:7;20051:1;20034:19;;:5;:19;;;20030:60;;20062:28;;;;;;;;;;;;;;20030:60;14097:13;20108:18;:25;20127:5;20108:25;;;;;;;;;;;;;;;;:55;20101:62;;19938:233;;;:::o;2880:103::-;2118:13;:11;:13::i;:::-;2945:30:::1;2972:1;2945:18;:30::i;:::-;2880:103::o:0;56212:104::-;2118:13;:11;:13::i;:::-;56289:19:::1;56295:3;56300:7;56289:5;:19::i;:::-;56212:104:::0;;:::o;2232:87::-;2278:7;2305:6;;;;;;;;;;;2298:13;;2232:87;:::o;23179:104::-;23235:13;23268:7;23261:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23179:104;:::o;55927:277::-;57260:16;57279:9;57260:28;;55994:4:::1;;;;;;;;;;;55989:33;;56007:15;;;;;;;;;;;;;;55989:33;56064:9;;56054:7;56037:14;:12;:14::i;:::-;:24;;;;:::i;:::-;:36;56033:67;;;56082:18;;;;;;;;;;;;;;56033:67;56125:8;;56115:7;:18;56111:48;;;56142:17;;;;;;;;;;;;;;56111:48;56170:26;56176:10;56188:7;56170:5;:26::i;:::-;57311:20:::0;57322:8;57311:10;:20::i;:::-;57249:90;55927:277;:::o;30052:234::-;30199:8;30147:18;:39;30166:19;:17;:19::i;:::-;30147:39;;;;;;;;;;;;;;;:49;30187:8;30147:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30259:8;30223:55;;30238:19;:17;:19::i;:::-;30223:55;;;30269:8;30223:55;;;;;;:::i;:::-;;;;;;;;30052:234;;:::o;57150:71::-;2118:13;:11;:13::i;:::-;57209:4:::1;;;;;;;;;;;57208:5;57201:4;;:12;;;;;;;;;;;;;;;;;;57150:71::o:0;36845:407::-;37020:31;37033:4;37039:2;37043:7;37020:12;:31::i;:::-;37084:1;37066:2;:14;;;:19;37062:183;;37105:56;37136:4;37142:2;37146:7;37155:5;37105:30;:56::i;:::-;37100:145;;37189:40;;;;;;;;;;;;;;37100:145;37062:183;36845:407;;;;:::o;55502:54::-;55548:8;55502:54;:::o;57044:98::-;2118:13;:11;:13::i;:::-;57125:9:::1;57114:8;:20;;;;57044:98:::0;:::o;56324:291::-;56442:13;56478:16;56486:7;56478;:16::i;:::-;56473:59;;56503:29;;;;;;;;;;;;;;56473:59;56574:7;56583:18;56593:7;56583:9;:18::i;:::-;56557:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56543:64;;56324:291;;;:::o;55251:30::-;;;;:::o;30443:164::-;30540:4;30564:18;:25;30583:5;30564:25;;;;;;;;;;;;;;;:35;30590:8;30564:35;;;;;;;;;;;;;;;;;;;;;;;;;30557:42;;30443:164;;;;:::o;3138:201::-;2118:13;:11;:13::i;:::-;3247:1:::1;3227:22;;:8;:22;;::::0;3219:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3303:28;3322:8;3303:18;:28::i;:::-;3138:201:::0;:::o;55324:27::-;;;;:::o;55563:56::-;55613:6;55563:56;:::o;30865:282::-;30930:4;30986:7;30967:15;:13;:15::i;:::-;:26;;:66;;;;;31020:13;;31010:7;:23;30967:66;:153;;;;;31119:1;14873:8;31071:17;:26;31089:7;31071:26;;;;;;;;;;;;:44;:49;30967:153;30947:173;;30865:282;;;:::o;53173:105::-;53233:7;53260:10;53253:17;;53173:105;:::o;58155:93::-;58212:7;58239:1;58232:8;;58155:93;:::o;25551:1275::-;25618:7;25638:12;25653:7;25638:22;;25721:4;25702:15;:13;:15::i;:::-;:23;25698:1061;;25755:13;;25748:4;:20;25744:1015;;;25793:14;25810:17;:23;25828:4;25810:23;;;;;;;;;;;;25793:40;;25927:1;14873:8;25899:6;:24;:29;25895:845;;26564:113;26581:1;26571:6;:11;26564:113;;26624:17;:25;26642:6;;;;;;;26624:25;;;;;;;;;;;;26615:34;;26564:113;;;26710:6;26703:13;;;;;;25895:845;25770:989;25744:1015;25698:1061;26787:31;;;;;;;;;;;;;;25551:1275;;;;:::o;32028:485::-;32130:27;32159:23;32200:38;32241:15;:24;32257:7;32241:24;;;;;;;;;;;32200:65;;32418:18;32395:41;;32475:19;32469:26;32450:45;;32380:126;32028:485;;;:::o;31256:659::-;31405:11;31570:16;31563:5;31559:28;31550:37;;31730:16;31719:9;31715:32;31702:45;;31880:15;31869:9;31866:30;31858:5;31847:9;31844:20;31841:56;31831:66;;31256:659;;;;;:::o;37914:159::-;;;;;:::o;52482:311::-;52617:7;52637:16;15277:3;52663:19;:41;;52637:68;;15277:3;52731:31;52742:4;52748:2;52752:9;52731:10;:31::i;:::-;52723:40;;:62;;52716:69;;;52482:311;;;;;:::o;27374:450::-;27454:14;27622:16;27615:5;27611:28;27602:37;;27799:5;27785:11;27760:23;27756:41;27753:52;27746:5;27743:63;27733:73;;27374:450;;;;:::o;38738:158::-;;;;;:::o;2397:132::-;2472:12;:10;:12::i;:::-;2461:23;;:7;:5;:7::i;:::-;:23;;;2453:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2397:132::o;3499:191::-;3573:16;3592:6;;;;;;;;;;;3573:25;;3618:8;3609:6;;:17;;;;;;;;;;;;;;;;;;3673:8;3642:40;;3663:8;3642:40;;;;;;;;;;;;3562:128;3499:191;:::o;40514:2966::-;40587:20;40610:13;;40587:36;;40650:1;40638:8;:13;40634:44;;40660:18;;;;;;;;;;;;;;40634:44;40691:61;40721:1;40725:2;40729:12;40743:8;40691:21;:61::i;:::-;41235:1;14235:2;41205:1;:26;;41204:32;41192:8;:45;41166:18;:22;41185:2;41166:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41514:139;41551:2;41605:33;41628:1;41632:2;41636:1;41605:14;:33::i;:::-;41572:30;41593:8;41572:20;:30::i;:::-;:66;41514:18;:139::i;:::-;41480:17;:31;41498:12;41480:31;;;;;;;;;;;:173;;;;41670:16;41701:11;41730:8;41715:12;:23;41701:37;;42251:16;42247:2;42243:25;42231:37;;42623:12;42583:8;42542:1;42480:25;42421:1;42360;42333:335;42994:1;42980:12;42976:20;42934:346;43035:3;43026:7;43023:16;42934:346;;43253:7;43243:8;43240:1;43213:25;43210:1;43207;43202:59;43088:1;43079:7;43075:15;43064:26;;42934:346;;;42938:77;43325:1;43313:8;:13;43309:45;;43335:19;;;;;;;;;;;;;;43309:45;43387:3;43371:13;:19;;;;40940:2462;;43412:60;43441:1;43445:2;43449:12;43463:8;43412:20;:60::i;:::-;40576:2904;40514:2966;;:::o;19175:296::-;19230:7;19437:15;:13;:15::i;:::-;19421:13;;:31;19414:38;;19175:296;:::o;57551:596::-;57634:15;57652:21;57634:39;;57703:1;57692:7;:12;57688:59;;57725:7;;;57688:59;57761:15;57779:40;57784:13;55548:8;57779:4;:40::i;:::-;57761:58;;57834:16;57853:52;57858:11;55613:6;57871:7;:33;57853:4;:52::i;:::-;57834:71;;57920:15;57938:65;55429:6;57954:9;57943:8;:20;:38;55488:7;57938:4;:65::i;:::-;57920:83;;58018:20;58041:33;58057:7;58046:8;:18;58066:7;58041:4;:33::i;:::-;58018:56;;58089:9;:14;;58111:12;58089:39;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57609:531;;;;;57551:596;;:::o;39336:716::-;39499:4;39545:2;39520:45;;;39566:19;:17;:19::i;:::-;39587:4;39593:7;39602:5;39520:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39516:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39820:1;39803:6;:13;:18;39799:235;;39849:40;;;;;;;;;;;;;;39799:235;39992:6;39986:13;39977:6;39973:2;39969:15;39962:38;39516:529;39689:54;;;39679:64;;;:6;:64;;;;39672:71;;;39336:716;;;;;;:::o;53380:1745::-;53445:17;53879:4;53872;53866:11;53862:22;53971:1;53965:4;53958:15;54046:4;54043:1;54039:12;54032:19;;54128:1;54123:3;54116:14;54232:3;54471:5;54453:428;54479:1;54453:428;;;54519:1;54514:3;54510:11;54503:18;;54690:2;54684:4;54680:13;54676:2;54672:22;54667:3;54659:36;54784:2;54778:4;54774:13;54766:21;;54851:4;54453:428;54841:25;54453:428;54457:21;54920:3;54915;54911:13;55035:4;55030:3;55026:14;55019:21;;55100:6;55095:3;55088:19;53484:1634;;;53380:1745;;;:::o;52183:147::-;52320:6;52183:147;;;;;:::o;783:98::-;836:7;863:10;856:17;;783:98;:::o;27926:324::-;27996:14;28229:1;28219:8;28216:15;28190:24;28186:46;28176:56;;27926:324;;;:::o;58256:107::-;58315:7;58346:1;58342;:5;:13;;58354:1;58342:13;;;58350:1;58342:13;58335:20;;58256:107;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:246::-;2314:1;2324:113;2338:6;2335:1;2332:13;2324:113;;;2423:1;2418:3;2414:11;2408:18;2404:1;2399:3;2395:11;2388:39;2360:2;2357:1;2353:10;2348:15;;2324:113;;;2471:1;2462:6;2457:3;2453:16;2446:27;2295:184;2233:246;;;:::o;2485:102::-;2526:6;2577:2;2573:7;2568:2;2561:5;2557:14;2553:28;2543:38;;2485:102;;;:::o;2593:377::-;2681:3;2709:39;2742:5;2709:39;:::i;:::-;2764:71;2828:6;2823:3;2764:71;:::i;:::-;2757:78;;2844:65;2902:6;2897:3;2890:4;2883:5;2879:16;2844:65;:::i;:::-;2934:29;2956:6;2934:29;:::i;:::-;2929:3;2925:39;2918:46;;2685:285;2593:377;;;;:::o;2976:313::-;3089:4;3127:2;3116:9;3112:18;3104:26;;3176:9;3170:4;3166:20;3162:1;3151:9;3147:17;3140:47;3204:78;3277:4;3268:6;3204:78;:::i;:::-;3196:86;;2976:313;;;;:::o;3295:122::-;3368:24;3386:5;3368:24;:::i;:::-;3361:5;3358:35;3348:63;;3407:1;3404;3397:12;3348:63;3295:122;:::o;3423:139::-;3469:5;3507:6;3494:20;3485:29;;3523:33;3550:5;3523:33;:::i;:::-;3423:139;;;;:::o;3568:329::-;3627:6;3676:2;3664:9;3655:7;3651:23;3647:32;3644:119;;;3682:79;;:::i;:::-;3644:119;3802:1;3827:53;3872:7;3863:6;3852:9;3848:22;3827:53;:::i;:::-;3817:63;;3773:117;3568:329;;;;:::o;3903:126::-;3940:7;3980:42;3973:5;3969:54;3958:65;;3903:126;;;:::o;4035:96::-;4072:7;4101:24;4119:5;4101:24;:::i;:::-;4090:35;;4035:96;;;:::o;4137:118::-;4224:24;4242:5;4224:24;:::i;:::-;4219:3;4212:37;4137:118;;:::o;4261:222::-;4354:4;4392:2;4381:9;4377:18;4369:26;;4405:71;4473:1;4462:9;4458:17;4449:6;4405:71;:::i;:::-;4261:222;;;;:::o;4489:122::-;4562:24;4580:5;4562:24;:::i;:::-;4555:5;4552:35;4542:63;;4601:1;4598;4591:12;4542:63;4489:122;:::o;4617:139::-;4663:5;4701:6;4688:20;4679:29;;4717:33;4744:5;4717:33;:::i;:::-;4617:139;;;;:::o;4762:474::-;4830:6;4838;4887:2;4875:9;4866:7;4862:23;4858:32;4855:119;;;4893:79;;:::i;:::-;4855:119;5013:1;5038:53;5083:7;5074:6;5063:9;5059:22;5038:53;:::i;:::-;5028:63;;4984:117;5140:2;5166:53;5211:7;5202:6;5191:9;5187:22;5166:53;:::i;:::-;5156:63;;5111:118;4762:474;;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6250:553;6308:8;6318:6;6368:3;6361:4;6353:6;6349:17;6345:27;6335:122;;6376:79;;:::i;:::-;6335:122;6489:6;6476:20;6466:30;;6519:18;6511:6;6508:30;6505:117;;;6541:79;;:::i;:::-;6505:117;6655:4;6647:6;6643:17;6631:29;;6709:3;6701:4;6693:6;6689:17;6679:8;6675:32;6672:41;6669:128;;;6716:79;;:::i;:::-;6669:128;6250:553;;;;;:::o;6809:529::-;6880:6;6888;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7091:1;7080:9;7076:17;7063:31;7121:18;7113:6;7110:30;7107:117;;;7143:79;;:::i;:::-;7107:117;7256:65;7313:7;7304:6;7293:9;7289:22;7256:65;:::i;:::-;7238:83;;;;7034:297;6809:529;;;;;:::o;7344:329::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7549:117;7344:329;;;;:::o;7679:116::-;7749:21;7764:5;7749:21;:::i;:::-;7742:5;7739:32;7729:60;;7785:1;7782;7775:12;7729:60;7679:116;:::o;7801:133::-;7844:5;7882:6;7869:20;7860:29;;7898:30;7922:5;7898:30;:::i;:::-;7801:133;;;;:::o;7940:468::-;8005:6;8013;8062:2;8050:9;8041:7;8037:23;8033:32;8030:119;;;8068:79;;:::i;:::-;8030:119;8188:1;8213:53;8258:7;8249:6;8238:9;8234:22;8213:53;:::i;:::-;8203:63;;8159:117;8315:2;8341:50;8383:7;8374:6;8363:9;8359:22;8341:50;:::i;:::-;8331:60;;8286:115;7940:468;;;;;:::o;8414:117::-;8523:1;8520;8513:12;8537:180;8585:77;8582:1;8575:88;8682:4;8679:1;8672:15;8706:4;8703:1;8696:15;8723:281;8806:27;8828:4;8806:27;:::i;:::-;8798:6;8794:40;8936:6;8924:10;8921:22;8900:18;8888:10;8885:34;8882:62;8879:88;;;8947:18;;:::i;:::-;8879:88;8987:10;8983:2;8976:22;8766:238;8723:281;;:::o;9010:129::-;9044:6;9071:20;;:::i;:::-;9061:30;;9100:33;9128:4;9120:6;9100:33;:::i;:::-;9010:129;;;:::o;9145:307::-;9206:4;9296:18;9288:6;9285:30;9282:56;;;9318:18;;:::i;:::-;9282:56;9356:29;9378:6;9356:29;:::i;:::-;9348:37;;9440:4;9434;9430:15;9422:23;;9145:307;;;:::o;9458:146::-;9555:6;9550:3;9545;9532:30;9596:1;9587:6;9582:3;9578:16;9571:27;9458:146;;;:::o;9610:423::-;9687:5;9712:65;9728:48;9769:6;9728:48;:::i;:::-;9712:65;:::i;:::-;9703:74;;9800:6;9793:5;9786:21;9838:4;9831:5;9827:16;9876:3;9867:6;9862:3;9858:16;9855:25;9852:112;;;9883:79;;:::i;:::-;9852:112;9973:54;10020:6;10015:3;10010;9973:54;:::i;:::-;9693:340;9610:423;;;;;:::o;10052:338::-;10107:5;10156:3;10149:4;10141:6;10137:17;10133:27;10123:122;;10164:79;;:::i;:::-;10123:122;10281:6;10268:20;10306:78;10380:3;10372:6;10365:4;10357:6;10353:17;10306:78;:::i;:::-;10297:87;;10113:277;10052:338;;;;:::o;10396:943::-;10491:6;10499;10507;10515;10564:3;10552:9;10543:7;10539:23;10535:33;10532:120;;;10571:79;;:::i;:::-;10532:120;10691:1;10716:53;10761:7;10752:6;10741:9;10737:22;10716:53;:::i;:::-;10706:63;;10662:117;10818:2;10844:53;10889:7;10880:6;10869:9;10865:22;10844:53;:::i;:::-;10834:63;;10789:118;10946:2;10972:53;11017:7;11008:6;10997:9;10993:22;10972:53;:::i;:::-;10962:63;;10917:118;11102:2;11091:9;11087:18;11074:32;11133:18;11125:6;11122:30;11119:117;;;11155:79;;:::i;:::-;11119:117;11260:62;11314:7;11305:6;11294:9;11290:22;11260:62;:::i;:::-;11250:72;;11045:287;10396:943;;;;;;;:::o;11345:474::-;11413:6;11421;11470:2;11458:9;11449:7;11445:23;11441:32;11438:119;;;11476:79;;:::i;:::-;11438:119;11596:1;11621:53;11666:7;11657:6;11646:9;11642:22;11621:53;:::i;:::-;11611:63;;11567:117;11723:2;11749:53;11794:7;11785:6;11774:9;11770:22;11749:53;:::i;:::-;11739:63;;11694:118;11345:474;;;;;:::o;11825:180::-;11873:77;11870:1;11863:88;11970:4;11967:1;11960:15;11994:4;11991:1;11984:15;12011:320;12055:6;12092:1;12086:4;12082:12;12072:22;;12139:1;12133:4;12129:12;12160:18;12150:81;;12216:4;12208:6;12204:17;12194:27;;12150:81;12278:2;12270:6;12267:14;12247:18;12244:38;12241:84;;12297:18;;:::i;:::-;12241:84;12062:269;12011:320;;;:::o;12337:147::-;12438:11;12475:3;12460:18;;12337:147;;;;:::o;12490:114::-;;:::o;12610:398::-;12769:3;12790:83;12871:1;12866:3;12790:83;:::i;:::-;12783:90;;12882:93;12971:3;12882:93;:::i;:::-;13000:1;12995:3;12991:11;12984:18;;12610:398;;;:::o;13014:379::-;13198:3;13220:147;13363:3;13220:147;:::i;:::-;13213:154;;13384:3;13377:10;;13014:379;;;:::o;13399:165::-;13539:17;13535:1;13527:6;13523:14;13516:41;13399:165;:::o;13570:366::-;13712:3;13733:67;13797:2;13792:3;13733:67;:::i;:::-;13726:74;;13809:93;13898:3;13809:93;:::i;:::-;13927:2;13922:3;13918:12;13911:19;;13570:366;;;:::o;13942:419::-;14108:4;14146:2;14135:9;14131:18;14123:26;;14195:9;14189:4;14185:20;14181:1;14170:9;14166:17;14159:47;14223:131;14349:4;14223:131;:::i;:::-;14215:139;;13942:419;;;:::o;14367:97::-;14426:6;14454:3;14444:13;;14367:97;;;;:::o;14470:141::-;14519:4;14542:3;14534:11;;14565:3;14562:1;14555:14;14599:4;14596:1;14586:18;14578:26;;14470:141;;;:::o;14617:93::-;14654:6;14701:2;14696;14689:5;14685:14;14681:23;14671:33;;14617:93;;;:::o;14716:107::-;14760:8;14810:5;14804:4;14800:16;14779:37;;14716:107;;;;:::o;14829:393::-;14898:6;14948:1;14936:10;14932:18;14971:97;15001:66;14990:9;14971:97;:::i;:::-;15089:39;15119:8;15108:9;15089:39;:::i;:::-;15077:51;;15161:4;15157:9;15150:5;15146:21;15137:30;;15210:4;15200:8;15196:19;15189:5;15186:30;15176:40;;14905:317;;14829:393;;;;;:::o;15228:60::-;15256:3;15277:5;15270:12;;15228:60;;;:::o;15294:142::-;15344:9;15377:53;15395:34;15404:24;15422:5;15404:24;:::i;:::-;15395:34;:::i;:::-;15377:53;:::i;:::-;15364:66;;15294:142;;;:::o;15442:75::-;15485:3;15506:5;15499:12;;15442:75;;;:::o;15523:269::-;15633:39;15664:7;15633:39;:::i;:::-;15694:91;15743:41;15767:16;15743:41;:::i;:::-;15735:6;15728:4;15722:11;15694:91;:::i;:::-;15688:4;15681:105;15599:193;15523:269;;;:::o;15798:73::-;15843:3;15798:73;:::o;15877:189::-;15954:32;;:::i;:::-;15995:65;16053:6;16045;16039:4;15995:65;:::i;:::-;15930:136;15877:189;;:::o;16072:186::-;16132:120;16149:3;16142:5;16139:14;16132:120;;;16203:39;16240:1;16233:5;16203:39;:::i;:::-;16176:1;16169:5;16165:13;16156:22;;16132:120;;;16072:186;;:::o;16264:543::-;16365:2;16360:3;16357:11;16354:446;;;16399:38;16431:5;16399:38;:::i;:::-;16483:29;16501:10;16483:29;:::i;:::-;16473:8;16469:44;16666:2;16654:10;16651:18;16648:49;;;16687:8;16672:23;;16648:49;16710:80;16766:22;16784:3;16766:22;:::i;:::-;16756:8;16752:37;16739:11;16710:80;:::i;:::-;16369:431;;16354:446;16264:543;;;:::o;16813:117::-;16867:8;16917:5;16911:4;16907:16;16886:37;;16813:117;;;;:::o;16936:169::-;16980:6;17013:51;17061:1;17057:6;17049:5;17046:1;17042:13;17013:51;:::i;:::-;17009:56;17094:4;17088;17084:15;17074:25;;16987:118;16936:169;;;;:::o;17110:295::-;17186:4;17332:29;17357:3;17351:4;17332:29;:::i;:::-;17324:37;;17394:3;17391:1;17387:11;17381:4;17378:21;17370:29;;17110:295;;;;:::o;17410:1403::-;17534:44;17574:3;17569;17534:44;:::i;:::-;17643:18;17635:6;17632:30;17629:56;;;17665:18;;:::i;:::-;17629:56;17709:38;17741:4;17735:11;17709:38;:::i;:::-;17794:67;17854:6;17846;17840:4;17794:67;:::i;:::-;17888:1;17917:2;17909:6;17906:14;17934:1;17929:632;;;;18605:1;18622:6;18619:84;;;18678:9;18673:3;18669:19;18656:33;18647:42;;18619:84;18729:67;18789:6;18782:5;18729:67;:::i;:::-;18723:4;18716:81;18578:229;17899:908;;17929:632;17981:4;17977:9;17969:6;17965:22;18015:37;18047:4;18015:37;:::i;:::-;18074:1;18088:215;18102:7;18099:1;18096:14;18088:215;;;18188:9;18183:3;18179:19;18166:33;18158:6;18151:49;18239:1;18231:6;18227:14;18217:24;;18286:2;18275:9;18271:18;18258:31;;18125:4;18122:1;18118:12;18113:17;;18088:215;;;18331:6;18322:7;18319:19;18316:186;;;18396:9;18391:3;18387:19;18374:33;18439:48;18481:4;18473:6;18469:17;18458:9;18439:48;:::i;:::-;18431:6;18424:64;18339:163;18316:186;18548:1;18544;18536:6;18532:14;18528:22;18522:4;18515:36;17936:625;;;17899:908;;17509:1304;;;17410:1403;;;:::o;18819:180::-;18867:77;18864:1;18857:88;18964:4;18961:1;18954:15;18988:4;18985:1;18978:15;19005:191;19045:3;19064:20;19082:1;19064:20;:::i;:::-;19059:25;;19098:20;19116:1;19098:20;:::i;:::-;19093:25;;19141:1;19138;19134:9;19127:16;;19162:3;19159:1;19156:10;19153:36;;;19169:18;;:::i;:::-;19153:36;19005:191;;;;:::o;19202:148::-;19304:11;19341:3;19326:18;;19202:148;;;;:::o;19380:874::-;19483:3;19520:5;19514:12;19549:36;19575:9;19549:36;:::i;:::-;19601:89;19683:6;19678:3;19601:89;:::i;:::-;19594:96;;19721:1;19710:9;19706:17;19737:1;19732:166;;;;19912:1;19907:341;;;;19699:549;;19732:166;19816:4;19812:9;19801;19797:25;19792:3;19785:38;19878:6;19871:14;19864:22;19856:6;19852:35;19847:3;19843:45;19836:52;;19732:166;;19907:341;19974:38;20006:5;19974:38;:::i;:::-;20034:1;20048:154;20062:6;20059:1;20056:13;20048:154;;;20136:7;20130:14;20126:1;20121:3;20117:11;20110:35;20186:1;20177:7;20173:15;20162:26;;20084:4;20081:1;20077:12;20072:17;;20048:154;;;20231:6;20226:3;20222:16;20215:23;;19914:334;;19699:549;;19487:767;;19380:874;;;;:::o;20260:390::-;20366:3;20394:39;20427:5;20394:39;:::i;:::-;20449:89;20531:6;20526:3;20449:89;:::i;:::-;20442:96;;20547:65;20605:6;20600:3;20593:4;20586:5;20582:16;20547:65;:::i;:::-;20637:6;20632:3;20628:16;20621:23;;20370:280;20260:390;;;;:::o;20656:400::-;20816:3;20837:84;20919:1;20914:3;20837:84;:::i;:::-;20830:91;;20930:93;21019:3;20930:93;:::i;:::-;21048:1;21043:3;21039:11;21032:18;;20656:400;;;:::o;21062:695::-;21340:3;21362:92;21450:3;21441:6;21362:92;:::i;:::-;21355:99;;21471:95;21562:3;21553:6;21471:95;:::i;:::-;21464:102;;21583:148;21727:3;21583:148;:::i;:::-;21576:155;;21748:3;21741:10;;21062:695;;;;;:::o;21763:225::-;21903:34;21899:1;21891:6;21887:14;21880:58;21972:8;21967:2;21959:6;21955:15;21948:33;21763:225;:::o;21994:366::-;22136:3;22157:67;22221:2;22216:3;22157:67;:::i;:::-;22150:74;;22233:93;22322:3;22233:93;:::i;:::-;22351:2;22346:3;22342:12;22335:19;;21994:366;;;:::o;22366:419::-;22532:4;22570:2;22559:9;22555:18;22547:26;;22619:9;22613:4;22609:20;22605:1;22594:9;22590:17;22583:47;22647:131;22773:4;22647:131;:::i;:::-;22639:139;;22366:419;;;:::o;22791:182::-;22931:34;22927:1;22919:6;22915:14;22908:58;22791:182;:::o;22979:366::-;23121:3;23142:67;23206:2;23201:3;23142:67;:::i;:::-;23135:74;;23218:93;23307:3;23218:93;:::i;:::-;23336:2;23331:3;23327:12;23320:19;;22979:366;;;:::o;23351:419::-;23517:4;23555:2;23544:9;23540:18;23532:26;;23604:9;23598:4;23594:20;23590:1;23579:9;23575:17;23568:47;23632:131;23758:4;23632:131;:::i;:::-;23624:139;;23351:419;;;:::o;23776:98::-;23827:6;23861:5;23855:12;23845:22;;23776:98;;;:::o;23880:168::-;23963:11;23997:6;23992:3;23985:19;24037:4;24032:3;24028:14;24013:29;;23880:168;;;;:::o;24054:373::-;24140:3;24168:38;24200:5;24168:38;:::i;:::-;24222:70;24285:6;24280:3;24222:70;:::i;:::-;24215:77;;24301:65;24359:6;24354:3;24347:4;24340:5;24336:16;24301:65;:::i;:::-;24391:29;24413:6;24391:29;:::i;:::-;24386:3;24382:39;24375:46;;24144:283;24054:373;;;;:::o;24433:640::-;24628:4;24666:3;24655:9;24651:19;24643:27;;24680:71;24748:1;24737:9;24733:17;24724:6;24680:71;:::i;:::-;24761:72;24829:2;24818:9;24814:18;24805:6;24761:72;:::i;:::-;24843;24911:2;24900:9;24896:18;24887:6;24843:72;:::i;:::-;24962:9;24956:4;24952:20;24947:2;24936:9;24932:18;24925:48;24990:76;25061:4;25052:6;24990:76;:::i;:::-;24982:84;;24433:640;;;;;;;:::o;25079:141::-;25135:5;25166:6;25160:13;25151:22;;25182:32;25208:5;25182:32;:::i;:::-;25079:141;;;;:::o;25226:349::-;25295:6;25344:2;25332:9;25323:7;25319:23;25315:32;25312:119;;;25350:79;;:::i;:::-;25312:119;25470:1;25495:63;25550:7;25541:6;25530:9;25526:22;25495:63;:::i;:::-;25485:73;;25441:127;25226:349;;;;:::o

Swarm Source

ipfs://d5a8e2caebb4227a72ad673b738f6d87003b95e7af9ede8606685ddaa0eca74a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.