APE Price: $0.72 (+5.05%)

Token

SSS (SSS)

Overview

Max Total Supply

3 SSS

Holders

1

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 SSS
0xf6834dee212e16f20f9e8b8a9cf801f295c04abc
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
SSSS

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at apescan.io on 2025-01-24
*/

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _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) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

// File: operator-filter-registry/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

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

// File: operator-filter-registry/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        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(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // 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) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: operator-filter-registry/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

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

// File: sss.sol



 
// ╭━━━┳━━━┳━━━┳━━━╮
// ┃╭━╮┃╭━━┫╭━╮┃╭━━╯
// ┃╰━╯┃╰━━┫╰━╯┃╰━━╮
// ┃╭━━┫╭━━┫╭━━┫╭━━╯
// ┃┃╱╱┃╰━━┫┃╱╱┃╰━━╮
// ╰╯╱╱╰━━━┻╯╱╱╰━━━╯

        pragma solidity >=0.8.26 <0.9.0;






        contract SSSS is ERC721A, Ownable, ReentrancyGuard  , DefaultOperatorFilterer{
            using Strings for uint256;
            uint256 public _maxSupply = 111;
            uint256 public maxMintAmountPerWallet = 15;
            uint256 public maxMintAmountPerTx = 5;
            string baseURL = "";
            string ExtensionURL = ".json";
            uint256 _initalPrice = 0 ether;
            uint256 public costOfNFT = 1 ether;
            uint256 public numberOfFreeNFTs = 0;
            
            string HiddenURL;
            bool revealed = false;
            bool paused = true;
            
            error ContractPaused();
            error MaxMintWalletExceeded();
            error MaxSupply();
            error InvalidMintAmount();
            error InsufficientFund();
            error NoSmartContract();
            error TokenNotExisting();

        constructor(string memory _initBaseURI) ERC721A("SSS", "SSS") {
            baseURL = _initBaseURI;
        }

        // ================== Mint Function =======================

        modifier mintCompliance(uint256 _mintAmount) {
            if (msg.sender != tx.origin) revert NoSmartContract();
            if (totalSupply()  + _mintAmount > _maxSupply) revert MaxSupply();
            if (_mintAmount > maxMintAmountPerTx) revert InvalidMintAmount();
            if(paused) revert ContractPaused();
            _;
        }

        modifier mintPriceCompliance(uint256 _mintAmount) {
            if(balanceOf(msg.sender) + _mintAmount > maxMintAmountPerWallet) revert MaxMintWalletExceeded();
            if (_mintAmount < 0 || _mintAmount > maxMintAmountPerWallet) revert InvalidMintAmount();
              if (msg.value < checkCost(_mintAmount)) revert InsufficientFund();
            _;
        }
        
        /// @notice compliance of minting
        /// @dev user (msg.sender) mint
        /// @param _mintAmount the amount of tokens to mint
        function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount){
         
          
          _safeMint(msg.sender, _mintAmount);
          }

        /// @dev user (msg.sender) mint
        /// @param _mintAmount the amount of tokens to mint 
        /// @return value from number to mint
        function checkCost(uint256 _mintAmount) public view returns (uint256) {
          uint256 totalMints = _mintAmount + balanceOf(msg.sender);
          if ((totalMints <= numberOfFreeNFTs) ) {
          return _initalPrice;
          } else if ((balanceOf(msg.sender) < numberOfFreeNFTs) && (totalMints > numberOfFreeNFTs) ) { 
          uint256 total = costOfNFT * (_mintAmount - numberOfFreeNFTs);
          return total;
          } 
          else {
          uint256 total2 = costOfNFT * _mintAmount;
          return total2;
            }
        }
        


        /// @notice airdrop function to airdrop same amount of tokens to addresses
        /// @dev only owner function
        /// @param accounts  array of addresses
        /// @param amount the amount of tokens to airdrop users
        function airdrop(address[] memory accounts, uint256 amount)public onlyOwner mintCompliance(amount) {
          for(uint256 i = 0; i < accounts.length; i++){
          _safeMint(accounts[i], amount);
          }
        }

        // =================== Orange Functions (Owner Only) ===============

        /// @dev pause/unpause minting
        function pause() public onlyOwner {
          paused = !paused;
        }

        

        /// @dev set URI
        /// @param uri  new URI
        function setbaseURL(string memory uri) public onlyOwner{
          baseURL = uri;
        }

        /// @dev extension URI like 'json'
        function setExtensionURL(string memory uri) public onlyOwner{
          ExtensionURL = uri;
        }
        
        /// @dev set new cost of tokenId in WEI
        /// @param _cost  new price in wei
        function setCostPrice(uint256 _cost) public onlyOwner{
          costOfNFT = _cost;
        } 

        /// @dev only owner
        /// @param supply  new max supply
        function setMaxSupply(uint256 supply) public onlyOwner{
          _maxSupply = supply;
        }

        /// @dev only owner
        /// @param perTx  new max mint per transaction
        function setMaxMintAmountPerTx(uint256 perTx) public onlyOwner{
          maxMintAmountPerTx = perTx;
        }

        /// @dev only owner
        /// @param perWallet  new max mint per wallet
        function setMaxMintAmountPerWallet(uint256 perWallet) public onlyOwner{
          maxMintAmountPerWallet = perWallet;
        }  
        
        /// @dev only owner
        /// @param perWallet set free number of nft per wallet
        function setnumberOfFreeNFTs(uint256 perWallet) public onlyOwner{
          numberOfFreeNFTs = perWallet;
        }            

        // ================================ Withdraw Function ====================

        /// @notice withdraw ether from contract.
        /// @dev only owner function
        function withdraw() public onlyOwner nonReentrant{
          

          

        (bool owner, ) = payable(owner()).call{value: address(this).balance}('');
        require(owner);
        }
        // =================== Blue Functions (View Only) ====================

        /// @dev return uri of token ID
        /// @param tokenId  token ID to find uri for
        ///@return value for 'tokenId uri'
        function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory) {
          if (!_exists(tokenId)) revert TokenNotExisting();   

        

        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ExtensionURL))
        : '';
        }
        
        /// @dev tokenId to start (1)
        function _startTokenId() internal view virtual override returns (uint256) {
          return 1;
        }

        ///@dev maxSupply of token
        /// @return max supply
        function _baseURI() internal view virtual override returns (string memory) {
          return baseURL;
        }

    
        /// @dev internal function to 
        /// @param from  user address where token belongs
        /// @param to  user address
        /// @param tokenId  number of tokenId
          function transferFrom(address from, address to, uint256 tokenId) public payable  override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
        }
        
        /// @dev internal function to 
        /// @param from  user address where token belongs
        /// @param to  user address
        /// @param tokenId  number of tokenId
        function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
        }

        /// @dev internal function to 
        /// @param from  user address where token belongs
        /// @param to  user address
        /// @param tokenId  number of tokenId
        function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public payable
        override
        onlyAllowedOperator(from)
        {
        super.safeTransferFrom(from, to, tokenId, data);
        }
        

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ContractPaused","type":"error"},{"inputs":[],"name":"InsufficientFund","type":"error"},{"inputs":[],"name":"InvalidMintAmount","type":"error"},{"inputs":[],"name":"MaxMintWalletExceeded","type":"error"},{"inputs":[],"name":"MaxSupply","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NoSmartContract","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":"TokenNotExisting","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":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"checkCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costOfNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfFreeNFTs","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setExtensionURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perWallet","type":"uint256"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setbaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perWallet","type":"uint256"}],"name":"setnumberOfFreeNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052606f600a55600f600b556005600c5560405180602001604052805f815250600d908161003091906106be565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e908161007591906106be565b505f600f55670de0b6b3a76400006010555f6011555f60135f6101000a81548160ff0219169083151502179055506001601360016101000a81548160ff0219169083151502179055503480156100c9575f80fd5b50604051613d64380380613d6483398181016040528101906100eb91906108ad565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600381526020017f53535300000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5353530000000000000000000000000000000000000000000000000000000000815250816002908161017d91906106be565b50806003908161018d91906106be565b5061019c6103b260201b60201c565b5f8190555050506101bf6101b46103ba60201b60201c565b6103c160201b60201c565b60016009819055505f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561039a578015610275576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401610243929190610933565b5f604051808303815f87803b15801561025a575f80fd5b505af115801561026c573d5f803e3d5ffd5b50505050610399565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610323576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016102f1929190610933565b5f604051808303815f87803b158015610308575f80fd5b505af115801561031a573d5f803e3d5ffd5b50505050610398565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040161036a919061095a565b5f604051808303815f87803b158015610381575f80fd5b505af1158015610393573d5f803e3d5ffd5b505050505b5b5b505080600d90816103ab91906106be565b5050610973565b5f6001905090565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806104ff57607f821691505b602082108103610512576105116104bb565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026105747fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610539565b61057e8683610539565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6105c26105bd6105b884610596565b61059f565b610596565b9050919050565b5f819050919050565b6105db836105a8565b6105ef6105e7826105c9565b848454610545565b825550505050565b5f90565b6106036105f7565b61060e8184846105d2565b505050565b5b81811015610631576106265f826105fb565b600181019050610614565b5050565b601f8211156106765761064781610518565b6106508461052a565b8101602085101561065f578190505b61067361066b8561052a565b830182610613565b50505b505050565b5f82821c905092915050565b5f6106965f198460080261067b565b1980831691505092915050565b5f6106ae8383610687565b9150826002028217905092915050565b6106c782610484565b67ffffffffffffffff8111156106e0576106df61048e565b5b6106ea82546104e8565b6106f5828285610635565b5f60209050601f831160018114610726575f8415610714578287015190505b61071e85826106a3565b865550610785565b601f19841661073486610518565b5f5b8281101561075b57848901518255600182019150602085019450602081019050610736565b868310156107785784890151610774601f891682610687565b8355505b6001600288020188555050505b505050505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b6107bf826107a6565b810181811067ffffffffffffffff821117156107de576107dd61048e565b5b80604052505050565b5f6107f061078d565b90506107fc82826107b6565b919050565b5f67ffffffffffffffff82111561081b5761081a61048e565b5b610824826107a6565b9050602081019050919050565b8281835e5f83830152505050565b5f61085161084c84610801565b6107e7565b90508281526020810184848401111561086d5761086c6107a2565b5b610878848285610831565b509392505050565b5f82601f8301126108945761089361079e565b5b81516108a484826020860161083f565b91505092915050565b5f602082840312156108c2576108c1610796565b5b5f82015167ffffffffffffffff8111156108df576108de61079a565b5b6108eb84828501610880565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61091d826108f4565b9050919050565b61092d81610913565b82525050565b5f6040820190506109465f830185610924565b6109536020830184610924565b9392505050565b5f60208201905061096d5f830184610924565b92915050565b6133e4806109805f395ff3fe608060405260043610610203575f3560e01c8063715018a611610117578063b071401b1161009f578063c204642c1161006e578063c204642c146106bb578063c87b56dd146106e3578063e098ff731461071f578063e985e9c514610749578063f2fde38b1461078557610203565b8063b071401b14610623578063b0fe64141461064b578063b88d4fde14610675578063bc951b911461069157610203565b806393e90b23116100e657806393e90b231461056357806394354fd01461058b57806395d89b41146105b5578063a0712d68146105df578063a22cb465146105fb57610203565b8063715018a6146104e5578063766b7d09146104fb5780638456cb59146105235780638da5cb5b1461053957610203565b80633ccfd60b1161019a578063626ab3b811610169578063626ab3b8146103f55780636352211e1461041d578063676f2602146104595780636f8b44b01461048157806370a08231146104a957610203565b80633ccfd60b1461037157806341f434341461038757806342842e0e146103b15780634d534a7d146103cd57610203565b806311b4a832116101d657806311b4a832146102c557806318160ddd1461030157806322f4596f1461032b57806323b872dd1461035557610203565b806301ffc9a71461020757806306fdde0314610243578063081812fc1461026d578063095ea7b3146102a9575b5f80fd5b348015610212575f80fd5b5061022d6004803603810190610228919061247e565b6107ad565b60405161023a91906124c3565b60405180910390f35b34801561024e575f80fd5b5061025761083e565b604051610264919061254c565b60405180910390f35b348015610278575f80fd5b50610293600480360381019061028e919061259f565b6108ce565b6040516102a09190612609565b60405180910390f35b6102c360048036038101906102be919061264c565b610948565b005b3480156102d0575f80fd5b506102eb60048036038101906102e6919061259f565b610a87565b6040516102f89190612699565b60405180910390f35b34801561030c575f80fd5b50610315610b16565b6040516103229190612699565b60405180910390f35b348015610336575f80fd5b5061033f610b2b565b60405161034c9190612699565b60405180910390f35b61036f600480360381019061036a91906126b2565b610b31565b005b34801561037c575f80fd5b50610385610b80565b005b348015610392575f80fd5b5061039b610c13565b6040516103a8919061275d565b60405180910390f35b6103cb60048036038101906103c691906126b2565b610c25565b005b3480156103d8575f80fd5b506103f360048036038101906103ee91906128a2565b610c74565b005b348015610400575f80fd5b5061041b600480360381019061041691906128a2565b610c8f565b005b348015610428575f80fd5b50610443600480360381019061043e919061259f565b610caa565b6040516104509190612609565b60405180910390f35b348015610464575f80fd5b5061047f600480360381019061047a919061259f565b610cbb565b005b34801561048c575f80fd5b506104a760048036038101906104a2919061259f565b610ccd565b005b3480156104b4575f80fd5b506104cf60048036038101906104ca91906128e9565b610cdf565b6040516104dc9190612699565b60405180910390f35b3480156104f0575f80fd5b506104f9610d94565b005b348015610506575f80fd5b50610521600480360381019061051c919061259f565b610da7565b005b34801561052e575f80fd5b50610537610db9565b005b348015610544575f80fd5b5061054d610ded565b60405161055a9190612609565b60405180910390f35b34801561056e575f80fd5b506105896004803603810190610584919061259f565b610e15565b005b348015610596575f80fd5b5061059f610e27565b6040516105ac9190612699565b60405180910390f35b3480156105c0575f80fd5b506105c9610e2d565b6040516105d6919061254c565b60405180910390f35b6105f960048036038101906105f4919061259f565b610ebd565b005b348015610606575f80fd5b50610621600480360381019061061c919061293e565b6110db565b005b34801561062e575f80fd5b506106496004803603810190610644919061259f565b6111e1565b005b348015610656575f80fd5b5061065f6111f3565b60405161066c9190612699565b60405180910390f35b61068f600480360381019061068a9190612a1a565b6111f9565b005b34801561069c575f80fd5b506106a561124a565b6040516106b29190612699565b60405180910390f35b3480156106c6575f80fd5b506106e160048036038101906106dc9190612b5e565b611250565b005b3480156106ee575f80fd5b506107096004803603810190610704919061259f565b6113d1565b604051610716919061254c565b60405180910390f35b34801561072a575f80fd5b5061073361146f565b6040516107409190612699565b60405180910390f35b348015610754575f80fd5b5061076f600480360381019061076a9190612bb8565b611475565b60405161077c91906124c3565b60405180910390f35b348015610790575f80fd5b506107ab60048036038101906107a691906128e9565b611503565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108375750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461084d90612c23565b80601f016020809104026020016040519081016040528092919081815260200182805461087990612c23565b80156108c45780601f1061089b576101008083540402835291602001916108c4565b820191905f5260205f20905b8154815290600101906020018083116108a757829003601f168201915b5050505050905090565b5f6108d882611585565b61090e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61095282610caa565b90508073ffffffffffffffffffffffffffffffffffffffff166109736115df565b73ffffffffffffffffffffffffffffffffffffffff16146109d65761099f8161099a6115df565b611475565b6109d5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f80610a9233610cdf565b83610a9d9190612c80565b90506011548111610ab357600f54915050610b11565b601154610abf33610cdf565b108015610acd575060115481115b15610afa575f60115484610ae19190612cb3565b601054610aee9190612ce6565b90508092505050610b11565b5f83601054610b099190612ce6565b905080925050505b919050565b5f610b1f6115e6565b6001545f540303905090565b600a5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b6f57610b6e336115ee565b5b610b7a8484846116e8565b50505050565b610b886119f6565b610b90611a74565b5f610b99610ded565b73ffffffffffffffffffffffffffffffffffffffff1647604051610bbc90612d54565b5f6040518083038185875af1925050503d805f8114610bf6576040519150601f19603f3d011682016040523d82523d5f602084013e610bfb565b606091505b5050905080610c08575f80fd5b50610c11611ac3565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c6357610c62336115ee565b5b610c6e848484611acd565b50505050565b610c7c6119f6565b80600e9081610c8b9190612efc565b5050565b610c976119f6565b80600d9081610ca69190612efc565b5050565b5f610cb482611aec565b9050919050565b610cc36119f6565b8060108190555050565b610cd56119f6565b80600a8190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d45576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610d9c6119f6565b610da55f611baf565b565b610daf6119f6565b80600b8190555050565b610dc16119f6565b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e1d6119f6565b8060118190555050565b600c5481565b606060038054610e3c90612c23565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6890612c23565b8015610eb35780601f10610e8a57610100808354040283529160200191610eb3565b820191905f5260205f20905b815481529060010190602001808311610e9657829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f23576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481610f2f610b16565b610f399190612c80565b1115610f71576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115610fad576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff1615610ff4576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600b548161100233610cdf565b61100c9190612c80565b1115611044576040517f6a3eaa7b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8110806110535750600b5481115b1561108a576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61109381610a87565b3410156110cc576040517fd44b3c6200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110d63384611c72565b505050565b8060075f6110e76115df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111906115df565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111d591906124c3565b60405180910390a35050565b6111e96119f6565b80600c8190555050565b60115481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461123757611236336115ee565b5b61124385858585611c8f565b5050505050565b600b5481565b6112586119f6565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112be576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54816112ca610b16565b6112d49190612c80565b111561130c576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115611348576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff161561138f576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5b83518110156113cb576113be8482815181106113b0576113af612fcb565b5b602002602001015184611c72565b8080600101915050611391565b50505050565b60606113dc82611585565b611412576040517f2f9aab5800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61141b611d01565b90505f8151116114395760405180602001604052805f815250611467565b8061144384611d91565b600e604051602001611457939291906130b2565b6040516020818303038152906040525b915050919050565b60105481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61150b6119f6565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157090613152565b60405180910390fd5b61158281611baf565b50565b5f8161158f6115e6565b1115801561159d57505f5482105b80156115d857505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156116e5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611664929190613170565b602060405180830381865afa15801561167f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116a391906131ab565b6116e457806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016116db9190612609565b60405180910390fd5b5b50565b5f6116f282611aec565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611759576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8061176484611e5b565b9150915061177a81876117756115df565b611e7e565b6117c65761178f8661178a6115df565b611475565b6117c5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361182b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118388686866001611ec1565b8015611842575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81546001019190508190555061190a856118e6888887611ec7565b7c020000000000000000000000000000000000000000000000000000000017611eee565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611986575f6001850190505f60045f8381526020019081526020015f205403611984575f548114611983578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119ee8686866001611f18565b505050505050565b6119fe611f1e565b73ffffffffffffffffffffffffffffffffffffffff16611a1c610ded565b73ffffffffffffffffffffffffffffffffffffffff1614611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6990613220565b60405180910390fd5b565b600260095403611ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab090613288565b60405180910390fd5b6002600981905550565b6001600981905550565b611ae783838360405180602001604052805f8152506111f9565b505050565b5f8082905080611afa6115e6565b11611b78575f54811015611b77575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611b75575b5f8103611b6b5760045f836001900393508381526020019081526020015f20549050611b44565b8092505050611baa565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c8b828260405180602001604052805f815250611f25565b5050565b611c9a848484610b31565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611cfb57611cc484848484611fbc565b611cfa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600d8054611d1090612c23565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3c90612c23565b8015611d875780601f10611d5e57610100808354040283529160200191611d87565b820191905f5260205f20905b815481529060010190602001808311611d6a57829003601f168201915b5050505050905090565b60605f6001611d9f84612107565b0190505f8167ffffffffffffffff811115611dbd57611dbc61277e565b5b6040519080825280601f01601f191660200182016040528015611def5781602001600182028036833780820191505090505b5090505f82602001820190505b600115611e50578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611e4557611e446132a6565b5b0494505f8503611dfc575b819350505050919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8611edd868684612258565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f33905090565b611f2f8383612260565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611fb7575f805490505f83820390505b611f6b5f868380600101945086611fbc565b611fa1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f5957815f5414611fb4575f80fd5b50505b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fe16115df565b8786866040518563ffffffff1660e01b81526004016120039493929190613325565b6020604051808303815f875af192505050801561203e57506040513d601f19601f8201168201806040525081019061203b9190613383565b60015b6120b4573d805f811461206c576040519150601f19603f3d011682016040523d82523d5f602084013e612071565b606091505b505f8151036120ac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612163577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612159576121586132a6565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106121a0576d04ee2d6d415b85acef81000000008381612196576121956132a6565b5b0492506020810190505b662386f26fc1000083106121cf57662386f26fc1000083816121c5576121c46132a6565b5b0492506010810190505b6305f5e10083106121f8576305f5e10083816121ee576121ed6132a6565b5b0492506008810190505b612710831061221d576127108381612213576122126132a6565b5b0492506004810190505b606483106122405760648381612236576122356132a6565b5b0492506002810190505b600a831061224f576001810190505b80915050919050565b5f9392505050565b5f805490505f820361229e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122aa5f848385611ec1565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555061231c8361230d5f865f611ec7565b61231685612409565b17611eee565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146123b65780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460018101905061237d565b505f82036123f0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506124045f848385611f18565b505050565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61245d81612429565b8114612467575f80fd5b50565b5f8135905061247881612454565b92915050565b5f6020828403121561249357612492612421565b5b5f6124a08482850161246a565b91505092915050565b5f8115159050919050565b6124bd816124a9565b82525050565b5f6020820190506124d65f8301846124b4565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61251e826124dc565b61252881856124e6565b93506125388185602086016124f6565b61254181612504565b840191505092915050565b5f6020820190508181035f8301526125648184612514565b905092915050565b5f819050919050565b61257e8161256c565b8114612588575f80fd5b50565b5f8135905061259981612575565b92915050565b5f602082840312156125b4576125b3612421565b5b5f6125c18482850161258b565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6125f3826125ca565b9050919050565b612603816125e9565b82525050565b5f60208201905061261c5f8301846125fa565b92915050565b61262b816125e9565b8114612635575f80fd5b50565b5f8135905061264681612622565b92915050565b5f806040838503121561266257612661612421565b5b5f61266f85828601612638565b92505060206126808582860161258b565b9150509250929050565b6126938161256c565b82525050565b5f6020820190506126ac5f83018461268a565b92915050565b5f805f606084860312156126c9576126c8612421565b5b5f6126d686828701612638565b93505060206126e786828701612638565b92505060406126f88682870161258b565b9150509250925092565b5f819050919050565b5f61272561272061271b846125ca565b612702565b6125ca565b9050919050565b5f6127368261270b565b9050919050565b5f6127478261272c565b9050919050565b6127578161273d565b82525050565b5f6020820190506127705f83018461274e565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6127b482612504565b810181811067ffffffffffffffff821117156127d3576127d261277e565b5b80604052505050565b5f6127e5612418565b90506127f182826127ab565b919050565b5f67ffffffffffffffff8211156128105761280f61277e565b5b61281982612504565b9050602081019050919050565b828183375f83830152505050565b5f612846612841846127f6565b6127dc565b9050828152602081018484840111156128625761286161277a565b5b61286d848285612826565b509392505050565b5f82601f83011261288957612888612776565b5b8135612899848260208601612834565b91505092915050565b5f602082840312156128b7576128b6612421565b5b5f82013567ffffffffffffffff8111156128d4576128d3612425565b5b6128e084828501612875565b91505092915050565b5f602082840312156128fe576128fd612421565b5b5f61290b84828501612638565b91505092915050565b61291d816124a9565b8114612927575f80fd5b50565b5f8135905061293881612914565b92915050565b5f806040838503121561295457612953612421565b5b5f61296185828601612638565b92505060206129728582860161292a565b9150509250929050565b5f67ffffffffffffffff8211156129965761299561277e565b5b61299f82612504565b9050602081019050919050565b5f6129be6129b98461297c565b6127dc565b9050828152602081018484840111156129da576129d961277a565b5b6129e5848285612826565b509392505050565b5f82601f830112612a0157612a00612776565b5b8135612a118482602086016129ac565b91505092915050565b5f805f8060808587031215612a3257612a31612421565b5b5f612a3f87828801612638565b9450506020612a5087828801612638565b9350506040612a618782880161258b565b925050606085013567ffffffffffffffff811115612a8257612a81612425565b5b612a8e878288016129ed565b91505092959194509250565b5f67ffffffffffffffff821115612ab457612ab361277e565b5b602082029050602081019050919050565b5f80fd5b5f612adb612ad684612a9a565b6127dc565b90508083825260208201905060208402830185811115612afe57612afd612ac5565b5b835b81811015612b275780612b138882612638565b845260208401935050602081019050612b00565b5050509392505050565b5f82601f830112612b4557612b44612776565b5b8135612b55848260208601612ac9565b91505092915050565b5f8060408385031215612b7457612b73612421565b5b5f83013567ffffffffffffffff811115612b9157612b90612425565b5b612b9d85828601612b31565b9250506020612bae8582860161258b565b9150509250929050565b5f8060408385031215612bce57612bcd612421565b5b5f612bdb85828601612638565b9250506020612bec85828601612638565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612c3a57607f821691505b602082108103612c4d57612c4c612bf6565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612c8a8261256c565b9150612c958361256c565b9250828201905080821115612cad57612cac612c53565b5b92915050565b5f612cbd8261256c565b9150612cc88361256c565b9250828203905081811115612ce057612cdf612c53565b5b92915050565b5f612cf08261256c565b9150612cfb8361256c565b9250828202612d098161256c565b91508282048414831517612d2057612d1f612c53565b5b5092915050565b5f81905092915050565b50565b5f612d3f5f83612d27565b9150612d4a82612d31565b5f82019050919050565b5f612d5e82612d34565b9150819050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612dc47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d89565b612dce8683612d89565b95508019841693508086168417925050509392505050565b5f612e00612dfb612df68461256c565b612702565b61256c565b9050919050565b5f819050919050565b612e1983612de6565b612e2d612e2582612e07565b848454612d95565b825550505050565b5f90565b612e41612e35565b612e4c818484612e10565b505050565b5b81811015612e6f57612e645f82612e39565b600181019050612e52565b5050565b601f821115612eb457612e8581612d68565b612e8e84612d7a565b81016020851015612e9d578190505b612eb1612ea985612d7a565b830182612e51565b50505b505050565b5f82821c905092915050565b5f612ed45f1984600802612eb9565b1980831691505092915050565b5f612eec8383612ec5565b9150826002028217905092915050565b612f05826124dc565b67ffffffffffffffff811115612f1e57612f1d61277e565b5b612f288254612c23565b612f33828285612e73565b5f60209050601f831160018114612f64575f8415612f52578287015190505b612f5c8582612ee1565b865550612fc3565b601f198416612f7286612d68565b5f5b82811015612f9957848901518255600182019150602085019450602081019050612f74565b86831015612fb65784890151612fb2601f891682612ec5565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81905092915050565b5f61300c826124dc565b6130168185612ff8565b93506130268185602086016124f6565b80840191505092915050565b5f815461303e81612c23565b6130488186612ff8565b9450600182165f81146130625760018114613077576130a9565b60ff19831686528115158202860193506130a9565b61308085612d68565b5f5b838110156130a157815481890152600182019150602081019050613082565b838801955050505b50505092915050565b5f6130bd8286613002565b91506130c98285613002565b91506130d58284613032565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61313c6026836124e6565b9150613147826130e2565b604082019050919050565b5f6020820190508181035f83015261316981613130565b9050919050565b5f6040820190506131835f8301856125fa565b61319060208301846125fa565b9392505050565b5f815190506131a581612914565b92915050565b5f602082840312156131c0576131bf612421565b5b5f6131cd84828501613197565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61320a6020836124e6565b9150613215826131d6565b602082019050919050565b5f6020820190508181035f830152613237816131fe565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f613272601f836124e6565b915061327d8261323e565b602082019050919050565b5f6020820190508181035f83015261329f81613266565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f6132f7826132d3565b61330181856132dd565b93506133118185602086016124f6565b61331a81612504565b840191505092915050565b5f6080820190506133385f8301876125fa565b61334560208301866125fa565b613352604083018561268a565b818103606083015261336481846132ed565b905095945050505050565b5f8151905061337d81612454565b92915050565b5f6020828403121561339857613397612421565b5b5f6133a58482850161336f565b9150509291505056fea2646970667358221220b2850e9036b5265a9003282371a8326a8af6f8ec6e52be86d7d03a99a62e620964736f6c634300081a003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50727772366e6e4c764377784c3665754c67614a7377777776794d75765541704d657a7252504d41594b6e552f00000000000000000000

Deployed Bytecode

0x608060405260043610610203575f3560e01c8063715018a611610117578063b071401b1161009f578063c204642c1161006e578063c204642c146106bb578063c87b56dd146106e3578063e098ff731461071f578063e985e9c514610749578063f2fde38b1461078557610203565b8063b071401b14610623578063b0fe64141461064b578063b88d4fde14610675578063bc951b911461069157610203565b806393e90b23116100e657806393e90b231461056357806394354fd01461058b57806395d89b41146105b5578063a0712d68146105df578063a22cb465146105fb57610203565b8063715018a6146104e5578063766b7d09146104fb5780638456cb59146105235780638da5cb5b1461053957610203565b80633ccfd60b1161019a578063626ab3b811610169578063626ab3b8146103f55780636352211e1461041d578063676f2602146104595780636f8b44b01461048157806370a08231146104a957610203565b80633ccfd60b1461037157806341f434341461038757806342842e0e146103b15780634d534a7d146103cd57610203565b806311b4a832116101d657806311b4a832146102c557806318160ddd1461030157806322f4596f1461032b57806323b872dd1461035557610203565b806301ffc9a71461020757806306fdde0314610243578063081812fc1461026d578063095ea7b3146102a9575b5f80fd5b348015610212575f80fd5b5061022d6004803603810190610228919061247e565b6107ad565b60405161023a91906124c3565b60405180910390f35b34801561024e575f80fd5b5061025761083e565b604051610264919061254c565b60405180910390f35b348015610278575f80fd5b50610293600480360381019061028e919061259f565b6108ce565b6040516102a09190612609565b60405180910390f35b6102c360048036038101906102be919061264c565b610948565b005b3480156102d0575f80fd5b506102eb60048036038101906102e6919061259f565b610a87565b6040516102f89190612699565b60405180910390f35b34801561030c575f80fd5b50610315610b16565b6040516103229190612699565b60405180910390f35b348015610336575f80fd5b5061033f610b2b565b60405161034c9190612699565b60405180910390f35b61036f600480360381019061036a91906126b2565b610b31565b005b34801561037c575f80fd5b50610385610b80565b005b348015610392575f80fd5b5061039b610c13565b6040516103a8919061275d565b60405180910390f35b6103cb60048036038101906103c691906126b2565b610c25565b005b3480156103d8575f80fd5b506103f360048036038101906103ee91906128a2565b610c74565b005b348015610400575f80fd5b5061041b600480360381019061041691906128a2565b610c8f565b005b348015610428575f80fd5b50610443600480360381019061043e919061259f565b610caa565b6040516104509190612609565b60405180910390f35b348015610464575f80fd5b5061047f600480360381019061047a919061259f565b610cbb565b005b34801561048c575f80fd5b506104a760048036038101906104a2919061259f565b610ccd565b005b3480156104b4575f80fd5b506104cf60048036038101906104ca91906128e9565b610cdf565b6040516104dc9190612699565b60405180910390f35b3480156104f0575f80fd5b506104f9610d94565b005b348015610506575f80fd5b50610521600480360381019061051c919061259f565b610da7565b005b34801561052e575f80fd5b50610537610db9565b005b348015610544575f80fd5b5061054d610ded565b60405161055a9190612609565b60405180910390f35b34801561056e575f80fd5b506105896004803603810190610584919061259f565b610e15565b005b348015610596575f80fd5b5061059f610e27565b6040516105ac9190612699565b60405180910390f35b3480156105c0575f80fd5b506105c9610e2d565b6040516105d6919061254c565b60405180910390f35b6105f960048036038101906105f4919061259f565b610ebd565b005b348015610606575f80fd5b50610621600480360381019061061c919061293e565b6110db565b005b34801561062e575f80fd5b506106496004803603810190610644919061259f565b6111e1565b005b348015610656575f80fd5b5061065f6111f3565b60405161066c9190612699565b60405180910390f35b61068f600480360381019061068a9190612a1a565b6111f9565b005b34801561069c575f80fd5b506106a561124a565b6040516106b29190612699565b60405180910390f35b3480156106c6575f80fd5b506106e160048036038101906106dc9190612b5e565b611250565b005b3480156106ee575f80fd5b506107096004803603810190610704919061259f565b6113d1565b604051610716919061254c565b60405180910390f35b34801561072a575f80fd5b5061073361146f565b6040516107409190612699565b60405180910390f35b348015610754575f80fd5b5061076f600480360381019061076a9190612bb8565b611475565b60405161077c91906124c3565b60405180910390f35b348015610790575f80fd5b506107ab60048036038101906107a691906128e9565b611503565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108375750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461084d90612c23565b80601f016020809104026020016040519081016040528092919081815260200182805461087990612c23565b80156108c45780601f1061089b576101008083540402835291602001916108c4565b820191905f5260205f20905b8154815290600101906020018083116108a757829003601f168201915b5050505050905090565b5f6108d882611585565b61090e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61095282610caa565b90508073ffffffffffffffffffffffffffffffffffffffff166109736115df565b73ffffffffffffffffffffffffffffffffffffffff16146109d65761099f8161099a6115df565b611475565b6109d5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f80610a9233610cdf565b83610a9d9190612c80565b90506011548111610ab357600f54915050610b11565b601154610abf33610cdf565b108015610acd575060115481115b15610afa575f60115484610ae19190612cb3565b601054610aee9190612ce6565b90508092505050610b11565b5f83601054610b099190612ce6565b905080925050505b919050565b5f610b1f6115e6565b6001545f540303905090565b600a5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b6f57610b6e336115ee565b5b610b7a8484846116e8565b50505050565b610b886119f6565b610b90611a74565b5f610b99610ded565b73ffffffffffffffffffffffffffffffffffffffff1647604051610bbc90612d54565b5f6040518083038185875af1925050503d805f8114610bf6576040519150601f19603f3d011682016040523d82523d5f602084013e610bfb565b606091505b5050905080610c08575f80fd5b50610c11611ac3565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c6357610c62336115ee565b5b610c6e848484611acd565b50505050565b610c7c6119f6565b80600e9081610c8b9190612efc565b5050565b610c976119f6565b80600d9081610ca69190612efc565b5050565b5f610cb482611aec565b9050919050565b610cc36119f6565b8060108190555050565b610cd56119f6565b80600a8190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d45576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610d9c6119f6565b610da55f611baf565b565b610daf6119f6565b80600b8190555050565b610dc16119f6565b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e1d6119f6565b8060118190555050565b600c5481565b606060038054610e3c90612c23565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6890612c23565b8015610eb35780601f10610e8a57610100808354040283529160200191610eb3565b820191905f5260205f20905b815481529060010190602001808311610e9657829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f23576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481610f2f610b16565b610f399190612c80565b1115610f71576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115610fad576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff1615610ff4576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600b548161100233610cdf565b61100c9190612c80565b1115611044576040517f6a3eaa7b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8110806110535750600b5481115b1561108a576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61109381610a87565b3410156110cc576040517fd44b3c6200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110d63384611c72565b505050565b8060075f6110e76115df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111906115df565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111d591906124c3565b60405180910390a35050565b6111e96119f6565b80600c8190555050565b60115481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461123757611236336115ee565b5b61124385858585611c8f565b5050505050565b600b5481565b6112586119f6565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112be576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54816112ca610b16565b6112d49190612c80565b111561130c576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115611348576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff161561138f576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5b83518110156113cb576113be8482815181106113b0576113af612fcb565b5b602002602001015184611c72565b8080600101915050611391565b50505050565b60606113dc82611585565b611412576040517f2f9aab5800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61141b611d01565b90505f8151116114395760405180602001604052805f815250611467565b8061144384611d91565b600e604051602001611457939291906130b2565b6040516020818303038152906040525b915050919050565b60105481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61150b6119f6565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157090613152565b60405180910390fd5b61158281611baf565b50565b5f8161158f6115e6565b1115801561159d57505f5482105b80156115d857505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156116e5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611664929190613170565b602060405180830381865afa15801561167f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116a391906131ab565b6116e457806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016116db9190612609565b60405180910390fd5b5b50565b5f6116f282611aec565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611759576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8061176484611e5b565b9150915061177a81876117756115df565b611e7e565b6117c65761178f8661178a6115df565b611475565b6117c5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361182b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118388686866001611ec1565b8015611842575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81546001019190508190555061190a856118e6888887611ec7565b7c020000000000000000000000000000000000000000000000000000000017611eee565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611986575f6001850190505f60045f8381526020019081526020015f205403611984575f548114611983578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119ee8686866001611f18565b505050505050565b6119fe611f1e565b73ffffffffffffffffffffffffffffffffffffffff16611a1c610ded565b73ffffffffffffffffffffffffffffffffffffffff1614611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6990613220565b60405180910390fd5b565b600260095403611ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab090613288565b60405180910390fd5b6002600981905550565b6001600981905550565b611ae783838360405180602001604052805f8152506111f9565b505050565b5f8082905080611afa6115e6565b11611b78575f54811015611b77575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611b75575b5f8103611b6b5760045f836001900393508381526020019081526020015f20549050611b44565b8092505050611baa565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c8b828260405180602001604052805f815250611f25565b5050565b611c9a848484610b31565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611cfb57611cc484848484611fbc565b611cfa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600d8054611d1090612c23565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3c90612c23565b8015611d875780601f10611d5e57610100808354040283529160200191611d87565b820191905f5260205f20905b815481529060010190602001808311611d6a57829003601f168201915b5050505050905090565b60605f6001611d9f84612107565b0190505f8167ffffffffffffffff811115611dbd57611dbc61277e565b5b6040519080825280601f01601f191660200182016040528015611def5781602001600182028036833780820191505090505b5090505f82602001820190505b600115611e50578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611e4557611e446132a6565b5b0494505f8503611dfc575b819350505050919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8611edd868684612258565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f33905090565b611f2f8383612260565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611fb7575f805490505f83820390505b611f6b5f868380600101945086611fbc565b611fa1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f5957815f5414611fb4575f80fd5b50505b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fe16115df565b8786866040518563ffffffff1660e01b81526004016120039493929190613325565b6020604051808303815f875af192505050801561203e57506040513d601f19601f8201168201806040525081019061203b9190613383565b60015b6120b4573d805f811461206c576040519150601f19603f3d011682016040523d82523d5f602084013e612071565b606091505b505f8151036120ac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612163577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612159576121586132a6565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106121a0576d04ee2d6d415b85acef81000000008381612196576121956132a6565b5b0492506020810190505b662386f26fc1000083106121cf57662386f26fc1000083816121c5576121c46132a6565b5b0492506010810190505b6305f5e10083106121f8576305f5e10083816121ee576121ed6132a6565b5b0492506008810190505b612710831061221d576127108381612213576122126132a6565b5b0492506004810190505b606483106122405760648381612236576122356132a6565b5b0492506002810190505b600a831061224f576001810190505b80915050919050565b5f9392505050565b5f805490505f820361229e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122aa5f848385611ec1565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555061231c8361230d5f865f611ec7565b61231685612409565b17611eee565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146123b65780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460018101905061237d565b505f82036123f0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506124045f848385611f18565b505050565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61245d81612429565b8114612467575f80fd5b50565b5f8135905061247881612454565b92915050565b5f6020828403121561249357612492612421565b5b5f6124a08482850161246a565b91505092915050565b5f8115159050919050565b6124bd816124a9565b82525050565b5f6020820190506124d65f8301846124b4565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61251e826124dc565b61252881856124e6565b93506125388185602086016124f6565b61254181612504565b840191505092915050565b5f6020820190508181035f8301526125648184612514565b905092915050565b5f819050919050565b61257e8161256c565b8114612588575f80fd5b50565b5f8135905061259981612575565b92915050565b5f602082840312156125b4576125b3612421565b5b5f6125c18482850161258b565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6125f3826125ca565b9050919050565b612603816125e9565b82525050565b5f60208201905061261c5f8301846125fa565b92915050565b61262b816125e9565b8114612635575f80fd5b50565b5f8135905061264681612622565b92915050565b5f806040838503121561266257612661612421565b5b5f61266f85828601612638565b92505060206126808582860161258b565b9150509250929050565b6126938161256c565b82525050565b5f6020820190506126ac5f83018461268a565b92915050565b5f805f606084860312156126c9576126c8612421565b5b5f6126d686828701612638565b93505060206126e786828701612638565b92505060406126f88682870161258b565b9150509250925092565b5f819050919050565b5f61272561272061271b846125ca565b612702565b6125ca565b9050919050565b5f6127368261270b565b9050919050565b5f6127478261272c565b9050919050565b6127578161273d565b82525050565b5f6020820190506127705f83018461274e565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6127b482612504565b810181811067ffffffffffffffff821117156127d3576127d261277e565b5b80604052505050565b5f6127e5612418565b90506127f182826127ab565b919050565b5f67ffffffffffffffff8211156128105761280f61277e565b5b61281982612504565b9050602081019050919050565b828183375f83830152505050565b5f612846612841846127f6565b6127dc565b9050828152602081018484840111156128625761286161277a565b5b61286d848285612826565b509392505050565b5f82601f83011261288957612888612776565b5b8135612899848260208601612834565b91505092915050565b5f602082840312156128b7576128b6612421565b5b5f82013567ffffffffffffffff8111156128d4576128d3612425565b5b6128e084828501612875565b91505092915050565b5f602082840312156128fe576128fd612421565b5b5f61290b84828501612638565b91505092915050565b61291d816124a9565b8114612927575f80fd5b50565b5f8135905061293881612914565b92915050565b5f806040838503121561295457612953612421565b5b5f61296185828601612638565b92505060206129728582860161292a565b9150509250929050565b5f67ffffffffffffffff8211156129965761299561277e565b5b61299f82612504565b9050602081019050919050565b5f6129be6129b98461297c565b6127dc565b9050828152602081018484840111156129da576129d961277a565b5b6129e5848285612826565b509392505050565b5f82601f830112612a0157612a00612776565b5b8135612a118482602086016129ac565b91505092915050565b5f805f8060808587031215612a3257612a31612421565b5b5f612a3f87828801612638565b9450506020612a5087828801612638565b9350506040612a618782880161258b565b925050606085013567ffffffffffffffff811115612a8257612a81612425565b5b612a8e878288016129ed565b91505092959194509250565b5f67ffffffffffffffff821115612ab457612ab361277e565b5b602082029050602081019050919050565b5f80fd5b5f612adb612ad684612a9a565b6127dc565b90508083825260208201905060208402830185811115612afe57612afd612ac5565b5b835b81811015612b275780612b138882612638565b845260208401935050602081019050612b00565b5050509392505050565b5f82601f830112612b4557612b44612776565b5b8135612b55848260208601612ac9565b91505092915050565b5f8060408385031215612b7457612b73612421565b5b5f83013567ffffffffffffffff811115612b9157612b90612425565b5b612b9d85828601612b31565b9250506020612bae8582860161258b565b9150509250929050565b5f8060408385031215612bce57612bcd612421565b5b5f612bdb85828601612638565b9250506020612bec85828601612638565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612c3a57607f821691505b602082108103612c4d57612c4c612bf6565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612c8a8261256c565b9150612c958361256c565b9250828201905080821115612cad57612cac612c53565b5b92915050565b5f612cbd8261256c565b9150612cc88361256c565b9250828203905081811115612ce057612cdf612c53565b5b92915050565b5f612cf08261256c565b9150612cfb8361256c565b9250828202612d098161256c565b91508282048414831517612d2057612d1f612c53565b5b5092915050565b5f81905092915050565b50565b5f612d3f5f83612d27565b9150612d4a82612d31565b5f82019050919050565b5f612d5e82612d34565b9150819050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612dc47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d89565b612dce8683612d89565b95508019841693508086168417925050509392505050565b5f612e00612dfb612df68461256c565b612702565b61256c565b9050919050565b5f819050919050565b612e1983612de6565b612e2d612e2582612e07565b848454612d95565b825550505050565b5f90565b612e41612e35565b612e4c818484612e10565b505050565b5b81811015612e6f57612e645f82612e39565b600181019050612e52565b5050565b601f821115612eb457612e8581612d68565b612e8e84612d7a565b81016020851015612e9d578190505b612eb1612ea985612d7a565b830182612e51565b50505b505050565b5f82821c905092915050565b5f612ed45f1984600802612eb9565b1980831691505092915050565b5f612eec8383612ec5565b9150826002028217905092915050565b612f05826124dc565b67ffffffffffffffff811115612f1e57612f1d61277e565b5b612f288254612c23565b612f33828285612e73565b5f60209050601f831160018114612f64575f8415612f52578287015190505b612f5c8582612ee1565b865550612fc3565b601f198416612f7286612d68565b5f5b82811015612f9957848901518255600182019150602085019450602081019050612f74565b86831015612fb65784890151612fb2601f891682612ec5565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81905092915050565b5f61300c826124dc565b6130168185612ff8565b93506130268185602086016124f6565b80840191505092915050565b5f815461303e81612c23565b6130488186612ff8565b9450600182165f81146130625760018114613077576130a9565b60ff19831686528115158202860193506130a9565b61308085612d68565b5f5b838110156130a157815481890152600182019150602081019050613082565b838801955050505b50505092915050565b5f6130bd8286613002565b91506130c98285613002565b91506130d58284613032565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61313c6026836124e6565b9150613147826130e2565b604082019050919050565b5f6020820190508181035f83015261316981613130565b9050919050565b5f6040820190506131835f8301856125fa565b61319060208301846125fa565b9392505050565b5f815190506131a581612914565b92915050565b5f602082840312156131c0576131bf612421565b5b5f6131cd84828501613197565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61320a6020836124e6565b9150613215826131d6565b602082019050919050565b5f6020820190508181035f830152613237816131fe565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f613272601f836124e6565b915061327d8261323e565b602082019050919050565b5f6020820190508181035f83015261329f81613266565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f6132f7826132d3565b61330181856132dd565b93506133118185602086016124f6565b61331a81612504565b840191505092915050565b5f6080820190506133385f8301876125fa565b61334560208301866125fa565b613352604083018561268a565b818103606083015261336481846132ed565b905095945050505050565b5f8151905061337d81612454565b92915050565b5f6020828403121561339857613397612421565b5b5f6133a58482850161336f565b9150509291505056fea2646970667358221220b2850e9036b5265a9003282371a8326a8af6f8ec6e52be86d7d03a99a62e620964736f6c634300081a0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50727772366e6e4c764377784c3665754c67614a7377777776794d75765541704d657a7252504d41594b6e552f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmPrwr6nnLvCwxL6euLgaJswwwvyMuvUApMezrRPMAYKnU/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d50727772366e6e4c764377784c3665754c67614a737777
Arg [3] : 7776794d75765541704d657a7252504d41594b6e552f00000000000000000000


Deployed Bytecode Sourcemap

79025:7587:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21997:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22899:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29390:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28823:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81377:564;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18650:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79157:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85596:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84224:197;;;;;;;;;;;;;:::i;:::-;;76100:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85975:183;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82864:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82715:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24292:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83080:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83260:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19834:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;83664:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82557:75;;;;;;;;;;;;;:::i;:::-;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83908:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79260:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23075:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81021:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29948:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83455:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79484:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86353:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79203:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82201:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84652:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79435:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30339:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21997:639;22082:4;22421:10;22406:25;;:11;:25;;;;:102;;;;22498:10;22483:25;;:11;:25;;;;22406:102;:179;;;;22575:10;22560:25;;:11;:25;;;;22406:179;22386:199;;21997:639;;;:::o;22899:100::-;22953:13;22986:5;22979:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22899:100;:::o;29390:218::-;29466:7;29491:16;29499:7;29491;:16::i;:::-;29486:64;;29516:34;;;;;;;;;;;;;;29486:64;29570:15;:24;29586:7;29570:24;;;;;;;;;;;:30;;;;;;;;;;;;29563:37;;29390:218;;;:::o;28823:408::-;28912:13;28928:16;28936:7;28928;:16::i;:::-;28912:32;;28984:5;28961:28;;:19;:17;:19::i;:::-;:28;;;28957:175;;29009:44;29026:5;29033:19;:17;:19::i;:::-;29009:16;:44::i;:::-;29004:128;;29081:35;;;;;;;;;;;;;;29004:128;28957:175;29177:2;29144:15;:24;29160:7;29144:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29215:7;29211:2;29195:28;;29204:5;29195:28;;;;;;;;;;;;28901:330;28823:408;;:::o;81377:564::-;81438:7;81460:18;81495:21;81505:10;81495:9;:21::i;:::-;81481:11;:35;;;;:::i;:::-;81460:56;;81548:16;;81534:10;:30;81529:401;;81588:12;;81581:19;;;;;81529:401;81649:16;;81625:21;81635:10;81625:9;:21::i;:::-;:40;81624:77;;;;;81684:16;;81671:10;:29;81624:77;81620:310;;;81718:13;81761:16;;81747:11;:30;;;;:::i;:::-;81734:9;;:44;;;;:::i;:::-;81718:60;;81798:5;81791:12;;;;;;81620:310;81848:14;81877:11;81865:9;;:23;;;;:::i;:::-;81848:40;;81908:6;81901:13;;;;81377:564;;;;:::o;18650:323::-;18711:7;18939:15;:13;:15::i;:::-;18924:12;;18908:13;;:28;:46;18901:53;;18650:323;:::o;79157:31::-;;;;:::o;85596:176::-;85706:4;77449:10;77441:18;;:4;:18;;;77437:83;;77476:32;77497:10;77476:20;:32::i;:::-;77437:83;85723:37:::1;85742:4;85748:2;85752:7;85723:18;:37::i;:::-;85596:176:::0;;;;:::o;84224:197::-;2014:13;:11;:13::i;:::-;72572:21:::1;:19;:21::i;:::-;84313:10:::2;84337:7;:5;:7::i;:::-;84329:21;;84358;84329:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84312:72;;;84403:5;84395:14;;;::::0;::::2;;84273:148;72616:20:::1;:18;:20::i;:::-;84224:197::o:0;76100:143::-;76200:42;76100:143;:::o;85975:183::-;86088:4;77449:10;77441:18;;:4;:18;;;77437:83;;77476:32;77497:10;77476:20;:32::i;:::-;77437:83;86105:41:::1;86128:4;86134:2;86138:7;86105:22;:41::i;:::-;85975:183:::0;;;;:::o;82864:103::-;2014:13;:11;:13::i;:::-;82952:3:::1;82937:12;:18;;;;;;:::i;:::-;;82864:103:::0;:::o;82715:93::-;2014:13;:11;:13::i;:::-;82793:3:::1;82783:7;:13;;;;;;:::i;:::-;;82715:93:::0;:::o;24292:152::-;24364:7;24407:27;24426:7;24407:18;:27::i;:::-;24384:52;;24292:152;;;:::o;83080:95::-;2014:13;:11;:13::i;:::-;83158:5:::1;83146:9;:17;;;;83080:95:::0;:::o;83260:98::-;2014:13;:11;:13::i;:::-;83340:6:::1;83327:10;:19;;;;83260:98:::0;:::o;19834:233::-;19906:7;19947:1;19930:19;;:5;:19;;;19926:60;;19958:28;;;;;;;;;;;;;;19926:60;13993:13;20004:18;:25;20023:5;20004:25;;;;;;;;;;;;;;;;:55;19997:62;;19834:233;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;83664:129::-;2014:13;:11;:13::i;:::-;83772:9:::1;83747:22;:34;;;;83664:129:::0;:::o;82557:75::-;2014:13;:11;:13::i;:::-;82614:6:::1;;;;;;;;;;;82613:7;82604:6;;:16;;;;;;;;;;;;;;;;;;82557:75::o:0;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;83908:117::-;2014:13;:11;:13::i;:::-;84004:9:::1;83985:16;:28;;;;83908:117:::0;:::o;79260:37::-;;;;:::o;23075:104::-;23131:13;23164:7;23157:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23075:104;:::o;81021:194::-;81086:11;80201:9;80187:23;;:10;:23;;;80183:53;;80219:17;;;;;;;;;;;;;;80183:53;80286:10;;80272:11;80255:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:41;80251:65;;;80305:11;;;;;;;;;;;;;;80251:65;80349:18;;80335:11;:32;80331:64;;;80376:19;;;;;;;;;;;;;;80331:64;80413:6;;;;;;;;;;;80410:34;;;80428:16;;;;;;;;;;;;;;80410:34;81119:11:::1;80590:22;;80576:11;80552:21;80562:10;80552:9;:21::i;:::-;:35;;;;:::i;:::-;:60;80549:95;;;80621:23;;;;;;;;;;;;;;80549:95;80677:1;80663:11;:15;:55;;;;80696:22;;80682:11;:36;80663:55;80659:87;;;80727:19;;;;;;;;;;;;;;80659:87;80779:22;80789:11;80779:9;:22::i;:::-;80767:9;:34;80763:65;;;80810:18;;;;;;;;;;;;;;80763:65;81167:34:::2;81177:10;81189:11;81167:9;:34::i;:::-;80459:1:::1;81021:194:::0;;:::o;29948:234::-;30095:8;30043:18;:39;30062:19;:17;:19::i;:::-;30043:39;;;;;;;;;;;;;;;:49;30083:8;30043:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30155:8;30119:55;;30134:19;:17;:19::i;:::-;30119:55;;;30165:8;30119:55;;;;;;:::i;:::-;;;;;;;;29948:234;;:::o;83455:113::-;2014:13;:11;:13::i;:::-;83551:5:::1;83530:18;:26;;;;83455:113:::0;:::o;79484:35::-;;;;:::o;86353:244::-;86512:4;77449:10;77441:18;;:4;:18;;;77437:83;;77476:32;77497:10;77476:20;:32::i;:::-;77437:83;86538:47:::1;86561:4;86567:2;86571:7;86580:4;86538:22;:47::i;:::-;86353:244:::0;;;;;:::o;79203:42::-;;;;:::o;82201:224::-;2014:13;:11;:13::i;:::-;82292:6:::1;80201:9;80187:23;;:10;:23;;;80183:53;;80219:17;;;;;;;;;;;;;;80183:53;80286:10;;80272:11;80255:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:41;80251:65;;;80305:11;;;;;;;;;;;;;;80251:65;80349:18;;80335:11;:32;80331:64;;;80376:19;;;;;;;;;;;;;;80331:64;80413:6;;;;;;;;;;;80410:34;;;80428:16;;;;;;;;;;;;;;80410:34;82317:9:::2;82313:101;82336:8;:15;82332:1;:19;82313:101;;;82370:30;82380:8;82389:1;82380:11;;;;;;;;:::i;:::-;;;;;;;;82393:6;82370:9;:30::i;:::-;82353:3;;;;;;;82313:101;;;;2038:1:::1;82201:224:::0;;:::o;84652:381::-;84726:13;84759:16;84767:7;84759;:16::i;:::-;84754:48;;84784:18;;;;;;;;;;;;;;84754:48;84830:28;84861:10;:8;:10::i;:::-;84830:41;;84920:1;84895:14;84889:28;:32;:132;;;;;;;;;;;;;;;;;84957:14;84973:18;:7;:16;:18::i;:::-;84993:12;84940:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84889:132;84882:139;;;84652:381;;;:::o;79435:34::-;;;;:::o;30339:164::-;30436:4;30460:18;:25;30479:5;30460:25;;;;;;;;;;;;;;;:35;30486:8;30460:35;;;;;;;;;;;;;;;;;;;;;;;;;30453:42;;30339:164;;;;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;::::0;3115:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;30761:282::-;30826:4;30882:7;30863:15;:13;:15::i;:::-;:26;;:66;;;;;30916:13;;30906:7;:23;30863:66;:153;;;;;31015:1;14769:8;30967:17;:26;30985:7;30967:26;;;;;;;;;;;;:44;:49;30863:153;30843:173;;30761:282;;;:::o;53069:105::-;53129:7;53156:10;53149:17;;53069:105;:::o;85092:107::-;85157:7;85186:1;85179:8;;85092:107;:::o;77679:419::-;77918:1;76200:42;77870:45;;;:49;77866:225;;;76200:42;77941;;;77992:4;77999:8;77941:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;77936:144;;78055:8;78036:28;;;;;;;;;;;:::i;:::-;;;;;;;;77936:144;77866:225;77679:419;:::o;33029:2825::-;33171:27;33201;33220:7;33201:18;:27::i;:::-;33171:57;;33286:4;33245:45;;33261:19;33245:45;;;33241:86;;33299:28;;;;;;;;;;;;;;33241:86;33341:27;33370:23;33397:35;33424:7;33397:26;:35::i;:::-;33340:92;;;;33532:68;33557:15;33574:4;33580:19;:17;:19::i;:::-;33532:24;:68::i;:::-;33527:180;;33620:43;33637:4;33643:19;:17;:19::i;:::-;33620:16;:43::i;:::-;33615:92;;33672:35;;;;;;;;;;;;;;33615:92;33527:180;33738:1;33724:16;;:2;:16;;;33720:52;;33749:23;;;;;;;;;;;;;;33720:52;33785:43;33807:4;33813:2;33817:7;33826:1;33785:21;:43::i;:::-;33921:15;33918:160;;;34061:1;34040:19;34033:30;33918:160;34458:18;:24;34477:4;34458:24;;;;;;;;;;;;;;;;34456:26;;;;;;;;;;;;34527:18;:22;34546:2;34527:22;;;;;;;;;;;;;;;;34525:24;;;;;;;;;;;34849:146;34886:2;34935:45;34950:4;34956:2;34960:19;34935:14;:45::i;:::-;15049:8;34907:73;34849:18;:146::i;:::-;34820:17;:26;34838:7;34820:26;;;;;;;;;;;:175;;;;35166:1;15049:8;35115:19;:47;:52;35111:627;;35188:19;35220:1;35210:7;:11;35188:33;;35377:1;35343:17;:30;35361:11;35343:30;;;;;;;;;;;;:35;35339:384;;35481:13;;35466:11;:28;35462:242;;35661:19;35628:17;:30;35646:11;35628:30;;;;;;;;;;;:52;;;;35462:242;35339:384;35169:569;35111:627;35785:7;35781:2;35766:27;;35775:4;35766:27;;;;;;;;;;;;35804:42;35825:4;35831:2;35835:7;35844:1;35804:20;:42::i;:::-;33160:2694;;;33029:2825;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;72652:293::-;72054:1;72786:7;;:19;72778:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;72054:1;72919:7;:18;;;;72652:293::o;72953:213::-;72010:1;73136:7;:22;;;;72953:213::o;35950:193::-;36096:39;36113:4;36119:2;36123:7;36096:39;;;;;;;;;;;;:16;:39::i;:::-;35950:193;;;:::o;25447:1275::-;25514:7;25534:12;25549:7;25534:22;;25617:4;25598:15;:13;:15::i;:::-;:23;25594:1061;;25651:13;;25644:4;:20;25640:1015;;;25689:14;25706:17;:23;25724:4;25706:23;;;;;;;;;;;;25689:40;;25823:1;14769:8;25795:6;:24;:29;25791:845;;26460:113;26477:1;26467:6;:11;26460:113;;26520:17;:25;26538:6;;;;;;;26520:25;;;;;;;;;;;;26511:34;;26460:113;;;26606:6;26599:13;;;;;;25791:845;25666:989;25640:1015;25594:1061;26683:31;;;;;;;;;;;;;;25447:1275;;;;:::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;46901:112::-;46978:27;46988:2;46992:8;46978:27;;;;;;;;;;;;:9;:27::i;:::-;46901:112;;:::o;36741:407::-;36916:31;36929:4;36935:2;36939:7;36916:12;:31::i;:::-;36980:1;36962:2;:14;;;:19;36958:183;;37001:56;37032:4;37038:2;37042:7;37051:5;37001:30;:56::i;:::-;36996:145;;37085:40;;;;;;;;;;;;;;36996:145;36958:183;36741:407;;;;:::o;85279:114::-;85339:13;85374:7;85367:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85279:114;:::o;68333:716::-;68389:13;68440:14;68477:1;68457:17;68468:5;68457:10;:17::i;:::-;:21;68440:38;;68493:20;68527:6;68516:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68493:41;;68549:11;68678:6;68674:2;68670:15;68662:6;68658:28;68651:35;;68715:288;68722:4;68715:288;;;68747:5;;;;;;;;68889:8;68884:2;68877:5;68873:14;68868:30;68863:3;68855:44;68945:2;68936:11;;;;;;:::i;:::-;;;;;68979:1;68970:5;:10;68715:288;68966:21;68715:288;69024:6;69017:13;;;;;68333:716;;;:::o;31924:485::-;32026:27;32055:23;32096:38;32137:15;:24;32153:7;32137:24;;;;;;;;;;;32096:65;;32314:18;32291:41;;32371:19;32365:26;32346:45;;32276:126;31924:485;;;:::o;31152:659::-;31301:11;31466:16;31459:5;31455:28;31446:37;;31626:16;31615:9;31611:32;31598:45;;31776:15;31765:9;31762:30;31754:5;31743:9;31740:20;31737:56;31727:66;;31152:659;;;;;:::o;37810:159::-;;;;;:::o;52378:311::-;52513:7;52533:16;15173:3;52559:19;:41;;52533:68;;15173:3;52627:31;52638:4;52644:2;52648:9;52627:10;:31::i;:::-;52619:40;;:62;;52612:69;;;52378:311;;;;;:::o;27270:450::-;27350:14;27518:16;27511:5;27507:28;27498:37;;27695:5;27681:11;27656:23;27652:41;27649:52;27642:5;27639:63;27629:73;;27270:450;;;;:::o;38634:158::-;;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;46128:689::-;46259:19;46265:2;46269:8;46259:5;:19::i;:::-;46338:1;46320:2;:14;;;:19;46316:483;;46360:11;46374:13;;46360:27;;46406:13;46428:8;46422:3;:14;46406:30;;46455:233;46486:62;46525:1;46529:2;46533:7;;;;;;46542:5;46486:30;:62::i;:::-;46481:167;;46584:40;;;;;;;;;;;;;;46481:167;46683:3;46675:5;:11;46455:233;;46770:3;46753:13;;:20;46749:34;;46775:8;;;46749:34;46341:458;;46316:483;46128:689;;;:::o;39232:716::-;39395:4;39441:2;39416:45;;;39462:19;:17;:19::i;:::-;39483:4;39489:7;39498:5;39416:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39412:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39716:1;39699:6;:13;:18;39695:235;;39745:40;;;;;;;;;;;;;;39695:235;39888:6;39882:13;39873:6;39869:2;39865:15;39858:38;39412:529;39585:54;;;39575:64;;;:6;:64;;;;39568:71;;;39232:716;;;;;;:::o;65199:922::-;65252:7;65272:14;65289:1;65272:18;;65339:6;65330:5;:15;65326:102;;65375:6;65366:15;;;;;;:::i;:::-;;;;;65410:2;65400:12;;;;65326:102;65455:6;65446:5;:15;65442:102;;65491:6;65482:15;;;;;;:::i;:::-;;;;;65526:2;65516:12;;;;65442:102;65571:6;65562:5;:15;65558:102;;65607:6;65598:15;;;;;;:::i;:::-;;;;;65642:2;65632:12;;;;65558:102;65687:5;65678;:14;65674:99;;65722:5;65713:14;;;;;;:::i;:::-;;;;;65756:1;65746:11;;;;65674:99;65800:5;65791;:14;65787:99;;65835:5;65826:14;;;;;;:::i;:::-;;;;;65869:1;65859:11;;;;65787:99;65913:5;65904;:14;65900:99;;65948:5;65939:14;;;;;;:::i;:::-;;;;;65982:1;65972:11;;;;65900:99;66026:5;66017;:14;66013:66;;66062:1;66052:11;;;;66013:66;66107:6;66100:13;;;65199:922;;;:::o;52079:147::-;52216:6;52079:147;;;;;:::o;40410:2966::-;40483:20;40506:13;;40483:36;;40546:1;40534:8;:13;40530:44;;40556:18;;;;;;;;;;;;;;40530:44;40587:61;40617:1;40621:2;40625:12;40639:8;40587:21;:61::i;:::-;41131:1;14131:2;41101:1;:26;;41100:32;41088:8;:45;41062:18;:22;41081:2;41062:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41410:139;41447:2;41501:33;41524:1;41528:2;41532:1;41501:14;:33::i;:::-;41468:30;41489:8;41468:20;:30::i;:::-;:66;41410:18;:139::i;:::-;41376:17;:31;41394:12;41376:31;;;;;;;;;;;:173;;;;41566:16;41597:11;41626:8;41611:12;:23;41597:37;;42147:16;42143:2;42139:25;42127:37;;42519:12;42479:8;42438:1;42376:25;42317:1;42256;42229:335;42890:1;42876:12;42872:20;42830:346;42931:3;42922:7;42919:16;42830:346;;43149:7;43139:8;43136:1;43109:25;43106:1;43103;43098:59;42984:1;42975:7;42971:15;42960:26;;42830:346;;;42834:77;43221:1;43209:8;:13;43205:45;;43231:19;;;;;;;;;;;;;;43205:45;43283:3;43267:13;:19;;;;40836:2462;;43308:60;43337:1;43341:2;43345:12;43359:8;43308:20;:60::i;:::-;40472:2904;40410:2966;;:::o;27822:324::-;27892:14;28125:1;28115:8;28112:15;28086:24;28082:46;28072:56;;27822:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:122::-;2909:24;2927:5;2909:24;:::i;:::-;2902:5;2899:35;2889:63;;2948:1;2945;2938:12;2889:63;2836:122;:::o;2964:139::-;3010:5;3048:6;3035:20;3026:29;;3064:33;3091:5;3064:33;:::i;:::-;2964:139;;;;:::o;3109:329::-;3168:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:119;;;3223:79;;:::i;:::-;3185:119;3343:1;3368:53;3413:7;3404:6;3393:9;3389:22;3368:53;:::i;:::-;3358:63;;3314:117;3109:329;;;;:::o;3444:126::-;3481:7;3521:42;3514:5;3510:54;3499:65;;3444:126;;;:::o;3576:96::-;3613:7;3642:24;3660:5;3642:24;:::i;:::-;3631:35;;3576:96;;;:::o;3678:118::-;3765:24;3783:5;3765:24;:::i;:::-;3760:3;3753:37;3678:118;;:::o;3802:222::-;3895:4;3933:2;3922:9;3918:18;3910:26;;3946:71;4014:1;4003:9;3999:17;3990:6;3946:71;:::i;:::-;3802:222;;;;:::o;4030:122::-;4103:24;4121:5;4103:24;:::i;:::-;4096:5;4093:35;4083:63;;4142:1;4139;4132:12;4083:63;4030:122;:::o;4158:139::-;4204:5;4242:6;4229:20;4220:29;;4258:33;4285:5;4258:33;:::i;:::-;4158:139;;;;:::o;4303:474::-;4371:6;4379;4428:2;4416:9;4407:7;4403:23;4399:32;4396:119;;;4434:79;;:::i;:::-;4396:119;4554:1;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4525:117;4681:2;4707:53;4752:7;4743:6;4732:9;4728:22;4707:53;:::i;:::-;4697:63;;4652:118;4303:474;;;;;:::o;4783:118::-;4870:24;4888:5;4870:24;:::i;:::-;4865:3;4858:37;4783:118;;:::o;4907:222::-;5000:4;5038:2;5027:9;5023:18;5015:26;;5051:71;5119:1;5108:9;5104:17;5095:6;5051:71;:::i;:::-;4907:222;;;;:::o;5135:619::-;5212:6;5220;5228;5277:2;5265:9;5256:7;5252:23;5248:32;5245:119;;;5283:79;;:::i;:::-;5245:119;5403:1;5428:53;5473:7;5464:6;5453:9;5449:22;5428:53;:::i;:::-;5418:63;;5374:117;5530:2;5556:53;5601:7;5592:6;5581:9;5577:22;5556:53;:::i;:::-;5546:63;;5501:118;5658:2;5684:53;5729:7;5720:6;5709:9;5705:22;5684:53;:::i;:::-;5674:63;;5629:118;5135:619;;;;;:::o;5760:60::-;5788:3;5809:5;5802:12;;5760:60;;;:::o;5826:142::-;5876:9;5909:53;5927:34;5936:24;5954:5;5936:24;:::i;:::-;5927:34;:::i;:::-;5909:53;:::i;:::-;5896:66;;5826:142;;;:::o;5974:126::-;6024:9;6057:37;6088:5;6057:37;:::i;:::-;6044:50;;5974:126;;;:::o;6106:158::-;6188:9;6221:37;6252:5;6221:37;:::i;:::-;6208:50;;6106:158;;;:::o;6270:195::-;6389:69;6452:5;6389:69;:::i;:::-;6384:3;6377:82;6270:195;;:::o;6471:286::-;6596:4;6634:2;6623:9;6619:18;6611:26;;6647:103;6747:1;6736:9;6732:17;6723:6;6647:103;:::i;:::-;6471:286;;;;:::o;6763:117::-;6872:1;6869;6862:12;6886:117;6995:1;6992;6985:12;7009:180;7057:77;7054:1;7047:88;7154:4;7151:1;7144:15;7178:4;7175:1;7168:15;7195:281;7278:27;7300:4;7278:27;:::i;:::-;7270:6;7266:40;7408:6;7396:10;7393:22;7372:18;7360:10;7357:34;7354:62;7351:88;;;7419:18;;:::i;:::-;7351:88;7459:10;7455:2;7448:22;7238:238;7195:281;;:::o;7482:129::-;7516:6;7543:20;;:::i;:::-;7533:30;;7572:33;7600:4;7592:6;7572:33;:::i;:::-;7482:129;;;:::o;7617:308::-;7679:4;7769:18;7761:6;7758:30;7755:56;;;7791:18;;:::i;:::-;7755:56;7829:29;7851:6;7829:29;:::i;:::-;7821:37;;7913:4;7907;7903:15;7895:23;;7617:308;;;:::o;7931:148::-;8029:6;8024:3;8019;8006:30;8070:1;8061:6;8056:3;8052:16;8045:27;7931:148;;;:::o;8085:425::-;8163:5;8188:66;8204:49;8246:6;8204:49;:::i;:::-;8188:66;:::i;:::-;8179:75;;8277:6;8270:5;8263:21;8315:4;8308:5;8304:16;8353:3;8344:6;8339:3;8335:16;8332:25;8329:112;;;8360:79;;:::i;:::-;8329:112;8450:54;8497:6;8492:3;8487;8450:54;:::i;:::-;8169:341;8085:425;;;;;:::o;8530:340::-;8586:5;8635:3;8628:4;8620:6;8616:17;8612:27;8602:122;;8643:79;;:::i;:::-;8602:122;8760:6;8747:20;8785:79;8860:3;8852:6;8845:4;8837:6;8833:17;8785:79;:::i;:::-;8776:88;;8592:278;8530:340;;;;:::o;8876:509::-;8945:6;8994:2;8982:9;8973:7;8969:23;8965:32;8962:119;;;9000:79;;:::i;:::-;8962:119;9148:1;9137:9;9133:17;9120:31;9178:18;9170:6;9167:30;9164:117;;;9200:79;;:::i;:::-;9164:117;9305:63;9360:7;9351:6;9340:9;9336:22;9305:63;:::i;:::-;9295:73;;9091:287;8876:509;;;;:::o;9391:329::-;9450:6;9499:2;9487:9;9478:7;9474:23;9470:32;9467:119;;;9505:79;;:::i;:::-;9467:119;9625:1;9650:53;9695:7;9686:6;9675:9;9671:22;9650:53;:::i;:::-;9640:63;;9596:117;9391:329;;;;:::o;9726:116::-;9796:21;9811:5;9796:21;:::i;:::-;9789:5;9786:32;9776:60;;9832:1;9829;9822:12;9776:60;9726:116;:::o;9848:133::-;9891:5;9929:6;9916:20;9907:29;;9945:30;9969:5;9945:30;:::i;:::-;9848:133;;;;:::o;9987:468::-;10052:6;10060;10109:2;10097:9;10088:7;10084:23;10080:32;10077:119;;;10115:79;;:::i;:::-;10077:119;10235:1;10260:53;10305:7;10296:6;10285:9;10281:22;10260:53;:::i;:::-;10250:63;;10206:117;10362:2;10388:50;10430:7;10421:6;10410:9;10406:22;10388:50;:::i;:::-;10378:60;;10333:115;9987:468;;;;;:::o;10461:307::-;10522:4;10612:18;10604:6;10601:30;10598:56;;;10634:18;;:::i;:::-;10598:56;10672:29;10694:6;10672:29;:::i;:::-;10664:37;;10756:4;10750;10746:15;10738:23;;10461:307;;;:::o;10774:423::-;10851:5;10876:65;10892:48;10933:6;10892:48;:::i;:::-;10876:65;:::i;:::-;10867:74;;10964:6;10957:5;10950:21;11002:4;10995:5;10991:16;11040:3;11031:6;11026:3;11022:16;11019:25;11016:112;;;11047:79;;:::i;:::-;11016:112;11137:54;11184:6;11179:3;11174;11137:54;:::i;:::-;10857:340;10774:423;;;;;:::o;11216:338::-;11271:5;11320:3;11313:4;11305:6;11301:17;11297:27;11287:122;;11328:79;;:::i;:::-;11287:122;11445:6;11432:20;11470:78;11544:3;11536:6;11529:4;11521:6;11517:17;11470:78;:::i;:::-;11461:87;;11277:277;11216:338;;;;:::o;11560:943::-;11655:6;11663;11671;11679;11728:3;11716:9;11707:7;11703:23;11699:33;11696:120;;;11735:79;;:::i;:::-;11696:120;11855:1;11880:53;11925:7;11916:6;11905:9;11901:22;11880:53;:::i;:::-;11870:63;;11826:117;11982:2;12008:53;12053:7;12044:6;12033:9;12029:22;12008:53;:::i;:::-;11998:63;;11953:118;12110:2;12136:53;12181:7;12172:6;12161:9;12157:22;12136:53;:::i;:::-;12126:63;;12081:118;12266:2;12255:9;12251:18;12238:32;12297:18;12289:6;12286:30;12283:117;;;12319:79;;:::i;:::-;12283:117;12424:62;12478:7;12469:6;12458:9;12454:22;12424:62;:::i;:::-;12414:72;;12209:287;11560:943;;;;;;;:::o;12509:311::-;12586:4;12676:18;12668:6;12665:30;12662:56;;;12698:18;;:::i;:::-;12662:56;12748:4;12740:6;12736:17;12728:25;;12808:4;12802;12798:15;12790:23;;12509:311;;;:::o;12826:117::-;12935:1;12932;12925:12;12966:710;13062:5;13087:81;13103:64;13160:6;13103:64;:::i;:::-;13087:81;:::i;:::-;13078:90;;13188:5;13217:6;13210:5;13203:21;13251:4;13244:5;13240:16;13233:23;;13304:4;13296:6;13292:17;13284:6;13280:30;13333:3;13325:6;13322:15;13319:122;;;13352:79;;:::i;:::-;13319:122;13467:6;13450:220;13484:6;13479:3;13476:15;13450:220;;;13559:3;13588:37;13621:3;13609:10;13588:37;:::i;:::-;13583:3;13576:50;13655:4;13650:3;13646:14;13639:21;;13526:144;13510:4;13505:3;13501:14;13494:21;;13450:220;;;13454:21;13068:608;;12966:710;;;;;:::o;13699:370::-;13770:5;13819:3;13812:4;13804:6;13800:17;13796:27;13786:122;;13827:79;;:::i;:::-;13786:122;13944:6;13931:20;13969:94;14059:3;14051:6;14044:4;14036:6;14032:17;13969:94;:::i;:::-;13960:103;;13776:293;13699:370;;;;:::o;14075:684::-;14168:6;14176;14225:2;14213:9;14204:7;14200:23;14196:32;14193:119;;;14231:79;;:::i;:::-;14193:119;14379:1;14368:9;14364:17;14351:31;14409:18;14401:6;14398:30;14395:117;;;14431:79;;:::i;:::-;14395:117;14536:78;14606:7;14597:6;14586:9;14582:22;14536:78;:::i;:::-;14526:88;;14322:302;14663:2;14689:53;14734:7;14725:6;14714:9;14710:22;14689:53;:::i;:::-;14679:63;;14634:118;14075:684;;;;;:::o;14765:474::-;14833:6;14841;14890:2;14878:9;14869:7;14865:23;14861:32;14858:119;;;14896:79;;:::i;:::-;14858:119;15016:1;15041:53;15086:7;15077:6;15066:9;15062:22;15041:53;:::i;:::-;15031:63;;14987:117;15143:2;15169:53;15214:7;15205:6;15194:9;15190:22;15169:53;:::i;:::-;15159:63;;15114:118;14765:474;;;;;:::o;15245:180::-;15293:77;15290:1;15283:88;15390:4;15387:1;15380:15;15414:4;15411:1;15404:15;15431:320;15475:6;15512:1;15506:4;15502:12;15492:22;;15559:1;15553:4;15549:12;15580:18;15570:81;;15636:4;15628:6;15624:17;15614:27;;15570:81;15698:2;15690:6;15687:14;15667:18;15664:38;15661:84;;15717:18;;:::i;:::-;15661:84;15482:269;15431:320;;;:::o;15757:180::-;15805:77;15802:1;15795:88;15902:4;15899:1;15892:15;15926:4;15923:1;15916:15;15943:191;15983:3;16002:20;16020:1;16002:20;:::i;:::-;15997:25;;16036:20;16054:1;16036:20;:::i;:::-;16031:25;;16079:1;16076;16072:9;16065:16;;16100:3;16097:1;16094:10;16091:36;;;16107:18;;:::i;:::-;16091:36;15943:191;;;;:::o;16140:194::-;16180:4;16200:20;16218:1;16200:20;:::i;:::-;16195:25;;16234:20;16252:1;16234:20;:::i;:::-;16229:25;;16278:1;16275;16271:9;16263:17;;16302:1;16296:4;16293:11;16290:37;;;16307:18;;:::i;:::-;16290:37;16140:194;;;;:::o;16340:410::-;16380:7;16403:20;16421:1;16403:20;:::i;:::-;16398:25;;16437:20;16455:1;16437:20;:::i;:::-;16432:25;;16492:1;16489;16485:9;16514:30;16532:11;16514:30;:::i;:::-;16503:41;;16693:1;16684:7;16680:15;16677:1;16674:22;16654:1;16647:9;16627:83;16604:139;;16723:18;;:::i;:::-;16604:139;16388:362;16340:410;;;;:::o;16756:147::-;16857:11;16894:3;16879:18;;16756:147;;;;:::o;16909:114::-;;:::o;17029:398::-;17188:3;17209:83;17290:1;17285:3;17209:83;:::i;:::-;17202:90;;17301:93;17390:3;17301:93;:::i;:::-;17419:1;17414:3;17410:11;17403:18;;17029:398;;;:::o;17433:379::-;17617:3;17639:147;17782:3;17639:147;:::i;:::-;17632:154;;17803:3;17796:10;;17433:379;;;:::o;17818:141::-;17867:4;17890:3;17882:11;;17913:3;17910:1;17903:14;17947:4;17944:1;17934:18;17926:26;;17818:141;;;:::o;17965:93::-;18002:6;18049:2;18044;18037:5;18033:14;18029:23;18019:33;;17965:93;;;:::o;18064:107::-;18108:8;18158:5;18152:4;18148:16;18127:37;;18064:107;;;;:::o;18177:393::-;18246:6;18296:1;18284:10;18280:18;18319:97;18349:66;18338:9;18319:97;:::i;:::-;18437:39;18467:8;18456:9;18437:39;:::i;:::-;18425:51;;18509:4;18505:9;18498:5;18494:21;18485:30;;18558:4;18548:8;18544:19;18537:5;18534:30;18524:40;;18253:317;;18177:393;;;;;:::o;18576:142::-;18626:9;18659:53;18677:34;18686:24;18704:5;18686:24;:::i;:::-;18677:34;:::i;:::-;18659:53;:::i;:::-;18646:66;;18576:142;;;:::o;18724:75::-;18767:3;18788:5;18781:12;;18724:75;;;:::o;18805:269::-;18915:39;18946:7;18915:39;:::i;:::-;18976:91;19025:41;19049:16;19025:41;:::i;:::-;19017:6;19010:4;19004:11;18976:91;:::i;:::-;18970:4;18963:105;18881:193;18805:269;;;:::o;19080:73::-;19125:3;19080:73;:::o;19159:189::-;19236:32;;:::i;:::-;19277:65;19335:6;19327;19321:4;19277:65;:::i;:::-;19212:136;19159:189;;:::o;19354:186::-;19414:120;19431:3;19424:5;19421:14;19414:120;;;19485:39;19522:1;19515:5;19485:39;:::i;:::-;19458:1;19451:5;19447:13;19438:22;;19414:120;;;19354:186;;:::o;19546:543::-;19647:2;19642:3;19639:11;19636:446;;;19681:38;19713:5;19681:38;:::i;:::-;19765:29;19783:10;19765:29;:::i;:::-;19755:8;19751:44;19948:2;19936:10;19933:18;19930:49;;;19969:8;19954:23;;19930:49;19992:80;20048:22;20066:3;20048:22;:::i;:::-;20038:8;20034:37;20021:11;19992:80;:::i;:::-;19651:431;;19636:446;19546:543;;;:::o;20095:117::-;20149:8;20199:5;20193:4;20189:16;20168:37;;20095:117;;;;:::o;20218:169::-;20262:6;20295:51;20343:1;20339:6;20331:5;20328:1;20324:13;20295:51;:::i;:::-;20291:56;20376:4;20370;20366:15;20356:25;;20269:118;20218:169;;;;:::o;20392:295::-;20468:4;20614:29;20639:3;20633:4;20614:29;:::i;:::-;20606:37;;20676:3;20673:1;20669:11;20663:4;20660:21;20652:29;;20392:295;;;;:::o;20692:1395::-;20809:37;20842:3;20809:37;:::i;:::-;20911:18;20903:6;20900:30;20897:56;;;20933:18;;:::i;:::-;20897:56;20977:38;21009:4;21003:11;20977:38;:::i;:::-;21062:67;21122:6;21114;21108:4;21062:67;:::i;:::-;21156:1;21180:4;21167:17;;21212:2;21204:6;21201:14;21229:1;21224:618;;;;21886:1;21903:6;21900:77;;;21952:9;21947:3;21943:19;21937:26;21928:35;;21900:77;22003:67;22063:6;22056:5;22003:67;:::i;:::-;21997:4;21990:81;21859:222;21194:887;;21224:618;21276:4;21272:9;21264:6;21260:22;21310:37;21342:4;21310:37;:::i;:::-;21369:1;21383:208;21397:7;21394:1;21391:14;21383:208;;;21476:9;21471:3;21467:19;21461:26;21453:6;21446:42;21527:1;21519:6;21515:14;21505:24;;21574:2;21563:9;21559:18;21546:31;;21420:4;21417:1;21413:12;21408:17;;21383:208;;;21619:6;21610:7;21607:19;21604:179;;;21677:9;21672:3;21668:19;21662:26;21720:48;21762:4;21754:6;21750:17;21739:9;21720:48;:::i;:::-;21712:6;21705:64;21627:156;21604:179;21829:1;21825;21817:6;21813:14;21809:22;21803:4;21796:36;21231:611;;;21194:887;;20784:1303;;;20692:1395;;:::o;22093:180::-;22141:77;22138:1;22131:88;22238:4;22235:1;22228:15;22262:4;22259:1;22252:15;22279:148;22381:11;22418:3;22403:18;;22279:148;;;;:::o;22433:390::-;22539:3;22567:39;22600:5;22567:39;:::i;:::-;22622:89;22704:6;22699:3;22622:89;:::i;:::-;22615:96;;22720:65;22778:6;22773:3;22766:4;22759:5;22755:16;22720:65;:::i;:::-;22810:6;22805:3;22801:16;22794:23;;22543:280;22433:390;;;;:::o;22853:874::-;22956:3;22993:5;22987:12;23022:36;23048:9;23022:36;:::i;:::-;23074:89;23156:6;23151:3;23074:89;:::i;:::-;23067:96;;23194:1;23183:9;23179:17;23210:1;23205:166;;;;23385:1;23380:341;;;;23172:549;;23205:166;23289:4;23285:9;23274;23270:25;23265:3;23258:38;23351:6;23344:14;23337:22;23329:6;23325:35;23320:3;23316:45;23309:52;;23205:166;;23380:341;23447:38;23479:5;23447:38;:::i;:::-;23507:1;23521:154;23535:6;23532:1;23529:13;23521:154;;;23609:7;23603:14;23599:1;23594:3;23590:11;23583:35;23659:1;23650:7;23646:15;23635:26;;23557:4;23554:1;23550:12;23545:17;;23521:154;;;23704:6;23699:3;23695:16;23688:23;;23387:334;;23172:549;;22960:767;;22853:874;;;;:::o;23733:589::-;23958:3;23980:95;24071:3;24062:6;23980:95;:::i;:::-;23973:102;;24092:95;24183:3;24174:6;24092:95;:::i;:::-;24085:102;;24204:92;24292:3;24283:6;24204:92;:::i;:::-;24197:99;;24313:3;24306:10;;23733:589;;;;;;:::o;24328:225::-;24468:34;24464:1;24456:6;24452:14;24445:58;24537:8;24532:2;24524:6;24520:15;24513:33;24328:225;:::o;24559:366::-;24701:3;24722:67;24786:2;24781:3;24722:67;:::i;:::-;24715:74;;24798:93;24887:3;24798:93;:::i;:::-;24916:2;24911:3;24907:12;24900:19;;24559:366;;;:::o;24931:419::-;25097:4;25135:2;25124:9;25120:18;25112:26;;25184:9;25178:4;25174:20;25170:1;25159:9;25155:17;25148:47;25212:131;25338:4;25212:131;:::i;:::-;25204:139;;24931:419;;;:::o;25356:332::-;25477:4;25515:2;25504:9;25500:18;25492:26;;25528:71;25596:1;25585:9;25581:17;25572:6;25528:71;:::i;:::-;25609:72;25677:2;25666:9;25662:18;25653:6;25609:72;:::i;:::-;25356:332;;;;;:::o;25694:137::-;25748:5;25779:6;25773:13;25764:22;;25795:30;25819:5;25795:30;:::i;:::-;25694:137;;;;:::o;25837:345::-;25904:6;25953:2;25941:9;25932:7;25928:23;25924:32;25921:119;;;25959:79;;:::i;:::-;25921:119;26079:1;26104:61;26157:7;26148:6;26137:9;26133:22;26104:61;:::i;:::-;26094:71;;26050:125;25837:345;;;;:::o;26188:182::-;26328:34;26324:1;26316:6;26312:14;26305:58;26188:182;:::o;26376:366::-;26518:3;26539:67;26603:2;26598:3;26539:67;:::i;:::-;26532:74;;26615:93;26704:3;26615:93;:::i;:::-;26733:2;26728:3;26724:12;26717:19;;26376:366;;;:::o;26748:419::-;26914:4;26952:2;26941:9;26937:18;26929:26;;27001:9;26995:4;26991:20;26987:1;26976:9;26972:17;26965:47;27029:131;27155:4;27029:131;:::i;:::-;27021:139;;26748:419;;;:::o;27173:181::-;27313:33;27309:1;27301:6;27297:14;27290:57;27173:181;:::o;27360:366::-;27502:3;27523:67;27587:2;27582:3;27523:67;:::i;:::-;27516:74;;27599:93;27688:3;27599:93;:::i;:::-;27717:2;27712:3;27708:12;27701:19;;27360:366;;;:::o;27732:419::-;27898:4;27936:2;27925:9;27921:18;27913:26;;27985:9;27979:4;27975:20;27971:1;27960:9;27956:17;27949:47;28013:131;28139:4;28013:131;:::i;:::-;28005:139;;27732:419;;;:::o;28157:180::-;28205:77;28202:1;28195:88;28302:4;28299:1;28292:15;28326:4;28323:1;28316:15;28343:98;28394:6;28428:5;28422:12;28412:22;;28343:98;;;:::o;28447:168::-;28530:11;28564:6;28559:3;28552:19;28604:4;28599:3;28595:14;28580:29;;28447:168;;;;:::o;28621:373::-;28707:3;28735:38;28767:5;28735:38;:::i;:::-;28789:70;28852:6;28847:3;28789:70;:::i;:::-;28782:77;;28868:65;28926:6;28921:3;28914:4;28907:5;28903:16;28868:65;:::i;:::-;28958:29;28980:6;28958:29;:::i;:::-;28953:3;28949:39;28942:46;;28711:283;28621:373;;;;:::o;29000:640::-;29195:4;29233:3;29222:9;29218:19;29210:27;;29247:71;29315:1;29304:9;29300:17;29291:6;29247:71;:::i;:::-;29328:72;29396:2;29385:9;29381:18;29372:6;29328:72;:::i;:::-;29410;29478:2;29467:9;29463:18;29454:6;29410:72;:::i;:::-;29529:9;29523:4;29519:20;29514:2;29503:9;29499:18;29492:48;29557:76;29628:4;29619:6;29557:76;:::i;:::-;29549:84;;29000:640;;;;;;;:::o;29646:141::-;29702:5;29733:6;29727:13;29718:22;;29749:32;29775:5;29749:32;:::i;:::-;29646:141;;;;:::o;29793:349::-;29862:6;29911:2;29899:9;29890:7;29886:23;29882:32;29879:119;;;29917:79;;:::i;:::-;29879:119;30037:1;30062:63;30117:7;30108:6;30097:9;30093:22;30062:63;:::i;:::-;30052:73;;30008:127;29793:349;;;;:::o

Swarm Source

ipfs://b2850e9036b5265a9003282371a8326a8af6f8ec6e52be86d7d03a99a62e6209
[ 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.