ETH Price: $3,284.36 (+1.17%)
Gas: 13 Gwei

Token

FashionDuck (FashionDuck)
 

Overview

Max Total Supply

3,999 FashionDuck

Holders

221

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
20 FashionDuck
0x3BDffAAb7159804Cd9e7299B602372077611eAc9
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ArtGobbler

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-03
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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

// File: contracts/FashionDuck.sol


pragma solidity ^0.8.7;




contract ArtGobbler is ERC721A,Ownable {
    using Strings for uint256;

    enum EPublicMintStatus {
        NOTACTIVE,
        ALLOWLIST_MINT,
        PUBLIC_MINT,
        CLOSED
    }

    EPublicMintStatus public publicMintStatus;

    string  public baseTokenURI;
    string  public defaultTokenURI;
    uint256 public maxSupply;
    uint256 public publicSalePrice;
    mapping(address => uint256) public usermint;

    constructor(
        string memory _baseTokenURI,
        uint   _maxSupply,
        uint   _publicSalePrice
    ) ERC721A ("FashionDuck", "FashionDuck") {
        baseTokenURI = _baseTokenURI;
        maxSupply = _maxSupply;
        publicSalePrice = _publicSalePrice;
        _safeMint(_msgSender(), 1);
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "Must from real wallet address");
        _;
    }

    function mint(uint256 _quantity) external callerIsUser payable   {
        require(publicMintStatus==EPublicMintStatus.PUBLIC_MINT, "Public sale closed");
        require(_quantity <= 20, "Invalid quantity");
        require(totalSupply() + _quantity <= maxSupply, "Exceed supply");

        uint256 _remainFreeQuantity = 0;
        if (1 > usermint[msg.sender] ) {
            _remainFreeQuantity = 1 - usermint[msg.sender];
        }

        uint256 _needPayPrice = 0;
        if (_quantity > _remainFreeQuantity) {
            _needPayPrice = (_quantity - _remainFreeQuantity) * publicSalePrice;
        }

        require(msg.value >= _needPayPrice, "Ether is not enough");
        usermint[msg.sender]+=_quantity;
        _safeMint(msg.sender, _quantity);
    }


    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return
        bytes(currentBaseURI).length > 0 ? string(
            abi.encodePacked(
                currentBaseURI,
                tokenId.toString(),
                ".json"
            )
        ) : defaultTokenURI;
    }

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

    function setBaseURI(string calldata _baseTokenURI) external onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function setDefaultURI(string calldata _defaultURI) external onlyOwner {
        defaultTokenURI = _defaultURI;
    }

    function setPublicPrice(uint256 mintprice) external onlyOwner {
        publicSalePrice = mintprice;
    }

    function setPublicMintStatus(uint256 status) external onlyOwner {
        publicMintStatus = EPublicMintStatus(status);
    }

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

    function marketMint(address[] memory marketmintaddress,uint256[] memory mintquantity) public payable onlyOwner  {
        for (uint256 i = 0; i < marketmintaddress.length; i++) {
            require(totalSupply() + mintquantity[i] <= maxSupply, "Exceed supply");
            _safeMint(marketmintaddress[i], mintquantity[i]);
        }
    }

    function withdrawMoney() external onlyOwner {
        (bool success,) = msg.sender.call{value : address(this).balance}("");
        require(success, "Transfer failed.");
    }
    function numberMinted(address owner) external view returns (uint256) {
     return _numberMinted(owner);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_publicSalePrice","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"marketmintaddress","type":"address[]"},{"internalType":"uint256[]","name":"mintquantity","type":"uint256[]"}],"name":"marketMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintStatus","outputs":[{"internalType":"enum ArtGobbler.EPublicMintStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_defaultURI","type":"string"}],"name":"setDefaultURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"status","type":"uint256"}],"name":"setPublicMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintprice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"usermint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620041a6380380620041a683398181016040528101906200003791906200087e565b6040518060400160405280600b81526020017f46617368696f6e4475636b0000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f46617368696f6e4475636b0000000000000000000000000000000000000000008152508160029080519060200190620000bb929190620006f0565b508060039080519060200190620000d4929190620006f0565b50620000e56200015f60201b60201c565b60008190555050506200010d620001016200016860201b60201c565b6200017060201b60201c565b826009908051906020019062000125929190620006f0565b5081600b8190555080600c8190555062000156620001486200016860201b60201c565b60016200023660201b60201c565b50505062000bee565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002588282604051806020016040528060008152506200025c60201b60201c565b5050565b6200026e83836200030d60201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200030857600080549050600083820390505b620002b76000868380600101945086620004f660201b60201c565b620002ee576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106200029c5781600054146200030557600080fd5b50505b505050565b60008054905060008214156200034f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200036460008483856200066860201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620003f383620003d560008660006200066e60201b60201c565b620003e6856200069e60201b60201c565b17620006ae60201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200049657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000459565b506000821415620004d3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620004f16000848385620006d960201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000524620006df60201b60201c565b8786866040518563ffffffff1660e01b81526004016200054894939291906200095c565b602060405180830381600087803b1580156200056357600080fd5b505af19250505080156200059757506040513d601f19601f820116820180604052508101906200059491906200084c565b60015b62000615573d8060008114620005ca576040519150601f19603f3d011682016040523d82523d6000602084013e620005cf565b606091505b506000815114156200060d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e86200068d868684620006e760201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b828054620006fe9062000acb565b90600052602060002090601f0160209004810192826200072257600085556200076e565b82601f106200073d57805160ff19168380011785556200076e565b828001600101855582156200076e579182015b828111156200076d57825182559160200191906001019062000750565b5b5090506200077d919062000781565b5090565b5b808211156200079c57600081600090555060010162000782565b5090565b6000620007b7620007b184620009d9565b620009b0565b905082815260208101848484011115620007d657620007d562000b9a565b5b620007e384828562000a95565b509392505050565b600081519050620007fc8162000bba565b92915050565b600082601f8301126200081a576200081962000b95565b5b81516200082c848260208601620007a0565b91505092915050565b600081519050620008468162000bd4565b92915050565b60006020828403121562000865576200086462000ba4565b5b60006200087584828501620007eb565b91505092915050565b6000806000606084860312156200089a576200089962000ba4565b5b600084015167ffffffffffffffff811115620008bb57620008ba62000b9f565b5b620008c98682870162000802565b9350506020620008dc8682870162000835565b9250506040620008ef8682870162000835565b9150509250925092565b620009048162000a2b565b82525050565b6000620009178262000a0f565b62000923818562000a1a565b93506200093581856020860162000a95565b620009408162000ba9565b840191505092915050565b620009568162000a8b565b82525050565b6000608082019050620009736000830187620008f9565b620009826020830186620008f9565b6200099160408301856200094b565b8181036060830152620009a581846200090a565b905095945050505050565b6000620009bc620009cf565b9050620009ca828262000b01565b919050565b6000604051905090565b600067ffffffffffffffff821115620009f757620009f662000b66565b5b62000a028262000ba9565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600062000a388262000a6b565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000ab557808201518184015260208101905062000a98565b8381111562000ac5576000848401525b50505050565b6000600282049050600182168062000ae457607f821691505b6020821081141562000afb5762000afa62000b37565b5b50919050565b62000b0c8262000ba9565b810181811067ffffffffffffffff8211171562000b2e5762000b2d62000b66565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000bc58162000a3f565b811462000bd157600080fd5b50565b62000bdf8162000a8b565b811462000beb57600080fd5b50565b6135a88062000bfe6000396000f3fe6080604052600436106101d85760003560e01c8063963bfe1211610102578063c87b56dd11610095578063dc33e68111610064578063dc33e68114610689578063e9014f9d146106c6578063e985e9c5146106e2578063f2fde38b1461071f576101d8565b8063c87b56dd146105cd578063d547cfb71461060a578063d5abeb0114610635578063da1b9e0814610660576101d8565b8063ac446002116100d1578063ac4460021461053b578063ae3aab3b14610552578063b88d4fde1461057b578063c6275255146105a4576101d8565b8063963bfe12146104a05780639b6860c8146104cb578063a0712d68146104f6578063a22cb46514610512576101d8565b806342842e0e1161017a57806370a082311161014957806370a08231146103f6578063715018a6146104335780638da5cb5b1461044a57806395d89b4114610475576101d8565b806342842e0e1461032a57806355f804b3146103535780636352211e1461037c578063648b5be1146103b9576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d657806326202370146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612895565b610748565b6040516102119190612c74565b60405180910390f35b34801561022657600080fd5b5061022f6107da565b60405161023c9190612caa565b60405180910390f35b34801561025157600080fd5b5061026c6004803603810190610267919061293c565b61086c565b6040516102799190612c0d565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906127dd565b6108eb565b005b3480156102b757600080fd5b506102c0610a2f565b6040516102cd9190612dec565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f891906126c7565b610a46565b005b34801561030b57600080fd5b50610314610d6b565b6040516103219190612c8f565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c91906126c7565b610d7e565b005b34801561035f57600080fd5b5061037a600480360381019061037591906128ef565b610d9e565b005b34801561038857600080fd5b506103a3600480360381019061039e919061293c565b610dbc565b6040516103b09190612c0d565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db919061265a565b610dce565b6040516103ed9190612dec565b60405180910390f35b34801561040257600080fd5b5061041d6004803603810190610418919061265a565b610de6565b60405161042a9190612dec565b60405180910390f35b34801561043f57600080fd5b50610448610e9f565b005b34801561045657600080fd5b5061045f610eb3565b60405161046c9190612c0d565b60405180910390f35b34801561048157600080fd5b5061048a610edd565b6040516104979190612caa565b60405180910390f35b3480156104ac57600080fd5b506104b5610f6f565b6040516104c29190612caa565b60405180910390f35b3480156104d757600080fd5b506104e0610ffd565b6040516104ed9190612dec565b60405180910390f35b610510600480360381019061050b919061293c565b611003565b005b34801561051e57600080fd5b506105396004803603810190610534919061279d565b6112e9565b005b34801561054757600080fd5b50610550611461565b005b34801561055e57600080fd5b506105796004803603810190610574919061293c565b611518565b005b34801561058757600080fd5b506105a2600480360381019061059d919061271a565b61155f565b005b3480156105b057600080fd5b506105cb60048036038101906105c6919061293c565b6115d2565b005b3480156105d957600080fd5b506105f460048036038101906105ef919061293c565b6115e4565b6040516106019190612caa565b60405180910390f35b34801561061657600080fd5b5061061f611706565b60405161062c9190612caa565b60405180910390f35b34801561064157600080fd5b5061064a611794565b6040516106579190612dec565b60405180910390f35b34801561066c57600080fd5b50610687600480360381019061068291906128ef565b61179a565b005b34801561069557600080fd5b506106b060048036038101906106ab919061265a565b6117b8565b6040516106bd9190612dec565b60405180910390f35b6106e060048036038101906106db919061281d565b6117ca565b005b3480156106ee57600080fd5b5061070960048036038101906107049190612687565b6118a5565b6040516107169190612c74565b60405180910390f35b34801561072b57600080fd5b506107466004803603810190610741919061265a565b611939565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107e9906130f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610815906130f3565b80156108625780601f1061083757610100808354040283529160200191610862565b820191906000526020600020905b81548152906001019060200180831161084557829003601f168201915b5050505050905090565b6000610877826119bd565b6108ad576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f682610dbc565b90508073ffffffffffffffffffffffffffffffffffffffff16610917611a1c565b73ffffffffffffffffffffffffffffffffffffffff161461097a576109438161093e611a1c565b6118a5565b610979576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a39611a24565b6001546000540303905090565b6000610a5182611a2d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ab8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ac484611afb565b91509150610ada8187610ad5611a1c565b611b22565b610b2657610aef86610aea611a1c565b6118a5565b610b25576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b8d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b9a8686866001611b66565b8015610ba557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c7385610c4f888887611b6c565b7c020000000000000000000000000000000000000000000000000000000017611b94565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cfb576000600185019050600060046000838152602001908152602001600020541415610cf9576000548114610cf8578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d638686866001611bbf565b505050505050565b600860149054906101000a900460ff1681565b610d998383836040518060200160405280600081525061155f565b505050565b610da6611bc5565b818160099190610db792919061234c565b505050565b6000610dc782611a2d565b9050919050565b600d6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e4e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ea7611bc5565b610eb16000611c43565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610eec906130f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f18906130f3565b8015610f655780601f10610f3a57610100808354040283529160200191610f65565b820191906000526020600020905b815481529060010190602001808311610f4857829003601f168201915b5050505050905090565b600a8054610f7c906130f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa8906130f3565b8015610ff55780601f10610fca57610100808354040283529160200191610ff5565b820191906000526020600020905b815481529060010190602001808311610fd857829003601f168201915b505050505081565b600c5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890612d6c565b60405180910390fd5b600260038111156110855761108461322e565b5b600860149054906101000a900460ff1660038111156110a7576110a661322e565b5b146110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90612d0c565b60405180910390fd5b601481111561112b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112290612d2c565b60405180910390fd5b600b5481611137610a2f565b6111419190612f03565b1115611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990612dac565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546001111561121b57600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460016112189190612fe4565b90505b60008183111561124157600c5482846112349190612fe4565b61123e9190612f8a565b90505b80341015611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b90612d4c565b60405180910390fd5b82600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112d39190612f03565b925050819055506112e43384611d09565b505050565b6112f1611a1c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611356576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611363611a1c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611410611a1c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114559190612c74565b60405180910390a35050565b611469611bc5565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161148f90612bf8565b60006040518083038185875af1925050503d80600081146114cc576040519150601f19603f3d011682016040523d82523d6000602084013e6114d1565b606091505b5050905080611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90612dcc565b60405180910390fd5b50565b611520611bc5565b8060038111156115335761153261322e565b5b600860146101000a81548160ff021916908360038111156115575761155661322e565b5b021790555050565b61156a848484610a46565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115cc5761159584848484611d27565b6115cb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6115da611bc5565b80600c8190555050565b60606115ef826119bd565b61162e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162590612ccc565b60405180910390fd5b6000611638611e87565b905060008151116116d357600a8054611650906130f3565b80601f016020809104026020016040519081016040528092919081815260200182805461167c906130f3565b80156116c95780601f1061169e576101008083540402835291602001916116c9565b820191906000526020600020905b8154815290600101906020018083116116ac57829003601f168201915b50505050506116fe565b806116dd84611f19565b6040516020016116ee929190612bc9565b6040516020818303038152906040525b915050919050565b60098054611713906130f3565b80601f016020809104026020016040519081016040528092919081815260200182805461173f906130f3565b801561178c5780601f106117615761010080835404028352916020019161178c565b820191906000526020600020905b81548152906001019060200180831161176f57829003601f168201915b505050505081565b600b5481565b6117a2611bc5565b8181600a91906117b392919061234c565b505050565b60006117c38261207a565b9050919050565b6117d2611bc5565b60005b82518110156118a057600b548282815181106117f4576117f361328c565b5b6020026020010151611804610a2f565b61180e9190612f03565b111561184f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184690612dac565b60405180910390fd5b61188d8382815181106118655761186461328c565b5b60200260200101518383815181106118805761187f61328c565b5b6020026020010151611d09565b808061189890613156565b9150506117d5565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611941611bc5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a890612cec565b60405180910390fd5b6119ba81611c43565b50565b6000816119c8611a24565b111580156119d7575060005482105b8015611a15575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611a3c611a24565b11611ac457600054811015611ac35760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ac1575b6000811415611ab7576004600083600190039350838152602001908152602001600020549050611a8c565b8092505050611af6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b838686846120d1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611bcd6120da565b73ffffffffffffffffffffffffffffffffffffffff16611beb610eb3565b73ffffffffffffffffffffffffffffffffffffffff1614611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3890612d8c565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d238282604051806020016040528060008152506120e2565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d4d611a1c565b8786866040518563ffffffff1660e01b8152600401611d6f9493929190612c28565b602060405180830381600087803b158015611d8957600080fd5b505af1925050508015611dba57506040513d601f19601f82011682018060405250810190611db791906128c2565b60015b611e34573d8060008114611dea576040519150601f19603f3d011682016040523d82523d6000602084013e611def565b606091505b50600081511415611e2c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611e96906130f3565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec2906130f3565b8015611f0f5780601f10611ee457610100808354040283529160200191611f0f565b820191906000526020600020905b815481529060010190602001808311611ef257829003601f168201915b5050505050905090565b60606000821415611f61576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612075565b600082905060005b60008214611f93578080611f7c90613156565b915050600a82611f8c9190612f59565b9150611f69565b60008167ffffffffffffffff811115611faf57611fae6132bb565b5b6040519080825280601f01601f191660200182016040528015611fe15781602001600182028036833780820191505090505b5090505b6000851461206e57600182611ffa9190612fe4565b9150600a85612009919061319f565b60306120159190612f03565b60f81b81838151811061202b5761202a61328c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120679190612f59565b9450611fe5565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b600033905090565b6120ec838361217f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461217a57600080549050600083820390505b61212c6000868380600101945086611d27565b612162576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061211957816000541461217757600080fd5b50505b505050565b60008054905060008214156121c0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121cd6000848385611b66565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612244836122356000866000611b6c565b61223e8561233c565b17611b94565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146122e557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122aa565b506000821415612321576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123376000848385611bbf565b505050565b60006001821460e11b9050919050565b828054612358906130f3565b90600052602060002090601f01602090048101928261237a57600085556123c1565b82601f1061239357803560ff19168380011785556123c1565b828001600101855582156123c1579182015b828111156123c05782358255916020019190600101906123a5565b5b5090506123ce91906123d2565b5090565b5b808211156123eb5760008160009055506001016123d3565b5090565b60006124026123fd84612e2c565b612e07565b90508083825260208201905082856020860282011115612425576124246132f4565b5b60005b85811015612455578161243b8882612511565b845260208401935060208301925050600181019050612428565b5050509392505050565b600061247261246d84612e58565b612e07565b90508083825260208201905082856020860282011115612495576124946132f4565b5b60005b858110156124c557816124ab8882612645565b845260208401935060208301925050600181019050612498565b5050509392505050565b60006124e26124dd84612e84565b612e07565b9050828152602081018484840111156124fe576124fd6132f9565b5b6125098482856130b1565b509392505050565b60008135905061252081613516565b92915050565b600082601f83011261253b5761253a6132ef565b5b813561254b8482602086016123ef565b91505092915050565b600082601f830112612569576125686132ef565b5b813561257984826020860161245f565b91505092915050565b6000813590506125918161352d565b92915050565b6000813590506125a681613544565b92915050565b6000815190506125bb81613544565b92915050565b600082601f8301126125d6576125d56132ef565b5b81356125e68482602086016124cf565b91505092915050565b60008083601f840112612605576126046132ef565b5b8235905067ffffffffffffffff811115612622576126216132ea565b5b60208301915083600182028301111561263e5761263d6132f4565b5b9250929050565b6000813590506126548161355b565b92915050565b6000602082840312156126705761266f613303565b5b600061267e84828501612511565b91505092915050565b6000806040838503121561269e5761269d613303565b5b60006126ac85828601612511565b92505060206126bd85828601612511565b9150509250929050565b6000806000606084860312156126e0576126df613303565b5b60006126ee86828701612511565b93505060206126ff86828701612511565b925050604061271086828701612645565b9150509250925092565b6000806000806080858703121561273457612733613303565b5b600061274287828801612511565b945050602061275387828801612511565b935050604061276487828801612645565b925050606085013567ffffffffffffffff811115612785576127846132fe565b5b612791878288016125c1565b91505092959194509250565b600080604083850312156127b4576127b3613303565b5b60006127c285828601612511565b92505060206127d385828601612582565b9150509250929050565b600080604083850312156127f4576127f3613303565b5b600061280285828601612511565b925050602061281385828601612645565b9150509250929050565b6000806040838503121561283457612833613303565b5b600083013567ffffffffffffffff811115612852576128516132fe565b5b61285e85828601612526565b925050602083013567ffffffffffffffff81111561287f5761287e6132fe565b5b61288b85828601612554565b9150509250929050565b6000602082840312156128ab576128aa613303565b5b60006128b984828501612597565b91505092915050565b6000602082840312156128d8576128d7613303565b5b60006128e6848285016125ac565b91505092915050565b6000806020838503121561290657612905613303565b5b600083013567ffffffffffffffff811115612924576129236132fe565b5b612930858286016125ef565b92509250509250929050565b60006020828403121561295257612951613303565b5b600061296084828501612645565b91505092915050565b61297281613018565b82525050565b6129818161302a565b82525050565b600061299282612eb5565b61299c8185612ecb565b93506129ac8185602086016130c0565b6129b581613308565b840191505092915050565b6129c98161309f565b82525050565b60006129da82612ec0565b6129e48185612ee7565b93506129f48185602086016130c0565b6129fd81613308565b840191505092915050565b6000612a1382612ec0565b612a1d8185612ef8565b9350612a2d8185602086016130c0565b80840191505092915050565b6000612a46602183612ee7565b9150612a5182613319565b604082019050919050565b6000612a69602683612ee7565b9150612a7482613368565b604082019050919050565b6000612a8c601283612ee7565b9150612a97826133b7565b602082019050919050565b6000612aaf601083612ee7565b9150612aba826133e0565b602082019050919050565b6000612ad2601383612ee7565b9150612add82613409565b602082019050919050565b6000612af5601d83612ee7565b9150612b0082613432565b602082019050919050565b6000612b18600583612ef8565b9150612b238261345b565b600582019050919050565b6000612b3b602083612ee7565b9150612b4682613484565b602082019050919050565b6000612b5e600d83612ee7565b9150612b69826134ad565b602082019050919050565b6000612b81600083612edc565b9150612b8c826134d6565b600082019050919050565b6000612ba4601083612ee7565b9150612baf826134d9565b602082019050919050565b612bc381613095565b82525050565b6000612bd58285612a08565b9150612be18284612a08565b9150612bec82612b0b565b91508190509392505050565b6000612c0382612b74565b9150819050919050565b6000602082019050612c226000830184612969565b92915050565b6000608082019050612c3d6000830187612969565b612c4a6020830186612969565b612c576040830185612bba565b8181036060830152612c698184612987565b905095945050505050565b6000602082019050612c896000830184612978565b92915050565b6000602082019050612ca460008301846129c0565b92915050565b60006020820190508181036000830152612cc481846129cf565b905092915050565b60006020820190508181036000830152612ce581612a39565b9050919050565b60006020820190508181036000830152612d0581612a5c565b9050919050565b60006020820190508181036000830152612d2581612a7f565b9050919050565b60006020820190508181036000830152612d4581612aa2565b9050919050565b60006020820190508181036000830152612d6581612ac5565b9050919050565b60006020820190508181036000830152612d8581612ae8565b9050919050565b60006020820190508181036000830152612da581612b2e565b9050919050565b60006020820190508181036000830152612dc581612b51565b9050919050565b60006020820190508181036000830152612de581612b97565b9050919050565b6000602082019050612e016000830184612bba565b92915050565b6000612e11612e22565b9050612e1d8282613125565b919050565b6000604051905090565b600067ffffffffffffffff821115612e4757612e466132bb565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612e7357612e726132bb565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612e9f57612e9e6132bb565b5b612ea882613308565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f0e82613095565b9150612f1983613095565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f4e57612f4d6131d0565b5b828201905092915050565b6000612f6482613095565b9150612f6f83613095565b925082612f7f57612f7e6131ff565b5b828204905092915050565b6000612f9582613095565b9150612fa083613095565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fd957612fd86131d0565b5b828202905092915050565b6000612fef82613095565b9150612ffa83613095565b92508282101561300d5761300c6131d0565b5b828203905092915050565b600061302382613075565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061307082613502565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006130aa82613062565b9050919050565b82818337600083830152505050565b60005b838110156130de5780820151818401526020810190506130c3565b838111156130ed576000848401525b50505050565b6000600282049050600182168061310b57607f821691505b6020821081141561311f5761311e61325d565b5b50919050565b61312e82613308565b810181811067ffffffffffffffff8211171561314d5761314c6132bb565b5b80604052505050565b600061316182613095565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613194576131936131d0565b5b600182019050919050565b60006131aa82613095565b91506131b583613095565b9250826131c5576131c46131ff565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c6520636c6f7365640000000000000000000000000000600082015250565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b7f4574686572206973206e6f7420656e6f75676800000000000000000000000000600082015250565b7f4d7573742066726f6d207265616c2077616c6c65742061646472657373000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45786365656420737570706c7900000000000000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600481106135135761351261322e565b5b50565b61351f81613018565b811461352a57600080fd5b50565b6135368161302a565b811461354157600080fd5b50565b61354d81613036565b811461355857600080fd5b50565b61356481613095565b811461356f57600080fd5b5056fea2646970667358221220b5870f538614c5c66e40b32e3e517b1e74efcdc26756dd9897b5b06676a3687864736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000f9f0000000000000000000000000000000000000000000000000011c37937e080000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696636666e6b796c346b7532796d7578657a6335356b6d32643768696e366f657969346361746d77666e73727662686d33763634342f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c8063963bfe1211610102578063c87b56dd11610095578063dc33e68111610064578063dc33e68114610689578063e9014f9d146106c6578063e985e9c5146106e2578063f2fde38b1461071f576101d8565b8063c87b56dd146105cd578063d547cfb71461060a578063d5abeb0114610635578063da1b9e0814610660576101d8565b8063ac446002116100d1578063ac4460021461053b578063ae3aab3b14610552578063b88d4fde1461057b578063c6275255146105a4576101d8565b8063963bfe12146104a05780639b6860c8146104cb578063a0712d68146104f6578063a22cb46514610512576101d8565b806342842e0e1161017a57806370a082311161014957806370a08231146103f6578063715018a6146104335780638da5cb5b1461044a57806395d89b4114610475576101d8565b806342842e0e1461032a57806355f804b3146103535780636352211e1461037c578063648b5be1146103b9576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d657806326202370146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612895565b610748565b6040516102119190612c74565b60405180910390f35b34801561022657600080fd5b5061022f6107da565b60405161023c9190612caa565b60405180910390f35b34801561025157600080fd5b5061026c6004803603810190610267919061293c565b61086c565b6040516102799190612c0d565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906127dd565b6108eb565b005b3480156102b757600080fd5b506102c0610a2f565b6040516102cd9190612dec565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f891906126c7565b610a46565b005b34801561030b57600080fd5b50610314610d6b565b6040516103219190612c8f565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c91906126c7565b610d7e565b005b34801561035f57600080fd5b5061037a600480360381019061037591906128ef565b610d9e565b005b34801561038857600080fd5b506103a3600480360381019061039e919061293c565b610dbc565b6040516103b09190612c0d565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db919061265a565b610dce565b6040516103ed9190612dec565b60405180910390f35b34801561040257600080fd5b5061041d6004803603810190610418919061265a565b610de6565b60405161042a9190612dec565b60405180910390f35b34801561043f57600080fd5b50610448610e9f565b005b34801561045657600080fd5b5061045f610eb3565b60405161046c9190612c0d565b60405180910390f35b34801561048157600080fd5b5061048a610edd565b6040516104979190612caa565b60405180910390f35b3480156104ac57600080fd5b506104b5610f6f565b6040516104c29190612caa565b60405180910390f35b3480156104d757600080fd5b506104e0610ffd565b6040516104ed9190612dec565b60405180910390f35b610510600480360381019061050b919061293c565b611003565b005b34801561051e57600080fd5b506105396004803603810190610534919061279d565b6112e9565b005b34801561054757600080fd5b50610550611461565b005b34801561055e57600080fd5b506105796004803603810190610574919061293c565b611518565b005b34801561058757600080fd5b506105a2600480360381019061059d919061271a565b61155f565b005b3480156105b057600080fd5b506105cb60048036038101906105c6919061293c565b6115d2565b005b3480156105d957600080fd5b506105f460048036038101906105ef919061293c565b6115e4565b6040516106019190612caa565b60405180910390f35b34801561061657600080fd5b5061061f611706565b60405161062c9190612caa565b60405180910390f35b34801561064157600080fd5b5061064a611794565b6040516106579190612dec565b60405180910390f35b34801561066c57600080fd5b50610687600480360381019061068291906128ef565b61179a565b005b34801561069557600080fd5b506106b060048036038101906106ab919061265a565b6117b8565b6040516106bd9190612dec565b60405180910390f35b6106e060048036038101906106db919061281d565b6117ca565b005b3480156106ee57600080fd5b5061070960048036038101906107049190612687565b6118a5565b6040516107169190612c74565b60405180910390f35b34801561072b57600080fd5b506107466004803603810190610741919061265a565b611939565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107e9906130f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610815906130f3565b80156108625780601f1061083757610100808354040283529160200191610862565b820191906000526020600020905b81548152906001019060200180831161084557829003601f168201915b5050505050905090565b6000610877826119bd565b6108ad576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f682610dbc565b90508073ffffffffffffffffffffffffffffffffffffffff16610917611a1c565b73ffffffffffffffffffffffffffffffffffffffff161461097a576109438161093e611a1c565b6118a5565b610979576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a39611a24565b6001546000540303905090565b6000610a5182611a2d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ab8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ac484611afb565b91509150610ada8187610ad5611a1c565b611b22565b610b2657610aef86610aea611a1c565b6118a5565b610b25576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b8d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b9a8686866001611b66565b8015610ba557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c7385610c4f888887611b6c565b7c020000000000000000000000000000000000000000000000000000000017611b94565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cfb576000600185019050600060046000838152602001908152602001600020541415610cf9576000548114610cf8578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d638686866001611bbf565b505050505050565b600860149054906101000a900460ff1681565b610d998383836040518060200160405280600081525061155f565b505050565b610da6611bc5565b818160099190610db792919061234c565b505050565b6000610dc782611a2d565b9050919050565b600d6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e4e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ea7611bc5565b610eb16000611c43565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610eec906130f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f18906130f3565b8015610f655780601f10610f3a57610100808354040283529160200191610f65565b820191906000526020600020905b815481529060010190602001808311610f4857829003601f168201915b5050505050905090565b600a8054610f7c906130f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa8906130f3565b8015610ff55780601f10610fca57610100808354040283529160200191610ff5565b820191906000526020600020905b815481529060010190602001808311610fd857829003601f168201915b505050505081565b600c5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890612d6c565b60405180910390fd5b600260038111156110855761108461322e565b5b600860149054906101000a900460ff1660038111156110a7576110a661322e565b5b146110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90612d0c565b60405180910390fd5b601481111561112b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112290612d2c565b60405180910390fd5b600b5481611137610a2f565b6111419190612f03565b1115611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990612dac565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546001111561121b57600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460016112189190612fe4565b90505b60008183111561124157600c5482846112349190612fe4565b61123e9190612f8a565b90505b80341015611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b90612d4c565b60405180910390fd5b82600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112d39190612f03565b925050819055506112e43384611d09565b505050565b6112f1611a1c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611356576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611363611a1c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611410611a1c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114559190612c74565b60405180910390a35050565b611469611bc5565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161148f90612bf8565b60006040518083038185875af1925050503d80600081146114cc576040519150601f19603f3d011682016040523d82523d6000602084013e6114d1565b606091505b5050905080611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90612dcc565b60405180910390fd5b50565b611520611bc5565b8060038111156115335761153261322e565b5b600860146101000a81548160ff021916908360038111156115575761155661322e565b5b021790555050565b61156a848484610a46565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115cc5761159584848484611d27565b6115cb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6115da611bc5565b80600c8190555050565b60606115ef826119bd565b61162e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162590612ccc565b60405180910390fd5b6000611638611e87565b905060008151116116d357600a8054611650906130f3565b80601f016020809104026020016040519081016040528092919081815260200182805461167c906130f3565b80156116c95780601f1061169e576101008083540402835291602001916116c9565b820191906000526020600020905b8154815290600101906020018083116116ac57829003601f168201915b50505050506116fe565b806116dd84611f19565b6040516020016116ee929190612bc9565b6040516020818303038152906040525b915050919050565b60098054611713906130f3565b80601f016020809104026020016040519081016040528092919081815260200182805461173f906130f3565b801561178c5780601f106117615761010080835404028352916020019161178c565b820191906000526020600020905b81548152906001019060200180831161176f57829003601f168201915b505050505081565b600b5481565b6117a2611bc5565b8181600a91906117b392919061234c565b505050565b60006117c38261207a565b9050919050565b6117d2611bc5565b60005b82518110156118a057600b548282815181106117f4576117f361328c565b5b6020026020010151611804610a2f565b61180e9190612f03565b111561184f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184690612dac565b60405180910390fd5b61188d8382815181106118655761186461328c565b5b60200260200101518383815181106118805761187f61328c565b5b6020026020010151611d09565b808061189890613156565b9150506117d5565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611941611bc5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a890612cec565b60405180910390fd5b6119ba81611c43565b50565b6000816119c8611a24565b111580156119d7575060005482105b8015611a15575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611a3c611a24565b11611ac457600054811015611ac35760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ac1575b6000811415611ab7576004600083600190039350838152602001908152602001600020549050611a8c565b8092505050611af6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b838686846120d1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611bcd6120da565b73ffffffffffffffffffffffffffffffffffffffff16611beb610eb3565b73ffffffffffffffffffffffffffffffffffffffff1614611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3890612d8c565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d238282604051806020016040528060008152506120e2565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d4d611a1c565b8786866040518563ffffffff1660e01b8152600401611d6f9493929190612c28565b602060405180830381600087803b158015611d8957600080fd5b505af1925050508015611dba57506040513d601f19601f82011682018060405250810190611db791906128c2565b60015b611e34573d8060008114611dea576040519150601f19603f3d011682016040523d82523d6000602084013e611def565b606091505b50600081511415611e2c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611e96906130f3565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec2906130f3565b8015611f0f5780601f10611ee457610100808354040283529160200191611f0f565b820191906000526020600020905b815481529060010190602001808311611ef257829003601f168201915b5050505050905090565b60606000821415611f61576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612075565b600082905060005b60008214611f93578080611f7c90613156565b915050600a82611f8c9190612f59565b9150611f69565b60008167ffffffffffffffff811115611faf57611fae6132bb565b5b6040519080825280601f01601f191660200182016040528015611fe15781602001600182028036833780820191505090505b5090505b6000851461206e57600182611ffa9190612fe4565b9150600a85612009919061319f565b60306120159190612f03565b60f81b81838151811061202b5761202a61328c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120679190612f59565b9450611fe5565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b600033905090565b6120ec838361217f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461217a57600080549050600083820390505b61212c6000868380600101945086611d27565b612162576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061211957816000541461217757600080fd5b50505b505050565b60008054905060008214156121c0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121cd6000848385611b66565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612244836122356000866000611b6c565b61223e8561233c565b17611b94565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146122e557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122aa565b506000821415612321576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123376000848385611bbf565b505050565b60006001821460e11b9050919050565b828054612358906130f3565b90600052602060002090601f01602090048101928261237a57600085556123c1565b82601f1061239357803560ff19168380011785556123c1565b828001600101855582156123c1579182015b828111156123c05782358255916020019190600101906123a5565b5b5090506123ce91906123d2565b5090565b5b808211156123eb5760008160009055506001016123d3565b5090565b60006124026123fd84612e2c565b612e07565b90508083825260208201905082856020860282011115612425576124246132f4565b5b60005b85811015612455578161243b8882612511565b845260208401935060208301925050600181019050612428565b5050509392505050565b600061247261246d84612e58565b612e07565b90508083825260208201905082856020860282011115612495576124946132f4565b5b60005b858110156124c557816124ab8882612645565b845260208401935060208301925050600181019050612498565b5050509392505050565b60006124e26124dd84612e84565b612e07565b9050828152602081018484840111156124fe576124fd6132f9565b5b6125098482856130b1565b509392505050565b60008135905061252081613516565b92915050565b600082601f83011261253b5761253a6132ef565b5b813561254b8482602086016123ef565b91505092915050565b600082601f830112612569576125686132ef565b5b813561257984826020860161245f565b91505092915050565b6000813590506125918161352d565b92915050565b6000813590506125a681613544565b92915050565b6000815190506125bb81613544565b92915050565b600082601f8301126125d6576125d56132ef565b5b81356125e68482602086016124cf565b91505092915050565b60008083601f840112612605576126046132ef565b5b8235905067ffffffffffffffff811115612622576126216132ea565b5b60208301915083600182028301111561263e5761263d6132f4565b5b9250929050565b6000813590506126548161355b565b92915050565b6000602082840312156126705761266f613303565b5b600061267e84828501612511565b91505092915050565b6000806040838503121561269e5761269d613303565b5b60006126ac85828601612511565b92505060206126bd85828601612511565b9150509250929050565b6000806000606084860312156126e0576126df613303565b5b60006126ee86828701612511565b93505060206126ff86828701612511565b925050604061271086828701612645565b9150509250925092565b6000806000806080858703121561273457612733613303565b5b600061274287828801612511565b945050602061275387828801612511565b935050604061276487828801612645565b925050606085013567ffffffffffffffff811115612785576127846132fe565b5b612791878288016125c1565b91505092959194509250565b600080604083850312156127b4576127b3613303565b5b60006127c285828601612511565b92505060206127d385828601612582565b9150509250929050565b600080604083850312156127f4576127f3613303565b5b600061280285828601612511565b925050602061281385828601612645565b9150509250929050565b6000806040838503121561283457612833613303565b5b600083013567ffffffffffffffff811115612852576128516132fe565b5b61285e85828601612526565b925050602083013567ffffffffffffffff81111561287f5761287e6132fe565b5b61288b85828601612554565b9150509250929050565b6000602082840312156128ab576128aa613303565b5b60006128b984828501612597565b91505092915050565b6000602082840312156128d8576128d7613303565b5b60006128e6848285016125ac565b91505092915050565b6000806020838503121561290657612905613303565b5b600083013567ffffffffffffffff811115612924576129236132fe565b5b612930858286016125ef565b92509250509250929050565b60006020828403121561295257612951613303565b5b600061296084828501612645565b91505092915050565b61297281613018565b82525050565b6129818161302a565b82525050565b600061299282612eb5565b61299c8185612ecb565b93506129ac8185602086016130c0565b6129b581613308565b840191505092915050565b6129c98161309f565b82525050565b60006129da82612ec0565b6129e48185612ee7565b93506129f48185602086016130c0565b6129fd81613308565b840191505092915050565b6000612a1382612ec0565b612a1d8185612ef8565b9350612a2d8185602086016130c0565b80840191505092915050565b6000612a46602183612ee7565b9150612a5182613319565b604082019050919050565b6000612a69602683612ee7565b9150612a7482613368565b604082019050919050565b6000612a8c601283612ee7565b9150612a97826133b7565b602082019050919050565b6000612aaf601083612ee7565b9150612aba826133e0565b602082019050919050565b6000612ad2601383612ee7565b9150612add82613409565b602082019050919050565b6000612af5601d83612ee7565b9150612b0082613432565b602082019050919050565b6000612b18600583612ef8565b9150612b238261345b565b600582019050919050565b6000612b3b602083612ee7565b9150612b4682613484565b602082019050919050565b6000612b5e600d83612ee7565b9150612b69826134ad565b602082019050919050565b6000612b81600083612edc565b9150612b8c826134d6565b600082019050919050565b6000612ba4601083612ee7565b9150612baf826134d9565b602082019050919050565b612bc381613095565b82525050565b6000612bd58285612a08565b9150612be18284612a08565b9150612bec82612b0b565b91508190509392505050565b6000612c0382612b74565b9150819050919050565b6000602082019050612c226000830184612969565b92915050565b6000608082019050612c3d6000830187612969565b612c4a6020830186612969565b612c576040830185612bba565b8181036060830152612c698184612987565b905095945050505050565b6000602082019050612c896000830184612978565b92915050565b6000602082019050612ca460008301846129c0565b92915050565b60006020820190508181036000830152612cc481846129cf565b905092915050565b60006020820190508181036000830152612ce581612a39565b9050919050565b60006020820190508181036000830152612d0581612a5c565b9050919050565b60006020820190508181036000830152612d2581612a7f565b9050919050565b60006020820190508181036000830152612d4581612aa2565b9050919050565b60006020820190508181036000830152612d6581612ac5565b9050919050565b60006020820190508181036000830152612d8581612ae8565b9050919050565b60006020820190508181036000830152612da581612b2e565b9050919050565b60006020820190508181036000830152612dc581612b51565b9050919050565b60006020820190508181036000830152612de581612b97565b9050919050565b6000602082019050612e016000830184612bba565b92915050565b6000612e11612e22565b9050612e1d8282613125565b919050565b6000604051905090565b600067ffffffffffffffff821115612e4757612e466132bb565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612e7357612e726132bb565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612e9f57612e9e6132bb565b5b612ea882613308565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f0e82613095565b9150612f1983613095565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f4e57612f4d6131d0565b5b828201905092915050565b6000612f6482613095565b9150612f6f83613095565b925082612f7f57612f7e6131ff565b5b828204905092915050565b6000612f9582613095565b9150612fa083613095565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fd957612fd86131d0565b5b828202905092915050565b6000612fef82613095565b9150612ffa83613095565b92508282101561300d5761300c6131d0565b5b828203905092915050565b600061302382613075565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061307082613502565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006130aa82613062565b9050919050565b82818337600083830152505050565b60005b838110156130de5780820151818401526020810190506130c3565b838111156130ed576000848401525b50505050565b6000600282049050600182168061310b57607f821691505b6020821081141561311f5761311e61325d565b5b50919050565b61312e82613308565b810181811067ffffffffffffffff8211171561314d5761314c6132bb565b5b80604052505050565b600061316182613095565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613194576131936131d0565b5b600182019050919050565b60006131aa82613095565b91506131b583613095565b9250826131c5576131c46131ff565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c6520636c6f7365640000000000000000000000000000600082015250565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b7f4574686572206973206e6f7420656e6f75676800000000000000000000000000600082015250565b7f4d7573742066726f6d207265616c2077616c6c65742061646472657373000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45786365656420737570706c7900000000000000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600481106135135761351261322e565b5b50565b61351f81613018565b811461352a57600080fd5b50565b6135368161302a565b811461354157600080fd5b50565b61354d81613036565b811461355857600080fd5b50565b61356481613095565b811461356f57600080fd5b5056fea2646970667358221220b5870f538614c5c66e40b32e3e517b1e74efcdc26756dd9897b5b06676a3687864736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000f9f0000000000000000000000000000000000000000000000000011c37937e080000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696636666e6b796c346b7532796d7578657a6335356b6d32643768696e366f657969346361746d77666e73727662686d33763634342f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseTokenURI (string): ipfs://bafybeif6fnkyl4ku2ymuxezc55km2d7hin6oeyi4catmwfnsrvbhm3v644/
Arg [1] : _maxSupply (uint256): 3999
Arg [2] : _publicSalePrice (uint256): 5000000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000f9f
Arg [2] : 0000000000000000000000000000000000000000000000000011c37937e08000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [4] : 697066733a2f2f626166796265696636666e6b796c346b7532796d7578657a63
Arg [5] : 35356b6d32643768696e366f657969346361746d77666e73727662686d337636
Arg [6] : 34342f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

56989:3537:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24525:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25427:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31910:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31351:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21178:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35617:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57191:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38530:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59264:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26820:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57380:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22362:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5273:103;;;;;;;;;;;;;:::i;:::-;;4625:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25603:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57275:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57343;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57888:785;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32468:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60229:178;;;;;;;;;;;;;:::i;:::-;;59632:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39313:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59516:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58683:460;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57241:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57312:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59389:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60413:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59876:345;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32933:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5531:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24525:639;24610:4;24949:10;24934:25;;:11;:25;;;;:102;;;;25026:10;25011:25;;:11;:25;;;;24934:102;:179;;;;25103:10;25088:25;;:11;:25;;;;24934:179;24914:199;;24525:639;;;:::o;25427:100::-;25481:13;25514:5;25507:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25427:100;:::o;31910:218::-;31986:7;32011:16;32019:7;32011;:16::i;:::-;32006:64;;32036:34;;;;;;;;;;;;;;32006:64;32090:15;:24;32106:7;32090:24;;;;;;;;;;;:30;;;;;;;;;;;;32083:37;;31910:218;;;:::o;31351:400::-;31432:13;31448:16;31456:7;31448;:16::i;:::-;31432:32;;31504:5;31481:28;;:19;:17;:19::i;:::-;:28;;;31477:175;;31529:44;31546:5;31553:19;:17;:19::i;:::-;31529:16;:44::i;:::-;31524:128;;31601:35;;;;;;;;;;;;;;31524:128;31477:175;31697:2;31664:15;:24;31680:7;31664:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31735:7;31731:2;31715:28;;31724:5;31715:28;;;;;;;;;;;;31421:330;31351:400;;:::o;21178:323::-;21239:7;21467:15;:13;:15::i;:::-;21452:12;;21436:13;;:28;:46;21429:53;;21178:323;:::o;35617:2817::-;35751:27;35781;35800:7;35781:18;:27::i;:::-;35751:57;;35866:4;35825:45;;35841:19;35825:45;;;35821:86;;35879:28;;;;;;;;;;;;;;35821:86;35921:27;35950:23;35977:35;36004:7;35977:26;:35::i;:::-;35920:92;;;;36112:68;36137:15;36154:4;36160:19;:17;:19::i;:::-;36112:24;:68::i;:::-;36107:180;;36200:43;36217:4;36223:19;:17;:19::i;:::-;36200:16;:43::i;:::-;36195:92;;36252:35;;;;;;;;;;;;;;36195:92;36107:180;36318:1;36304:16;;:2;:16;;;36300:52;;;36329:23;;;;;;;;;;;;;;36300:52;36365:43;36387:4;36393:2;36397:7;36406:1;36365:21;:43::i;:::-;36501:15;36498:160;;;36641:1;36620:19;36613:30;36498:160;37038:18;:24;37057:4;37038:24;;;;;;;;;;;;;;;;37036:26;;;;;;;;;;;;37107:18;:22;37126:2;37107:22;;;;;;;;;;;;;;;;37105:24;;;;;;;;;;;37429:146;37466:2;37515:45;37530:4;37536:2;37540:19;37515:14;:45::i;:::-;17577:8;37487:73;37429:18;:146::i;:::-;37400:17;:26;37418:7;37400:26;;;;;;;;;;;:175;;;;37746:1;17577:8;37695:19;:47;:52;37691:627;;;37768:19;37800:1;37790:7;:11;37768:33;;37957:1;37923:17;:30;37941:11;37923:30;;;;;;;;;;;;:35;37919:384;;;38061:13;;38046:11;:28;38042:242;;38241:19;38208:17;:30;38226:11;38208:30;;;;;;;;;;;:52;;;;38042:242;37919:384;37749:569;37691:627;38365:7;38361:2;38346:27;;38355:4;38346:27;;;;;;;;;;;;38384:42;38405:4;38411:2;38415:7;38424:1;38384:20;:42::i;:::-;35740:2694;;;35617:2817;;;:::o;57191:41::-;;;;;;;;;;;;;:::o;38530:185::-;38668:39;38685:4;38691:2;38695:7;38668:39;;;;;;;;;;;;:16;:39::i;:::-;38530:185;;;:::o;59264:117::-;4511:13;:11;:13::i;:::-;59360::::1;;59345:12;:28;;;;;;;:::i;:::-;;59264:117:::0;;:::o;26820:152::-;26892:7;26935:27;26954:7;26935:18;:27::i;:::-;26912:52;;26820:152;;;:::o;57380:43::-;;;;;;;;;;;;;;;;;:::o;22362:233::-;22434:7;22475:1;22458:19;;:5;:19;;;22454:60;;;22486:28;;;;;;;;;;;;;;22454:60;16521:13;22532:18;:25;22551:5;22532:25;;;;;;;;;;;;;;;;:55;22525:62;;22362:233;;;:::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;4625:87::-;4671:7;4698:6;;;;;;;;;;;4691:13;;4625:87;:::o;25603:104::-;25659:13;25692:7;25685:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25603:104;:::o;57275:30::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57343:::-;;;;:::o;57888:785::-;57816:10;57803:23;;:9;:23;;;57795:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;57990:29:::1;57972:47;;;;;;;;:::i;:::-;;:16;;;;;;;;;;;:47;;;;;;;;:::i;:::-;;;57964:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;58074:2;58061:9;:15;;58053:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;58145:9;;58132;58116:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;58108:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;58185:27;58235:8;:20;58244:10;58235:20;;;;;;;;;;;;;;;;58231:1;:24;58227:104;;;58299:8;:20;58308:10;58299:20;;;;;;;;;;;;;;;;58295:1;:24;;;;:::i;:::-;58273:46;;58227:104;58343:21;58395:19;58383:9;:31;58379:131;;;58483:15;;58460:19;58448:9;:31;;;;:::i;:::-;58447:51;;;;:::i;:::-;58431:67;;58379:131;58543:13;58530:9;:26;;58522:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;58613:9;58591:8;:20;58600:10;58591:20;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;58633:32;58643:10;58655:9;58633;:32::i;:::-;57953:720;;57888:785:::0;:::o;32468:308::-;32579:19;:17;:19::i;:::-;32567:31;;:8;:31;;;32563:61;;;32607:17;;;;;;;;;;;;;;32563:61;32689:8;32637:18;:39;32656:19;:17;:19::i;:::-;32637:39;;;;;;;;;;;;;;;:49;32677:8;32637:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32749:8;32713:55;;32728:19;:17;:19::i;:::-;32713:55;;;32759:8;32713:55;;;;;;:::i;:::-;;;;;;;;32468:308;;:::o;60229:178::-;4511:13;:11;:13::i;:::-;60285:12:::1;60302:10;:15;;60326:21;60302:50;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60284:68;;;60371:7;60363:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;60273:134;60229:178::o:0;59632:127::-;4511:13;:11;:13::i;:::-;59744:6:::1;59726:25;;;;;;;;:::i;:::-;;59707:16;;:44;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;59632:127:::0;:::o;39313:399::-;39480:31;39493:4;39499:2;39503:7;39480:12;:31::i;:::-;39544:1;39526:2;:14;;;:19;39522:183;;39565:56;39596:4;39602:2;39606:7;39615:5;39565:30;:56::i;:::-;39560:145;;39649:40;;;;;;;;;;;;;;39560:145;39522:183;39313:399;;;;:::o;59516:108::-;4511:13;:11;:13::i;:::-;59607:9:::1;59589:15;:27;;;;59516:108:::0;:::o;58683:460::-;58756:13;58790:16;58798:7;58790;:16::i;:::-;58782:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;58855:28;58886:10;:8;:10::i;:::-;58855:41;;58954:1;58929:14;58923:28;:32;:212;;59120:15;58923:212;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59014:14;59047:18;:7;:16;:18::i;:::-;58979:127;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58923:212;58907:228;;;58683:460;;;:::o;57241:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57312:24::-;;;;:::o;59389:119::-;4511:13;:11;:13::i;:::-;59489:11:::1;;59471:15;:29;;;;;;;:::i;:::-;;59389:119:::0;;:::o;60413:110::-;60473:7;60497:20;60511:5;60497:13;:20::i;:::-;60490:27;;60413:110;;;:::o;59876:345::-;4511:13;:11;:13::i;:::-;60004:9:::1;59999:215;60023:17;:24;60019:1;:28;59999:215;;;60112:9;;60093:12;60106:1;60093:15;;;;;;;;:::i;:::-;;;;;;;;60077:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:44;;60069:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;60154:48;60164:17;60182:1;60164:20;;;;;;;;:::i;:::-;;;;;;;;60186:12;60199:1;60186:15;;;;;;;;:::i;:::-;;;;;;;;60154:9;:48::i;:::-;60049:3;;;;;:::i;:::-;;;;59999:215;;;;59876:345:::0;;:::o;32933:164::-;33030:4;33054:18;:25;33073:5;33054:25;;;;;;;;;;;;;;;:35;33080:8;33054:35;;;;;;;;;;;;;;;;;;;;;;;;;33047:42;;32933:164;;;;:::o;5531:201::-;4511:13;:11;:13::i;:::-;5640:1:::1;5620:22;;:8;:22;;;;5612:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;33355:282::-;33420:4;33476:7;33457:15;:13;:15::i;:::-;:26;;:66;;;;;33510:13;;33500:7;:23;33457:66;:153;;;;;33609:1;17297:8;33561:17;:26;33579:7;33561:26;;;;;;;;;;;;:44;:49;33457:153;33437:173;;33355:282;;;:::o;55121:105::-;55181:7;55208:10;55201:17;;55121:105;:::o;59767:101::-;59832:7;59859:1;59852:8;;59767:101;:::o;27975:1275::-;28042:7;28062:12;28077:7;28062:22;;28145:4;28126:15;:13;:15::i;:::-;:23;28122:1061;;28179:13;;28172:4;:20;28168:1015;;;28217:14;28234:17;:23;28252:4;28234:23;;;;;;;;;;;;28217:40;;28351:1;17297:8;28323:6;:24;:29;28319:845;;;28988:113;29005:1;28995:6;:11;28988:113;;;29048:17;:25;29066:6;;;;;;;29048:25;;;;;;;;;;;;29039:34;;28988:113;;;29134:6;29127:13;;;;;;28319:845;28194:989;28168:1015;28122:1061;29211:31;;;;;;;;;;;;;;27975:1275;;;;:::o;34518:479::-;34620:27;34649:23;34690:38;34731:15;:24;34747:7;34731:24;;;;;;;;;;;34690:65;;34902:18;34879:41;;34959:19;34953:26;34934:45;;34864:126;34518:479;;;:::o;33746:659::-;33895:11;34060:16;34053:5;34049:28;34040:37;;34220:16;34209:9;34205:32;34192:45;;34370:15;34359:9;34356:30;34348:5;34337:9;34334:20;34331:56;34321:66;;33746:659;;;;;:::o;40374:159::-;;;;;:::o;54430:311::-;54565:7;54585:16;17701:3;54611:19;:41;;54585:68;;17701:3;54679:31;54690:4;54696:2;54700:9;54679:10;:31::i;:::-;54671:40;;:62;;54664:69;;;54430:311;;;;;:::o;29798:450::-;29878:14;30046:16;30039:5;30035:28;30026:37;;30223:5;30209:11;30184:23;30180:41;30177:52;30170:5;30167:63;30157:73;;29798:450;;;;:::o;41198:158::-;;;;;:::o;4790:132::-;4865:12;:10;:12::i;:::-;4854:23;;:7;:5;:7::i;:::-;:23;;;4846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:132::o;5892:191::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5892:191;:::o;48953:112::-;49030:27;49040:2;49044:8;49030:27;;;;;;;;;;;;:9;:27::i;:::-;48953:112;;:::o;41796:716::-;41959:4;42005:2;41980:45;;;42026:19;:17;:19::i;:::-;42047:4;42053:7;42062:5;41980:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41976:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42280:1;42263:6;:13;:18;42259:235;;;42309:40;;;;;;;;;;;;;;42259:235;42452:6;42446:13;42437:6;42433:2;42429:15;42422:38;41976:529;42149:54;;;42139:64;;;:6;:64;;;;42132:71;;;41796:716;;;;;;:::o;59151:105::-;59203:13;59236:12;59229:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59151:105;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;22677:178::-;22738:7;16521:13;16659:2;22766:18;:25;22785:5;22766:25;;;;;;;;;;;;;;;;:50;;22765:82;22758:89;;22677:178;;;:::o;54131:147::-;54268:6;54131:147;;;;;:::o;3176:98::-;3229:7;3256:10;3249:17;;3176:98;:::o;48180:689::-;48311:19;48317:2;48321:8;48311:5;:19::i;:::-;48390:1;48372:2;:14;;;:19;48368:483;;48412:11;48426:13;;48412:27;;48458:13;48480:8;48474:3;:14;48458:30;;48507:233;48538:62;48577:1;48581:2;48585:7;;;;;;48594:5;48538:30;:62::i;:::-;48533:167;;48636:40;;;;;;;;;;;;;;48533:167;48735:3;48727:5;:11;48507:233;;48822:3;48805:13;;:20;48801:34;;48827:8;;;48801:34;48393:458;;48368:483;48180:689;;;:::o;42974:2454::-;43047:20;43070:13;;43047:36;;43110:1;43098:8;:13;43094:44;;;43120:18;;;;;;;;;;;;;;43094:44;43151:61;43181:1;43185:2;43189:12;43203:8;43151:21;:61::i;:::-;43695:1;16659:2;43665:1;:26;;43664:32;43652:8;:45;43626:18;:22;43645:2;43626:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43974:139;44011:2;44065:33;44088:1;44092:2;44096:1;44065:14;:33::i;:::-;44032:30;44053:8;44032:20;:30::i;:::-;:66;43974:18;:139::i;:::-;43940:17;:31;43958:12;43940:31;;;;;;;;;;;:173;;;;44130:16;44161:11;44190:8;44175:12;:23;44161:37;;44445:16;44441:2;44437:25;44425:37;;44817:12;44777:8;44736:1;44674:25;44615:1;44554;44527:335;44942:1;44928:12;44924:20;44882:346;44983:3;44974:7;44971:16;44882:346;;45201:7;45191:8;45188:1;45161:25;45158:1;45155;45150:59;45036:1;45027:7;45023:15;45012:26;;44882:346;;;44886:77;45273:1;45261:8;:13;45257:45;;;45283:19;;;;;;;;;;;;;;45257:45;45335:3;45319:13;:19;;;;43400:1950;;45360:60;45389:1;45393:2;45397:12;45411:8;45360:20;:60::i;:::-;43036:2392;42974:2454;;:::o;30350:324::-;30420:14;30653:1;30643:8;30640:15;30614:24;30610:46;30600:56;;30350:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:139::-;1959:5;1997:6;1984:20;1975:29;;2013:33;2040:5;2013:33;:::i;:::-;1913:139;;;;:::o;2075:370::-;2146:5;2195:3;2188:4;2180:6;2176:17;2172:27;2162:122;;2203:79;;:::i;:::-;2162:122;2320:6;2307:20;2345:94;2435:3;2427:6;2420:4;2412:6;2408:17;2345:94;:::i;:::-;2336:103;;2152:293;2075:370;;;;:::o;2468:::-;2539:5;2588:3;2581:4;2573:6;2569:17;2565:27;2555:122;;2596:79;;:::i;:::-;2555:122;2713:6;2700:20;2738:94;2828:3;2820:6;2813:4;2805:6;2801:17;2738:94;:::i;:::-;2729:103;;2545:293;2468:370;;;;:::o;2844:133::-;2887:5;2925:6;2912:20;2903:29;;2941:30;2965:5;2941:30;:::i;:::-;2844:133;;;;:::o;2983:137::-;3028:5;3066:6;3053:20;3044:29;;3082:32;3108:5;3082:32;:::i;:::-;2983:137;;;;:::o;3126:141::-;3182:5;3213:6;3207:13;3198:22;;3229:32;3255:5;3229:32;:::i;:::-;3126:141;;;;:::o;3286:338::-;3341:5;3390:3;3383:4;3375:6;3371:17;3367:27;3357:122;;3398:79;;:::i;:::-;3357:122;3515:6;3502:20;3540:78;3614:3;3606:6;3599:4;3591:6;3587:17;3540:78;:::i;:::-;3531:87;;3347:277;3286:338;;;;:::o;3644:553::-;3702:8;3712:6;3762:3;3755:4;3747:6;3743:17;3739:27;3729:122;;3770:79;;:::i;:::-;3729:122;3883:6;3870:20;3860:30;;3913:18;3905:6;3902:30;3899:117;;;3935:79;;:::i;:::-;3899:117;4049:4;4041:6;4037:17;4025:29;;4103:3;4095:4;4087:6;4083:17;4073:8;4069:32;4066:41;4063:128;;;4110:79;;:::i;:::-;4063:128;3644:553;;;;;:::o;4203:139::-;4249:5;4287:6;4274:20;4265:29;;4303:33;4330:5;4303:33;:::i;:::-;4203:139;;;;:::o;4348:329::-;4407:6;4456:2;4444:9;4435:7;4431:23;4427:32;4424:119;;;4462:79;;:::i;:::-;4424:119;4582:1;4607:53;4652:7;4643:6;4632:9;4628:22;4607:53;:::i;:::-;4597:63;;4553:117;4348:329;;;;:::o;4683:474::-;4751:6;4759;4808:2;4796:9;4787:7;4783:23;4779:32;4776:119;;;4814:79;;:::i;:::-;4776:119;4934:1;4959:53;5004:7;4995:6;4984:9;4980:22;4959:53;:::i;:::-;4949:63;;4905:117;5061:2;5087:53;5132:7;5123:6;5112:9;5108:22;5087:53;:::i;:::-;5077:63;;5032:118;4683:474;;;;;:::o;5163:619::-;5240:6;5248;5256;5305:2;5293:9;5284:7;5280:23;5276:32;5273:119;;;5311:79;;:::i;:::-;5273:119;5431:1;5456:53;5501:7;5492:6;5481:9;5477:22;5456:53;:::i;:::-;5446:63;;5402:117;5558:2;5584:53;5629:7;5620:6;5609:9;5605:22;5584:53;:::i;:::-;5574:63;;5529:118;5686:2;5712:53;5757:7;5748:6;5737:9;5733:22;5712:53;:::i;:::-;5702:63;;5657:118;5163:619;;;;;:::o;5788:943::-;5883:6;5891;5899;5907;5956:3;5944:9;5935:7;5931:23;5927:33;5924:120;;;5963:79;;:::i;:::-;5924:120;6083:1;6108:53;6153:7;6144:6;6133:9;6129:22;6108:53;:::i;:::-;6098:63;;6054:117;6210:2;6236:53;6281:7;6272:6;6261:9;6257:22;6236:53;:::i;:::-;6226:63;;6181:118;6338:2;6364:53;6409:7;6400:6;6389:9;6385:22;6364:53;:::i;:::-;6354:63;;6309:118;6494:2;6483:9;6479:18;6466:32;6525:18;6517:6;6514:30;6511:117;;;6547:79;;:::i;:::-;6511:117;6652:62;6706:7;6697:6;6686:9;6682:22;6652:62;:::i;:::-;6642:72;;6437:287;5788:943;;;;;;;:::o;6737:468::-;6802:6;6810;6859:2;6847:9;6838:7;6834:23;6830:32;6827:119;;;6865:79;;:::i;:::-;6827:119;6985:1;7010:53;7055:7;7046:6;7035:9;7031:22;7010:53;:::i;:::-;7000:63;;6956:117;7112:2;7138:50;7180:7;7171:6;7160:9;7156:22;7138:50;:::i;:::-;7128:60;;7083:115;6737:468;;;;;:::o;7211:474::-;7279:6;7287;7336:2;7324:9;7315:7;7311:23;7307:32;7304:119;;;7342:79;;:::i;:::-;7304:119;7462:1;7487:53;7532:7;7523:6;7512:9;7508:22;7487:53;:::i;:::-;7477:63;;7433:117;7589:2;7615:53;7660:7;7651:6;7640:9;7636:22;7615:53;:::i;:::-;7605:63;;7560:118;7211:474;;;;;:::o;7691:894::-;7809:6;7817;7866:2;7854:9;7845:7;7841:23;7837:32;7834:119;;;7872:79;;:::i;:::-;7834:119;8020:1;8009:9;8005:17;7992:31;8050:18;8042:6;8039:30;8036:117;;;8072:79;;:::i;:::-;8036:117;8177:78;8247:7;8238:6;8227:9;8223:22;8177:78;:::i;:::-;8167:88;;7963:302;8332:2;8321:9;8317:18;8304:32;8363:18;8355:6;8352:30;8349:117;;;8385:79;;:::i;:::-;8349:117;8490:78;8560:7;8551:6;8540:9;8536:22;8490:78;:::i;:::-;8480:88;;8275:303;7691:894;;;;;:::o;8591:327::-;8649:6;8698:2;8686:9;8677:7;8673:23;8669:32;8666:119;;;8704:79;;:::i;:::-;8666:119;8824:1;8849:52;8893:7;8884:6;8873:9;8869:22;8849:52;:::i;:::-;8839:62;;8795:116;8591:327;;;;:::o;8924:349::-;8993:6;9042:2;9030:9;9021:7;9017:23;9013:32;9010:119;;;9048:79;;:::i;:::-;9010:119;9168:1;9193:63;9248:7;9239:6;9228:9;9224:22;9193:63;:::i;:::-;9183:73;;9139:127;8924:349;;;;:::o;9279:529::-;9350:6;9358;9407:2;9395:9;9386:7;9382:23;9378:32;9375:119;;;9413:79;;:::i;:::-;9375:119;9561:1;9550:9;9546:17;9533:31;9591:18;9583:6;9580:30;9577:117;;;9613:79;;:::i;:::-;9577:117;9726:65;9783:7;9774:6;9763:9;9759:22;9726:65;:::i;:::-;9708:83;;;;9504:297;9279:529;;;;;:::o;9814:329::-;9873:6;9922:2;9910:9;9901:7;9897:23;9893:32;9890:119;;;9928:79;;:::i;:::-;9890:119;10048:1;10073:53;10118:7;10109:6;10098:9;10094:22;10073:53;:::i;:::-;10063:63;;10019:117;9814:329;;;;:::o;10149:118::-;10236:24;10254:5;10236:24;:::i;:::-;10231:3;10224:37;10149:118;;:::o;10273:109::-;10354:21;10369:5;10354:21;:::i;:::-;10349:3;10342:34;10273:109;;:::o;10388:360::-;10474:3;10502:38;10534:5;10502:38;:::i;:::-;10556:70;10619:6;10614:3;10556:70;:::i;:::-;10549:77;;10635:52;10680:6;10675:3;10668:4;10661:5;10657:16;10635:52;:::i;:::-;10712:29;10734:6;10712:29;:::i;:::-;10707:3;10703:39;10696:46;;10478:270;10388:360;;;;:::o;10754:171::-;10861:57;10912:5;10861:57;:::i;:::-;10856:3;10849:70;10754:171;;:::o;10931:364::-;11019:3;11047:39;11080:5;11047:39;:::i;:::-;11102:71;11166:6;11161:3;11102:71;:::i;:::-;11095:78;;11182:52;11227:6;11222:3;11215:4;11208:5;11204:16;11182:52;:::i;:::-;11259:29;11281:6;11259:29;:::i;:::-;11254:3;11250:39;11243:46;;11023:272;10931:364;;;;:::o;11301:377::-;11407:3;11435:39;11468:5;11435:39;:::i;:::-;11490:89;11572:6;11567:3;11490:89;:::i;:::-;11483:96;;11588:52;11633:6;11628:3;11621:4;11614:5;11610:16;11588:52;:::i;:::-;11665:6;11660:3;11656:16;11649:23;;11411:267;11301:377;;;;:::o;11684:366::-;11826:3;11847:67;11911:2;11906:3;11847:67;:::i;:::-;11840:74;;11923:93;12012:3;11923:93;:::i;:::-;12041:2;12036:3;12032:12;12025:19;;11684:366;;;:::o;12056:::-;12198:3;12219:67;12283:2;12278:3;12219:67;:::i;:::-;12212:74;;12295:93;12384:3;12295:93;:::i;:::-;12413:2;12408:3;12404:12;12397:19;;12056:366;;;:::o;12428:::-;12570:3;12591:67;12655:2;12650:3;12591:67;:::i;:::-;12584:74;;12667:93;12756:3;12667:93;:::i;:::-;12785:2;12780:3;12776:12;12769:19;;12428:366;;;:::o;12800:::-;12942:3;12963:67;13027:2;13022:3;12963:67;:::i;:::-;12956:74;;13039:93;13128:3;13039:93;:::i;:::-;13157:2;13152:3;13148:12;13141:19;;12800:366;;;:::o;13172:::-;13314:3;13335:67;13399:2;13394:3;13335:67;:::i;:::-;13328:74;;13411:93;13500:3;13411:93;:::i;:::-;13529:2;13524:3;13520:12;13513:19;;13172:366;;;:::o;13544:::-;13686:3;13707:67;13771:2;13766:3;13707:67;:::i;:::-;13700:74;;13783:93;13872:3;13783:93;:::i;:::-;13901:2;13896:3;13892:12;13885:19;;13544:366;;;:::o;13916:400::-;14076:3;14097:84;14179:1;14174:3;14097:84;:::i;:::-;14090:91;;14190:93;14279:3;14190:93;:::i;:::-;14308:1;14303:3;14299:11;14292:18;;13916:400;;;:::o;14322:366::-;14464:3;14485:67;14549:2;14544:3;14485:67;:::i;:::-;14478:74;;14561:93;14650:3;14561:93;:::i;:::-;14679:2;14674:3;14670:12;14663:19;;14322:366;;;:::o;14694:::-;14836:3;14857:67;14921:2;14916:3;14857:67;:::i;:::-;14850:74;;14933:93;15022:3;14933:93;:::i;:::-;15051:2;15046:3;15042:12;15035:19;;14694:366;;;:::o;15066:398::-;15225:3;15246:83;15327:1;15322:3;15246:83;:::i;:::-;15239:90;;15338:93;15427:3;15338:93;:::i;:::-;15456:1;15451:3;15447:11;15440:18;;15066:398;;;:::o;15470:366::-;15612:3;15633:67;15697:2;15692:3;15633:67;:::i;:::-;15626:74;;15709:93;15798:3;15709:93;:::i;:::-;15827:2;15822:3;15818:12;15811:19;;15470:366;;;:::o;15842:118::-;15929:24;15947:5;15929:24;:::i;:::-;15924:3;15917:37;15842:118;;:::o;15966:701::-;16247:3;16269:95;16360:3;16351:6;16269:95;:::i;:::-;16262:102;;16381:95;16472:3;16463:6;16381:95;:::i;:::-;16374:102;;16493:148;16637:3;16493:148;:::i;:::-;16486:155;;16658:3;16651:10;;15966:701;;;;;:::o;16673:379::-;16857:3;16879:147;17022:3;16879:147;:::i;:::-;16872:154;;17043:3;17036:10;;16673:379;;;:::o;17058:222::-;17151:4;17189:2;17178:9;17174:18;17166:26;;17202:71;17270:1;17259:9;17255:17;17246:6;17202:71;:::i;:::-;17058:222;;;;:::o;17286:640::-;17481:4;17519:3;17508:9;17504:19;17496:27;;17533:71;17601:1;17590:9;17586:17;17577:6;17533:71;:::i;:::-;17614:72;17682:2;17671:9;17667:18;17658:6;17614:72;:::i;:::-;17696;17764:2;17753:9;17749:18;17740:6;17696:72;:::i;:::-;17815:9;17809:4;17805:20;17800:2;17789:9;17785:18;17778:48;17843:76;17914:4;17905:6;17843:76;:::i;:::-;17835:84;;17286:640;;;;;;;:::o;17932:210::-;18019:4;18057:2;18046:9;18042:18;18034:26;;18070:65;18132:1;18121:9;18117:17;18108:6;18070:65;:::i;:::-;17932:210;;;;:::o;18148:262::-;18261:4;18299:2;18288:9;18284:18;18276:26;;18312:91;18400:1;18389:9;18385:17;18376:6;18312:91;:::i;:::-;18148:262;;;;:::o;18416:313::-;18529:4;18567:2;18556:9;18552:18;18544:26;;18616:9;18610:4;18606:20;18602:1;18591:9;18587:17;18580:47;18644:78;18717:4;18708:6;18644:78;:::i;:::-;18636:86;;18416:313;;;;:::o;18735:419::-;18901:4;18939:2;18928:9;18924:18;18916:26;;18988:9;18982:4;18978:20;18974:1;18963:9;18959:17;18952:47;19016:131;19142:4;19016:131;:::i;:::-;19008:139;;18735:419;;;:::o;19160:::-;19326:4;19364:2;19353:9;19349:18;19341:26;;19413:9;19407:4;19403:20;19399:1;19388:9;19384:17;19377:47;19441:131;19567:4;19441:131;:::i;:::-;19433:139;;19160:419;;;:::o;19585:::-;19751:4;19789:2;19778:9;19774:18;19766:26;;19838:9;19832:4;19828:20;19824:1;19813:9;19809:17;19802:47;19866:131;19992:4;19866:131;:::i;:::-;19858:139;;19585:419;;;:::o;20010:::-;20176:4;20214:2;20203:9;20199:18;20191:26;;20263:9;20257:4;20253:20;20249:1;20238:9;20234:17;20227:47;20291:131;20417:4;20291:131;:::i;:::-;20283:139;;20010:419;;;:::o;20435:::-;20601:4;20639:2;20628:9;20624:18;20616:26;;20688:9;20682:4;20678:20;20674:1;20663:9;20659:17;20652:47;20716:131;20842:4;20716:131;:::i;:::-;20708:139;;20435:419;;;:::o;20860:::-;21026:4;21064:2;21053:9;21049:18;21041:26;;21113:9;21107:4;21103:20;21099:1;21088:9;21084:17;21077:47;21141:131;21267:4;21141:131;:::i;:::-;21133:139;;20860:419;;;:::o;21285:::-;21451:4;21489:2;21478:9;21474:18;21466:26;;21538:9;21532:4;21528:20;21524:1;21513:9;21509:17;21502:47;21566:131;21692:4;21566:131;:::i;:::-;21558:139;;21285:419;;;:::o;21710:::-;21876:4;21914:2;21903:9;21899:18;21891:26;;21963:9;21957:4;21953:20;21949:1;21938:9;21934:17;21927:47;21991:131;22117:4;21991:131;:::i;:::-;21983:139;;21710:419;;;:::o;22135:::-;22301:4;22339:2;22328:9;22324:18;22316:26;;22388:9;22382:4;22378:20;22374:1;22363:9;22359:17;22352:47;22416:131;22542:4;22416:131;:::i;:::-;22408:139;;22135:419;;;:::o;22560:222::-;22653:4;22691:2;22680:9;22676:18;22668:26;;22704:71;22772:1;22761:9;22757:17;22748:6;22704:71;:::i;:::-;22560:222;;;;:::o;22788:129::-;22822:6;22849:20;;:::i;:::-;22839:30;;22878:33;22906:4;22898:6;22878:33;:::i;:::-;22788:129;;;:::o;22923:75::-;22956:6;22989:2;22983:9;22973:19;;22923:75;:::o;23004:311::-;23081:4;23171:18;23163:6;23160:30;23157:56;;;23193:18;;:::i;:::-;23157:56;23243:4;23235:6;23231:17;23223:25;;23303:4;23297;23293:15;23285:23;;23004:311;;;:::o;23321:::-;23398:4;23488:18;23480:6;23477:30;23474:56;;;23510:18;;:::i;:::-;23474:56;23560:4;23552:6;23548:17;23540:25;;23620:4;23614;23610:15;23602:23;;23321:311;;;:::o;23638:307::-;23699:4;23789:18;23781:6;23778:30;23775:56;;;23811:18;;:::i;:::-;23775:56;23849:29;23871:6;23849:29;:::i;:::-;23841:37;;23933:4;23927;23923:15;23915:23;;23638:307;;;:::o;23951:98::-;24002:6;24036:5;24030:12;24020:22;;23951:98;;;:::o;24055:99::-;24107:6;24141:5;24135:12;24125:22;;24055:99;;;:::o;24160:168::-;24243:11;24277:6;24272:3;24265:19;24317:4;24312:3;24308:14;24293:29;;24160:168;;;;:::o;24334:147::-;24435:11;24472:3;24457:18;;24334:147;;;;:::o;24487:169::-;24571:11;24605:6;24600:3;24593:19;24645:4;24640:3;24636:14;24621:29;;24487:169;;;;:::o;24662:148::-;24764:11;24801:3;24786:18;;24662:148;;;;:::o;24816:305::-;24856:3;24875:20;24893:1;24875:20;:::i;:::-;24870:25;;24909:20;24927:1;24909:20;:::i;:::-;24904:25;;25063:1;24995:66;24991:74;24988:1;24985:81;24982:107;;;25069:18;;:::i;:::-;24982:107;25113:1;25110;25106:9;25099:16;;24816:305;;;;:::o;25127:185::-;25167:1;25184:20;25202:1;25184:20;:::i;:::-;25179:25;;25218:20;25236:1;25218:20;:::i;:::-;25213:25;;25257:1;25247:35;;25262:18;;:::i;:::-;25247:35;25304:1;25301;25297:9;25292:14;;25127:185;;;;:::o;25318:348::-;25358:7;25381:20;25399:1;25381:20;:::i;:::-;25376:25;;25415:20;25433:1;25415:20;:::i;:::-;25410:25;;25603:1;25535:66;25531:74;25528:1;25525:81;25520:1;25513:9;25506:17;25502:105;25499:131;;;25610:18;;:::i;:::-;25499:131;25658:1;25655;25651:9;25640:20;;25318:348;;;;:::o;25672:191::-;25712:4;25732:20;25750:1;25732:20;:::i;:::-;25727:25;;25766:20;25784:1;25766:20;:::i;:::-;25761:25;;25805:1;25802;25799:8;25796:34;;;25810:18;;:::i;:::-;25796:34;25855:1;25852;25848:9;25840:17;;25672:191;;;;:::o;25869:96::-;25906:7;25935:24;25953:5;25935:24;:::i;:::-;25924:35;;25869:96;;;:::o;25971:90::-;26005:7;26048:5;26041:13;26034:21;26023:32;;25971:90;;;:::o;26067:149::-;26103:7;26143:66;26136:5;26132:78;26121:89;;26067:149;;;:::o;26222:155::-;26281:7;26310:5;26299:16;;26316:55;26365:5;26316:55;:::i;:::-;26222:155;;;:::o;26383:126::-;26420:7;26460:42;26453:5;26449:54;26438:65;;26383:126;;;:::o;26515:77::-;26552:7;26581:5;26570:16;;26515:77;;;:::o;26598:155::-;26668:9;26701:46;26741:5;26701:46;:::i;:::-;26688:59;;26598:155;;;:::o;26759:154::-;26843:6;26838:3;26833;26820:30;26905:1;26896:6;26891:3;26887:16;26880:27;26759:154;;;:::o;26919:307::-;26987:1;26997:113;27011:6;27008:1;27005:13;26997:113;;;27096:1;27091:3;27087:11;27081:18;27077:1;27072:3;27068:11;27061:39;27033:2;27030:1;27026:10;27021:15;;26997:113;;;27128:6;27125:1;27122:13;27119:101;;;27208:1;27199:6;27194:3;27190:16;27183:27;27119:101;26968:258;26919:307;;;:::o;27232:320::-;27276:6;27313:1;27307:4;27303:12;27293:22;;27360:1;27354:4;27350:12;27381:18;27371:81;;27437:4;27429:6;27425:17;27415:27;;27371:81;27499:2;27491:6;27488:14;27468:18;27465:38;27462:84;;;27518:18;;:::i;:::-;27462:84;27283:269;27232:320;;;:::o;27558:281::-;27641:27;27663:4;27641:27;:::i;:::-;27633:6;27629:40;27771:6;27759:10;27756:22;27735:18;27723:10;27720:34;27717:62;27714:88;;;27782:18;;:::i;:::-;27714:88;27822:10;27818:2;27811:22;27601:238;27558:281;;:::o;27845:233::-;27884:3;27907:24;27925:5;27907:24;:::i;:::-;27898:33;;27953:66;27946:5;27943:77;27940:103;;;28023:18;;:::i;:::-;27940:103;28070:1;28063:5;28059:13;28052:20;;27845:233;;;:::o;28084:176::-;28116:1;28133:20;28151:1;28133:20;:::i;:::-;28128:25;;28167:20;28185:1;28167:20;:::i;:::-;28162:25;;28206:1;28196:35;;28211:18;;:::i;:::-;28196:35;28252:1;28249;28245:9;28240:14;;28084:176;;;;:::o;28266:180::-;28314:77;28311:1;28304:88;28411:4;28408:1;28401:15;28435:4;28432:1;28425:15;28452:180;28500:77;28497:1;28490:88;28597:4;28594:1;28587:15;28621:4;28618:1;28611:15;28638:180;28686:77;28683:1;28676:88;28783:4;28780:1;28773:15;28807:4;28804:1;28797:15;28824:180;28872:77;28869:1;28862:88;28969:4;28966:1;28959:15;28993:4;28990:1;28983:15;29010:180;29058:77;29055:1;29048:88;29155:4;29152:1;29145:15;29179:4;29176:1;29169:15;29196:180;29244:77;29241:1;29234:88;29341:4;29338:1;29331:15;29365:4;29362:1;29355:15;29382:117;29491:1;29488;29481:12;29505:117;29614:1;29611;29604:12;29628:117;29737:1;29734;29727:12;29751:117;29860:1;29857;29850:12;29874:117;29983:1;29980;29973:12;29997:117;30106:1;30103;30096:12;30120:102;30161:6;30212:2;30208:7;30203:2;30196:5;30192:14;30188:28;30178:38;;30120:102;;;:::o;30228:220::-;30368:34;30364:1;30356:6;30352:14;30345:58;30437:3;30432:2;30424:6;30420:15;30413:28;30228:220;:::o;30454:225::-;30594:34;30590:1;30582:6;30578:14;30571:58;30663:8;30658:2;30650:6;30646:15;30639:33;30454:225;:::o;30685:168::-;30825:20;30821:1;30813:6;30809:14;30802:44;30685:168;:::o;30859:166::-;30999:18;30995:1;30987:6;30983:14;30976:42;30859:166;:::o;31031:169::-;31171:21;31167:1;31159:6;31155:14;31148:45;31031:169;:::o;31206:179::-;31346:31;31342:1;31334:6;31330:14;31323:55;31206:179;:::o;31391:155::-;31531:7;31527:1;31519:6;31515:14;31508:31;31391:155;:::o;31552:182::-;31692:34;31688:1;31680:6;31676:14;31669:58;31552:182;:::o;31740:163::-;31880:15;31876:1;31868:6;31864:14;31857:39;31740:163;:::o;31909:114::-;;:::o;32029:166::-;32169:18;32165:1;32157:6;32153:14;32146:42;32029:166;:::o;32201:127::-;32296:1;32289:5;32286:12;32276:46;;32302:18;;:::i;:::-;32276:46;32201:127;:::o;32334:122::-;32407:24;32425:5;32407:24;:::i;:::-;32400:5;32397:35;32387:63;;32446:1;32443;32436:12;32387:63;32334:122;:::o;32462:116::-;32532:21;32547:5;32532:21;:::i;:::-;32525:5;32522:32;32512:60;;32568:1;32565;32558:12;32512:60;32462:116;:::o;32584:120::-;32656:23;32673:5;32656:23;:::i;:::-;32649:5;32646:34;32636:62;;32694:1;32691;32684:12;32636:62;32584:120;:::o;32710:122::-;32783:24;32801:5;32783:24;:::i;:::-;32776:5;32773:35;32763:63;;32822:1;32819;32812:12;32763:63;32710:122;:::o

Swarm Source

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

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