ETH Price: $3,312.54 (-2.89%)
Gas: 13 Gwei

Token

GriefWojakYachtClub (GWYC)
 

Overview

Max Total Supply

10,000 GWYC

Holders

4,781

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 GWYC
0x7670d9d73fe172d856bb1e9012251c828d09bccc
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:
GriefWojakYachtClub

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-14
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol

/*
55555555555555Y7JY5555555555555555555P5YJJJYYYYY555555555555
5555555555555557???J555555555555555PY7~~~!7?JJYY555555555555
555555555555555Y!?77?7J5555555555PY!^!77JY555555555555555555
555555555555555PY777??!!5555555557~!???Y55555555555555555555
555555555555555555Y?77J!?PPPP5PY7?YY555555555555555555555555
555555555555555555555Y?!!YJJ?777!7?JY5PP55555555555555555555
555555555555555555555PY77!~~~~~~~~~~~!7J5P555555555555555555
55555555555555555555P?^!!~~~~~~~~~!!~~~~!?555555555555555555
5555555555555555555PY!7~~~~~~~~~!!!!!!!!!~?P5555555555555555
5555555555555555555PYJ7~~~~~~~!!7!!!~!!!!~7P5555555555555555
555555555555555555YYY?7!~~~~~!!!!77~~~!!!!!55555555555555555
55555555555555555PJJYY7!~~~~~!~!Y7!~~~!~7!!55555555555555555
55555555555555555PJJJ5?7~~~~!?7?PY!~~!?!PY!Y5555555555555555
5555555555555555555??Y?7!~~~~~!!~~~~~!!!!!~JP555555555555555
55555555555555555555YJYJ7~~~~~~~~!!7!~!!~~~55555555555555555
555555555555555555555P5?J?~~~~~~~!!7!!!!~~YP5555555555555555
55555555555555555555555??Y?!~~~~!!!!!!!!~JP55555555555555555
5555555555555555555555P77J5Y?7~~~~~~~~~~?5555555555555555555
55555555555555555555555!!!J?JYJ?7!!!!!7YP5555555555555555555
555555555555555555555P?!!~!!77?JYYP5555555555555555555555555
5555555555555555555PGY!~~~~!!!!7775GP55555555555555555555555
55555555555555PPPPGGGG5YJJ????JJYYPBGGPP55555555555555555555
555555555PPPGGGGGGGGGBBBBBBBGBBBBBBBBBBGGGGPPP55555555555555
55555555PGGBBGGGGGGGGGGGBBBBBBBBBBGGGGGGGGG?7J5P555555555555
5555555P?!7JPBGGGGGGGGGGGGGGGGGGGGGGGGGGGGBY~~!5P55555555555
555555PY~~~~!PBGGGGGGGGGGGGGGGGGGGGGGGGGGGBP~~~?G55555555555
555555G!~~~~!JBGGGGGGGGGGGGGGGGGGGGGGGGGGGBP~~~~PP5555555555
55555GY~~~~!!5BGGGGGGGGGGGGGGGGGGGGGGGGGGGBB!~~~?B5555555555
*/

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.2
// 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 {
    // Reference type for token approval.
    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 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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]`.
        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 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 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 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.
            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`.
                )

                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 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

            // 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: @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: contracts/DigiDaigakuMan.sol





library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

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

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

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

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

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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


pragma solidity ^0.8.13;

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

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




pragma solidity >=0.8.9 <0.9.0;

contract GriefWojakYachtClub is ERC721A, DefaultOperatorFilterer, Ownable, ReentrancyGuard {
    using Address for address;
    using Strings for uint;
    
    string  public baseTokenURI = "ipfs://bafybeibd6acnuc56peyqcyqstclsezqfep2afknbcahgzgztxfu5bniite/";
    uint256 public MAX_WOJAK = 10000;
    uint256 public MAX_FREE_SUPPLY = 10000;
    uint256 public MAX_PER_TX = 25;
    uint256 public PRICE = 0.0035 ether;
    uint256 public MAX_FREE_PER_WALLET = 1;
    bool public status = false;

    mapping(address => uint256) public alreadyFreeMinted;

    constructor() ERC721A("GriefWojakYachtClub", "GWYC") {}

    function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
        require(totalSupply() + _mintAmount <= MAX_WOJAK, "Max supply exceeded!");
        _safeMint(_receiver, _mintAmount);
    }


    function mint(uint256 amount) external payable
    {
		require(amount <= MAX_PER_TX,"Maximum of 25 Wojaks per txn!");
		require(_totalMinted() + amount <= MAX_WOJAK,"No Wojak lefts!");
        require(status, "Wojak has not yet begun to grieve.");
        uint payForCount = amount;
        uint minted = alreadyFreeMinted[msg.sender];
        if(minted < MAX_FREE_PER_WALLET && _totalMinted() < MAX_FREE_SUPPLY) {
            uint remainingFreeMints = MAX_FREE_PER_WALLET - minted;
            if(amount > remainingFreeMints) {
                payForCount = amount - remainingFreeMints;
            }
            else {
                payForCount = 0;
            }
        }
		require(
			msg.value >= payForCount * PRICE,
			'Ether value sent is not sufficient'
		);
    	alreadyFreeMinted[msg.sender] += amount;

        _safeMint(msg.sender, amount);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner
    {
        baseTokenURI = baseURI;
    }

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

    function withdraw() public onlyOwner nonReentrant {
        (bool os, ) = payable(owner()).call{value: address(this).balance}('');
        require(os);
    }

    function tokenURI(uint tokenId)
		public
		view
		override
		returns (string memory)
	{
        require(_exists(tokenId), "ERC721Metadata");

        return bytes(_baseURI()).length > 0 
            ? string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json"))
            : baseTokenURI;
	}

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


    function setStatus(bool _status) external onlyOwner
    {
        status = _status;
    }

    function setPrice(uint256 _price) external onlyOwner
    {
        PRICE = _price;
    }

    function setMaxLimitPerTransaction(uint256 _limit) external onlyOwner
    {
        MAX_PER_TX = _limit;
    }

    function setLimitFreeMintPerWallet(uint256 _limit) external onlyOwner
    {
        MAX_FREE_PER_WALLET = _limit;
    }

    function setMaxFreeAmount(uint256 _amount) external onlyOwner
    {
        MAX_FREE_SUPPLY = _amount;
    }

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

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WOJAK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"alreadyFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setLimitFreeMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180608001604052806043815260200162003f4d60439139600a90805190602001906200003592919062000449565b50612710600b55612710600c556019600d55660c6f3b40b6c000600e556001600f556000601060006101000a81548160ff0219169083151502179055503480156200007f57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601381526020017f4772696566576f6a616b5961636874436c7562000000000000000000000000008152506040518060400160405280600481526020017f475759430000000000000000000000000000000000000000000000000000000081525081600290805190602001906200011b92919062000449565b5080600390805190602001906200013492919062000449565b50620001456200037260201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200034257801562000208576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001ce9291906200053e565b600060405180830381600087803b158015620001e957600080fd5b505af1158015620001fe573d6000803e3d6000fd5b5050505062000341565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002c2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002889291906200053e565b600060405180830381600087803b158015620002a357600080fd5b505af1158015620002b8573d6000803e3d6000fd5b5050505062000340565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200030b91906200056b565b600060405180830381600087803b1580156200032657600080fd5b505af11580156200033b573d6000803e3d6000fd5b505050505b5b5b505062000364620003586200037b60201b60201c565b6200038360201b60201c565b6001600981905550620005ec565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200045790620005b7565b90600052602060002090601f0160209004810192826200047b5760008555620004c7565b82601f106200049657805160ff1916838001178555620004c7565b82800160010185558215620004c7579182015b82811115620004c6578251825591602001919060010190620004a9565b5b509050620004d69190620004da565b5090565b5b80821115620004f5576000816000905550600101620004db565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200052682620004f9565b9050919050565b620005388162000519565b82525050565b60006040820190506200055560008301856200052d565b6200056460208301846200052d565b9392505050565b60006020820190506200058260008301846200052d565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005d057607f821691505b602082108103620005e657620005e562000588565b5b50919050565b61395180620005fc6000396000f3fe6080604052600436106102045760003560e01c80638d859f3e11610118578063b8a21d21116100a0578063e19979f51161006f578063e19979f514610746578063e985e9c51461076f578063efbd73f4146107ac578063f2fde38b146107d5578063f43a22dc146107fe57610204565b8063b8a21d2114610676578063c87b56dd146106a1578063d547cfb7146106de578063dc33e6811461070957610204565b806398710d1e116100e757806398710d1e146105b45780639e9fcffc146105df578063a0712d6814610608578063a22cb46514610624578063b88d4fde1461064d57610204565b80638d859f3e1461050a5780638da5cb5b1461053557806391b7f5ed1461056057806395d89b411461058957610204565b8063200d2ed21161019b57806355f804b31161016a57806355f804b3146104275780635c40f6f4146104505780636352211e1461047957806370a08231146104b6578063715018a6146104f357610204565b8063200d2ed21461039357806323b872dd146103be5780633ccfd60b146103e757806342842e0e146103fe57610204565b8063095ea7b3116101d7578063095ea7b3146102d95780630c23bb3f146103025780630cabd4f31461032b57806318160ddd1461036857610204565b806301ffc9a71461020957806302ddb65b1461024657806306fdde0314610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612969565b610829565b60405161023d91906129b1565b60405180910390f35b34801561025257600080fd5b5061025b6108bb565b60405161026891906129e5565b60405180910390f35b34801561027d57600080fd5b506102866108c1565b6040516102939190612a99565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be9190612ae7565b610953565b6040516102d09190612b55565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190612b9c565b6109d2565b005b34801561030e57600080fd5b5061032960048036038101906103249190612ae7565b610b16565b005b34801561033757600080fd5b50610352600480360381019061034d9190612bdc565b610b28565b60405161035f91906129e5565b60405180910390f35b34801561037457600080fd5b5061037d610b40565b60405161038a91906129e5565b60405180910390f35b34801561039f57600080fd5b506103a8610b57565b6040516103b591906129b1565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e09190612c09565b610b6a565b005b3480156103f357600080fd5b506103fc610d4c565b005b34801561040a57600080fd5b5061042560048036038101906104209190612c09565b610e29565b005b34801561043357600080fd5b5061044e60048036038101906104499190612d91565b61100b565b005b34801561045c57600080fd5b5061047760048036038101906104729190612e06565b61102d565b005b34801561048557600080fd5b506104a0600480360381019061049b9190612ae7565b611052565b6040516104ad9190612b55565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d89190612bdc565b611064565b6040516104ea91906129e5565b60405180910390f35b3480156104ff57600080fd5b5061050861111c565b005b34801561051657600080fd5b5061051f611130565b60405161052c91906129e5565b60405180910390f35b34801561054157600080fd5b5061054a611136565b6040516105579190612b55565b60405180910390f35b34801561056c57600080fd5b5061058760048036038101906105829190612ae7565b611160565b005b34801561059557600080fd5b5061059e611172565b6040516105ab9190612a99565b60405180910390f35b3480156105c057600080fd5b506105c9611204565b6040516105d691906129e5565b60405180910390f35b3480156105eb57600080fd5b5061060660048036038101906106019190612ae7565b61120a565b005b610622600480360381019061061d9190612ae7565b61121c565b005b34801561063057600080fd5b5061064b60048036038101906106469190612e33565b611457565b005b34801561065957600080fd5b50610674600480360381019061066f9190612f14565b6115ce565b005b34801561068257600080fd5b5061068b6117b3565b60405161069891906129e5565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c39190612ae7565b6117b9565b6040516106d59190612a99565b60405180910390f35b3480156106ea57600080fd5b506106f36118dc565b6040516107009190612a99565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190612bdc565b61196a565b60405161073d91906129e5565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190612ae7565b61197c565b005b34801561077b57600080fd5b5061079660048036038101906107919190612f97565b61198e565b6040516107a391906129b1565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190612fd7565b611a22565b005b3480156107e157600080fd5b506107fc60048036038101906107f79190612bdc565b611a8f565b005b34801561080a57600080fd5b50610813611b12565b60405161082091906129e5565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108b45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b6060600280546108d090613046565b80601f01602080910402602001604051908101604052809291908181526020018280546108fc90613046565b80156109495780601f1061091e57610100808354040283529160200191610949565b820191906000526020600020905b81548152906001019060200180831161092c57829003601f168201915b5050505050905090565b600061095e82611b18565b610994576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109dd82611052565b90508073ffffffffffffffffffffffffffffffffffffffff166109fe611b77565b73ffffffffffffffffffffffffffffffffffffffff1614610a6157610a2a81610a25611b77565b61198e565b610a60576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b1e611b7f565b80600c8190555050565b60116020528060005260406000206000915090505481565b6000610b4a611bfd565b6001546000540303905090565b601060009054906101000a900460ff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d3a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bdc57610bd7848484611c06565b610d46565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c25929190613077565b602060405180830381865afa158015610c42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c6691906130b5565b8015610cf857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610cb6929190613077565b602060405180830381865afa158015610cd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cf791906130b5565b5b610d3957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d309190612b55565b60405180910390fd5b5b610d45848484611c06565b5b50505050565b610d54611b7f565b600260095403610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d909061312e565b60405180910390fd5b60026009819055506000610dab611136565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dce9061317f565b60006040518083038185875af1925050503d8060008114610e0b576040519150601f19603f3d011682016040523d82523d6000602084013e610e10565b606091505b5050905080610e1e57600080fd5b506001600981905550565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ff9573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e9b57610e96848484611f28565b611005565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ee4929190613077565b602060405180830381865afa158015610f01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2591906130b5565b8015610fb757506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610f75929190613077565b602060405180830381865afa158015610f92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb691906130b5565b5b610ff857336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610fef9190612b55565b60405180910390fd5b5b611004848484611f28565b5b50505050565b611013611b7f565b80600a908051906020019061102992919061285a565b5050565b611035611b7f565b80601060006101000a81548160ff02191690831515021790555050565b600061105d82611f48565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110cb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611124611b7f565b61112e6000612014565b565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611168611b7f565b80600e8190555050565b60606003805461118190613046565b80601f01602080910402602001604051908101604052809291908181526020018280546111ad90613046565b80156111fa5780601f106111cf576101008083540402835291602001916111fa565b820191906000526020600020905b8154815290600101906020018083116111dd57829003601f168201915b5050505050905090565b600f5481565b611212611b7f565b80600d8190555050565b600d54811115611261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611258906131e0565b60405180910390fd5b600b548161126d6120da565b611277919061322f565b11156112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af906132d1565b60405180910390fd5b601060009054906101000a900460ff16611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe90613363565b60405180910390fd5b60008190506000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f54811080156113695750600c546113676120da565b105b156113a257600081600f5461137e9190613383565b90508084111561139b5780846113949190613383565b92506113a0565b600092505b505b600e54826113b091906133b7565b3410156113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e990613483565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611441919061322f565b9250508190555061145233846120ed565b505050565b61145f611b77565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114c3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114d0611b77565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661157d611b77565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115c291906129b1565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561179f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116415761163c8585858561210b565b6117ac565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161168a929190613077565b602060405180830381865afa1580156116a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116cb91906130b5565b801561175d57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161171b929190613077565b602060405180830381865afa158015611738573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175c91906130b5565b5b61179e57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016117959190612b55565b60405180910390fd5b5b6117ab8585858561210b565b5b5050505050565b600b5481565b60606117c482611b18565b611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa906134ef565b60405180910390fd5b600061180d61217e565b51116118a357600a805461182090613046565b80601f016020809104026020016040519081016040528092919081815260200182805461184c90613046565b80156118995780601f1061186e57610100808354040283529160200191611899565b820191906000526020600020905b81548152906001019060200180831161187c57829003601f168201915b50505050506118d5565b6118ab61217e565b6118b483612210565b6040516020016118c5929190613597565b6040516020818303038152906040525b9050919050565b600a80546118e990613046565b80601f016020809104026020016040519081016040528092919081815260200182805461191590613046565b80156119625780601f1061193757610100808354040283529160200191611962565b820191906000526020600020905b81548152906001019060200180831161194557829003601f168201915b505050505081565b600061197582612370565b9050919050565b611984611b7f565b80600f8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a2a611b7f565b600b5482611a36610b40565b611a40919061322f565b1115611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890613612565b60405180910390fd5b611a8b81836120ed565b5050565b611a97611b7f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd906136a4565b60405180910390fd5b611b0f81612014565b50565b600d5481565b600081611b23611bfd565b11158015611b32575060005482105b8015611b70575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611b876123c7565b73ffffffffffffffffffffffffffffffffffffffff16611ba5611136565b73ffffffffffffffffffffffffffffffffffffffff1614611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf290613710565b60405180910390fd5b565b60006001905090565b6000611c1182611f48565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c78576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611c84846123cf565b91509150611c9a8187611c95611b77565b6123f6565b611ce657611caf86611caa611b77565b61198e565b611ce5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611d4c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d59868686600161243a565b8015611d6457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611e3285611e0e888887612440565b7c020000000000000000000000000000000000000000000000000000000017612468565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611eb85760006001850190506000600460008381526020019081526020016000205403611eb6576000548114611eb5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f208686866001612493565b505050505050565b611f43838383604051806020016040528060008152506115ce565b505050565b60008082905080611f57611bfd565b11611fdd57600054811015611fdc5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611fda575b60008103611fd0576004600083600190039350838152602001908152602001600020549050611fa6565b809250505061200f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006120e4611bfd565b60005403905090565b612107828260405180602001604052806000815250612499565b5050565b612116848484610b6a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121785761214184848484612536565b612177576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a805461218d90613046565b80601f01602080910402602001604051908101604052809291908181526020018280546121b990613046565b80156122065780601f106121db57610100808354040283529160200191612206565b820191906000526020600020905b8154815290600101906020018083116121e957829003601f168201915b5050505050905090565b606060008203612257576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061236b565b600082905060005b6000821461228957808061227290613730565b915050600a8261228291906137a7565b915061225f565b60008167ffffffffffffffff8111156122a5576122a4612c66565b5b6040519080825280601f01601f1916602001820160405280156122d75781602001600182028036833780820191505090505b5090505b60008514612364576001826122f09190613383565b9150600a856122ff91906137d8565b603061230b919061322f565b60f81b81838151811061232157612320613809565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561235d91906137a7565b94506122db565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612457868684612686565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6124a3838361268f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461253157600080549050600083820390505b6124e36000868380600101945086612536565b612519576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124d057816000541461252e57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261255c611b77565b8786866040518563ffffffff1660e01b815260040161257e949392919061388d565b6020604051808303816000875af19250505080156125ba57506040513d601f19601f820116820180604052508101906125b791906138ee565b60015b612633573d80600081146125ea576040519150601f19603f3d011682016040523d82523d6000602084013e6125ef565b606091505b50600081510361262b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036126cf576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126dc600084838561243a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612753836127446000866000612440565b61274d8561284a565b17612468565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146127f457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506127b9565b506000820361282f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506128456000848385612493565b505050565b60006001821460e11b9050919050565b82805461286690613046565b90600052602060002090601f01602090048101928261288857600085556128cf565b82601f106128a157805160ff19168380011785556128cf565b828001600101855582156128cf579182015b828111156128ce5782518255916020019190600101906128b3565b5b5090506128dc91906128e0565b5090565b5b808211156128f95760008160009055506001016128e1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61294681612911565b811461295157600080fd5b50565b6000813590506129638161293d565b92915050565b60006020828403121561297f5761297e612907565b5b600061298d84828501612954565b91505092915050565b60008115159050919050565b6129ab81612996565b82525050565b60006020820190506129c660008301846129a2565b92915050565b6000819050919050565b6129df816129cc565b82525050565b60006020820190506129fa60008301846129d6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a3a578082015181840152602081019050612a1f565b83811115612a49576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a6b82612a00565b612a758185612a0b565b9350612a85818560208601612a1c565b612a8e81612a4f565b840191505092915050565b60006020820190508181036000830152612ab38184612a60565b905092915050565b612ac4816129cc565b8114612acf57600080fd5b50565b600081359050612ae181612abb565b92915050565b600060208284031215612afd57612afc612907565b5b6000612b0b84828501612ad2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b3f82612b14565b9050919050565b612b4f81612b34565b82525050565b6000602082019050612b6a6000830184612b46565b92915050565b612b7981612b34565b8114612b8457600080fd5b50565b600081359050612b9681612b70565b92915050565b60008060408385031215612bb357612bb2612907565b5b6000612bc185828601612b87565b9250506020612bd285828601612ad2565b9150509250929050565b600060208284031215612bf257612bf1612907565b5b6000612c0084828501612b87565b91505092915050565b600080600060608486031215612c2257612c21612907565b5b6000612c3086828701612b87565b9350506020612c4186828701612b87565b9250506040612c5286828701612ad2565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c9e82612a4f565b810181811067ffffffffffffffff82111715612cbd57612cbc612c66565b5b80604052505050565b6000612cd06128fd565b9050612cdc8282612c95565b919050565b600067ffffffffffffffff821115612cfc57612cfb612c66565b5b612d0582612a4f565b9050602081019050919050565b82818337600083830152505050565b6000612d34612d2f84612ce1565b612cc6565b905082815260208101848484011115612d5057612d4f612c61565b5b612d5b848285612d12565b509392505050565b600082601f830112612d7857612d77612c5c565b5b8135612d88848260208601612d21565b91505092915050565b600060208284031215612da757612da6612907565b5b600082013567ffffffffffffffff811115612dc557612dc461290c565b5b612dd184828501612d63565b91505092915050565b612de381612996565b8114612dee57600080fd5b50565b600081359050612e0081612dda565b92915050565b600060208284031215612e1c57612e1b612907565b5b6000612e2a84828501612df1565b91505092915050565b60008060408385031215612e4a57612e49612907565b5b6000612e5885828601612b87565b9250506020612e6985828601612df1565b9150509250929050565b600067ffffffffffffffff821115612e8e57612e8d612c66565b5b612e9782612a4f565b9050602081019050919050565b6000612eb7612eb284612e73565b612cc6565b905082815260208101848484011115612ed357612ed2612c61565b5b612ede848285612d12565b509392505050565b600082601f830112612efb57612efa612c5c565b5b8135612f0b848260208601612ea4565b91505092915050565b60008060008060808587031215612f2e57612f2d612907565b5b6000612f3c87828801612b87565b9450506020612f4d87828801612b87565b9350506040612f5e87828801612ad2565b925050606085013567ffffffffffffffff811115612f7f57612f7e61290c565b5b612f8b87828801612ee6565b91505092959194509250565b60008060408385031215612fae57612fad612907565b5b6000612fbc85828601612b87565b9250506020612fcd85828601612b87565b9150509250929050565b60008060408385031215612fee57612fed612907565b5b6000612ffc85828601612ad2565b925050602061300d85828601612b87565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061305e57607f821691505b60208210810361307157613070613017565b5b50919050565b600060408201905061308c6000830185612b46565b6130996020830184612b46565b9392505050565b6000815190506130af81612dda565b92915050565b6000602082840312156130cb576130ca612907565b5b60006130d9848285016130a0565b91505092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613118601f83612a0b565b9150613123826130e2565b602082019050919050565b600060208201905081810360008301526131478161310b565b9050919050565b600081905092915050565b50565b600061316960008361314e565b915061317482613159565b600082019050919050565b600061318a8261315c565b9150819050919050565b7f4d6178696d756d206f6620323520576f6a616b73207065722074786e21000000600082015250565b60006131ca601d83612a0b565b91506131d582613194565b602082019050919050565b600060208201905081810360008301526131f9816131bd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061323a826129cc565b9150613245836129cc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561327a57613279613200565b5b828201905092915050565b7f4e6f20576f6a616b206c65667473210000000000000000000000000000000000600082015250565b60006132bb600f83612a0b565b91506132c682613285565b602082019050919050565b600060208201905081810360008301526132ea816132ae565b9050919050565b7f576f6a616b20686173206e6f742079657420626567756e20746f20677269657660008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b600061334d602283612a0b565b9150613358826132f1565b604082019050919050565b6000602082019050818103600083015261337c81613340565b9050919050565b600061338e826129cc565b9150613399836129cc565b9250828210156133ac576133ab613200565b5b828203905092915050565b60006133c2826129cc565b91506133cd836129cc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561340657613405613200565b5b828202905092915050565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b600061346d602283612a0b565b915061347882613411565b604082019050919050565b6000602082019050818103600083015261349c81613460565b9050919050565b7f4552433732314d65746164617461000000000000000000000000000000000000600082015250565b60006134d9600e83612a0b565b91506134e4826134a3565b602082019050919050565b60006020820190508181036000830152613508816134cc565b9050919050565b600081905092915050565b600061352582612a00565b61352f818561350f565b935061353f818560208601612a1c565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061358160058361350f565b915061358c8261354b565b600582019050919050565b60006135a3828561351a565b91506135af828461351a565b91506135ba82613574565b91508190509392505050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006135fc601483612a0b565b9150613607826135c6565b602082019050919050565b6000602082019050818103600083015261362b816135ef565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061368e602683612a0b565b915061369982613632565b604082019050919050565b600060208201905081810360008301526136bd81613681565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136fa602083612a0b565b9150613705826136c4565b602082019050919050565b60006020820190508181036000830152613729816136ed565b9050919050565b600061373b826129cc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361376d5761376c613200565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006137b2826129cc565b91506137bd836129cc565b9250826137cd576137cc613778565b5b828204905092915050565b60006137e3826129cc565b91506137ee836129cc565b9250826137fe576137fd613778565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061385f82613838565b6138698185613843565b9350613879818560208601612a1c565b61388281612a4f565b840191505092915050565b60006080820190506138a26000830187612b46565b6138af6020830186612b46565b6138bc60408301856129d6565b81810360608301526138ce8184613854565b905095945050505050565b6000815190506138e88161293d565b92915050565b60006020828403121561390457613903612907565b5b6000613912848285016138d9565b9150509291505056fea26469706673582212203b21568c02b03a99e4c6d1de71c4efefd519edf838ad23d09db0b75854a8c19f64736f6c634300080d0033697066733a2f2f6261667962656962643661636e75633536706579716379717374636c73657a716665703261666b6e62636168677a677a7478667535626e696974652f

Deployed Bytecode

0x6080604052600436106102045760003560e01c80638d859f3e11610118578063b8a21d21116100a0578063e19979f51161006f578063e19979f514610746578063e985e9c51461076f578063efbd73f4146107ac578063f2fde38b146107d5578063f43a22dc146107fe57610204565b8063b8a21d2114610676578063c87b56dd146106a1578063d547cfb7146106de578063dc33e6811461070957610204565b806398710d1e116100e757806398710d1e146105b45780639e9fcffc146105df578063a0712d6814610608578063a22cb46514610624578063b88d4fde1461064d57610204565b80638d859f3e1461050a5780638da5cb5b1461053557806391b7f5ed1461056057806395d89b411461058957610204565b8063200d2ed21161019b57806355f804b31161016a57806355f804b3146104275780635c40f6f4146104505780636352211e1461047957806370a08231146104b6578063715018a6146104f357610204565b8063200d2ed21461039357806323b872dd146103be5780633ccfd60b146103e757806342842e0e146103fe57610204565b8063095ea7b3116101d7578063095ea7b3146102d95780630c23bb3f146103025780630cabd4f31461032b57806318160ddd1461036857610204565b806301ffc9a71461020957806302ddb65b1461024657806306fdde0314610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612969565b610829565b60405161023d91906129b1565b60405180910390f35b34801561025257600080fd5b5061025b6108bb565b60405161026891906129e5565b60405180910390f35b34801561027d57600080fd5b506102866108c1565b6040516102939190612a99565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be9190612ae7565b610953565b6040516102d09190612b55565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190612b9c565b6109d2565b005b34801561030e57600080fd5b5061032960048036038101906103249190612ae7565b610b16565b005b34801561033757600080fd5b50610352600480360381019061034d9190612bdc565b610b28565b60405161035f91906129e5565b60405180910390f35b34801561037457600080fd5b5061037d610b40565b60405161038a91906129e5565b60405180910390f35b34801561039f57600080fd5b506103a8610b57565b6040516103b591906129b1565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e09190612c09565b610b6a565b005b3480156103f357600080fd5b506103fc610d4c565b005b34801561040a57600080fd5b5061042560048036038101906104209190612c09565b610e29565b005b34801561043357600080fd5b5061044e60048036038101906104499190612d91565b61100b565b005b34801561045c57600080fd5b5061047760048036038101906104729190612e06565b61102d565b005b34801561048557600080fd5b506104a0600480360381019061049b9190612ae7565b611052565b6040516104ad9190612b55565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d89190612bdc565b611064565b6040516104ea91906129e5565b60405180910390f35b3480156104ff57600080fd5b5061050861111c565b005b34801561051657600080fd5b5061051f611130565b60405161052c91906129e5565b60405180910390f35b34801561054157600080fd5b5061054a611136565b6040516105579190612b55565b60405180910390f35b34801561056c57600080fd5b5061058760048036038101906105829190612ae7565b611160565b005b34801561059557600080fd5b5061059e611172565b6040516105ab9190612a99565b60405180910390f35b3480156105c057600080fd5b506105c9611204565b6040516105d691906129e5565b60405180910390f35b3480156105eb57600080fd5b5061060660048036038101906106019190612ae7565b61120a565b005b610622600480360381019061061d9190612ae7565b61121c565b005b34801561063057600080fd5b5061064b60048036038101906106469190612e33565b611457565b005b34801561065957600080fd5b50610674600480360381019061066f9190612f14565b6115ce565b005b34801561068257600080fd5b5061068b6117b3565b60405161069891906129e5565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c39190612ae7565b6117b9565b6040516106d59190612a99565b60405180910390f35b3480156106ea57600080fd5b506106f36118dc565b6040516107009190612a99565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190612bdc565b61196a565b60405161073d91906129e5565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190612ae7565b61197c565b005b34801561077b57600080fd5b5061079660048036038101906107919190612f97565b61198e565b6040516107a391906129b1565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190612fd7565b611a22565b005b3480156107e157600080fd5b506107fc60048036038101906107f79190612bdc565b611a8f565b005b34801561080a57600080fd5b50610813611b12565b60405161082091906129e5565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108b45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b6060600280546108d090613046565b80601f01602080910402602001604051908101604052809291908181526020018280546108fc90613046565b80156109495780601f1061091e57610100808354040283529160200191610949565b820191906000526020600020905b81548152906001019060200180831161092c57829003601f168201915b5050505050905090565b600061095e82611b18565b610994576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109dd82611052565b90508073ffffffffffffffffffffffffffffffffffffffff166109fe611b77565b73ffffffffffffffffffffffffffffffffffffffff1614610a6157610a2a81610a25611b77565b61198e565b610a60576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b1e611b7f565b80600c8190555050565b60116020528060005260406000206000915090505481565b6000610b4a611bfd565b6001546000540303905090565b601060009054906101000a900460ff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d3a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bdc57610bd7848484611c06565b610d46565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c25929190613077565b602060405180830381865afa158015610c42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c6691906130b5565b8015610cf857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610cb6929190613077565b602060405180830381865afa158015610cd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cf791906130b5565b5b610d3957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d309190612b55565b60405180910390fd5b5b610d45848484611c06565b5b50505050565b610d54611b7f565b600260095403610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d909061312e565b60405180910390fd5b60026009819055506000610dab611136565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dce9061317f565b60006040518083038185875af1925050503d8060008114610e0b576040519150601f19603f3d011682016040523d82523d6000602084013e610e10565b606091505b5050905080610e1e57600080fd5b506001600981905550565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ff9573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e9b57610e96848484611f28565b611005565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ee4929190613077565b602060405180830381865afa158015610f01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2591906130b5565b8015610fb757506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610f75929190613077565b602060405180830381865afa158015610f92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb691906130b5565b5b610ff857336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610fef9190612b55565b60405180910390fd5b5b611004848484611f28565b5b50505050565b611013611b7f565b80600a908051906020019061102992919061285a565b5050565b611035611b7f565b80601060006101000a81548160ff02191690831515021790555050565b600061105d82611f48565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110cb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611124611b7f565b61112e6000612014565b565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611168611b7f565b80600e8190555050565b60606003805461118190613046565b80601f01602080910402602001604051908101604052809291908181526020018280546111ad90613046565b80156111fa5780601f106111cf576101008083540402835291602001916111fa565b820191906000526020600020905b8154815290600101906020018083116111dd57829003601f168201915b5050505050905090565b600f5481565b611212611b7f565b80600d8190555050565b600d54811115611261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611258906131e0565b60405180910390fd5b600b548161126d6120da565b611277919061322f565b11156112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af906132d1565b60405180910390fd5b601060009054906101000a900460ff16611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe90613363565b60405180910390fd5b60008190506000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f54811080156113695750600c546113676120da565b105b156113a257600081600f5461137e9190613383565b90508084111561139b5780846113949190613383565b92506113a0565b600092505b505b600e54826113b091906133b7565b3410156113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e990613483565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611441919061322f565b9250508190555061145233846120ed565b505050565b61145f611b77565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114c3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114d0611b77565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661157d611b77565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115c291906129b1565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561179f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116415761163c8585858561210b565b6117ac565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161168a929190613077565b602060405180830381865afa1580156116a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116cb91906130b5565b801561175d57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161171b929190613077565b602060405180830381865afa158015611738573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175c91906130b5565b5b61179e57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016117959190612b55565b60405180910390fd5b5b6117ab8585858561210b565b5b5050505050565b600b5481565b60606117c482611b18565b611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa906134ef565b60405180910390fd5b600061180d61217e565b51116118a357600a805461182090613046565b80601f016020809104026020016040519081016040528092919081815260200182805461184c90613046565b80156118995780601f1061186e57610100808354040283529160200191611899565b820191906000526020600020905b81548152906001019060200180831161187c57829003601f168201915b50505050506118d5565b6118ab61217e565b6118b483612210565b6040516020016118c5929190613597565b6040516020818303038152906040525b9050919050565b600a80546118e990613046565b80601f016020809104026020016040519081016040528092919081815260200182805461191590613046565b80156119625780601f1061193757610100808354040283529160200191611962565b820191906000526020600020905b81548152906001019060200180831161194557829003601f168201915b505050505081565b600061197582612370565b9050919050565b611984611b7f565b80600f8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a2a611b7f565b600b5482611a36610b40565b611a40919061322f565b1115611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890613612565b60405180910390fd5b611a8b81836120ed565b5050565b611a97611b7f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd906136a4565b60405180910390fd5b611b0f81612014565b50565b600d5481565b600081611b23611bfd565b11158015611b32575060005482105b8015611b70575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611b876123c7565b73ffffffffffffffffffffffffffffffffffffffff16611ba5611136565b73ffffffffffffffffffffffffffffffffffffffff1614611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf290613710565b60405180910390fd5b565b60006001905090565b6000611c1182611f48565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c78576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611c84846123cf565b91509150611c9a8187611c95611b77565b6123f6565b611ce657611caf86611caa611b77565b61198e565b611ce5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611d4c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d59868686600161243a565b8015611d6457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611e3285611e0e888887612440565b7c020000000000000000000000000000000000000000000000000000000017612468565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611eb85760006001850190506000600460008381526020019081526020016000205403611eb6576000548114611eb5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f208686866001612493565b505050505050565b611f43838383604051806020016040528060008152506115ce565b505050565b60008082905080611f57611bfd565b11611fdd57600054811015611fdc5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611fda575b60008103611fd0576004600083600190039350838152602001908152602001600020549050611fa6565b809250505061200f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006120e4611bfd565b60005403905090565b612107828260405180602001604052806000815250612499565b5050565b612116848484610b6a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121785761214184848484612536565b612177576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a805461218d90613046565b80601f01602080910402602001604051908101604052809291908181526020018280546121b990613046565b80156122065780601f106121db57610100808354040283529160200191612206565b820191906000526020600020905b8154815290600101906020018083116121e957829003601f168201915b5050505050905090565b606060008203612257576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061236b565b600082905060005b6000821461228957808061227290613730565b915050600a8261228291906137a7565b915061225f565b60008167ffffffffffffffff8111156122a5576122a4612c66565b5b6040519080825280601f01601f1916602001820160405280156122d75781602001600182028036833780820191505090505b5090505b60008514612364576001826122f09190613383565b9150600a856122ff91906137d8565b603061230b919061322f565b60f81b81838151811061232157612320613809565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561235d91906137a7565b94506122db565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612457868684612686565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6124a3838361268f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461253157600080549050600083820390505b6124e36000868380600101945086612536565b612519576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124d057816000541461252e57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261255c611b77565b8786866040518563ffffffff1660e01b815260040161257e949392919061388d565b6020604051808303816000875af19250505080156125ba57506040513d601f19601f820116820180604052508101906125b791906138ee565b60015b612633573d80600081146125ea576040519150601f19603f3d011682016040523d82523d6000602084013e6125ef565b606091505b50600081510361262b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036126cf576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126dc600084838561243a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612753836127446000866000612440565b61274d8561284a565b17612468565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146127f457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506127b9565b506000820361282f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506128456000848385612493565b505050565b60006001821460e11b9050919050565b82805461286690613046565b90600052602060002090601f01602090048101928261288857600085556128cf565b82601f106128a157805160ff19168380011785556128cf565b828001600101855582156128cf579182015b828111156128ce5782518255916020019190600101906128b3565b5b5090506128dc91906128e0565b5090565b5b808211156128f95760008160009055506001016128e1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61294681612911565b811461295157600080fd5b50565b6000813590506129638161293d565b92915050565b60006020828403121561297f5761297e612907565b5b600061298d84828501612954565b91505092915050565b60008115159050919050565b6129ab81612996565b82525050565b60006020820190506129c660008301846129a2565b92915050565b6000819050919050565b6129df816129cc565b82525050565b60006020820190506129fa60008301846129d6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a3a578082015181840152602081019050612a1f565b83811115612a49576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a6b82612a00565b612a758185612a0b565b9350612a85818560208601612a1c565b612a8e81612a4f565b840191505092915050565b60006020820190508181036000830152612ab38184612a60565b905092915050565b612ac4816129cc565b8114612acf57600080fd5b50565b600081359050612ae181612abb565b92915050565b600060208284031215612afd57612afc612907565b5b6000612b0b84828501612ad2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b3f82612b14565b9050919050565b612b4f81612b34565b82525050565b6000602082019050612b6a6000830184612b46565b92915050565b612b7981612b34565b8114612b8457600080fd5b50565b600081359050612b9681612b70565b92915050565b60008060408385031215612bb357612bb2612907565b5b6000612bc185828601612b87565b9250506020612bd285828601612ad2565b9150509250929050565b600060208284031215612bf257612bf1612907565b5b6000612c0084828501612b87565b91505092915050565b600080600060608486031215612c2257612c21612907565b5b6000612c3086828701612b87565b9350506020612c4186828701612b87565b9250506040612c5286828701612ad2565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c9e82612a4f565b810181811067ffffffffffffffff82111715612cbd57612cbc612c66565b5b80604052505050565b6000612cd06128fd565b9050612cdc8282612c95565b919050565b600067ffffffffffffffff821115612cfc57612cfb612c66565b5b612d0582612a4f565b9050602081019050919050565b82818337600083830152505050565b6000612d34612d2f84612ce1565b612cc6565b905082815260208101848484011115612d5057612d4f612c61565b5b612d5b848285612d12565b509392505050565b600082601f830112612d7857612d77612c5c565b5b8135612d88848260208601612d21565b91505092915050565b600060208284031215612da757612da6612907565b5b600082013567ffffffffffffffff811115612dc557612dc461290c565b5b612dd184828501612d63565b91505092915050565b612de381612996565b8114612dee57600080fd5b50565b600081359050612e0081612dda565b92915050565b600060208284031215612e1c57612e1b612907565b5b6000612e2a84828501612df1565b91505092915050565b60008060408385031215612e4a57612e49612907565b5b6000612e5885828601612b87565b9250506020612e6985828601612df1565b9150509250929050565b600067ffffffffffffffff821115612e8e57612e8d612c66565b5b612e9782612a4f565b9050602081019050919050565b6000612eb7612eb284612e73565b612cc6565b905082815260208101848484011115612ed357612ed2612c61565b5b612ede848285612d12565b509392505050565b600082601f830112612efb57612efa612c5c565b5b8135612f0b848260208601612ea4565b91505092915050565b60008060008060808587031215612f2e57612f2d612907565b5b6000612f3c87828801612b87565b9450506020612f4d87828801612b87565b9350506040612f5e87828801612ad2565b925050606085013567ffffffffffffffff811115612f7f57612f7e61290c565b5b612f8b87828801612ee6565b91505092959194509250565b60008060408385031215612fae57612fad612907565b5b6000612fbc85828601612b87565b9250506020612fcd85828601612b87565b9150509250929050565b60008060408385031215612fee57612fed612907565b5b6000612ffc85828601612ad2565b925050602061300d85828601612b87565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061305e57607f821691505b60208210810361307157613070613017565b5b50919050565b600060408201905061308c6000830185612b46565b6130996020830184612b46565b9392505050565b6000815190506130af81612dda565b92915050565b6000602082840312156130cb576130ca612907565b5b60006130d9848285016130a0565b91505092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613118601f83612a0b565b9150613123826130e2565b602082019050919050565b600060208201905081810360008301526131478161310b565b9050919050565b600081905092915050565b50565b600061316960008361314e565b915061317482613159565b600082019050919050565b600061318a8261315c565b9150819050919050565b7f4d6178696d756d206f6620323520576f6a616b73207065722074786e21000000600082015250565b60006131ca601d83612a0b565b91506131d582613194565b602082019050919050565b600060208201905081810360008301526131f9816131bd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061323a826129cc565b9150613245836129cc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561327a57613279613200565b5b828201905092915050565b7f4e6f20576f6a616b206c65667473210000000000000000000000000000000000600082015250565b60006132bb600f83612a0b565b91506132c682613285565b602082019050919050565b600060208201905081810360008301526132ea816132ae565b9050919050565b7f576f6a616b20686173206e6f742079657420626567756e20746f20677269657660008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b600061334d602283612a0b565b9150613358826132f1565b604082019050919050565b6000602082019050818103600083015261337c81613340565b9050919050565b600061338e826129cc565b9150613399836129cc565b9250828210156133ac576133ab613200565b5b828203905092915050565b60006133c2826129cc565b91506133cd836129cc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561340657613405613200565b5b828202905092915050565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b600061346d602283612a0b565b915061347882613411565b604082019050919050565b6000602082019050818103600083015261349c81613460565b9050919050565b7f4552433732314d65746164617461000000000000000000000000000000000000600082015250565b60006134d9600e83612a0b565b91506134e4826134a3565b602082019050919050565b60006020820190508181036000830152613508816134cc565b9050919050565b600081905092915050565b600061352582612a00565b61352f818561350f565b935061353f818560208601612a1c565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061358160058361350f565b915061358c8261354b565b600582019050919050565b60006135a3828561351a565b91506135af828461351a565b91506135ba82613574565b91508190509392505050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006135fc601483612a0b565b9150613607826135c6565b602082019050919050565b6000602082019050818103600083015261362b816135ef565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061368e602683612a0b565b915061369982613632565b604082019050919050565b600060208201905081810360008301526136bd81613681565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136fa602083612a0b565b9150613705826136c4565b602082019050919050565b60006020820190508181036000830152613729816136ed565b9050919050565b600061373b826129cc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361376d5761376c613200565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006137b2826129cc565b91506137bd836129cc565b9250826137cd576137cc613778565b5b828204905092915050565b60006137e3826129cc565b91506137ee836129cc565b9250826137fe576137fd613778565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061385f82613838565b6138698185613843565b9350613879818560208601612a1c565b61388281612a4f565b840191505092915050565b60006080820190506138a26000830187612b46565b6138af6020830186612b46565b6138bc60408301856129d6565b81810360608301526138ce8184613854565b905095945050505050565b6000815190506138e88161293d565b92915050565b60006020828403121561390457613903612907565b5b6000613912848285016138d9565b9150509291505056fea26469706673582212203b21568c02b03a99e4c6d1de71c4efefd519edf838ad23d09db0b75854a8c19f64736f6c634300080d0033

Deployed Bytecode Sourcemap

74107:3870:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22971:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74417:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23873:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30356:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29797:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77275:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74621:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19624:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74586:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77394:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76213:160;;;;;;;;;;;;;:::i;:::-;;77565:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75990:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76825:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25266:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20808:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58138:103;;;;;;;;;;;;;:::i;:::-;;74499:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57490:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76925:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24049:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74541:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77024:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74972:885;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30914:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77744:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74378:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76381:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74272:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75865:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77145:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31379:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74745:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58396:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74462:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22971:639;23056:4;23395:10;23380:25;;:11;:25;;;;:102;;;;23472:10;23457:25;;:11;:25;;;;23380:102;:179;;;;23549:10;23534:25;;:11;:25;;;;23380:179;23360:199;;22971:639;;;:::o;74417:38::-;;;;:::o;23873:100::-;23927:13;23960:5;23953:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23873:100;:::o;30356:218::-;30432:7;30457:16;30465:7;30457;:16::i;:::-;30452:64;;30482:34;;;;;;;;;;;;;;30452:64;30536:15;:24;30552:7;30536:24;;;;;;;;;;;:30;;;;;;;;;;;;30529:37;;30356:218;;;:::o;29797:400::-;29878:13;29894:16;29902:7;29894;:16::i;:::-;29878:32;;29950:5;29927:28;;:19;:17;:19::i;:::-;:28;;;29923:175;;29975:44;29992:5;29999:19;:17;:19::i;:::-;29975:16;:44::i;:::-;29970:128;;30047:35;;;;;;;;;;;;;;29970:128;29923:175;30143:2;30110:15;:24;30126:7;30110:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;30181:7;30177:2;30161:28;;30170:5;30161:28;;;;;;;;;;;;29867:330;29797:400;;:::o;77275:111::-;57376:13;:11;:13::i;:::-;77371:7:::1;77353:15;:25;;;;77275:111:::0;:::o;74621:52::-;;;;;;;;;;;;;;;;;:::o;19624:323::-;19685:7;19913:15;:13;:15::i;:::-;19898:12;;19882:13;;:28;:46;19875:53;;19624:323;:::o;74586:26::-;;;;;;;;;;;;;:::o;77394:163::-;77495:4;73124:1;71938:42;73078:43;;;:47;73074:699;;;73365:10;73357:18;;:4;:18;;;73353:85;;77512:37:::1;77531:4;77537:2;77541:7;77512:18;:37::i;:::-;73416:7:::0;;73353:85;71938:42;73498:40;;;73547:4;73554:10;73498:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;71938:42;73594:40;;;73643:4;73650;73594:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73498:157;73452:310;;73735:10;73716:30;;;;;;;;;;;:::i;:::-;;;;;;;;73452:310;73074:699;77512:37:::1;77531:4;77537:2;77541:7;77512:18;:37::i;:::-;77394:163:::0;;;;;:::o;76213:160::-;57376:13;:11;:13::i;:::-;3589:1:::1;4187:7;;:19:::0;4179:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3589:1;4320:7;:18;;;;76275:7:::2;76296;:5;:7::i;:::-;76288:21;;76317;76288:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76274:69;;;76362:2;76354:11;;;::::0;::::2;;76263:110;3545:1:::1;4499:7;:22;;;;76213:160::o:0;77565:171::-;77670:4;73124:1;71938:42;73078:43;;;:47;73074:699;;;73365:10;73357:18;;:4;:18;;;73353:85;;77687:41:::1;77710:4;77716:2;77720:7;77687:22;:41::i;:::-;73416:7:::0;;73353:85;71938:42;73498:40;;;73547:4;73554:10;73498:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;71938:42;73594:40;;;73643:4;73650;73594:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73498:157;73452:310;;73735:10;73716:30;;;;;;;;;;;:::i;:::-;;;;;;;;73452:310;73074:699;77687:41:::1;77710:4;77716:2;77720:7;77687:22;:41::i;:::-;77565:171:::0;;;;;:::o;75990:106::-;57376:13;:11;:13::i;:::-;76081:7:::1;76066:12;:22;;;;;;;;;;;;:::i;:::-;;75990:106:::0;:::o;76825:92::-;57376:13;:11;:13::i;:::-;76902:7:::1;76893:6;;:16;;;;;;;;;;;;;;;;;;76825:92:::0;:::o;25266:152::-;25338:7;25381:27;25400:7;25381:18;:27::i;:::-;25358:52;;25266:152;;;:::o;20808:233::-;20880:7;20921:1;20904:19;;:5;:19;;;20900:60;;20932:28;;;;;;;;;;;;;;20900:60;14967:13;20978:18;:25;20997:5;20978:25;;;;;;;;;;;;;;;;:55;20971:62;;20808:233;;;:::o;58138:103::-;57376:13;:11;:13::i;:::-;58203:30:::1;58230:1;58203:18;:30::i;:::-;58138:103::o:0;74499:35::-;;;;:::o;57490:87::-;57536:7;57563:6;;;;;;;;;;;57556:13;;57490:87;:::o;76925:91::-;57376:13;:11;:13::i;:::-;77002:6:::1;76994:5;:14;;;;76925:91:::0;:::o;24049:104::-;24105:13;24138:7;24131:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24049:104;:::o;74541:38::-;;;;:::o;77024:113::-;57376:13;:11;:13::i;:::-;77123:6:::1;77110:10;:19;;;;77024:113:::0;:::o;74972:885::-;75047:10;;75037:6;:20;;75029:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;75130:9;;75120:6;75103:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:36;;75095:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;75177:6;;;;;;;;;;;75169:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;75233:16;75252:6;75233:25;;75269:11;75283:17;:29;75301:10;75283:29;;;;;;;;;;;;;;;;75269:43;;75335:19;;75326:6;:28;:64;;;;;75375:15;;75358:14;:12;:14::i;:::-;:32;75326:64;75323:341;;;75407:23;75455:6;75433:19;;:28;;;;:::i;:::-;75407:54;;75488:18;75479:6;:27;75476:177;;;75550:18;75541:6;:27;;;;:::i;:::-;75527:41;;75476:177;;;75636:1;75622:15;;75476:177;75392:272;75323:341;75708:5;;75694:11;:19;;;;:::i;:::-;75681:9;:32;;75668:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;75801:6;75768:17;:29;75786:10;75768:29;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;75820:29;75830:10;75842:6;75820:9;:29::i;:::-;75024:833;;74972:885;:::o;30914:308::-;31025:19;:17;:19::i;:::-;31013:31;;:8;:31;;;31009:61;;31053:17;;;;;;;;;;;;;;31009:61;31135:8;31083:18;:39;31102:19;:17;:19::i;:::-;31083:39;;;;;;;;;;;;;;;:49;31123:8;31083:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;31195:8;31159:55;;31174:19;:17;:19::i;:::-;31159:55;;;31205:8;31159:55;;;;;;:::i;:::-;;;;;;;;30914:308;;:::o;77744:228::-;77895:4;73124:1;71938:42;73078:43;;;:47;73074:699;;;73365:10;73357:18;;:4;:18;;;73353:85;;77917:47:::1;77940:4;77946:2;77950:7;77959:4;77917:22;:47::i;:::-;73416:7:::0;;73353:85;71938:42;73498:40;;;73547:4;73554:10;73498:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;71938:42;73594:40;;;73643:4;73650;73594:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73498:157;73452:310;;73735:10;73716:30;;;;;;;;;;;:::i;:::-;;;;;;;;73452:310;73074:699;77917:47:::1;77940:4;77946:2;77950:7;77959:4;77917:22;:47::i;:::-;77744:228:::0;;;;;;:::o;74378:32::-;;;;:::o;76381:308::-;76455:13;76491:16;76499:7;76491;:16::i;:::-;76483:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;76573:1;76552:10;:8;:10::i;:::-;76546:24;:28;:138;;76672:12;76546:138;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76615:10;:8;:10::i;:::-;76627:18;:7;:16;:18::i;:::-;76598:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;76546:138;76539:145;;76381:308;;;:::o;74272:99::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;75865:113::-;75923:7;75950:20;75964:5;75950:13;:20::i;:::-;75943:27;;75865:113;;;:::o;77145:122::-;57376:13;:11;:13::i;:::-;77253:6:::1;77231:19;:28;;;;77145:122:::0;:::o;31379:164::-;31476:4;31500:18;:25;31519:5;31500:25;;;;;;;;;;;;;;;:35;31526:8;31500:35;;;;;;;;;;;;;;;;;;;;;;;;;31493:42;;31379:164;;;;:::o;74745:217::-;57376:13;:11;:13::i;:::-;74876:9:::1;;74861:11;74845:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;74837:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;74921:33;74931:9;74942:11;74921:9;:33::i;:::-;74745:217:::0;;:::o;58396:201::-;57376:13;:11;:13::i;:::-;58505:1:::1;58485:22;;:8;:22;;::::0;58477:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;58561:28;58580:8;58561:18;:28::i;:::-;58396:201:::0;:::o;74462:30::-;;;;:::o;31801:282::-;31866:4;31922:7;31903:15;:13;:15::i;:::-;:26;;:66;;;;;31956:13;;31946:7;:23;31903:66;:153;;;;;32055:1;15743:8;32007:17;:26;32025:7;32007:26;;;;;;;;;;;;:44;:49;31903:153;31883:173;;31801:282;;;:::o;53567:105::-;53627:7;53654:10;53647:17;;53567:105;:::o;57655:132::-;57730:12;:10;:12::i;:::-;57719:23;;:7;:5;:7::i;:::-;:23;;;57711:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57655:132::o;76104:101::-;76169:7;76196:1;76189:8;;76104:101;:::o;34063:2817::-;34197:27;34227;34246:7;34227:18;:27::i;:::-;34197:57;;34312:4;34271:45;;34287:19;34271:45;;;34267:86;;34325:28;;;;;;;;;;;;;;34267:86;34367:27;34396:23;34423:35;34450:7;34423:26;:35::i;:::-;34366:92;;;;34558:68;34583:15;34600:4;34606:19;:17;:19::i;:::-;34558:24;:68::i;:::-;34553:180;;34646:43;34663:4;34669:19;:17;:19::i;:::-;34646:16;:43::i;:::-;34641:92;;34698:35;;;;;;;;;;;;;;34641:92;34553:180;34764:1;34750:16;;:2;:16;;;34746:52;;34775:23;;;;;;;;;;;;;;34746:52;34811:43;34833:4;34839:2;34843:7;34852:1;34811:21;:43::i;:::-;34947:15;34944:160;;;35087:1;35066:19;35059:30;34944:160;35484:18;:24;35503:4;35484:24;;;;;;;;;;;;;;;;35482:26;;;;;;;;;;;;35553:18;:22;35572:2;35553:22;;;;;;;;;;;;;;;;35551:24;;;;;;;;;;;35875:146;35912:2;35961:45;35976:4;35982:2;35986:19;35961:14;:45::i;:::-;16023:8;35933:73;35875:18;:146::i;:::-;35846:17;:26;35864:7;35846:26;;;;;;;;;;;:175;;;;36192:1;16023:8;36141:19;:47;:52;36137:627;;36214:19;36246:1;36236:7;:11;36214:33;;36403:1;36369:17;:30;36387:11;36369:30;;;;;;;;;;;;:35;36365:384;;36507:13;;36492:11;:28;36488:242;;36687:19;36654:17;:30;36672:11;36654:30;;;;;;;;;;;:52;;;;36488:242;36365:384;36195:569;36137:627;36811:7;36807:2;36792:27;;36801:4;36792:27;;;;;;;;;;;;36830:42;36851:4;36857:2;36861:7;36870:1;36830:20;:42::i;:::-;34186:2694;;;34063:2817;;;:::o;36976:185::-;37114:39;37131:4;37137:2;37141:7;37114:39;;;;;;;;;;;;:16;:39::i;:::-;36976:185;;;:::o;26421:1275::-;26488:7;26508:12;26523:7;26508:22;;26591:4;26572:15;:13;:15::i;:::-;:23;26568:1061;;26625:13;;26618:4;:20;26614:1015;;;26663:14;26680:17;:23;26698:4;26680:23;;;;;;;;;;;;26663:40;;26797:1;15743:8;26769:6;:24;:29;26765:845;;27434:113;27451:1;27441:6;:11;27434:113;;27494:17;:25;27512:6;;;;;;;27494:25;;;;;;;;;;;;27485:34;;27434:113;;;27580:6;27573:13;;;;;;26765:845;26640:989;26614:1015;26568:1061;27657:31;;;;;;;;;;;;;;26421:1275;;;;:::o;58757:191::-;58831:16;58850:6;;;;;;;;;;;58831:25;;58876:8;58867:6;;:17;;;;;;;;;;;;;;;;;;58931:8;58900:40;;58921:8;58900:40;;;;;;;;;;;;58820:128;58757:191;:::o;20045:296::-;20100:7;20307:15;:13;:15::i;:::-;20291:13;;:31;20284:38;;20045:296;:::o;47399:112::-;47476:27;47486:2;47490:8;47476:27;;;;;;;;;;;;:9;:27::i;:::-;47399:112;;:::o;37759:399::-;37926:31;37939:4;37945:2;37949:7;37926:12;:31::i;:::-;37990:1;37972:2;:14;;;:19;37968:183;;38011:56;38042:4;38048:2;38052:7;38061:5;38011:30;:56::i;:::-;38006:145;;38095:40;;;;;;;;;;;;;;38006:145;37968:183;37759:399;;;;:::o;76697:118::-;76757:13;76795:12;76788:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76697:118;:::o;59242:723::-;59298:13;59528:1;59519:5;:10;59515:53;;59546:10;;;;;;;;;;;;;;;;;;;;;59515:53;59578:12;59593:5;59578:20;;59609:14;59634:78;59649:1;59641:4;:9;59634:78;;59667:8;;;;;:::i;:::-;;;;59698:2;59690:10;;;;;:::i;:::-;;;59634:78;;;59722:19;59754:6;59744:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59722:39;;59772:154;59788:1;59779:5;:10;59772:154;;59816:1;59806:11;;;;;:::i;:::-;;;59883:2;59875:5;:10;;;;:::i;:::-;59862:2;:24;;;;:::i;:::-;59849:39;;59832:6;59839;59832:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;59912:2;59903:11;;;;;:::i;:::-;;;59772:154;;;59950:6;59936:21;;;;;59242:723;;;;:::o;21123:178::-;21184:7;14967:13;15105:2;21212:18;:25;21231:5;21212:25;;;;;;;;;;;;;;;;:50;;21211:82;21204:89;;21123:178;;;:::o;56041:98::-;56094:7;56121:10;56114:17;;56041:98;:::o;32964:479::-;33066:27;33095:23;33136:38;33177:15;:24;33193:7;33177:24;;;;;;;;;;;33136:65;;33348:18;33325:41;;33405:19;33399:26;33380:45;;33310:126;32964:479;;;:::o;32192:659::-;32341:11;32506:16;32499:5;32495:28;32486:37;;32666:16;32655:9;32651:32;32638:45;;32816:15;32805:9;32802:30;32794:5;32783:9;32780:20;32777:56;32767:66;;32192:659;;;;;:::o;38820:159::-;;;;;:::o;52876:311::-;53011:7;53031:16;16147:3;53057:19;:41;;53031:68;;16147:3;53125:31;53136:4;53142:2;53146:9;53125:10;:31::i;:::-;53117:40;;:62;;53110:69;;;52876:311;;;;;:::o;28244:450::-;28324:14;28492:16;28485:5;28481:28;28472:37;;28669:5;28655:11;28630:23;28626:41;28623:52;28616:5;28613:63;28603:73;;28244:450;;;;:::o;39644:158::-;;;;;:::o;46626:689::-;46757:19;46763:2;46767:8;46757:5;:19::i;:::-;46836:1;46818:2;:14;;;:19;46814:483;;46858:11;46872:13;;46858:27;;46904:13;46926:8;46920:3;:14;46904:30;;46953:233;46984:62;47023:1;47027:2;47031:7;;;;;;47040:5;46984:30;:62::i;:::-;46979:167;;47082:40;;;;;;;;;;;;;;46979:167;47181:3;47173:5;:11;46953:233;;47268:3;47251:13;;:20;47247:34;;47273:8;;;47247:34;46839:458;;46814:483;46626:689;;;:::o;40242:716::-;40405:4;40451:2;40426:45;;;40472:19;:17;:19::i;:::-;40493:4;40499:7;40508:5;40426:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40422:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40726:1;40709:6;:13;:18;40705:235;;40755:40;;;;;;;;;;;;;;40705:235;40898:6;40892:13;40883:6;40879:2;40875:15;40868:38;40422:529;40595:54;;;40585:64;;;:6;:64;;;;40578:71;;;40242:716;;;;;;:::o;52577:147::-;52714:6;52577:147;;;;;:::o;41420:2454::-;41493:20;41516:13;;41493:36;;41556:1;41544:8;:13;41540:44;;41566:18;;;;;;;;;;;;;;41540:44;41597:61;41627:1;41631:2;41635:12;41649:8;41597:21;:61::i;:::-;42141:1;15105:2;42111:1;:26;;42110:32;42098:8;:45;42072:18;:22;42091:2;42072:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;42420:139;42457:2;42511:33;42534:1;42538:2;42542:1;42511:14;:33::i;:::-;42478:30;42499:8;42478:20;:30::i;:::-;:66;42420:18;:139::i;:::-;42386:17;:31;42404:12;42386:31;;;;;;;;;;;:173;;;;42576:16;42607:11;42636:8;42621:12;:23;42607:37;;42891:16;42887:2;42883:25;42871:37;;43263:12;43223:8;43182:1;43120:25;43061:1;43000;42973:335;43388:1;43374:12;43370:20;43328:346;43429:3;43420:7;43417:16;43328:346;;43647:7;43637:8;43634:1;43607:25;43604:1;43601;43596:59;43482:1;43473:7;43469:15;43458:26;;43328:346;;;43332:77;43719:1;43707:8;:13;43703:45;;43729:19;;;;;;;;;;;;;;43703:45;43781:3;43765:13;:19;;;;41846:1950;;43806:60;43835:1;43839:2;43843:12;43857:8;43806:20;:60::i;:::-;41482:2392;41420:2454;;:::o;28796:324::-;28866:14;29099:1;29089:8;29086:15;29060:24;29056:46;29046:56;;28796:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518: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:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:329::-;5349:6;5398:2;5386:9;5377:7;5373:23;5369:32;5366:119;;;5404:79;;:::i;:::-;5366:119;5524:1;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5495:117;5290:329;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:323::-;9188:6;9237:2;9225:9;9216:7;9212:23;9208:32;9205:119;;;9243:79;;:::i;:::-;9205:119;9363:1;9388:50;9430:7;9421:6;9410:9;9406:22;9388:50;:::i;:::-;9378:60;;9334:114;9132:323;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:::-;12518:6;12526;12575:2;12563:9;12554:7;12550:23;12546:32;12543:119;;;12581:79;;:::i;:::-;12543:119;12701:1;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12672:117;12828:2;12854:53;12899:7;12890:6;12879:9;12875:22;12854:53;:::i;:::-;12844:63;;12799:118;12450:474;;;;;:::o;12930:180::-;12978:77;12975:1;12968:88;13075:4;13072:1;13065:15;13099:4;13096:1;13089:15;13116:320;13160:6;13197:1;13191:4;13187:12;13177:22;;13244:1;13238:4;13234:12;13265:18;13255:81;;13321:4;13313:6;13309:17;13299:27;;13255:81;13383:2;13375:6;13372:14;13352:18;13349:38;13346:84;;13402:18;;:::i;:::-;13346:84;13167:269;13116:320;;;:::o;13442:332::-;13563:4;13601:2;13590:9;13586:18;13578:26;;13614:71;13682:1;13671:9;13667:17;13658:6;13614:71;:::i;:::-;13695:72;13763:2;13752:9;13748:18;13739:6;13695:72;:::i;:::-;13442:332;;;;;:::o;13780:137::-;13834:5;13865:6;13859:13;13850:22;;13881:30;13905:5;13881:30;:::i;:::-;13780:137;;;;:::o;13923:345::-;13990:6;14039:2;14027:9;14018:7;14014:23;14010:32;14007:119;;;14045:79;;:::i;:::-;14007:119;14165:1;14190:61;14243:7;14234:6;14223:9;14219:22;14190:61;:::i;:::-;14180:71;;14136:125;13923:345;;;;:::o;14274:181::-;14414:33;14410:1;14402:6;14398:14;14391:57;14274:181;:::o;14461:366::-;14603:3;14624:67;14688:2;14683:3;14624:67;:::i;:::-;14617:74;;14700:93;14789:3;14700:93;:::i;:::-;14818:2;14813:3;14809:12;14802:19;;14461:366;;;:::o;14833:419::-;14999:4;15037:2;15026:9;15022:18;15014:26;;15086:9;15080:4;15076:20;15072:1;15061:9;15057:17;15050:47;15114:131;15240:4;15114:131;:::i;:::-;15106:139;;14833:419;;;:::o;15258:147::-;15359:11;15396:3;15381:18;;15258:147;;;;:::o;15411:114::-;;:::o;15531:398::-;15690:3;15711:83;15792:1;15787:3;15711:83;:::i;:::-;15704:90;;15803:93;15892:3;15803:93;:::i;:::-;15921:1;15916:3;15912:11;15905:18;;15531:398;;;:::o;15935:379::-;16119:3;16141:147;16284:3;16141:147;:::i;:::-;16134:154;;16305:3;16298:10;;15935:379;;;:::o;16320:179::-;16460:31;16456:1;16448:6;16444:14;16437:55;16320:179;:::o;16505:366::-;16647:3;16668:67;16732:2;16727:3;16668:67;:::i;:::-;16661:74;;16744:93;16833:3;16744:93;:::i;:::-;16862:2;16857:3;16853:12;16846:19;;16505:366;;;:::o;16877:419::-;17043:4;17081:2;17070:9;17066:18;17058:26;;17130:9;17124:4;17120:20;17116:1;17105:9;17101:17;17094:47;17158:131;17284:4;17158:131;:::i;:::-;17150:139;;16877:419;;;:::o;17302:180::-;17350:77;17347:1;17340:88;17447:4;17444:1;17437:15;17471:4;17468:1;17461:15;17488:305;17528:3;17547:20;17565:1;17547:20;:::i;:::-;17542:25;;17581:20;17599:1;17581:20;:::i;:::-;17576:25;;17735:1;17667:66;17663:74;17660:1;17657:81;17654:107;;;17741:18;;:::i;:::-;17654:107;17785:1;17782;17778:9;17771:16;;17488:305;;;;:::o;17799:165::-;17939:17;17935:1;17927:6;17923:14;17916:41;17799:165;:::o;17970:366::-;18112:3;18133:67;18197:2;18192:3;18133:67;:::i;:::-;18126:74;;18209:93;18298:3;18209:93;:::i;:::-;18327:2;18322:3;18318:12;18311:19;;17970:366;;;:::o;18342:419::-;18508:4;18546:2;18535:9;18531:18;18523:26;;18595:9;18589:4;18585:20;18581:1;18570:9;18566:17;18559:47;18623:131;18749:4;18623:131;:::i;:::-;18615:139;;18342:419;;;:::o;18767:221::-;18907:34;18903:1;18895:6;18891:14;18884:58;18976:4;18971:2;18963:6;18959:15;18952:29;18767:221;:::o;18994:366::-;19136:3;19157:67;19221:2;19216:3;19157:67;:::i;:::-;19150:74;;19233:93;19322:3;19233:93;:::i;:::-;19351:2;19346:3;19342:12;19335:19;;18994:366;;;:::o;19366:419::-;19532:4;19570:2;19559:9;19555:18;19547:26;;19619:9;19613:4;19609:20;19605:1;19594:9;19590:17;19583:47;19647:131;19773:4;19647:131;:::i;:::-;19639:139;;19366:419;;;:::o;19791:191::-;19831:4;19851:20;19869:1;19851:20;:::i;:::-;19846:25;;19885:20;19903:1;19885:20;:::i;:::-;19880:25;;19924:1;19921;19918:8;19915:34;;;19929:18;;:::i;:::-;19915:34;19974:1;19971;19967:9;19959:17;;19791:191;;;;:::o;19988:348::-;20028:7;20051:20;20069:1;20051:20;:::i;:::-;20046:25;;20085:20;20103:1;20085:20;:::i;:::-;20080:25;;20273:1;20205:66;20201:74;20198:1;20195:81;20190:1;20183:9;20176:17;20172:105;20169:131;;;20280:18;;:::i;:::-;20169:131;20328:1;20325;20321:9;20310:20;;19988:348;;;;:::o;20342:221::-;20482:34;20478:1;20470:6;20466:14;20459:58;20551:4;20546:2;20538:6;20534:15;20527:29;20342:221;:::o;20569:366::-;20711:3;20732:67;20796:2;20791:3;20732:67;:::i;:::-;20725:74;;20808:93;20897:3;20808:93;:::i;:::-;20926:2;20921:3;20917:12;20910:19;;20569:366;;;:::o;20941:419::-;21107:4;21145:2;21134:9;21130:18;21122:26;;21194:9;21188:4;21184:20;21180:1;21169:9;21165:17;21158:47;21222:131;21348:4;21222:131;:::i;:::-;21214:139;;20941:419;;;:::o;21366:164::-;21506:16;21502:1;21494:6;21490:14;21483:40;21366:164;:::o;21536:366::-;21678:3;21699:67;21763:2;21758:3;21699:67;:::i;:::-;21692:74;;21775:93;21864:3;21775:93;:::i;:::-;21893:2;21888:3;21884:12;21877:19;;21536:366;;;:::o;21908:419::-;22074:4;22112:2;22101:9;22097:18;22089:26;;22161:9;22155:4;22151:20;22147:1;22136:9;22132:17;22125:47;22189:131;22315:4;22189:131;:::i;:::-;22181:139;;21908:419;;;:::o;22333:148::-;22435:11;22472:3;22457:18;;22333:148;;;;:::o;22487:377::-;22593:3;22621:39;22654:5;22621:39;:::i;:::-;22676:89;22758:6;22753:3;22676:89;:::i;:::-;22669:96;;22774:52;22819:6;22814:3;22807:4;22800:5;22796:16;22774:52;:::i;:::-;22851:6;22846:3;22842:16;22835:23;;22597:267;22487:377;;;;:::o;22870:155::-;23010:7;23006:1;22998:6;22994:14;22987:31;22870:155;:::o;23031:400::-;23191:3;23212:84;23294:1;23289:3;23212:84;:::i;:::-;23205:91;;23305:93;23394:3;23305:93;:::i;:::-;23423:1;23418:3;23414:11;23407:18;;23031:400;;;:::o;23437:701::-;23718:3;23740:95;23831:3;23822:6;23740:95;:::i;:::-;23733:102;;23852:95;23943:3;23934:6;23852:95;:::i;:::-;23845:102;;23964:148;24108:3;23964:148;:::i;:::-;23957:155;;24129:3;24122:10;;23437:701;;;;;:::o;24144:170::-;24284:22;24280:1;24272:6;24268:14;24261:46;24144:170;:::o;24320:366::-;24462:3;24483:67;24547:2;24542:3;24483:67;:::i;:::-;24476:74;;24559:93;24648:3;24559:93;:::i;:::-;24677:2;24672:3;24668:12;24661:19;;24320:366;;;:::o;24692:419::-;24858:4;24896:2;24885:9;24881:18;24873:26;;24945:9;24939:4;24935:20;24931:1;24920:9;24916:17;24909:47;24973:131;25099:4;24973:131;:::i;:::-;24965:139;;24692:419;;;:::o;25117:225::-;25257:34;25253:1;25245:6;25241:14;25234:58;25326:8;25321:2;25313:6;25309:15;25302:33;25117:225;:::o;25348:366::-;25490:3;25511:67;25575:2;25570:3;25511:67;:::i;:::-;25504:74;;25587:93;25676:3;25587:93;:::i;:::-;25705:2;25700:3;25696:12;25689:19;;25348:366;;;:::o;25720:419::-;25886:4;25924:2;25913:9;25909:18;25901:26;;25973:9;25967:4;25963:20;25959:1;25948:9;25944:17;25937:47;26001:131;26127:4;26001:131;:::i;:::-;25993:139;;25720:419;;;:::o;26145:182::-;26285:34;26281:1;26273:6;26269:14;26262:58;26145:182;:::o;26333:366::-;26475:3;26496:67;26560:2;26555:3;26496:67;:::i;:::-;26489:74;;26572:93;26661:3;26572:93;:::i;:::-;26690:2;26685:3;26681:12;26674:19;;26333:366;;;:::o;26705:419::-;26871:4;26909:2;26898:9;26894:18;26886:26;;26958:9;26952:4;26948:20;26944:1;26933:9;26929:17;26922:47;26986:131;27112:4;26986:131;:::i;:::-;26978:139;;26705:419;;;:::o;27130:233::-;27169:3;27192:24;27210:5;27192:24;:::i;:::-;27183:33;;27238:66;27231:5;27228:77;27225:103;;27308:18;;:::i;:::-;27225:103;27355:1;27348:5;27344:13;27337:20;;27130:233;;;:::o;27369:180::-;27417:77;27414:1;27407:88;27514:4;27511:1;27504:15;27538:4;27535:1;27528:15;27555:185;27595:1;27612:20;27630:1;27612:20;:::i;:::-;27607:25;;27646:20;27664:1;27646:20;:::i;:::-;27641:25;;27685:1;27675:35;;27690:18;;:::i;:::-;27675:35;27732:1;27729;27725:9;27720:14;;27555:185;;;;:::o;27746:176::-;27778:1;27795:20;27813:1;27795:20;:::i;:::-;27790:25;;27829:20;27847:1;27829:20;:::i;:::-;27824:25;;27868:1;27858:35;;27873:18;;:::i;:::-;27858:35;27914:1;27911;27907:9;27902:14;;27746:176;;;;:::o;27928:180::-;27976:77;27973:1;27966:88;28073:4;28070:1;28063:15;28097:4;28094:1;28087:15;28114:98;28165:6;28199:5;28193:12;28183:22;;28114:98;;;:::o;28218:168::-;28301:11;28335:6;28330:3;28323:19;28375:4;28370:3;28366:14;28351:29;;28218:168;;;;:::o;28392:360::-;28478:3;28506:38;28538:5;28506:38;:::i;:::-;28560:70;28623:6;28618:3;28560:70;:::i;:::-;28553:77;;28639:52;28684:6;28679:3;28672:4;28665:5;28661:16;28639:52;:::i;:::-;28716:29;28738:6;28716:29;:::i;:::-;28711:3;28707:39;28700:46;;28482:270;28392:360;;;;:::o;28758:640::-;28953:4;28991:3;28980:9;28976:19;28968:27;;29005:71;29073:1;29062:9;29058:17;29049:6;29005:71;:::i;:::-;29086:72;29154:2;29143:9;29139:18;29130:6;29086:72;:::i;:::-;29168;29236:2;29225:9;29221:18;29212:6;29168:72;:::i;:::-;29287:9;29281:4;29277:20;29272:2;29261:9;29257:18;29250:48;29315:76;29386:4;29377:6;29315:76;:::i;:::-;29307:84;;28758:640;;;;;;;:::o;29404:141::-;29460:5;29491:6;29485:13;29476:22;;29507:32;29533:5;29507:32;:::i;:::-;29404:141;;;;:::o;29551:349::-;29620:6;29669:2;29657:9;29648:7;29644:23;29640:32;29637:119;;;29675:79;;:::i;:::-;29637:119;29795:1;29820:63;29875:7;29866:6;29855:9;29851:22;29820:63;:::i;:::-;29810:73;;29766:127;29551:349;;;;:::o

Swarm Source

ipfs://3b21568c02b03a99e4c6d1de71c4efefd519edf838ad23d09db0b75854a8c19f
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.