ETH Price: $3,440.63 (+1.45%)
Gas: 4 Gwei

Token

Suji (SUJI)
 

Overview

Max Total Supply

5,555 SUJI

Holders

4,944

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
grip710.eth
Balance
1 SUJI
0x94f64856e55ab61447f22f90e49ebef60d39b9a1
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:
Suji

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
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();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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
    ) external;

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

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

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

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

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

    // ==============================
    //        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 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(
        uint256 indexed fromTokenId,
        uint256 toTokenId,
        address indexed from,
        address indexed to
    );
}

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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;

    // 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 tokenId of the next token 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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly {
            // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags)
        private
        view
        returns (uint256 value)
    {
        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`.
            value := or(
                owner,
                or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)
            )
        }
    }

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    /**
     * @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 "";
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        override
        returns (address)
    {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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,
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED) |
                    _nextExtraData(address(0), to, 0)
            );

            uint256 offset = startTokenId;
            uint256 end = quantity + startTokenId;
            do {
                emit Transfer(address(0), to, offset++);
            } while (offset < end);

            _currentIndex = startTokenId + quantity;
        }
        _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 {
        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 number minted.
            _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,
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED) |
                    _nextExtraData(address(0), to, 0)
            );

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

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

    /**
     * @dev Zeroes out _tokenApprovals[tokenId]
     */
    function _removeTokenApproval(uint256 tokenId) private {
        mapping(uint256 => address) storage tokenApprovalPtr = _tokenApprovals;
        assembly {
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalPtr.slot)
            let hash := keccak256(0, 0x40)
            sstore(hash, 0)
        }
    }

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

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (approvedAddress != address(0)) {
            _removeTokenApproval(tokenId);
        }

        // 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 `_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));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (approvedAddress != address(0)) {
            _removeTokenApproval(tokenId);
        }

        // 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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try
            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))
                }
            }
        }
    }

    /**
     * @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
    ) internal view virtual returns (uint256) {
        uint24 previousExtraData;
        assembly {
            previousExtraData := shr(BITPOS_EXTRA_DATA, prevOwnershipPacked)
        }
        return
            uint256(_extraData(from, to, previousExtraData)) <<
            BITPOS_EXTRA_DATA;
    }

    /**
     * @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 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 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
        returns (string memory ptr)
    {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 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: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}
// ERC721A Contracts v4.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds)
        external
        view
        returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner)
        external
        view
        returns (uint256[] memory);
}
// ERC721A Contracts v4.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (TokenOwnership memory)
    {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](
                tokenIdsLength
            );
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (
                uint256 i = start;
                i != stop && tokenIdsIdx != tokenIdsMaxLength;
                ++i
            ) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner)
        external
        view
        virtual
        override
        returns (uint256[] memory)
    {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (
                uint256 i = _startTokenId();
                tokenIdsIdx != tokenIdsLength;
                ++i
            ) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

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;
    }
}

// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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);
    }
}
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

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

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

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

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf)
        internal
        pure
        returns (bytes32)
    {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(
                    abi.encodePacked(computedHash, proofElement)
                );
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(
                    abi.encodePacked(proofElement, computedHash)
                );
            }
        }
        return computedHash;
    }
}

pragma solidity ^0.8.4;
error MintedOut();
error EthAmount();
error WLCap();
error SupplyCap();

contract Suji is Ownable, ReentrancyGuard, ERC721A, ERC721AQueryable {
    uint256 public constant maxWL = 2;
    uint256 public constant maxPublic = 1;
    uint256 public maxSupply = 5555;
    uint256 public price = 0.0055 ether;
    bool public mintActive;
    bool public publicActive;
    bytes32 private _wlMerkleRoot;
    string private _baseTokenURI;

    mapping(address => uint256) public userPubMints;

    constructor(
        string memory _inputURI,
        bytes32 _wlRoot
    ) ERC721A("Suji", "SUJI") {
        _baseTokenURI = _inputURI;
        _wlMerkleRoot = _wlRoot;
    }

    modifier mintCompliance(uint256 _quantity, uint256 value) {
        if (price * _quantity > value) revert EthAmount();
        require(tx.origin == msg.sender, "Wrong Caller");
        require(mintActive, "Mint inactive");
        if (maxSupply < totalSupply() + _quantity) revert MintedOut();
        _;
    }

    //External Functions
    function wlMint(uint256 _quantity, bytes32[] calldata proof)
        external
        payable
        mintCompliance(_quantity, msg.value)
        nonReentrant
    {
        if (_numberMinted(msg.sender) + _quantity > maxWL) revert WLCap();
        require(
            MerkleProof.verify(proof, _wlMerkleRoot, _leaf(msg.sender)),
            "Not WL"
        );
        _mint(msg.sender, _quantity);
    }

    function publicMint() external payable mintCompliance(1, msg.value) {
        require(publicActive, "Public inactive");
        require(userPubMints[msg.sender] == 0, "Already Minted");
        userPubMints[msg.sender] = 1;
        _mint(msg.sender, 1);
    }

    function userMints(address _account)
        external
        view
        virtual
        returns (uint256)
    {
        return _numberMinted(_account);
    }

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

    function _leaf(address _account) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(_account));
    }

    //Ownable functions
    function teamMint(uint256 _quantity, address _to) external onlyOwner {
        if (maxSupply < totalSupply() + _quantity) revert SupplyCap();
        _mint(_to, _quantity);
    }

    function setMerkleRoot(bytes32 _root) public onlyOwner {
        _wlMerkleRoot = _root;
    }

    function flipMintState() external onlyOwner {
        mintActive = !mintActive;
    }

    function flipPublic() external onlyOwner {
        publicActive = !publicActive;
    }

    function reduceSupply(uint256 _amount) external onlyOwner {
        if (totalSupply() > _amount) revert SupplyCap();
        if (_amount > maxSupply) revert SupplyCap();
        maxSupply = _amount;
    }

    function changePrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setBaseURI(string memory _inputURI) public onlyOwner {
        _baseTokenURI = _inputURI;
    }

    function withdrawFunds(address _to, uint256 _amount) external onlyOwner {
        (bool success, ) = payable(_to).call{value: _amount}("");
        require(success, "transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_inputURI","type":"string"},{"internalType":"bytes32","name":"_wlRoot","type":"bytes32"}],"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":"EthAmount","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedOut","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"SupplyCap","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"WLCap","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":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"_inputURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setMerkleRoot","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":"_quantity","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"_account","type":"address"}],"name":"userMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userPubMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"wlMint","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526115b3600a5566138a388a43c000600b553480156200002257600080fd5b5060405162002786380380620027868339810160408190526200004591620001ea565b6040518060400160405280600481526020016353756a6960e01b8152506040518060400160405280600481526020016353554a4960e01b8152506200009962000093620000f060201b60201c565b620000f4565b600180558151620000b290600490602085019062000144565b508051620000c890600590602084019062000144565b50600060025550508151620000e590600e90602085019062000144565b50600d55506200031c565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200015290620002c9565b90600052602060002090601f016020900481019282620001765760008555620001c1565b82601f106200019157805160ff1916838001178555620001c1565b82800160010185558215620001c1579182015b82811115620001c1578251825591602001919060010190620001a4565b50620001cf929150620001d3565b5090565b5b80821115620001cf5760008155600101620001d4565b60008060408385031215620001fd578182fd5b82516001600160401b038082111562000214578384fd5b818501915085601f83011262000228578384fd5b8151818111156200023d576200023d62000306565b604051601f8201601f19908116603f0116810190838211818310171562000268576200026862000306565b8160405282815260209350888484870101111562000284578687fd5b8691505b82821015620002a7578482018401518183018501529083019062000288565b82821115620002b857868484830101525b969092015195979596505050505050565b600181811c90821680620002de57607f821691505b602082108114156200030057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61245a806200032c6000396000f3fe6080604052600436106102305760003560e01c80637dc429751161012e578063bfa457bc116100ab578063cc2f10d41161006f578063cc2f10d41461066e578063d5abeb0114610683578063df28233114610699578063e985e9c5146106b9578063f2fde38b1461070257600080fd5b8063bfa457bc146105cc578063c1075329146105ec578063c23dc68f1461060c578063c877142b14610639578063c87b56dd1461064e57600080fd5b806399a2557a116100f257806399a2557a14610536578063a035b1fe14610556578063a22cb4651461056c578063a2b40d191461058c578063b88d4fde146105ac57600080fd5b80637dc42975146104a157806380623444146104b65780638462151c146104d65780638da5cb5b1461050357806395d89b411461052157600080fd5b80633f2981cf116101bc5780636352211e116101805780636352211e146103ff57806370a082311461041f578063715018a61461043f5780637aebcdee146104545780637cb647591461048157600080fd5b80633f2981cf1461035e57806342842e0e1461037d57806355f804b31461039d57806359c74f29146103bd5780635bbb2177146103d257600080fd5b806318160ddd1161020357806318160ddd146102e657806323b872dd1461030957806325fd90f31461032957806326092b83146103435780633ef0d36d1461034b57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b5061025561025036600461208d565b610722565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610774565b60405161026191906122d3565b34801561029857600080fd5b506102ac6102a7366004612075565b610806565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df366004611fdb565b61084a565b005b3480156102f257600080fd5b50600354600254035b604051908152602001610261565b34801561031557600080fd5b506102e4610324366004611eee565b6108ea565b34801561033557600080fd5b50600c546102559060ff1681565b6102e46108fa565b6102e461035936600461212c565b610aa4565b34801561036a57600080fd5b50600c5461025590610100900460ff1681565b34801561038957600080fd5b506102e4610398366004611eee565b610ca6565b3480156103a957600080fd5b506102e46103b83660046120c5565b610cc1565b3480156103c957600080fd5b506102e4610cfe565b3480156103de57600080fd5b506103f26103ed366004612036565b610d3c565b6040516102619190612259565b34801561040b57600080fd5b506102ac61041a366004612075565b610e31565b34801561042b57600080fd5b506102fb61043a366004611ea2565b610e3c565b34801561044b57600080fd5b506102e4610e8a565b34801561046057600080fd5b506102fb61046f366004611ea2565b600f6020526000908152604090205481565b34801561048d57600080fd5b506102e461049c366004612075565b610ec0565b3480156104ad57600080fd5b506102fb600181565b3480156104c257600080fd5b506102e46104d1366004612075565b610eef565b3480156104e257600080fd5b506104f66104f1366004611ea2565b610f6e565b604051610261919061229b565b34801561050f57600080fd5b506000546001600160a01b03166102ac565b34801561052d57600080fd5b5061027f611099565b34801561054257600080fd5b506104f6610551366004612004565b6110a8565b34801561056257600080fd5b506102fb600b5481565b34801561057857600080fd5b506102e4610587366004611fa1565b611241565b34801561059857600080fd5b506102e46105a7366004612075565b6112d7565b3480156105b857600080fd5b506102e46105c7366004611f29565b611306565b3480156105d857600080fd5b506102e46105e736600461210a565b611350565b3480156105f857600080fd5b506102e4610607366004611fdb565b6113be565b34801561061857600080fd5b5061062c610627366004612075565b61147e565b604051610261919061231b565b34801561064557600080fd5b506102e46114f6565b34801561065a57600080fd5b5061027f610669366004612075565b61153d565b34801561067a57600080fd5b506102fb600281565b34801561068f57600080fd5b506102fb600a5481565b3480156106a557600080fd5b506102fb6106b4366004611ea2565b6115c1565b3480156106c557600080fd5b506102556106d4366004611ebc565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b34801561070e57600080fd5b506102e461071d366004611ea2565b6115eb565b60006301ffc9a760e01b6001600160e01b03198316148061075357506380ac58cd60e01b6001600160e01b03198316145b8061076e5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600480546107839061238c565b80601f01602080910402602001604051908101604052809291908181526020018280546107af9061238c565b80156107fc5780601f106107d1576101008083540402835291602001916107fc565b820191906000526020600020905b8154815290600101906020018083116107df57829003601f168201915b5050505050905090565b600061081182611686565b61082e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b600061085582610e31565b9050336001600160a01b0382161461088e5761087181336106d4565b61088e576040516367d9dca160e11b815260040160405180910390fd5b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108f58383836116ae565b505050565b6001348082600b5461090c9190612341565b111561092b576040516332afe6d360e21b815260040160405180910390fd5b32331461096e5760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b60448201526064015b60405180910390fd5b600c5460ff166109b05760405162461bcd60e51b815260206004820152600d60248201526c4d696e7420696e61637469766560981b6044820152606401610965565b816109be6003546002540390565b6109c89190612329565b600a5410156109ea57604051634237dcf160e11b815260040160405180910390fd5b600c54610100900460ff16610a335760405162461bcd60e51b815260206004820152600f60248201526e5075626c696320696e61637469766560881b6044820152606401610965565b336000908152600f602052604090205415610a815760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e48135a5b9d195960921b6044820152606401610965565b336000818152600f60205260409020600190819055610aa09190611869565b5050565b82348082600b54610ab59190612341565b1115610ad4576040516332afe6d360e21b815260040160405180910390fd5b323314610b125760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b6044820152606401610965565b600c5460ff16610b545760405162461bcd60e51b815260206004820152600d60248201526c4d696e7420696e61637469766560981b6044820152606401610965565b81610b626003546002540390565b610b6c9190612329565b600a541015610b8e57604051634237dcf160e11b815260040160405180910390fd5b610b96611946565b336000908152600760205260409081902054600291610bc09188911c6001600160401b0316612329565b1115610bdf5760405163e83159d360e01b815260040160405180910390fd5b610c5784848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d54604080513360601b6bffffffffffffffffffffffff1916602080830191909152825160148184030181526034909201909252805191012090925090506119a0565b610c8c5760405162461bcd60e51b8152602060048201526006602482015265139bdd0815d360d21b6044820152606401610965565b610c963386611869565b610c9f60018055565b5050505050565b6108f583838360405180602001604052806000815250611306565b6000546001600160a01b03163314610ceb5760405162461bcd60e51b8152600401610965906122e6565b8051610aa090600e906020840190611d2f565b6000546001600160a01b03163314610d285760405162461bcd60e51b8152600401610965906122e6565b600c805460ff19811660ff90911615179055565b6060816000816001600160401b03811115610d6757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610db957816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610d855790505b50905060005b828114610e2857610df5868683818110610de957634e487b7160e01b600052603260045260246000fd5b9050602002013561147e565b828281518110610e1557634e487b7160e01b600052603260045260246000fd5b6020908102919091010152600101610dbf565b50949350505050565b600061076e826119b6565b60006001600160a01b038216610e65576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600760205260409020546001600160401b031690565b6000546001600160a01b03163314610eb45760405162461bcd60e51b8152600401610965906122e6565b610ebe6000611a17565b565b6000546001600160a01b03163314610eea5760405162461bcd60e51b8152600401610965906122e6565b600d55565b6000546001600160a01b03163314610f195760405162461bcd60e51b8152600401610965906122e6565b80610f276003546002540390565b1115610f4657604051632eec1e2160e11b815260040160405180910390fd5b600a54811115610f6957604051632eec1e2160e11b815260040160405180910390fd5b600a55565b60606000806000610f7e85610e3c565b90506000816001600160401b03811115610fa857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610fd1578160200160208202803683370190505b509050610ffe60408051608081018252600080825260208201819052918101829052606081019190915290565b60005b83861461108d5761101181611a67565b915081604001511561102257611085565b81516001600160a01b03161561103757815194505b876001600160a01b0316856001600160a01b03161415611085578083878060010198508151811061107857634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b600101611001565b50909695505050505050565b6060600580546107839061238c565b60608183106110ca57604051631960ccad60e11b815260040160405180910390fd5b6000806110d660025490565b9050808411156110e4578093505b60006110ef87610e3c565b90508486101561110e5785850381811015611108578091505b50611112565b5060005b6000816001600160401b0381111561113a57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611163578160200160208202803683370190505b5090508161117657935061123a92505050565b60006111818861147e565b905060008160400151611192575080515b885b8881141580156111a45750848714155b1561122e576111b281611a67565b92508260400151156111c357611226565b82516001600160a01b0316156111d857825191505b8a6001600160a01b0316826001600160a01b03161415611226578084888060010199508151811061121957634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b600101611194565b50505092835250909150505b9392505050565b6001600160a01b03821633141561126b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146113015760405162461bcd60e51b8152600401610965906122e6565b600b55565b6113118484846116ae565b6001600160a01b0383163b1561134a5761132d84848484611aa3565b61134a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b0316331461137a5760405162461bcd60e51b8152600401610965906122e6565b816113886003546002540390565b6113929190612329565b600a5410156113b457604051632eec1e2160e11b815260040160405180910390fd5b610aa08183611869565b6000546001600160a01b031633146113e85760405162461bcd60e51b8152600401610965906122e6565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611435576040519150601f19603f3d011682016040523d82523d6000602084013e61143a565b606091505b50509050806108f55760405162461bcd60e51b815260206004820152601060248201526f3a3930b739b332b9103330b4b632b21760811b6044820152606401610965565b60408051608080820183526000808352602080840182905283850182905260608085018390528551938401865282845290830182905293820181905292810183905290915060025483106114d25792915050565b6114db83611a67565b90508060400151156114ed5792915050565b61123a83611b9b565b6000546001600160a01b031633146115205760405162461bcd60e51b8152600401610965906122e6565b600c805461ff001981166101009182900460ff1615909102179055565b606061154882611686565b61156557604051630a14c4b560e41b815260040160405180910390fd5b600061156f611bd0565b9050805160001415611590576040518060200160405280600081525061123a565b8061159a84611bdf565b6040516020016115ab9291906121dd565b6040516020818303038152906040529392505050565b6001600160a01b038116600090815260076020526040808220546001600160401b03911c1661076e565b6000546001600160a01b031633146116155760405162461bcd60e51b8152600401610965906122e6565b6001600160a01b03811661167a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610965565b61168381611a17565b50565b60006002548210801561076e575050600090815260066020526040902054600160e01b161590565b60006116b9826119b6565b9050836001600160a01b0316816001600160a01b0316146116ec5760405162a1148160e81b815260040160405180910390fd5b6000828152600860205260408120546001600160a01b039081169190861633148061171c575061171c86336106d4565b8061172f57506001600160a01b03821633145b90508061174f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661177657604051633a954ecd60e21b815260040160405180910390fd5b6001600160a01b03821615611795576000848152600860205260408120555b6001600160a01b038681166000908152600760205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260066020526040902055600160e11b8316611820576001840160008181526006602052604090205461181e57600254811461181e5760008181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6002546001600160a01b03831661189257604051622e076360e81b815260040160405180910390fd5b816118b05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260076020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260066020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106118fa5750500160025550565b600260015414156119995760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610965565b6002600155565b6000826119ad8584611c2e565b14949350505050565b6000816002548110156119fe57600081815260066020526040902054600160e01b81166119fc575b8061123a5750600019016000818152600660205260409020546119de565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526006602052604090205461076e90611ce8565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611ad890339089908890889060040161221c565b602060405180830381600087803b158015611af257600080fd5b505af1925050508015611b22575060408051601f3d908101601f19168201909252611b1f918101906120a9565b60015b611b7d573d808015611b50576040519150601f19603f3d011682016040523d82523d6000602084013e611b55565b606091505b508051611b75576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60408051608081018252600080825260208201819052918101829052606081019190915261076e611bcb836119b6565b611ce8565b6060600e80546107839061238c565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611c1c57600183039250600a81066030018353600a9004611bfe565b50819003601f19909101908152919050565b600081815b8451811015611ce0576000858281518110611c5e57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611ca0576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611ccd565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611cd8816123c7565b915050611c33565b509392505050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b828054611d3b9061238c565b90600052602060002090601f016020900481019282611d5d5760008555611da3565b82601f10611d7657805160ff1916838001178555611da3565b82800160010185558215611da3579182015b82811115611da3578251825591602001919060010190611d88565b50611daf929150611db3565b5090565b5b80821115611daf5760008155600101611db4565b60006001600160401b0380841115611de257611de26123f8565b604051601f8501601f19908116603f01168101908282118183101715611e0a57611e0a6123f8565b81604052809350858152868686011115611e2357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e5457600080fd5b919050565b60008083601f840112611e6a578081fd5b5081356001600160401b03811115611e80578182fd5b6020830191508360208260051b8501011115611e9b57600080fd5b9250929050565b600060208284031215611eb3578081fd5b61123a82611e3d565b60008060408385031215611ece578081fd5b611ed783611e3d565b9150611ee560208401611e3d565b90509250929050565b600080600060608486031215611f02578081fd5b611f0b84611e3d565b9250611f1960208501611e3d565b9150604084013590509250925092565b60008060008060808587031215611f3e578081fd5b611f4785611e3d565b9350611f5560208601611e3d565b92506040850135915060608501356001600160401b03811115611f76578182fd5b8501601f81018713611f86578182fd5b611f9587823560208401611dc8565b91505092959194509250565b60008060408385031215611fb3578182fd5b611fbc83611e3d565b915060208301358015158114611fd0578182fd5b809150509250929050565b60008060408385031215611fed578182fd5b611ff683611e3d565b946020939093013593505050565b600080600060608486031215612018578283fd5b61202184611e3d565b95602085013595506040909401359392505050565b60008060208385031215612048578182fd5b82356001600160401b0381111561205d578283fd5b61206985828601611e59565b90969095509350505050565b600060208284031215612086578081fd5b5035919050565b60006020828403121561209e578081fd5b813561123a8161240e565b6000602082840312156120ba578081fd5b815161123a8161240e565b6000602082840312156120d6578081fd5b81356001600160401b038111156120eb578182fd5b8201601f810184136120fb578182fd5b611b9384823560208401611dc8565b6000806040838503121561211c578182fd5b82359150611ee560208401611e3d565b600080600060408486031215612140578081fd5b8335925060208401356001600160401b0381111561215c578182fd5b61216886828701611e59565b9497909650939450505050565b6000815180845261218d816020860160208601612360565b601f01601f19169290920160200192915050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b600083516121ef818460208801612360565b835190830190612203818360208801612360565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061224f90830184612175565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561108d576122888385516121a1565b9284019260809290920191600101612275565b6020808252825182820181905260009190848201906040850190845b8181101561108d578351835292840192918401916001016122b7565b60208152600061123a6020830184612175565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6080810161076e82846121a1565b6000821982111561233c5761233c6123e2565b500190565b600081600019048311821515161561235b5761235b6123e2565b500290565b60005b8381101561237b578181015183820152602001612363565b8381111561134a5750506000910152565b600181811c908216806123a057607f821691505b602082108114156123c157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123db576123db6123e2565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461168357600080fdfea264697066735822122076d279589c57c07876a314c62f76ed6da1cfb9304fd25093032917b8e0ae4b2664736f6c634300080400330000000000000000000000000000000000000000000000000000000000000040f3d903a4785bcadb3e0e4d5576d55e30771b6adf15b3a21da780cb85c880273d0000000000000000000000000000000000000000000000000000000000000013697066733a2f2f706c616365686f6c6465722f00000000000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c80637dc429751161012e578063bfa457bc116100ab578063cc2f10d41161006f578063cc2f10d41461066e578063d5abeb0114610683578063df28233114610699578063e985e9c5146106b9578063f2fde38b1461070257600080fd5b8063bfa457bc146105cc578063c1075329146105ec578063c23dc68f1461060c578063c877142b14610639578063c87b56dd1461064e57600080fd5b806399a2557a116100f257806399a2557a14610536578063a035b1fe14610556578063a22cb4651461056c578063a2b40d191461058c578063b88d4fde146105ac57600080fd5b80637dc42975146104a157806380623444146104b65780638462151c146104d65780638da5cb5b1461050357806395d89b411461052157600080fd5b80633f2981cf116101bc5780636352211e116101805780636352211e146103ff57806370a082311461041f578063715018a61461043f5780637aebcdee146104545780637cb647591461048157600080fd5b80633f2981cf1461035e57806342842e0e1461037d57806355f804b31461039d57806359c74f29146103bd5780635bbb2177146103d257600080fd5b806318160ddd1161020357806318160ddd146102e657806323b872dd1461030957806325fd90f31461032957806326092b83146103435780633ef0d36d1461034b57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b5061025561025036600461208d565b610722565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610774565b60405161026191906122d3565b34801561029857600080fd5b506102ac6102a7366004612075565b610806565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df366004611fdb565b61084a565b005b3480156102f257600080fd5b50600354600254035b604051908152602001610261565b34801561031557600080fd5b506102e4610324366004611eee565b6108ea565b34801561033557600080fd5b50600c546102559060ff1681565b6102e46108fa565b6102e461035936600461212c565b610aa4565b34801561036a57600080fd5b50600c5461025590610100900460ff1681565b34801561038957600080fd5b506102e4610398366004611eee565b610ca6565b3480156103a957600080fd5b506102e46103b83660046120c5565b610cc1565b3480156103c957600080fd5b506102e4610cfe565b3480156103de57600080fd5b506103f26103ed366004612036565b610d3c565b6040516102619190612259565b34801561040b57600080fd5b506102ac61041a366004612075565b610e31565b34801561042b57600080fd5b506102fb61043a366004611ea2565b610e3c565b34801561044b57600080fd5b506102e4610e8a565b34801561046057600080fd5b506102fb61046f366004611ea2565b600f6020526000908152604090205481565b34801561048d57600080fd5b506102e461049c366004612075565b610ec0565b3480156104ad57600080fd5b506102fb600181565b3480156104c257600080fd5b506102e46104d1366004612075565b610eef565b3480156104e257600080fd5b506104f66104f1366004611ea2565b610f6e565b604051610261919061229b565b34801561050f57600080fd5b506000546001600160a01b03166102ac565b34801561052d57600080fd5b5061027f611099565b34801561054257600080fd5b506104f6610551366004612004565b6110a8565b34801561056257600080fd5b506102fb600b5481565b34801561057857600080fd5b506102e4610587366004611fa1565b611241565b34801561059857600080fd5b506102e46105a7366004612075565b6112d7565b3480156105b857600080fd5b506102e46105c7366004611f29565b611306565b3480156105d857600080fd5b506102e46105e736600461210a565b611350565b3480156105f857600080fd5b506102e4610607366004611fdb565b6113be565b34801561061857600080fd5b5061062c610627366004612075565b61147e565b604051610261919061231b565b34801561064557600080fd5b506102e46114f6565b34801561065a57600080fd5b5061027f610669366004612075565b61153d565b34801561067a57600080fd5b506102fb600281565b34801561068f57600080fd5b506102fb600a5481565b3480156106a557600080fd5b506102fb6106b4366004611ea2565b6115c1565b3480156106c557600080fd5b506102556106d4366004611ebc565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b34801561070e57600080fd5b506102e461071d366004611ea2565b6115eb565b60006301ffc9a760e01b6001600160e01b03198316148061075357506380ac58cd60e01b6001600160e01b03198316145b8061076e5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600480546107839061238c565b80601f01602080910402602001604051908101604052809291908181526020018280546107af9061238c565b80156107fc5780601f106107d1576101008083540402835291602001916107fc565b820191906000526020600020905b8154815290600101906020018083116107df57829003601f168201915b5050505050905090565b600061081182611686565b61082e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b600061085582610e31565b9050336001600160a01b0382161461088e5761087181336106d4565b61088e576040516367d9dca160e11b815260040160405180910390fd5b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108f58383836116ae565b505050565b6001348082600b5461090c9190612341565b111561092b576040516332afe6d360e21b815260040160405180910390fd5b32331461096e5760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b60448201526064015b60405180910390fd5b600c5460ff166109b05760405162461bcd60e51b815260206004820152600d60248201526c4d696e7420696e61637469766560981b6044820152606401610965565b816109be6003546002540390565b6109c89190612329565b600a5410156109ea57604051634237dcf160e11b815260040160405180910390fd5b600c54610100900460ff16610a335760405162461bcd60e51b815260206004820152600f60248201526e5075626c696320696e61637469766560881b6044820152606401610965565b336000908152600f602052604090205415610a815760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e48135a5b9d195960921b6044820152606401610965565b336000818152600f60205260409020600190819055610aa09190611869565b5050565b82348082600b54610ab59190612341565b1115610ad4576040516332afe6d360e21b815260040160405180910390fd5b323314610b125760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b6044820152606401610965565b600c5460ff16610b545760405162461bcd60e51b815260206004820152600d60248201526c4d696e7420696e61637469766560981b6044820152606401610965565b81610b626003546002540390565b610b6c9190612329565b600a541015610b8e57604051634237dcf160e11b815260040160405180910390fd5b610b96611946565b336000908152600760205260409081902054600291610bc09188911c6001600160401b0316612329565b1115610bdf5760405163e83159d360e01b815260040160405180910390fd5b610c5784848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d54604080513360601b6bffffffffffffffffffffffff1916602080830191909152825160148184030181526034909201909252805191012090925090506119a0565b610c8c5760405162461bcd60e51b8152602060048201526006602482015265139bdd0815d360d21b6044820152606401610965565b610c963386611869565b610c9f60018055565b5050505050565b6108f583838360405180602001604052806000815250611306565b6000546001600160a01b03163314610ceb5760405162461bcd60e51b8152600401610965906122e6565b8051610aa090600e906020840190611d2f565b6000546001600160a01b03163314610d285760405162461bcd60e51b8152600401610965906122e6565b600c805460ff19811660ff90911615179055565b6060816000816001600160401b03811115610d6757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610db957816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610d855790505b50905060005b828114610e2857610df5868683818110610de957634e487b7160e01b600052603260045260246000fd5b9050602002013561147e565b828281518110610e1557634e487b7160e01b600052603260045260246000fd5b6020908102919091010152600101610dbf565b50949350505050565b600061076e826119b6565b60006001600160a01b038216610e65576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600760205260409020546001600160401b031690565b6000546001600160a01b03163314610eb45760405162461bcd60e51b8152600401610965906122e6565b610ebe6000611a17565b565b6000546001600160a01b03163314610eea5760405162461bcd60e51b8152600401610965906122e6565b600d55565b6000546001600160a01b03163314610f195760405162461bcd60e51b8152600401610965906122e6565b80610f276003546002540390565b1115610f4657604051632eec1e2160e11b815260040160405180910390fd5b600a54811115610f6957604051632eec1e2160e11b815260040160405180910390fd5b600a55565b60606000806000610f7e85610e3c565b90506000816001600160401b03811115610fa857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610fd1578160200160208202803683370190505b509050610ffe60408051608081018252600080825260208201819052918101829052606081019190915290565b60005b83861461108d5761101181611a67565b915081604001511561102257611085565b81516001600160a01b03161561103757815194505b876001600160a01b0316856001600160a01b03161415611085578083878060010198508151811061107857634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b600101611001565b50909695505050505050565b6060600580546107839061238c565b60608183106110ca57604051631960ccad60e11b815260040160405180910390fd5b6000806110d660025490565b9050808411156110e4578093505b60006110ef87610e3c565b90508486101561110e5785850381811015611108578091505b50611112565b5060005b6000816001600160401b0381111561113a57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611163578160200160208202803683370190505b5090508161117657935061123a92505050565b60006111818861147e565b905060008160400151611192575080515b885b8881141580156111a45750848714155b1561122e576111b281611a67565b92508260400151156111c357611226565b82516001600160a01b0316156111d857825191505b8a6001600160a01b0316826001600160a01b03161415611226578084888060010199508151811061121957634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b600101611194565b50505092835250909150505b9392505050565b6001600160a01b03821633141561126b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146113015760405162461bcd60e51b8152600401610965906122e6565b600b55565b6113118484846116ae565b6001600160a01b0383163b1561134a5761132d84848484611aa3565b61134a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b0316331461137a5760405162461bcd60e51b8152600401610965906122e6565b816113886003546002540390565b6113929190612329565b600a5410156113b457604051632eec1e2160e11b815260040160405180910390fd5b610aa08183611869565b6000546001600160a01b031633146113e85760405162461bcd60e51b8152600401610965906122e6565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611435576040519150601f19603f3d011682016040523d82523d6000602084013e61143a565b606091505b50509050806108f55760405162461bcd60e51b815260206004820152601060248201526f3a3930b739b332b9103330b4b632b21760811b6044820152606401610965565b60408051608080820183526000808352602080840182905283850182905260608085018390528551938401865282845290830182905293820181905292810183905290915060025483106114d25792915050565b6114db83611a67565b90508060400151156114ed5792915050565b61123a83611b9b565b6000546001600160a01b031633146115205760405162461bcd60e51b8152600401610965906122e6565b600c805461ff001981166101009182900460ff1615909102179055565b606061154882611686565b61156557604051630a14c4b560e41b815260040160405180910390fd5b600061156f611bd0565b9050805160001415611590576040518060200160405280600081525061123a565b8061159a84611bdf565b6040516020016115ab9291906121dd565b6040516020818303038152906040529392505050565b6001600160a01b038116600090815260076020526040808220546001600160401b03911c1661076e565b6000546001600160a01b031633146116155760405162461bcd60e51b8152600401610965906122e6565b6001600160a01b03811661167a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610965565b61168381611a17565b50565b60006002548210801561076e575050600090815260066020526040902054600160e01b161590565b60006116b9826119b6565b9050836001600160a01b0316816001600160a01b0316146116ec5760405162a1148160e81b815260040160405180910390fd5b6000828152600860205260408120546001600160a01b039081169190861633148061171c575061171c86336106d4565b8061172f57506001600160a01b03821633145b90508061174f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661177657604051633a954ecd60e21b815260040160405180910390fd5b6001600160a01b03821615611795576000848152600860205260408120555b6001600160a01b038681166000908152600760205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260066020526040902055600160e11b8316611820576001840160008181526006602052604090205461181e57600254811461181e5760008181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6002546001600160a01b03831661189257604051622e076360e81b815260040160405180910390fd5b816118b05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260076020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260066020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106118fa5750500160025550565b600260015414156119995760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610965565b6002600155565b6000826119ad8584611c2e565b14949350505050565b6000816002548110156119fe57600081815260066020526040902054600160e01b81166119fc575b8061123a5750600019016000818152600660205260409020546119de565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526006602052604090205461076e90611ce8565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611ad890339089908890889060040161221c565b602060405180830381600087803b158015611af257600080fd5b505af1925050508015611b22575060408051601f3d908101601f19168201909252611b1f918101906120a9565b60015b611b7d573d808015611b50576040519150601f19603f3d011682016040523d82523d6000602084013e611b55565b606091505b508051611b75576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60408051608081018252600080825260208201819052918101829052606081019190915261076e611bcb836119b6565b611ce8565b6060600e80546107839061238c565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611c1c57600183039250600a81066030018353600a9004611bfe565b50819003601f19909101908152919050565b600081815b8451811015611ce0576000858281518110611c5e57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611ca0576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611ccd565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611cd8816123c7565b915050611c33565b509392505050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b828054611d3b9061238c565b90600052602060002090601f016020900481019282611d5d5760008555611da3565b82601f10611d7657805160ff1916838001178555611da3565b82800160010185558215611da3579182015b82811115611da3578251825591602001919060010190611d88565b50611daf929150611db3565b5090565b5b80821115611daf5760008155600101611db4565b60006001600160401b0380841115611de257611de26123f8565b604051601f8501601f19908116603f01168101908282118183101715611e0a57611e0a6123f8565b81604052809350858152868686011115611e2357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e5457600080fd5b919050565b60008083601f840112611e6a578081fd5b5081356001600160401b03811115611e80578182fd5b6020830191508360208260051b8501011115611e9b57600080fd5b9250929050565b600060208284031215611eb3578081fd5b61123a82611e3d565b60008060408385031215611ece578081fd5b611ed783611e3d565b9150611ee560208401611e3d565b90509250929050565b600080600060608486031215611f02578081fd5b611f0b84611e3d565b9250611f1960208501611e3d565b9150604084013590509250925092565b60008060008060808587031215611f3e578081fd5b611f4785611e3d565b9350611f5560208601611e3d565b92506040850135915060608501356001600160401b03811115611f76578182fd5b8501601f81018713611f86578182fd5b611f9587823560208401611dc8565b91505092959194509250565b60008060408385031215611fb3578182fd5b611fbc83611e3d565b915060208301358015158114611fd0578182fd5b809150509250929050565b60008060408385031215611fed578182fd5b611ff683611e3d565b946020939093013593505050565b600080600060608486031215612018578283fd5b61202184611e3d565b95602085013595506040909401359392505050565b60008060208385031215612048578182fd5b82356001600160401b0381111561205d578283fd5b61206985828601611e59565b90969095509350505050565b600060208284031215612086578081fd5b5035919050565b60006020828403121561209e578081fd5b813561123a8161240e565b6000602082840312156120ba578081fd5b815161123a8161240e565b6000602082840312156120d6578081fd5b81356001600160401b038111156120eb578182fd5b8201601f810184136120fb578182fd5b611b9384823560208401611dc8565b6000806040838503121561211c578182fd5b82359150611ee560208401611e3d565b600080600060408486031215612140578081fd5b8335925060208401356001600160401b0381111561215c578182fd5b61216886828701611e59565b9497909650939450505050565b6000815180845261218d816020860160208601612360565b601f01601f19169290920160200192915050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b600083516121ef818460208801612360565b835190830190612203818360208801612360565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061224f90830184612175565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561108d576122888385516121a1565b9284019260809290920191600101612275565b6020808252825182820181905260009190848201906040850190845b8181101561108d578351835292840192918401916001016122b7565b60208152600061123a6020830184612175565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6080810161076e82846121a1565b6000821982111561233c5761233c6123e2565b500190565b600081600019048311821515161561235b5761235b6123e2565b500290565b60005b8381101561237b578181015183820152602001612363565b8381111561134a5750506000910152565b600181811c908216806123a057607f821691505b602082108114156123c157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123db576123db6123e2565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461168357600080fdfea264697066735822122076d279589c57c07876a314c62f76ed6da1cfb9304fd25093032917b8e0ae4b2664736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000040f3d903a4785bcadb3e0e4d5576d55e30771b6adf15b3a21da780cb85c880273d0000000000000000000000000000000000000000000000000000000000000013697066733a2f2f706c616365686f6c6465722f00000000000000000000000000

-----Decoded View---------------
Arg [0] : _inputURI (string): ipfs://placeholder/
Arg [1] : _wlRoot (bytes32): 0xf3d903a4785bcadb3e0e4d5576d55e30771b6adf15b3a21da780cb85c880273d

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : f3d903a4785bcadb3e0e4d5576d55e30771b6adf15b3a21da780cb85c880273d
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [3] : 697066733a2f2f706c616365686f6c6465722f00000000000000000000000000


Deployed Bytecode Sourcemap

61443:3258:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14391:665;;;;;;;;;;-1:-1:-1;14391:665:0;;;;;:::i;:::-;;:::i;:::-;;;10570:14:1;;10563:22;10545:41;;10533:2;10518:18;14391:665:0;;;;;;;;20324:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22181:245::-;;;;;;;;;;-1:-1:-1;22181:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8500:32:1;;;8482:51;;8470:2;8455:18;22181:245:0;8437:102:1;21729:386:0;;;;;;;;;;-1:-1:-1;21729:386:0;;;;;:::i;:::-;;:::i;:::-;;13445:315;;;;;;;;;;-1:-1:-1;13711:12:0;;13695:13;;:28;13445:315;;;14413:25:1;;;14401:2;14386:18;13445:315:0;14368:76:1;23190:170:0;;;;;;;;;;-1:-1:-1;23190:170:0;;;;;:::i;:::-;;:::i;61683:22::-;;;;;;;;;;-1:-1:-1;61683:22:0;;;;;;;;62837:264;;;:::i;62411:418::-;;;;;;:::i;:::-;;:::i;61712:24::-;;;;;;;;;;-1:-1:-1;61712:24:0;;;;;;;;;;;23431:185;;;;;;;;;;-1:-1:-1;23431:185:0;;;;;:::i;:::-;;:::i;64390:106::-;;;;;;;;;;-1:-1:-1;64390:106:0;;;;;:::i;:::-;;:::i;63886:87::-;;;;;;;;;;;;;:::i;48039:560::-;;;;;;;;;;-1:-1:-1;48039:560:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;20113:144::-;;;;;;;;;;-1:-1:-1;20113:144:0;;;;;:::i;:::-;;:::i;15120:224::-;;;;;;;;;;-1:-1:-1;15120:224:0;;;;;:::i;:::-;;:::i;55496:103::-;;;;;;;;;;;;;:::i;61816:47::-;;;;;;;;;;-1:-1:-1;61816:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;63783:95;;;;;;;;;;-1:-1:-1;63783:95:0;;;;;:::i;:::-;;:::i;61559:37::-;;;;;;;;;;;;61595:1;61559:37;;64077:208;;;;;;;;;;-1:-1:-1;64077:208:0;;;;;:::i;:::-;;:::i;52013:1016::-;;;;;;;;;;-1:-1:-1;52013:1016:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54845:87::-;;;;;;;;;;-1:-1:-1;54891:7:0;54918:6;-1:-1:-1;;;;;54918:6:0;54845:87;;20493:104;;;;;;;;;;;;;:::i;48987:2579::-;;;;;;;;;;-1:-1:-1;48987:2579:0;;;;;:::i;:::-;;:::i;61641:35::-;;;;;;;;;;;;;;;;22498:340;;;;;;;;;;-1:-1:-1;22498:340:0;;;;;:::i;:::-;;:::i;64293:89::-;;;;;;;;;;-1:-1:-1;64293:89:0;;;;;:::i;:::-;;:::i;23687:396::-;;;;;;;;;;-1:-1:-1;23687:396:0;;;;;:::i;:::-;;:::i;63594:181::-;;;;;;;;;;-1:-1:-1;63594:181:0;;;;;:::i;:::-;;:::i;64504:194::-;;;;;;;;;;-1:-1:-1;64504:194:0;;;;;:::i;:::-;;:::i;47402:478::-;;;;;;;;;;-1:-1:-1;47402:478:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;63981:88::-;;;;;;;;;;;;;:::i;20668:424::-;;;;;;;;;;-1:-1:-1;20668:424:0;;;;;:::i;:::-;;:::i;61519:33::-;;;;;;;;;;;;61551:1;61519:33;;61603:31;;;;;;;;;;;;;;;;63109:167;;;;;;;;;;-1:-1:-1;63109:167:0;;;;;:::i;:::-;;:::i;22909:214::-;;;;;;;;;;-1:-1:-1;22909:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;23080:25:0;;;23051:4;23080:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22909:214;55754:238;;;;;;;;;;-1:-1:-1;55754:238:0;;;;;:::i;:::-;;:::i;14391:665::-;14521:4;-1:-1:-1;;;;;;;;;14826:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;14903:25:0;;;14826:102;:179;;;-1:-1:-1;;;;;;;;;;14980:25:0;;;14826:179;14806:199;14391:665;-1:-1:-1;;14391:665:0:o;20324:100::-;20378:13;20411:5;20404:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20324:100;:::o;22181:245::-;22285:7;22315:16;22323:7;22315;:16::i;:::-;22310:64;;22340:34;;-1:-1:-1;;;22340:34:0;;;;;;;;;;;22310:64;-1:-1:-1;22394:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22394:24:0;;22181:245::o;21729:386::-;21802:13;21818:16;21826:7;21818;:16::i;:::-;21802:32;-1:-1:-1;41732:10:0;-1:-1:-1;;;;;21851:28:0;;;21847:175;;21899:44;21916:5;41732:10;22909:214;:::i;21899:44::-;21894:128;;21971:35;;-1:-1:-1;;;21971:35:0;;;;;;;;;;;21894:128;22034:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;22034:29:0;-1:-1:-1;;;;;22034:29:0;;;;;;;;;22079:28;;22034:24;;22079:28;;;;;;;21729:386;;;:::o;23190:170::-;23324:28;23334:4;23340:2;23344:7;23324:9;:28::i;:::-;23190:170;;;:::o;62837:264::-;62891:1;62894:9;62154:5;62142:9;62134:5;;:17;;;;:::i;:::-;:25;62130:49;;;62168:11;;-1:-1:-1;;;62168:11:0;;;;;;;;;;;62130:49;62198:9;62211:10;62198:23;62190:48;;;;-1:-1:-1;;;62190:48:0;;13157:2:1;62190:48:0;;;13139:21:1;13196:2;13176:18;;;13169:30;-1:-1:-1;;;13215:18:1;;;13208:42;13267:18;;62190:48:0;;;;;;;;;62257:10;;;;62249:36;;;;-1:-1:-1;;;62249:36:0;;13858:2:1;62249:36:0;;;13840:21:1;13897:2;13877:18;;;13870:30;-1:-1:-1;;;13916:18:1;;;13909:43;13969:18;;62249:36:0;13830:163:1;62249:36:0;62328:9;62312:13;13711:12;;13695:13;;:28;;13445:315;62312:13;:25;;;;:::i;:::-;62300:9;;:37;62296:61;;;62346:11;;-1:-1:-1;;;62346:11:0;;;;;;;;;;;62296:61;62924:12:::1;::::0;::::1;::::0;::::1;;;62916:40;;;::::0;-1:-1:-1;;;62916:40:0;;11023:2:1;62916:40:0::1;::::0;::::1;11005:21:1::0;11062:2;11042:18;;;11035:30;-1:-1:-1;;;11081:18:1;;;11074:45;11136:18;;62916:40:0::1;10995:165:1::0;62916:40:0::1;62988:10;62975:24;::::0;;;:12:::1;:24;::::0;;;;;:29;62967:56:::1;;;::::0;-1:-1:-1;;;62967:56:0;;12453:2:1;62967:56:0::1;::::0;::::1;12435:21:1::0;12492:2;12472:18;;;12465:30;-1:-1:-1;;;12511:18:1;;;12504:44;12565:18;;62967:56:0::1;12425:164:1::0;62967:56:0::1;63047:10;63034:24;::::0;;;:12:::1;:24;::::0;;;;63061:1:::1;63034:28:::0;;;;63073:20:::1;::::0;63047:10;63073:5:::1;:20::i;:::-;62837:264:::0;;:::o;62411:418::-;62531:9;62542;62154:5;62142:9;62134:5;;:17;;;;:::i;:::-;:25;62130:49;;;62168:11;;-1:-1:-1;;;62168:11:0;;;;;;;;;;;62130:49;62198:9;62211:10;62198:23;62190:48;;;;-1:-1:-1;;;62190:48:0;;13157:2:1;62190:48:0;;;13139:21:1;13196:2;13176:18;;;13169:30;-1:-1:-1;;;13215:18:1;;;13208:42;13267:18;;62190:48:0;13129:162:1;62190:48:0;62257:10;;;;62249:36;;;;-1:-1:-1;;;62249:36:0;;13858:2:1;62249:36:0;;;13840:21:1;13897:2;13877:18;;;13870:30;-1:-1:-1;;;13916:18:1;;;13909:43;13969:18;;62249:36:0;13830:163:1;62249:36:0;62328:9;62312:13;13711:12;;13695:13;;:28;;13445:315;62312:13;:25;;;;:::i;:::-;62300:9;;:37;62296:61;;;62346:11;;-1:-1:-1;;;62346:11:0;;;;;;;;;;;62296:61;58611:21:::1;:19;:21::i;:::-;62609:10:::2;15487:7:::0;15528:25;;;:18;:25;;9929:2;15528:25;;;;;61551:1:::2;::::0;62595:37:::2;::::0;62623:9;;15528:49;-1:-1:-1;;;;;15527:93:0;62595:37:::2;:::i;:::-;:45;62591:65;;;62649:7;;-1:-1:-1::0;;;62649:7:0::2;;;;;;;;;;;62591:65;62689:59;62708:5;;62689:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;62715:13:0::2;::::0;63526:26;;;62736:10:::2;7147:2:1::0;7143:15;-1:-1:-1;;7139:53:1;63526:26:0;;;;7127:66:1;;;;63526:26:0;;;;;;;;;7209:12:1;;;;63526:26:0;;;63516:37;;;;;62715:13;;-1:-1:-1;63516:37:0;-1:-1:-1;62689:18:0::2;:59::i;:::-;62667:115;;;::::0;-1:-1:-1;;;62667:115:0;;11774:2:1;62667:115:0::2;::::0;::::2;11756:21:1::0;11813:1;11793:18;;;11786:29;-1:-1:-1;;;11831:18:1;;;11824:36;11877:18;;62667:115:0::2;11746:155:1::0;62667:115:0::2;62793:28;62799:10;62811:9;62793:5;:28::i;:::-;58655:20:::1;58049:1:::0;59171:22;;58988:213;58655:20:::1;62411:418:::0;;;;;:::o;23431:185::-;23569:39;23586:4;23592:2;23596:7;23569:39;;;;;;;;;;;;:16;:39::i;64390:106::-;54891:7;54918:6;-1:-1:-1;;;;;54918:6:0;41732:10;55065:23;55057:68;;;;-1:-1:-1;;;55057:68:0;;;;;;;:::i;:::-;64463:25;;::::1;::::0;:13:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;63886:87::-:0;54891:7;54918:6;-1:-1:-1;;;;;54918:6:0;41732:10;55065:23;55057:68;;;;-1:-1:-1;;;55057:68:0;;;;;;;:::i;:::-;63955:10:::1;::::0;;-1:-1:-1;;63941:24:0;::::1;63955:10;::::0;;::::1;63954:11;63941:24;::::0;;63886:87::o;48039:560::-;48183:23;48274:8;48249:22;48274:8;-1:-1:-1;;;;;48341:68:0;;;;;-1:-1:-1;;;48341:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48341:68:0;;-1:-1:-1;;48341:68:0;;;;;;;;;;;;48304:105;;48429:9;48424:125;48445:14;48440:1;:19;48424:125;;48501:32;48521:8;;48530:1;48521:11;;;;;-1:-1:-1;;;48521:11:0;;;;;;;;;;;;;;;48501:19;:32::i;:::-;48485:10;48496:1;48485:13;;;;;;-1:-1:-1;;;48485:13:0;;;;;;;;;;;;;;;;;;:48;48461:3;;48424:125;;;-1:-1:-1;48570:10:0;48039:560;-1:-1:-1;;;;48039:560:0:o;20113:144::-;20177:7;20220:27;20239:7;20220:18;:27::i;15120:224::-;15184:7;-1:-1:-1;;;;;15208:19:0;;15204:60;;15236:28;;-1:-1:-1;;;15236:28:0;;;;;;;;;;;15204:60;-1:-1:-1;;;;;;15282:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;15282:54:0;;15120:224::o;55496:103::-;54891:7;54918:6;-1:-1:-1;;;;;54918:6:0;41732:10;55065:23;55057:68;;;;-1:-1:-1;;;55057:68:0;;;;;;;:::i;:::-;55561:30:::1;55588:1;55561:18;:30::i;:::-;55496:103::o:0;63783:95::-;54891:7;54918:6;-1:-1:-1;;;;;54918:6:0;41732:10;55065:23;55057:68;;;;-1:-1:-1;;;55057:68:0;;;;;;;:::i;:::-;63849:13:::1;:21:::0;63783:95::o;64077:208::-;54891:7;54918:6;-1:-1:-1;;;;;54918:6:0;41732:10;55065:23;55057:68;;;;-1:-1:-1;;;55057:68:0;;;;;;;:::i;:::-;64166:7:::1;64150:13;13711:12:::0;;13695:13;;:28;;13445:315;64150:13:::1;:23;64146:47;;;64182:11;;-1:-1:-1::0;;;64182:11:0::1;;;;;;;;;;;64146:47;64218:9;;64208:7;:19;64204:43;;;64236:11;;-1:-1:-1::0;;;64236:11:0::1;;;;;;;;;;;64204:43;64258:9;:19:::0;64077:208::o;52013:1016::-;52136:16;52195:19;52229:25;52269:22;52294:16;52304:5;52294:9;:16::i;:::-;52269:41;;52325:25;52367:14;-1:-1:-1;;;;;52353:29:0;;;;;-1:-1:-1;;;52353:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52353:29:0;;52325:57;;52397:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52397:31:0;52466:9;52443:538;52527:14;52512:11;:29;52443:538;;52610:15;52623:1;52610:12;:15::i;:::-;52598:27;;52648:9;:16;;;52644:73;;;52689:8;;52644:73;52739:14;;-1:-1:-1;;;;;52739:28:0;;52735:111;;52812:14;;;-1:-1:-1;52735:111:0;52889:5;-1:-1:-1;;;;;52868:26:0;:17;-1:-1:-1;;;;;52868:26:0;;52864:102;;;52945:1;52919:8;52928:13;;;;;;52919:23;;;;;;-1:-1:-1;;;52919:23:0;;;;;;;;;;;;;;:27;;;;;52864:102;52560:3;;52443:538;;;-1:-1:-1;53002:8:0;;52013:1016;-1:-1:-1;;;;;;52013:1016:0:o;20493:104::-;20549:13;20582:7;20575:14;;;;;:::i;48987:2579::-;49130:16;49197:4;49188:5;:13;49184:45;;49210:19;;-1:-1:-1;;;49210:19:0;;;;;;;;;;;49184:45;49244:19;49278:17;49298:14;13214:13;;;13140:95;49298:14;49278:34;-1:-1:-1;49549:9:0;49542:4;:16;49538:73;;;49586:9;49579:16;;49538:73;49625:25;49653:16;49663:5;49653:9;:16::i;:::-;49625:44;;49847:4;49839:5;:12;49835:278;;;49894:12;;;49929:31;;;49925:111;;;50005:11;49985:31;;49925:111;49835:278;;;;-1:-1:-1;50096:1:0;49835:278;50127:25;50169:17;-1:-1:-1;;;;;50155:32:0;;;;;-1:-1:-1;;;50155:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50155:32:0;-1:-1:-1;50127:60:0;-1:-1:-1;50206:22:0;50202:78;;50256:8;-1:-1:-1;50249:15:0;;-1:-1:-1;;;50249:15:0;50202:78;50424:31;50458:26;50478:5;50458:19;:26::i;:::-;50424:60;;50499:25;50744:9;:16;;;50739:92;;-1:-1:-1;50801:14:0;;50739:92;50880:5;50845:544;50909:4;50904:1;:9;;:45;;;;;50932:17;50917:11;:32;;50904:45;50845:544;;;51018:15;51031:1;51018:12;:15::i;:::-;51006:27;;51056:9;:16;;;51052:73;;;51097:8;;51052:73;51147:14;;-1:-1:-1;;;;;51147:28:0;;51143:111;;51220:14;;;-1:-1:-1;51143:111:0;51297:5;-1:-1:-1;;;;;51276:26:0;:17;-1:-1:-1;;;;;51276:26:0;;51272:102;;;51353:1;51327:8;51336:13;;;;;;51327:23;;;;;;-1:-1:-1;;;51327:23:0;;;;;;;;;;;;;;:27;;;;;51272:102;50968:3;;50845:544;;;-1:-1:-1;;;51474:29:0;;;-1:-1:-1;51481:8:0;;-1:-1:-1;;48987:2579:0;;;;;;:::o;22498:340::-;-1:-1:-1;;;;;22629:31:0;;41732:10;22629:31;22625:61;;;22669:17;;-1:-1:-1;;;22669:17:0;;;;;;;;;;;22625:61;41732:10;22699:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;22699:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;22699:60:0;;;;;;;;;;22775:55;;10545:41:1;;;22699:49:0;;41732:10;22775:55;;10518:18:1;22775:55:0;;;;;;;22498:340;;:::o;64293:89::-;54891:7;54918:6;-1:-1:-1;;;;;54918:6:0;41732:10;55065:23;55057:68;;;;-1:-1:-1;;;55057:68:0;;;;;;;:::i;:::-;64360:5:::1;:14:::0;64293:89::o;23687:396::-;23854:28;23864:4;23870:2;23874:7;23854:9;:28::i;:::-;-1:-1:-1;;;;;23897:14:0;;;:19;23893:183;;23936:56;23967:4;23973:2;23977:7;23986:5;23936:30;:56::i;:::-;23931:145;;24020:40;;-1:-1:-1;;;24020:40:0;;;;;;;;;;;23931:145;23687:396;;;;:::o;63594:181::-;54891:7;54918:6;-1:-1:-1;;;;;54918:6:0;41732:10;55065:23;55057:68;;;;-1:-1:-1;;;55057:68:0;;;;;;;:::i;:::-;63706:9:::1;63690:13;13711:12:::0;;13695:13;;:28;;13445:315;63690:13:::1;:25;;;;:::i;:::-;63678:9;;:37;63674:61;;;63724:11;;-1:-1:-1::0;;;63724:11:0::1;;;;;;;;;;;63674:61;63746:21;63752:3;63757:9;63746:5;:21::i;64504:194::-:0;54891:7;54918:6;-1:-1:-1;;;;;54918:6:0;41732:10;55065:23;55057:68;;;;-1:-1:-1;;;55057:68:0;;;;;;;:::i;:::-;64588:12:::1;64614:3;-1:-1:-1::0;;;;;64606:17:0::1;64631:7;64606:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64587:56;;;64662:7;64654:36;;;::::0;-1:-1:-1;;;64654:36:0;;12108:2:1;64654:36:0::1;::::0;::::1;12090:21:1::0;12147:2;12127:18;;;12120:30;-1:-1:-1;;;12166:18:1;;;12159:46;12222:18;;64654:36:0::1;12080:166:1::0;47402:478:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13214:13:0;;47645:7;:25;47612:103;;47694:9;47402:478;-1:-1:-1;;47402:478:0:o;47612:103::-;47737:21;47750:7;47737:12;:21::i;:::-;47725:33;;47773:9;:16;;;47769:65;;;47813:9;47402:478;-1:-1:-1;;47402:478:0:o;47769:65::-;47851:21;47864:7;47851:12;:21::i;63981:88::-;54891:7;54918:6;-1:-1:-1;;;;;54918:6:0;41732:10;55065:23;55057:68;;;;-1:-1:-1;;;55057:68:0;;;;;;;:::i;:::-;64049:12:::1;::::0;;-1:-1:-1;;64033:28:0;::::1;64049:12;::::0;;;::::1;;;64048:13;64033:28:::0;;::::1;;::::0;;63981:88::o;20668:424::-;20786:13;20822:16;20830:7;20822;:16::i;:::-;20817:59;;20847:29;;-1:-1:-1;;;20847:29:0;;;;;;;;;;;20817:59;20889:21;20913:10;:8;:10::i;:::-;20889:34;;20960:7;20954:21;20979:1;20954:26;;:130;;;;;;;;;;;;;;;;;21024:7;21033:18;21043:7;21033:9;:18::i;:::-;21007:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20934:150;20668:424;-1:-1:-1;;;20668:424:0:o;63109:167::-;-1:-1:-1;;;;;15528:25:0;;63213:7;15528:25;;;:18;:25;;9929:2;15528:25;;;;-1:-1:-1;;;;;15528:49:0;;15527:93;63245:23;15426:202;55754:238;54891:7;54918:6;-1:-1:-1;;;;;54918:6:0;41732:10;55065:23;55057:68;;;;-1:-1:-1;;;55057:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;55857:22:0;::::1;55835:110;;;::::0;-1:-1:-1;;;55835:110:0;;11367:2:1;55835:110:0::1;::::0;::::1;11349:21:1::0;11406:2;11386:18;;;11379:30;11445:34;11425:18;;;11418:62;-1:-1:-1;;;11496:18:1;;;11489:36;11542:19;;55835:110:0::1;11339:228:1::0;55835:110:0::1;55956:28;55975:8;55956:18;:28::i;:::-;55754:238:::0;:::o;24338:273::-;24395:4;24485:13;;24475:7;:23;24432:152;;;;-1:-1:-1;;24536:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;24536:43:0;:48;;24338:273::o;31215:2666::-;31330:27;31360;31379:7;31360:18;:27::i;:::-;31330:57;;31445:4;-1:-1:-1;;;;;31404:45:0;31420:19;-1:-1:-1;;;;;31404:45:0;;31400:99;;31471:28;;-1:-1:-1;;;31471:28:0;;;;;;;;;;;31400:99;31512:23;31538:24;;;:15;:24;;;;;;-1:-1:-1;;;;;31538:24:0;;;;31512:23;31601:27;;41732:10;31601:27;;:87;;-1:-1:-1;31645:43:0;31662:4;41732:10;22909:214;:::i;31645:43::-;31601:142;;;-1:-1:-1;;;;;;31705:38:0;;41732:10;31705:38;31601:142;31575:169;;31762:17;31757:66;;31788:35;;-1:-1:-1;;;31788:35:0;;;;;;;;;;;31757:66;-1:-1:-1;;;;;31838:16:0;;31834:52;;31863:23;;-1:-1:-1;;;31863:23:0;;;;;;;;;;;31834:52;-1:-1:-1;;;;;32012:29:0;;;32008:91;;30695:52;30800:21;;;30750:15;30842:4;30835:35;30909:4;30896:18;;30928:15;32058:29;-1:-1:-1;;;;;32466:24:0;;;;;;;:18;:24;;;;;;32464:26;;-1:-1:-1;;32464:26:0;;;32535:22;;;;;;;;;32533:24;;-1:-1:-1;32533:24:0;;;19998:11;19974:22;19970:40;19922:111;-1:-1:-1;;;19922:111:0;32828:26;;;;:17;:26;;;;;:195;-1:-1:-1;;;33143:46:0;;33139:626;;33247:1;33237:11;;33215:19;33370:30;;;:17;:30;;;;;;33366:384;;33508:13;;33493:11;:28;33489:242;;33655:30;;;;:17;:30;;;;;:52;;;33489:242;33139:626;;33812:7;33808:2;-1:-1:-1;;;;;33793:27:0;33802:4;-1:-1:-1;;;;;33793:27:0;;;;;;;;;;;31215:2666;;;;;;:::o;26360:1690::-;26448:13;;-1:-1:-1;;;;;26476:16:0;;26472:48;;26501:19;;-1:-1:-1;;;26501:19:0;;;;;;;;;;;26472:48;26535:13;26531:44;;26557:18;;-1:-1:-1;;;26557:18:0;;;;;;;;;;;26531:44;-1:-1:-1;;;;;27124:22:0;;;;;;:18;:22;;9929:2;27124:22;;:104;;27196:31;27167:61;;27124:104;;;19998:11;19974:22;19970:40;-1:-1:-1;27579:13:0;;10705:3;27564:56;19967:51;19922:111;27471:31;;;;:17;:31;;;;;:222;27489:12;27768:23;;;27806:99;27833:34;;27858:8;;;;;-1:-1:-1;;;;;27833:34:0;;;27850:1;;27833:34;;27850:1;;27833:34;27900:3;27891:6;:12;27806:99;;-1:-1:-1;;27937:23:0;27921:13;:39;-1:-1:-1;23190:170:0:o;58691:289::-;58093:1;58821:7;;:19;;58813:63;;;;-1:-1:-1;;;58813:63:0;;13498:2:1;58813:63:0;;;13480:21:1;13537:2;13517:18;;;13510:30;13576:33;13556:18;;;13549:61;13627:18;;58813:63:0;13470:181:1;58813:63:0;58093:1;58954:7;:18;58691:289::o;59968:190::-;60093:4;60146;60117:25;60130:5;60137:4;60117:12;:25::i;:::-;:33;;59968:190;-1:-1:-1;;;;59968:190:0:o;16823:1161::-;16917:7;16957;17059:13;;17052:4;:20;17048:869;;;17097:14;17114:23;;;:17;:23;;;;;;-1:-1:-1;;;17203:23:0;;17199:699;;17722:113;17729:11;17722:113;;-1:-1:-1;;;17800:6:0;17782:25;;;;:17;:25;;;;;;17722:113;;17199:699;17048:869;;17945:31;;-1:-1:-1;;;17945:31:0;;;;;;;;;;;56152:191;56226:16;56245:6;;-1:-1:-1;;;;;56262:17:0;;;-1:-1:-1;;;;;;56262:17:0;;;;;;56295:40;;56245:6;;;;;;;56295:40;;56226:16;56295:40;56152:191;;:::o;18564:185::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18716:24:0;;;;:17;:24;;;;;;18697:44;;:18;:44::i;37706:831::-;37903:171;;-1:-1:-1;;;37903:171:0;;37869:4;;-1:-1:-1;;;;;37903:45:0;;;;;:171;;41732:10;;38005:4;;38028:7;;38054:5;;37903:171;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37903:171:0;;;;;;;;-1:-1:-1;;37903:171:0;;;;;;;;;;;;:::i;:::-;;;37886:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38288:13:0;;38284:235;;38334:40;;-1:-1:-1;;;38334:40:0;;;;;;;;;;;38284:235;38477:6;38471:13;38462:6;38458:2;38454:15;38447:38;37886:644;-1:-1:-1;;;;;;38147:81:0;-1:-1:-1;;;38147:81:0;;-1:-1:-1;37886:644:0;37706:831;;;;;;:::o;19252:190::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19387:47:0;19406:27;19425:7;19406:18;:27::i;:::-;19387:18;:47::i;63311:114::-;63371:13;63404;63397:20;;;;;:::i;41856:1992::-;42357:4;42351:11;;42364:3;42347:21;;42442:17;;;;43138:11;;;43017:5;43270:2;43284;43274:13;;43266:22;43138:11;43253:36;43325:2;43315:13;;42909:697;43344:4;42909:697;;;43535:1;43530:3;43526:11;43519:18;;43586:2;43580:4;43576:13;43572:2;43568:22;43563:3;43555:36;43439:2;43429:13;;42909:697;;;-1:-1:-1;43636:13:0;;;-1:-1:-1;;43751:12:0;;;43811:19;;;43751:12;41984:1857;-1:-1:-1;41984:1857:0:o;60520:813::-;60630:7;60678:4;60630:7;60693:603;60717:5;:12;60713:1;:16;60693:603;;;60751:20;60774:5;60780:1;60774:8;;;;;;-1:-1:-1;;;60774:8:0;;;;;;;;;;;;;;;60751:31;;60817:12;60801;:28;60797:488;;60976:44;;;;;;7389:19:1;;;7424:12;;;7417:28;;;7461:12;;60976:44:0;;;;;;;;;;;;60944:95;;;;;;60929:110;;60797:488;;;61206:44;;;;;;7389:19:1;;;7424:12;;;7417:28;;;7461:12;;61206:44:0;;;;;;;;;;;;61174:95;;;;;;61159:110;;60797:488;-1:-1:-1;60731:3:0;;;;:::i;:::-;;;;60693:603;;;-1:-1:-1;61313:12:0;60520:813;-1:-1:-1;;;60520:813:0:o;18078:395::-;-1:-1:-1;;;;;;;;;;;;;18220:41:0;;;;10446:3;18306:32;;;-1:-1:-1;;;;;18272:67:0;-1:-1:-1;;;18272:67:0;-1:-1:-1;;;18369:23:0;;:28;;-1:-1:-1;;;18350:47:0;;;;10963:3;18437:27;;;;-1:-1:-1;;;18408:57:0;-1:-1:-1;18078:395:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:391::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:2;;978:6;970;963:22;922:2;-1:-1:-1;1006:20:1;;-1:-1:-1;;;;;1038:30:1;;1035:2;;;1088:8;1078;1071:26;1035:2;1132:4;1124:6;1120:17;1108:29;;1192:3;1185:4;1175:6;1172:1;1168:14;1160:6;1156:27;1152:38;1149:47;1146:2;;;1209:1;1206;1199:12;1146:2;912:307;;;;;:::o;1224:196::-;1283:6;1336:2;1324:9;1315:7;1311:23;1307:32;1304:2;;;1357:6;1349;1342:22;1304:2;1385:29;1404:9;1385:29;:::i;1425:270::-;1493:6;1501;1554:2;1542:9;1533:7;1529:23;1525:32;1522:2;;;1575:6;1567;1560:22;1522:2;1603:29;1622:9;1603:29;:::i;:::-;1593:39;;1651:38;1685:2;1674:9;1670:18;1651:38;:::i;:::-;1641:48;;1512:183;;;;;:::o;1700:338::-;1777:6;1785;1793;1846:2;1834:9;1825:7;1821:23;1817:32;1814:2;;;1867:6;1859;1852:22;1814:2;1895:29;1914:9;1895:29;:::i;:::-;1885:39;;1943:38;1977:2;1966:9;1962:18;1943:38;:::i;:::-;1933:48;;2028:2;2017:9;2013:18;2000:32;1990:42;;1804:234;;;;;:::o;2043:696::-;2138:6;2146;2154;2162;2215:3;2203:9;2194:7;2190:23;2186:33;2183:2;;;2237:6;2229;2222:22;2183:2;2265:29;2284:9;2265:29;:::i;:::-;2255:39;;2313:38;2347:2;2336:9;2332:18;2313:38;:::i;:::-;2303:48;;2398:2;2387:9;2383:18;2370:32;2360:42;;2453:2;2442:9;2438:18;2425:32;-1:-1:-1;;;;;2472:6:1;2469:30;2466:2;;;2517:6;2509;2502:22;2466:2;2545:22;;2598:4;2590:13;;2586:27;-1:-1:-1;2576:2:1;;2632:6;2624;2617:22;2576:2;2660:73;2725:7;2720:2;2707:16;2702:2;2698;2694:11;2660:73;:::i;:::-;2650:83;;;2173:566;;;;;;;:::o;2744:367::-;2809:6;2817;2870:2;2858:9;2849:7;2845:23;2841:32;2838:2;;;2891:6;2883;2876:22;2838:2;2919:29;2938:9;2919:29;:::i;:::-;2909:39;;2998:2;2987:9;2983:18;2970:32;3045:5;3038:13;3031:21;3024:5;3021:32;3011:2;;3072:6;3064;3057:22;3011:2;3100:5;3090:15;;;2828:283;;;;;:::o;3116:264::-;3184:6;3192;3245:2;3233:9;3224:7;3220:23;3216:32;3213:2;;;3266:6;3258;3251:22;3213:2;3294:29;3313:9;3294:29;:::i;:::-;3284:39;3370:2;3355:18;;;;3342:32;;-1:-1:-1;;;3203:177:1:o;3385:332::-;3462:6;3470;3478;3531:2;3519:9;3510:7;3506:23;3502:32;3499:2;;;3552:6;3544;3537:22;3499:2;3580:29;3599:9;3580:29;:::i;:::-;3570:39;3656:2;3641:18;;3628:32;;-1:-1:-1;3707:2:1;3692:18;;;3679:32;;3489:228;-1:-1:-1;;;3489:228:1:o;3722:457::-;3808:6;3816;3869:2;3857:9;3848:7;3844:23;3840:32;3837:2;;;3890:6;3882;3875:22;3837:2;3935:9;3922:23;-1:-1:-1;;;;;3960:6:1;3957:30;3954:2;;;4005:6;3997;3990:22;3954:2;4049:70;4111:7;4102:6;4091:9;4087:22;4049:70;:::i;:::-;4138:8;;4023:96;;-1:-1:-1;3827:352:1;-1:-1:-1;;;;3827:352:1:o;4184:190::-;4243:6;4296:2;4284:9;4275:7;4271:23;4267:32;4264:2;;;4317:6;4309;4302:22;4264:2;-1:-1:-1;4345:23:1;;4254:120;-1:-1:-1;4254:120:1:o;4379:255::-;4437:6;4490:2;4478:9;4469:7;4465:23;4461:32;4458:2;;;4511:6;4503;4496:22;4458:2;4555:9;4542:23;4574:30;4598:5;4574:30;:::i;4639:259::-;4708:6;4761:2;4749:9;4740:7;4736:23;4732:32;4729:2;;;4782:6;4774;4767:22;4729:2;4819:9;4813:16;4838:30;4862:5;4838:30;:::i;4903:480::-;4972:6;5025:2;5013:9;5004:7;5000:23;4996:32;4993:2;;;5046:6;5038;5031:22;4993:2;5091:9;5078:23;-1:-1:-1;;;;;5116:6:1;5113:30;5110:2;;;5161:6;5153;5146:22;5110:2;5189:22;;5242:4;5234:13;;5230:27;-1:-1:-1;5220:2:1;;5276:6;5268;5261:22;5220:2;5304:73;5369:7;5364:2;5351:16;5346:2;5342;5338:11;5304:73;:::i;5583:264::-;5651:6;5659;5712:2;5700:9;5691:7;5687:23;5683:32;5680:2;;;5733:6;5725;5718:22;5680:2;5774:9;5761:23;5751:33;;5803:38;5837:2;5826:9;5822:18;5803:38;:::i;5852:525::-;5947:6;5955;5963;6016:2;6004:9;5995:7;5991:23;5987:32;5984:2;;;6037:6;6029;6022:22;5984:2;6078:9;6065:23;6055:33;;6139:2;6128:9;6124:18;6111:32;-1:-1:-1;;;;;6158:6:1;6155:30;6152:2;;;6203:6;6195;6188:22;6152:2;6247:70;6309:7;6300:6;6289:9;6285:22;6247:70;:::i;:::-;5974:403;;6336:8;;-1:-1:-1;6221:96:1;;-1:-1:-1;;;;5974:403:1:o;6382:257::-;6423:3;6461:5;6455:12;6488:6;6483:3;6476:19;6504:63;6560:6;6553:4;6548:3;6544:14;6537:4;6530:5;6526:16;6504:63;:::i;:::-;6621:2;6600:15;-1:-1:-1;;6596:29:1;6587:39;;;;6628:4;6583:50;;6431:208;-1:-1:-1;;6431:208:1:o;6644:349::-;6728:12;;-1:-1:-1;;;;;6724:38:1;6712:51;;6816:4;6805:16;;;6799:23;-1:-1:-1;;;;;6795:48:1;6779:14;;;6772:72;6907:4;6896:16;;;6890:23;6883:31;6876:39;6860:14;;;6853:63;6969:4;6958:16;;;6952:23;6977:8;6948:38;6932:14;;6925:62;6702:291::o;7484:637::-;7764:3;7802:6;7796:13;7818:53;7864:6;7859:3;7852:4;7844:6;7840:17;7818:53;:::i;:::-;7934:13;;7893:16;;;;7956:57;7934:13;7893:16;7990:4;7978:17;;7956:57;:::i;:::-;-1:-1:-1;;;8035:20:1;;8064:22;;;8113:1;8102:13;;7772:349;-1:-1:-1;;;;7772:349:1:o;8544:488::-;-1:-1:-1;;;;;8813:15:1;;;8795:34;;8865:15;;8860:2;8845:18;;8838:43;8912:2;8897:18;;8890:34;;;8960:3;8955:2;8940:18;;8933:31;;;8738:4;;8981:45;;9006:19;;8998:6;8981:45;:::i;:::-;8973:53;8747:285;-1:-1:-1;;;;;;8747:285:1:o;9037:723::-;9268:2;9320:21;;;9390:13;;9293:18;;;9412:22;;;9239:4;;9268:2;9491:15;;;;9465:2;9450:18;;;9239:4;9537:197;9551:6;9548:1;9545:13;9537:197;;;9600:52;9648:3;9639:6;9633:13;9600:52;:::i;:::-;9709:15;;;;9681:4;9672:14;;;;;9573:1;9566:9;9537:197;;9765:635;9936:2;9988:21;;;10058:13;;9961:18;;;10080:22;;;9907:4;;9936:2;10159:15;;;;10133:2;10118:18;;;9907:4;10205:169;10219:6;10216:1;10213:13;10205:169;;;10280:13;;10268:26;;10349:15;;;;10314:12;;;;10241:1;10234:9;10205:169;;10597:219;10746:2;10735:9;10728:21;10709:4;10766:44;10806:2;10795:9;10791:18;10783:6;10766:44;:::i;12594:356::-;12796:2;12778:21;;;12815:18;;;12808:30;12874:34;12869:2;12854:18;;12847:62;12941:2;12926:18;;12768:182::o;13998:264::-;14192:3;14177:19;;14205:51;14181:9;14238:6;14205:51;:::i;14449:128::-;14489:3;14520:1;14516:6;14513:1;14510:13;14507:2;;;14526:18;;:::i;:::-;-1:-1:-1;14562:9:1;;14497:80::o;14582:168::-;14622:7;14688:1;14684;14680:6;14676:14;14673:1;14670:21;14665:1;14658:9;14651:17;14647:45;14644:2;;;14695:18;;:::i;:::-;-1:-1:-1;14735:9:1;;14634:116::o;14755:258::-;14827:1;14837:113;14851:6;14848:1;14845:13;14837:113;;;14927:11;;;14921:18;14908:11;;;14901:39;14873:2;14866:10;14837:113;;;14968:6;14965:1;14962:13;14959:2;;;-1:-1:-1;;15003:1:1;14985:16;;14978:27;14808:205::o;15018:380::-;15097:1;15093:12;;;;15140;;;15161:2;;15215:4;15207:6;15203:17;15193:27;;15161:2;15268;15260:6;15257:14;15237:18;15234:38;15231:2;;;15314:10;15309:3;15305:20;15302:1;15295:31;15349:4;15346:1;15339:15;15377:4;15374:1;15367:15;15231:2;;15073:325;;;:::o;15403:135::-;15442:3;-1:-1:-1;;15463:17:1;;15460:2;;;15483:18;;:::i;:::-;-1:-1:-1;15530:1:1;15519:13;;15450:88::o;15543:127::-;15604:10;15599:3;15595:20;15592:1;15585:31;15635:4;15632:1;15625:15;15659:4;15656:1;15649:15;15675:127;15736:10;15731:3;15727:20;15724:1;15717:31;15767:4;15764:1;15757:15;15791:4;15788:1;15781:15;15807:131;-1:-1:-1;;;;;;15881:32:1;;15871:43;;15861:2;;15928:1;15925;15918:12

Swarm Source

ipfs://76d279589c57c07876a314c62f76ed6da1cfb9304fd25093032917b8e0ae4b26
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.