ETH Price: $3,260.99 (+0.41%)
Gas: 2 Gwei

Token

MOB (MOB)
 

Overview

Max Total Supply

59 MOB

Holders

31

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
hewie.eth
Balance
6 MOB
0x03f98a53a50eae769ca015ca9ef69128e492b5d8
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:
TheMOB

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-12
*/

// SPDX-License-Identifier: MIT
// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.1.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();

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

    // The 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;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            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 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev 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))) : '';
    }

    /**
     * @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 Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    /**
     * @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-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 {
        transferFrom(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` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

    /**
     * @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 Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/TheMob.sol


    pragma solidity ^0.8.13;







    contract TheMOB is Ownable, ERC721A {
    uint256 public maxSupply                    = 7777;
    uint256 public maxFreeSupply                = 7777;
    uint256 public maxPerTxDuringMint           = 20;
    uint256 public maxPerAddressDuringMint      = 21;
    uint256 public maxPerAddressDuringFreeMint  = 1;
    uint256 public price                        = 0.005 ether;
    bool    public saleIsActive                 = true;

    address constant internal TEAM_ADDRESS = 0x05553A261a6231cdAC37911FDb3AcA814b8fCb4E;
    string public baseURI = "https://gateway.pinata.cloud/ipfs/QmRPiPYVyywnmnji6Bi8T3nV5rT2povypMmjov9cpfZnK4/";
    string public constant baseExtension = ".json";
    mapping(address => uint256) public freeMintedAmount;
    mapping(address => uint256) public mintedAmount;
    constructor() ERC721A("MOB", "MOB"){}
    
    modifier mintCompliance() {require(saleIsActive, "Sale is not active yet."); require(tx.origin == msg.sender, "Wrong Caller"); _;}

    function _startTokenId() internal view virtual override returns (uint256) {return 1;}
    
    function mint(uint256 _quantity) external payable mintCompliance() {require (msg.value >= price * _quantity, "Insufficient Fund.");
        require(maxSupply >= totalSupply() + _quantity, "Exceeds max supply."); uint256 _mintedAmount = mintedAmount[msg.sender];
        require(_mintedAmount + _quantity <= maxPerAddressDuringMint, "Exceeds max mints per address!");
        require(_quantity > 0 && _quantity <= maxPerTxDuringMint, "Invalid mint amount."); mintedAmount[msg.sender] = _mintedAmount + _quantity; _safeMint(msg.sender, _quantity);}
   
    function freeMint(uint256 _quantity) external mintCompliance() {
        require(maxFreeSupply >= totalSupply() + _quantity, "Exceeds max supply."); uint256 _freeMintedAmount = freeMintedAmount[msg.sender];
        require(_freeMintedAmount + _quantity <= maxPerAddressDuringFreeMint, "Exceeds max free mints per address!"); freeMintedAmount[msg.sender] = _freeMintedAmount + _quantity; _safeMint(msg.sender, _quantity);}
    
    
    function StartSale() public onlyOwner {saleIsActive = !saleIsActive;}
    
    
    function setBaseURI(string memory baseURI_) external onlyOwner {baseURI = baseURI_;}
    
    
    function _baseURI() internal view virtual override returns (string memory) {return baseURI;}
    
    function tokenURI(uint256 _tokenId) public view override returns (string memory) 
        {require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, Strings.toString(_tokenId), baseExtension)) : "";}
    
    function withdrawBalance() external payable onlyOwner {(bool success, ) = payable(TEAM_ADDRESS).call{value: address(this).balance} (""); require(success, "transfer failed.");}}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"StartSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"payable","type":"function"}]

611e616009819055600a556014600b556015600c556001600d8190556611c37937e08000600e55600f805460ff19169091179055610100604052605160808181529062001ef160a039601090620000579082620001db565b503480156200006557600080fd5b506040518060400160405280600381526020016226a7a160e91b8152506040518060400160405280600381526020016226a7a160e91b815250620000b8620000b2620000e260201b60201c565b620000e6565b6003620000c68382620001db565b506004620000d58282620001db565b50506001805550620002a7565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200016157607f821691505b6020821081036200018257634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001d657600081815260208120601f850160051c81016020861015620001b15750805b601f850160051c820191505b81811015620001d257828155600101620001bd565b5050505b505050565b81516001600160401b03811115620001f757620001f762000136565b6200020f816200020884546200014c565b8462000188565b602080601f8311600181146200024757600084156200022e5750858301515b600019600386901b1c1916600185901b178555620001d2565b600085815260208120601f198616915b82811015620002785788860151825594840194600190910190840162000257565b5085821015620002975787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611c3a80620002b76000396000f3fe6080604052600436106101ee5760003560e01c80637c928fe91161010d578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610544578063e985e9c51461055a578063eb8d2444146105a3578063f2fde38b146105bd578063fbbf8cc3146105dd57600080fd5b8063b88d4fde146104bd578063c6682862146104dd578063c87b56dd1461050e578063d3464cbd1461052e57600080fd5b806396b10201116100dc57806396b1020114610447578063a035b1fe14610474578063a0712d681461048a578063a22cb4651461049d57600080fd5b80637c928fe9146103de5780638bc35c2f146103fe5780638da5cb5b1461041457806395d89b411461043257600080fd5b806342842e0e116101855780636352211e116101545780636352211e146103745780636c0360eb1461039457806370a08231146103a9578063715018a6146103c957600080fd5b806342842e0e14610316578063475133341461033657806355f804b31461034c5780635fd8c7101461036c57600080fd5b8063095ea7b3116101c1578063095ea7b31461029957806318160ddd146102b957806323b872dd146102e05780632e0fd6eb1461030057600080fd5b806301ffc9a7146101f357806303225f4c1461022857806306fdde031461023f578063081812fc14610261575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611600565b61060a565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61065c565b005b34801561024b57600080fd5b50610254610678565b60405161021f9190611675565b34801561026d57600080fd5b5061028161027c366004611688565b61070a565b6040516001600160a01b03909116815260200161021f565b3480156102a557600080fd5b5061023d6102b43660046116bd565b61074e565b3480156102c557600080fd5b5060025460015403600019015b60405190815260200161021f565b3480156102ec57600080fd5b5061023d6102fb3660046116e7565b6107ee565b34801561030c57600080fd5b506102d2600d5481565b34801561032257600080fd5b5061023d6103313660046116e7565b610987565b34801561034257600080fd5b506102d2600a5481565b34801561035857600080fd5b5061023d6103673660046117af565b6109a7565b61023d6109bf565b34801561038057600080fd5b5061028161038f366004611688565b610a6e565b3480156103a057600080fd5b50610254610a79565b3480156103b557600080fd5b506102d26103c43660046117f8565b610b07565b3480156103d557600080fd5b5061023d610b56565b3480156103ea57600080fd5b5061023d6103f9366004611688565b610b6a565b34801561040a57600080fd5b506102d2600c5481565b34801561042057600080fd5b506000546001600160a01b0316610281565b34801561043e57600080fd5b50610254610cf1565b34801561045357600080fd5b506102d26104623660046117f8565b60116020526000908152604090205481565b34801561048057600080fd5b506102d2600e5481565b61023d610498366004611688565b610d00565b3480156104a957600080fd5b5061023d6104b8366004611813565b610f22565b3480156104c957600080fd5b5061023d6104d836600461184f565b610fb7565b3480156104e957600080fd5b5061025460405180604001604052806005815260200164173539b7b760d91b81525081565b34801561051a57600080fd5b50610254610529366004611688565b611001565b34801561053a57600080fd5b506102d2600b5481565b34801561055057600080fd5b506102d260095481565b34801561056657600080fd5b506102136105753660046118cb565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156105af57600080fd5b50600f546102139060ff1681565b3480156105c957600080fd5b5061023d6105d83660046117f8565b6110cb565b3480156105e957600080fd5b506102d26105f83660046117f8565b60126020526000908152604090205481565b60006301ffc9a760e01b6001600160e01b03198316148061063b57506380ac58cd60e01b6001600160e01b03198316145b806106565750635b5e139f60e01b6001600160e01b03198316145b92915050565b610664611141565b600f805460ff19811660ff90911615179055565b606060038054610687906118fe565b80601f01602080910402602001604051908101604052809291908181526020018280546106b3906118fe565b80156107005780601f106106d557610100808354040283529160200191610700565b820191906000526020600020905b8154815290600101906020018083116106e357829003601f168201915b5050505050905090565b60006107158261119b565b610732576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061075982610a6e565b9050336001600160a01b03821614610792576107758133610575565b610792576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006107f9826111d0565b9050836001600160a01b0316816001600160a01b03161461082c5760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176108795761085c8633610575565b61087957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166108a057604051633a954ecd60e21b815260040160405180910390fd5b80156108ab57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b8416900361093d5760018401600081815260056020526040812054900361093b57600154811461093b5760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6109a283838360405180602001604052806000815250610fb7565b505050565b6109af611141565b60106109bb828261197e565b5050565b6109c7611141565b6040516000907305553a261a6231cdac37911fdb3aca814b8fcb4e9047908381818185875af1925050503d8060008114610a1d576040519150601f19603f3d011682016040523d82523d6000602084013e610a22565b606091505b5050905080610a6b5760405162461bcd60e51b815260206004820152601060248201526f3a3930b739b332b9103330b4b632b21760811b60448201526064015b60405180910390fd5b50565b6000610656826111d0565b60108054610a86906118fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab2906118fe565b8015610aff5780601f10610ad457610100808354040283529160200191610aff565b820191906000526020600020905b815481529060010190602001808311610ae257829003601f168201915b505050505081565b60006001600160a01b038216610b30576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610b5e611141565b610b686000611246565b565b600f5460ff16610bb65760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b6044820152606401610a62565b323314610bf45760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b6044820152606401610a62565b6002546001548291900360001901610c0c9190611a54565b600a541015610c535760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610a62565b33600090815260116020526040902054600d54610c708383611a54565b1115610cca5760405162461bcd60e51b815260206004820152602360248201527f45786365656473206d61782066726565206d696e74732070657220616464726560448201526273732160e81b6064820152608401610a62565b610cd48282611a54565b336000818152601160205260409020919091556109bb9083611296565b606060048054610687906118fe565b600f5460ff16610d4c5760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b6044820152606401610a62565b323314610d8a5760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b6044820152606401610a62565b80600e54610d989190611a6c565b341015610ddc5760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b4b2b73a10233ab7321760711b6044820152606401610a62565b6002546001548291900360001901610df49190611a54565b6009541015610e3b5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610a62565b33600090815260126020526040902054600c54610e588383611a54565b1115610ea65760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178206d696e74732070657220616464726573732100006044820152606401610a62565b600082118015610eb85750600b548211155b610efb5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b6044820152606401610a62565b610f058282611a54565b336000818152601260205260409020919091556109bb9083611296565b336001600160a01b03831603610f4b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fc28484846107ee565b6001600160a01b0383163b15610ffb57610fde848484846112b0565b610ffb576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061100c8261119b565b6110505760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610a62565b60006010805461105f906118fe565b90501161107b5760405180602001604052806000815250610656565b60106110868361139c565b60405180604001604052806005815260200164173539b7b760d91b8152506040516020016110b693929190611a8b565b60405160208183030381529060405292915050565b6110d3611141565b6001600160a01b0381166111385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a62565b610a6b81611246565b6000546001600160a01b03163314610b685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a62565b6000816001111580156111af575060015482105b8015610656575050600090815260056020526040902054600160e01b161590565b6000818060011161122d5760015481101561122d5760008181526005602052604081205490600160e01b8216900361122b575b80600003611224575060001901600081815260056020526040902054611203565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109bb82826040518060200160405280600081525061149d565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112e5903390899088908890600401611b26565b6020604051808303816000875af1925050508015611320575060408051601f3d908101601f1916820190925261131d91810190611b63565b60015b61137e573d80801561134e576040519150601f19603f3d011682016040523d82523d6000602084013e611353565b606091505b508051600003611376576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036113c35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113ed57806113d781611b80565b91506113e69050600a83611baf565b91506113c7565b60008167ffffffffffffffff81111561140857611408611723565b6040519080825280601f01601f191660200182016040528015611432576020820181803683370190505b5090505b841561139457611447600183611bc3565b9150611454600a86611bda565b61145f906030611a54565b60f81b81838151811061147457611474611bee565b60200101906001600160f81b031916908160001a905350611496600a86611baf565b9450611436565b6114a7838361150a565b6001600160a01b0383163b156109a2576001548281035b6114d160008683806001019450866112b0565b6114ee576040516368d2bf6b60e11b815260040160405180910390fd5b8181106114be57816001541461150357600080fd5b5050505050565b6001546001600160a01b03831661153357604051622e076360e81b815260040160405180910390fd5b816000036115545760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061159e5760015550505050565b6001600160e01b031981168114610a6b57600080fd5b60006020828403121561161257600080fd5b8135611224816115ea565b60005b83811015611638578181015183820152602001611620565b83811115610ffb5750506000910152565b6000815180845261166181602086016020860161161d565b601f01601f19169290920160200192915050565b6020815260006112246020830184611649565b60006020828403121561169a57600080fd5b5035919050565b80356001600160a01b03811681146116b857600080fd5b919050565b600080604083850312156116d057600080fd5b6116d9836116a1565b946020939093013593505050565b6000806000606084860312156116fc57600080fd5b611705846116a1565b9250611713602085016116a1565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561175457611754611723565b604051601f8501601f19908116603f0116810190828211818310171561177c5761177c611723565b8160405280935085815286868601111561179557600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156117c157600080fd5b813567ffffffffffffffff8111156117d857600080fd5b8201601f810184136117e957600080fd5b61139484823560208401611739565b60006020828403121561180a57600080fd5b611224826116a1565b6000806040838503121561182657600080fd5b61182f836116a1565b91506020830135801515811461184457600080fd5b809150509250929050565b6000806000806080858703121561186557600080fd5b61186e856116a1565b935061187c602086016116a1565b925060408501359150606085013567ffffffffffffffff81111561189f57600080fd5b8501601f810187136118b057600080fd5b6118bf87823560208401611739565b91505092959194509250565b600080604083850312156118de57600080fd5b6118e7836116a1565b91506118f5602084016116a1565b90509250929050565b600181811c9082168061191257607f821691505b60208210810361193257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156109a257600081815260208120601f850160051c8101602086101561195f5750805b601f850160051c820191505b8181101561097f5782815560010161196b565b815167ffffffffffffffff81111561199857611998611723565b6119ac816119a684546118fe565b84611938565b602080601f8311600181146119e157600084156119c95750858301515b600019600386901b1c1916600185901b17855561097f565b600085815260208120601f198616915b82811015611a10578886015182559484019460019091019084016119f1565b5085821015611a2e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b60008219821115611a6757611a67611a3e565b500190565b6000816000190483118215151615611a8657611a86611a3e565b500290565b6000808554611a99816118fe565b60018281168015611ab15760018114611ac657611af5565b60ff1984168752821515830287019450611af5565b8960005260208060002060005b85811015611aec5781548a820152908401908201611ad3565b50505082870194505b505050508451611b0981836020890161161d565b8451910190611b1c81836020880161161d565b0195945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b5990830184611649565b9695505050505050565b600060208284031215611b7557600080fd5b8151611224816115ea565b600060018201611b9257611b92611a3e565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611bbe57611bbe611b99565b500490565b600082821015611bd557611bd5611a3e565b500390565b600082611be957611be9611b99565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220d5d504cb163094f355c29ebbe594e9749bcba10be0fac93f29250d9ab4becaf864736f6c634300080f003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5250695059567979776e6d6e6a693642693854336e5635725432706f7679704d6d6a6f76396370665a6e4b342f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80637c928fe91161010d578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610544578063e985e9c51461055a578063eb8d2444146105a3578063f2fde38b146105bd578063fbbf8cc3146105dd57600080fd5b8063b88d4fde146104bd578063c6682862146104dd578063c87b56dd1461050e578063d3464cbd1461052e57600080fd5b806396b10201116100dc57806396b1020114610447578063a035b1fe14610474578063a0712d681461048a578063a22cb4651461049d57600080fd5b80637c928fe9146103de5780638bc35c2f146103fe5780638da5cb5b1461041457806395d89b411461043257600080fd5b806342842e0e116101855780636352211e116101545780636352211e146103745780636c0360eb1461039457806370a08231146103a9578063715018a6146103c957600080fd5b806342842e0e14610316578063475133341461033657806355f804b31461034c5780635fd8c7101461036c57600080fd5b8063095ea7b3116101c1578063095ea7b31461029957806318160ddd146102b957806323b872dd146102e05780632e0fd6eb1461030057600080fd5b806301ffc9a7146101f357806303225f4c1461022857806306fdde031461023f578063081812fc14610261575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611600565b61060a565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61065c565b005b34801561024b57600080fd5b50610254610678565b60405161021f9190611675565b34801561026d57600080fd5b5061028161027c366004611688565b61070a565b6040516001600160a01b03909116815260200161021f565b3480156102a557600080fd5b5061023d6102b43660046116bd565b61074e565b3480156102c557600080fd5b5060025460015403600019015b60405190815260200161021f565b3480156102ec57600080fd5b5061023d6102fb3660046116e7565b6107ee565b34801561030c57600080fd5b506102d2600d5481565b34801561032257600080fd5b5061023d6103313660046116e7565b610987565b34801561034257600080fd5b506102d2600a5481565b34801561035857600080fd5b5061023d6103673660046117af565b6109a7565b61023d6109bf565b34801561038057600080fd5b5061028161038f366004611688565b610a6e565b3480156103a057600080fd5b50610254610a79565b3480156103b557600080fd5b506102d26103c43660046117f8565b610b07565b3480156103d557600080fd5b5061023d610b56565b3480156103ea57600080fd5b5061023d6103f9366004611688565b610b6a565b34801561040a57600080fd5b506102d2600c5481565b34801561042057600080fd5b506000546001600160a01b0316610281565b34801561043e57600080fd5b50610254610cf1565b34801561045357600080fd5b506102d26104623660046117f8565b60116020526000908152604090205481565b34801561048057600080fd5b506102d2600e5481565b61023d610498366004611688565b610d00565b3480156104a957600080fd5b5061023d6104b8366004611813565b610f22565b3480156104c957600080fd5b5061023d6104d836600461184f565b610fb7565b3480156104e957600080fd5b5061025460405180604001604052806005815260200164173539b7b760d91b81525081565b34801561051a57600080fd5b50610254610529366004611688565b611001565b34801561053a57600080fd5b506102d2600b5481565b34801561055057600080fd5b506102d260095481565b34801561056657600080fd5b506102136105753660046118cb565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156105af57600080fd5b50600f546102139060ff1681565b3480156105c957600080fd5b5061023d6105d83660046117f8565b6110cb565b3480156105e957600080fd5b506102d26105f83660046117f8565b60126020526000908152604090205481565b60006301ffc9a760e01b6001600160e01b03198316148061063b57506380ac58cd60e01b6001600160e01b03198316145b806106565750635b5e139f60e01b6001600160e01b03198316145b92915050565b610664611141565b600f805460ff19811660ff90911615179055565b606060038054610687906118fe565b80601f01602080910402602001604051908101604052809291908181526020018280546106b3906118fe565b80156107005780601f106106d557610100808354040283529160200191610700565b820191906000526020600020905b8154815290600101906020018083116106e357829003601f168201915b5050505050905090565b60006107158261119b565b610732576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061075982610a6e565b9050336001600160a01b03821614610792576107758133610575565b610792576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006107f9826111d0565b9050836001600160a01b0316816001600160a01b03161461082c5760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176108795761085c8633610575565b61087957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166108a057604051633a954ecd60e21b815260040160405180910390fd5b80156108ab57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b8416900361093d5760018401600081815260056020526040812054900361093b57600154811461093b5760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6109a283838360405180602001604052806000815250610fb7565b505050565b6109af611141565b60106109bb828261197e565b5050565b6109c7611141565b6040516000907305553a261a6231cdac37911fdb3aca814b8fcb4e9047908381818185875af1925050503d8060008114610a1d576040519150601f19603f3d011682016040523d82523d6000602084013e610a22565b606091505b5050905080610a6b5760405162461bcd60e51b815260206004820152601060248201526f3a3930b739b332b9103330b4b632b21760811b60448201526064015b60405180910390fd5b50565b6000610656826111d0565b60108054610a86906118fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab2906118fe565b8015610aff5780601f10610ad457610100808354040283529160200191610aff565b820191906000526020600020905b815481529060010190602001808311610ae257829003601f168201915b505050505081565b60006001600160a01b038216610b30576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610b5e611141565b610b686000611246565b565b600f5460ff16610bb65760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b6044820152606401610a62565b323314610bf45760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b6044820152606401610a62565b6002546001548291900360001901610c0c9190611a54565b600a541015610c535760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610a62565b33600090815260116020526040902054600d54610c708383611a54565b1115610cca5760405162461bcd60e51b815260206004820152602360248201527f45786365656473206d61782066726565206d696e74732070657220616464726560448201526273732160e81b6064820152608401610a62565b610cd48282611a54565b336000818152601160205260409020919091556109bb9083611296565b606060048054610687906118fe565b600f5460ff16610d4c5760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b6044820152606401610a62565b323314610d8a5760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b6044820152606401610a62565b80600e54610d989190611a6c565b341015610ddc5760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b4b2b73a10233ab7321760711b6044820152606401610a62565b6002546001548291900360001901610df49190611a54565b6009541015610e3b5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610a62565b33600090815260126020526040902054600c54610e588383611a54565b1115610ea65760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178206d696e74732070657220616464726573732100006044820152606401610a62565b600082118015610eb85750600b548211155b610efb5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b6044820152606401610a62565b610f058282611a54565b336000818152601260205260409020919091556109bb9083611296565b336001600160a01b03831603610f4b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fc28484846107ee565b6001600160a01b0383163b15610ffb57610fde848484846112b0565b610ffb576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061100c8261119b565b6110505760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610a62565b60006010805461105f906118fe565b90501161107b5760405180602001604052806000815250610656565b60106110868361139c565b60405180604001604052806005815260200164173539b7b760d91b8152506040516020016110b693929190611a8b565b60405160208183030381529060405292915050565b6110d3611141565b6001600160a01b0381166111385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a62565b610a6b81611246565b6000546001600160a01b03163314610b685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a62565b6000816001111580156111af575060015482105b8015610656575050600090815260056020526040902054600160e01b161590565b6000818060011161122d5760015481101561122d5760008181526005602052604081205490600160e01b8216900361122b575b80600003611224575060001901600081815260056020526040902054611203565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109bb82826040518060200160405280600081525061149d565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112e5903390899088908890600401611b26565b6020604051808303816000875af1925050508015611320575060408051601f3d908101601f1916820190925261131d91810190611b63565b60015b61137e573d80801561134e576040519150601f19603f3d011682016040523d82523d6000602084013e611353565b606091505b508051600003611376576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036113c35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113ed57806113d781611b80565b91506113e69050600a83611baf565b91506113c7565b60008167ffffffffffffffff81111561140857611408611723565b6040519080825280601f01601f191660200182016040528015611432576020820181803683370190505b5090505b841561139457611447600183611bc3565b9150611454600a86611bda565b61145f906030611a54565b60f81b81838151811061147457611474611bee565b60200101906001600160f81b031916908160001a905350611496600a86611baf565b9450611436565b6114a7838361150a565b6001600160a01b0383163b156109a2576001548281035b6114d160008683806001019450866112b0565b6114ee576040516368d2bf6b60e11b815260040160405180910390fd5b8181106114be57816001541461150357600080fd5b5050505050565b6001546001600160a01b03831661153357604051622e076360e81b815260040160405180910390fd5b816000036115545760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061159e5760015550505050565b6001600160e01b031981168114610a6b57600080fd5b60006020828403121561161257600080fd5b8135611224816115ea565b60005b83811015611638578181015183820152602001611620565b83811115610ffb5750506000910152565b6000815180845261166181602086016020860161161d565b601f01601f19169290920160200192915050565b6020815260006112246020830184611649565b60006020828403121561169a57600080fd5b5035919050565b80356001600160a01b03811681146116b857600080fd5b919050565b600080604083850312156116d057600080fd5b6116d9836116a1565b946020939093013593505050565b6000806000606084860312156116fc57600080fd5b611705846116a1565b9250611713602085016116a1565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561175457611754611723565b604051601f8501601f19908116603f0116810190828211818310171561177c5761177c611723565b8160405280935085815286868601111561179557600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156117c157600080fd5b813567ffffffffffffffff8111156117d857600080fd5b8201601f810184136117e957600080fd5b61139484823560208401611739565b60006020828403121561180a57600080fd5b611224826116a1565b6000806040838503121561182657600080fd5b61182f836116a1565b91506020830135801515811461184457600080fd5b809150509250929050565b6000806000806080858703121561186557600080fd5b61186e856116a1565b935061187c602086016116a1565b925060408501359150606085013567ffffffffffffffff81111561189f57600080fd5b8501601f810187136118b057600080fd5b6118bf87823560208401611739565b91505092959194509250565b600080604083850312156118de57600080fd5b6118e7836116a1565b91506118f5602084016116a1565b90509250929050565b600181811c9082168061191257607f821691505b60208210810361193257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156109a257600081815260208120601f850160051c8101602086101561195f5750805b601f850160051c820191505b8181101561097f5782815560010161196b565b815167ffffffffffffffff81111561199857611998611723565b6119ac816119a684546118fe565b84611938565b602080601f8311600181146119e157600084156119c95750858301515b600019600386901b1c1916600185901b17855561097f565b600085815260208120601f198616915b82811015611a10578886015182559484019460019091019084016119f1565b5085821015611a2e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b60008219821115611a6757611a67611a3e565b500190565b6000816000190483118215151615611a8657611a86611a3e565b500290565b6000808554611a99816118fe565b60018281168015611ab15760018114611ac657611af5565b60ff1984168752821515830287019450611af5565b8960005260208060002060005b85811015611aec5781548a820152908401908201611ad3565b50505082870194505b505050508451611b0981836020890161161d565b8451910190611b1c81836020880161161d565b0195945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b5990830184611649565b9695505050505050565b600060208284031215611b7557600080fd5b8151611224816115ea565b600060018201611b9257611b92611a3e565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611bbe57611bbe611b99565b500490565b600082821015611bd557611bd5611a3e565b500390565b600082611be957611be9611b99565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220d5d504cb163094f355c29ebbe594e9749bcba10be0fac93f29250d9ab4becaf864736f6c634300080f0033

Deployed Bytecode Sourcemap

50930:2851:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14625:615;;;;;;;;;;-1:-1:-1;14625:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;14625:615:0;;;;;;;;53028:69;;;;;;;;;;;;;:::i;:::-;;20272:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22218:204::-;;;;;;;;;;-1:-1:-1;22218:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;22218:204:0;1528:203:1;21766:386:0;;;;;;;;;;-1:-1:-1;21766:386:0;;;;;:::i;:::-;;:::i;13679:315::-;;;;;;;;;;-1:-1:-1;13945:12:0;;52012:1;13929:13;:28;-1:-1:-1;;13929:46:0;13679:315;;;2319:25:1;;;2307:2;2292:18;13679:315:0;2173:177:1;31483:2800:0;;;;;;;;;;-1:-1:-1;31483:2800:0;;;;;:::i;:::-;;:::i;51197:47::-;;;;;;;;;;;;;;;;23108:185;;;;;;;;;;-1:-1:-1;23108:185:0;;;;;:::i;:::-;;:::i;51030:50::-;;;;;;;;;;;;;;;;53115:84;;;;;;;;;;-1:-1:-1;53115:84:0;;;;;:::i;:::-;;:::i;53605:175::-;;;:::i;20061:144::-;;;;;;;;;;-1:-1:-1;20061:144:0;;;;;:::i;:::-;;:::i;51464:107::-;;;;;;;;;;;;;:::i;15304:224::-;;;;;;;;;;-1:-1:-1;15304:224:0;;;;;:::i;:::-;;:::i;50030:103::-;;;;;;;;;;;;;:::i;52587:423::-;;;;;;;;;;-1:-1:-1;52587:423:0;;;;;:::i;:::-;;:::i;51142:48::-;;;;;;;;;;;;;;;;49382:87;;;;;;;;;;-1:-1:-1;49428:7:0;49455:6;-1:-1:-1;;;;;49455:6:0;49382:87;;20441:104;;;;;;;;;;;;;:::i;51631:51::-;;;;;;;;;;-1:-1:-1;51631:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;51251:57;;;;;;;;;;;;;;;;52027:549;;;;;;:::i;:::-;;:::i;22494:308::-;;;;;;;;;;-1:-1:-1;22494:308:0;;;;;:::i;:::-;;:::i;23364:399::-;;;;;;;;;;-1:-1:-1;23364:399:0;;;;;:::i;:::-;;:::i;51578:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;51578:46:0;;;;;53321:272;;;;;;;;;;-1:-1:-1;53321:272:0;;;;;:::i;:::-;;:::i;51087:48::-;;;;;;;;;;;;;;;;50973:50;;;;;;;;;;;;;;;;22873:164;;;;;;;;;;-1:-1:-1;22873:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;22994:25:0;;;22970:4;22994:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22873:164;51315:50;;;;;;;;;;-1:-1:-1;51315:50:0;;;;;;;;50288:201;;;;;;;;;;-1:-1:-1;50288:201:0;;;;;:::i;:::-;;:::i;51689:47::-;;;;;;;;;;-1:-1:-1;51689:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;14625:615;14710:4;-1:-1:-1;;;;;;;;;15010:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;15087:25:0;;;15010:102;:179;;;-1:-1:-1;;;;;;;;;;15164:25:0;;;15010:179;14990:199;14625:615;-1:-1:-1;;14625:615:0:o;53028:69::-;49268:13;:11;:13::i;:::-;53083:12:::1;::::0;;-1:-1:-1;;53067:28:0;::::1;53083:12;::::0;;::::1;53082:13;53067:28;::::0;;53028:69::o;20272:100::-;20326:13;20359:5;20352:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20272:100;:::o;22218:204::-;22286:7;22311:16;22319:7;22311;:16::i;:::-;22306:64;;22336:34;;-1:-1:-1;;;22336:34:0;;;;;;;;;;;22306:64;-1:-1:-1;22390:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22390:24:0;;22218:204::o;21766:386::-;21839:13;21855:16;21863:7;21855;:16::i;:::-;21839:32;-1:-1:-1;42666:10:0;-1:-1:-1;;;;;21888:28:0;;;21884:175;;21936:44;21953:5;42666:10;22873:164;:::i;21936:44::-;21931:128;;22008:35;;-1:-1:-1;;;22008:35:0;;;;;;;;;;;21931:128;22071:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;22071:29:0;-1:-1:-1;;;;;22071:29:0;;;;;;;;;22116:28;;22071:24;;22116:28;;;;;;;21828:324;21766:386;;:::o;31483:2800::-;31617:27;31647;31666:7;31647:18;:27::i;:::-;31617:57;;31732:4;-1:-1:-1;;;;;31691:45:0;31707:19;-1:-1:-1;;;;;31691:45:0;;31687:86;;31745:28;;-1:-1:-1;;;31745:28:0;;;;;;;;;;;31687:86;31787:27;30213:21;;;30040:15;30255:4;30248:36;30337:4;30321:21;;30427:26;;42666:10;31180:30;;;-1:-1:-1;;;;;30878:26:0;;31159:19;;;31156:55;31966:174;;32053:43;32070:4;42666:10;22873:164;:::i;32053:43::-;32048:92;;32105:35;;-1:-1:-1;;;32105:35:0;;;;;;;;;;;32048:92;-1:-1:-1;;;;;32157:16:0;;32153:52;;32182:23;;-1:-1:-1;;;32182:23:0;;;;;;;;;;;32153:52;32354:15;32351:160;;;32494:1;32473:19;32466:30;32351:160;-1:-1:-1;;;;;32889:24:0;;;;;;;:18;:24;;;;;;32887:26;;-1:-1:-1;;32887:26:0;;;32958:22;;;;;;;;;32956:24;;-1:-1:-1;32956:24:0;;;19960:11;19936:22;19932:40;19919:62;-1:-1:-1;;;19919:62:0;33251:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;33545:46:0;;:51;;33541:626;;33649:1;33639:11;;33617:19;33772:30;;;:17;:30;;;;;;:35;;33768:384;;33910:13;;33895:11;:28;33891:242;;34057:30;;;;:17;:30;;;;;:52;;;33891:242;33598:569;33541:626;34214:7;34210:2;-1:-1:-1;;;;;34195:27:0;34204:4;-1:-1:-1;;;;;34195:27:0;;;;;;;;;;;34233:42;31606:2677;;;31483:2800;;;:::o;23108:185::-;23246:39;23263:4;23269:2;23273:7;23246:39;;;;;;;;;;;;:16;:39::i;:::-;23108:185;;;:::o;53115:84::-;49268:13;:11;:13::i;:::-;53179:7:::1;:18;53189:8:::0;53179:7;:18:::1;:::i;:::-;;53115:84:::0;:::o;53605:175::-;49268:13;:11;:13::i;:::-;53679:61:::1;::::0;53661:12:::1;::::0;51415:42:::1;::::0;53713:21:::1;::::0;53661:12;53679:61;53661:12;53679:61;53713:21;51415:42;53679:61:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53660:80;;;53750:7;53742:36;;;::::0;-1:-1:-1;;;53742:36:0;;8394:2:1;53742:36:0::1;::::0;::::1;8376:21:1::0;8433:2;8413:18;;;8406:30;-1:-1:-1;;;8452:18:1;;;8445:46;8508:18;;53742:36:0::1;;;;;;;;;53659:121;53605:175::o:0;20061:144::-;20125:7;20168:27;20187:7;20168:18;:27::i;51464:107::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;15304:224::-;15368:7;-1:-1:-1;;;;;15392:19:0;;15388:60;;15420:28;;-1:-1:-1;;;15420:28:0;;;;;;;;;;;15388:60;-1:-1:-1;;;;;;15466:25:0;;;;;:18;:25;;;;;;9859:13;15466:54;;15304:224::o;50030:103::-;49268:13;:11;:13::i;:::-;50095:30:::1;50122:1;50095:18;:30::i;:::-;50030:103::o:0;52587:423::-;51827:12;;;;51819:48;;;;-1:-1:-1;;;51819:48:0;;8739:2:1;51819:48:0;;;8721:21:1;8778:2;8758:18;;;8751:30;-1:-1:-1;;;8797:18:1;;;8790:53;8860:18;;51819:48:0;8537:347:1;51819:48:0;51877:9;51890:10;51877:23;51869:48;;;;-1:-1:-1;;;51869:48:0;;9091:2:1;51869:48:0;;;9073:21:1;9130:2;9110:18;;;9103:30;-1:-1:-1;;;9149:18:1;;;9142:42;9201:18;;51869:48:0;8889:336:1;51869:48:0;13945:12;;52012:1;13929:13;52702:9;;13929:28;;-1:-1:-1;;13929:46:0;52686:25:::1;;;;:::i;:::-;52669:13;;:42;;52661:74;;;::::0;-1:-1:-1;;;52661:74:0;;9697:2:1;52661:74:0::1;::::0;::::1;9679:21:1::0;9736:2;9716:18;;;9709:30;-1:-1:-1;;;9755:18:1;;;9748:49;9814:18;;52661:74:0::1;9495:343:1::0;52661:74:0::1;52782:10;52737:25;52765:28:::0;;;:16:::1;:28;::::0;;;;;52845:27:::1;::::0;52812:29:::1;52832:9:::0;52765:28;52812:29:::1;:::i;:::-;:60;;52804:108;;;::::0;-1:-1:-1;;;52804:108:0;;10045:2:1;52804:108:0::1;::::0;::::1;10027:21:1::0;10084:2;10064:18;;;10057:30;10123:34;10103:18;;;10096:62;-1:-1:-1;;;10174:18:1;;;10167:33;10217:19;;52804:108:0::1;9843:399:1::0;52804:108:0::1;52945:29;52965:9:::0;52945:17;:29:::1;:::i;:::-;52931:10;52914:28;::::0;;;:16:::1;:28;::::0;;;;:60;;;;52976:32:::1;::::0;52998:9;52976::::1;:32::i;20441:104::-:0;20497:13;20530:7;20523:14;;;;;:::i;52027:549::-;51827:12;;;;51819:48;;;;-1:-1:-1;;;51819:48:0;;8739:2:1;51819:48:0;;;8721:21:1;8778:2;8758:18;;;8751:30;-1:-1:-1;;;8797:18:1;;;8790:53;8860:18;;51819:48:0;8537:347:1;51819:48:0;51877:9;51890:10;51877:23;51869:48;;;;-1:-1:-1;;;51869:48:0;;9091:2:1;51869:48:0;;;9073:21:1;9130:2;9110:18;;;9103:30;-1:-1:-1;;;9149:18:1;;;9142:42;9201:18;;51869:48:0;8889:336:1;51869:48:0;52125:9:::1;52117:5;;:17;;;;:::i;:::-;52104:9;:30;;52095:62;;;::::0;-1:-1:-1;;;52095:62:0;;10622:2:1;52095:62:0::1;::::0;::::1;10604:21:1::0;10661:2;10641:18;;;10634:30;-1:-1:-1;;;10680:18:1;;;10673:48;10738:18;;52095:62:0::1;10420:342:1::0;52095:62:0::1;13945:12:::0;;52012:1;13929:13;52205:9;;13929:28;;-1:-1:-1;;13929:46:0;52189:25:::1;;;;:::i;:::-;52176:9;;:38;;52168:70;;;::::0;-1:-1:-1;;;52168:70:0;;9697:2:1;52168:70:0::1;::::0;::::1;9679:21:1::0;9736:2;9716:18;;;9709:30;-1:-1:-1;;;9755:18:1;;;9748:49;9814:18;;52168:70:0::1;9495:343:1::0;52168:70:0::1;52277:10;52240:21;52264:24:::0;;;:12:::1;:24;::::0;;;;;52336:23:::1;::::0;52307:25:::1;52323:9:::0;52264:24;52307:25:::1;:::i;:::-;:52;;52299:95;;;::::0;-1:-1:-1;;;52299:95:0;;10969:2:1;52299:95:0::1;::::0;::::1;10951:21:1::0;11008:2;10988:18;;;10981:30;11047:32;11027:18;;;11020:60;11097:18;;52299:95:0::1;10767:354:1::0;52299:95:0::1;52425:1;52413:9;:13;:48;;;;;52443:18;;52430:9;:31;;52413:48;52405:81;;;::::0;-1:-1:-1;;;52405:81:0;;11328:2:1;52405:81:0::1;::::0;::::1;11310:21:1::0;11367:2;11347:18;;;11340:30;-1:-1:-1;;;11386:18:1;;;11379:50;11446:18;;52405:81:0::1;11126:344:1::0;52405:81:0::1;52515:25;52531:9:::0;52515:13;:25:::1;:::i;:::-;52501:10;52488:24;::::0;;;:12:::1;:24;::::0;;;;:52;;;;52542:32:::1;::::0;52564:9;52542::::1;:32::i;22494:308::-:0;42666:10;-1:-1:-1;;;;;22593:31:0;;;22589:61;;22633:17;;-1:-1:-1;;;22633:17:0;;;;;;;;;;;22589:61;42666:10;22663:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;22663:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;22663:60:0;;;;;;;;;;22739:55;;540:41:1;;;22663:49:0;;42666:10;22739:55;;513:18:1;22739:55:0;;;;;;;22494:308;;:::o;23364:399::-;23531:31;23544:4;23550:2;23554:7;23531:12;:31::i;:::-;-1:-1:-1;;;;;23577:14:0;;;:19;23573:183;;23616:56;23647:4;23653:2;23657:7;23666:5;23616:30;:56::i;:::-;23611:145;;23700:40;;-1:-1:-1;;;23700:40:0;;;;;;;;;;;23611:145;23364:399;;;;:::o;53321:272::-;53387:13;53421:17;53429:8;53421:7;:17::i;:::-;53413:51;;;;-1:-1:-1;;;53413:51:0;;11677:2:1;53413:51:0;;;11659:21:1;11716:2;11696:18;;;11689:30;-1:-1:-1;;;11735:18:1;;;11728:51;11796:18;;53413:51:0;11475:345:1;53413:51:0;53506:1;53488:7;53482:21;;;;;:::i;:::-;;;:25;:109;;;;;;;;;;;;;;;;;53534:7;53543:26;53560:8;53543:16;:26::i;:::-;53571:13;;;;;;;;;;;;;-1:-1:-1;;;53571:13:0;;;53517:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53475:116;53321:272;-1:-1:-1;;53321:272:0:o;50288:201::-;49268:13;:11;:13::i;:::-;-1:-1:-1;;;;;50377:22:0;::::1;50369:73;;;::::0;-1:-1:-1;;;50369:73:0;;13233:2:1;50369:73:0::1;::::0;::::1;13215:21:1::0;13272:2;13252:18;;;13245:30;13311:34;13291:18;;;13284:62;-1:-1:-1;;;13362:18:1;;;13355:36;13408:19;;50369:73:0::1;13031:402:1::0;50369:73:0::1;50453:28;50472:8;50453:18;:28::i;49547:132::-:0;49428:7;49455:6;-1:-1:-1;;;;;49455:6:0;42666:10;49611:23;49603:68;;;;-1:-1:-1;;;49603:68:0;;13640:2:1;49603:68:0;;;13622:21:1;;;13659:18;;;13652:30;13718:34;13698:18;;;13691:62;13770:18;;49603:68:0;13438:356:1;24018:273:0;24075:4;24131:7;52012:1;24112:26;;:66;;;;;24165:13;;24155:7;:23;24112:66;:152;;;;-1:-1:-1;;24216:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;24216:43:0;:48;;24018:273::o;16978:1129::-;17045:7;17080;;52012:1;17129:23;17125:915;;17182:13;;17175:4;:20;17171:869;;;17220:14;17237:23;;;:17;:23;;;;;;;-1:-1:-1;;;17326:23:0;;:28;;17322:699;;17845:113;17852:6;17862:1;17852:11;17845:113;;-1:-1:-1;;;17923:6:0;17905:25;;;;:17;:25;;;;;;17845:113;;;17991:6;16978:1129;-1:-1:-1;;;16978:1129:0:o;17322:699::-;17197:843;17171:869;18068:31;;-1:-1:-1;;;18068:31:0;;;;;;;;;;;50649:191;50723:16;50742:6;;-1:-1:-1;;;;;50759:17:0;;;-1:-1:-1;;;;;;50759:17:0;;;;;;50792:40;;50742:6;;;;;;;50792:40;;50723:16;50792:40;50712:128;50649:191;:::o;24375:104::-;24444:27;24454:2;24458:8;24444:27;;;;;;;;;;;;:9;:27::i;38234:716::-;38418:88;;-1:-1:-1;;;38418:88:0;;38397:4;;-1:-1:-1;;;;;38418:45:0;;;;;:88;;42666:10;;38485:4;;38491:7;;38500:5;;38418:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38418:88:0;;;;;;;;-1:-1:-1;;38418:88:0;;;;;;;;;;;;:::i;:::-;;;38414:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38701:6;:13;38718:1;38701:18;38697:235;;38747:40;;-1:-1:-1;;;38747:40:0;;;;;;;;;;;38697:235;38890:6;38884:13;38875:6;38871:2;38867:15;38860:38;38414:529;-1:-1:-1;;;;;;38577:64:0;-1:-1:-1;;;38577:64:0;;-1:-1:-1;38414:529:0;38234:716;;;;;;:::o;45187:723::-;45243:13;45464:5;45473:1;45464:10;45460:53;;-1:-1:-1;;45491:10:0;;;;;;;;;;;;-1:-1:-1;;;45491:10:0;;;;;45187:723::o;45460:53::-;45538:5;45523:12;45579:78;45586:9;;45579:78;;45612:8;;;;:::i;:::-;;-1:-1:-1;45635:10:0;;-1:-1:-1;45643:2:0;45635:10;;:::i;:::-;;;45579:78;;;45667:19;45699:6;45689:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45689:17:0;;45667:39;;45717:154;45724:10;;45717:154;;45751:11;45761:1;45751:11;;:::i;:::-;;-1:-1:-1;45820:10:0;45828:2;45820:5;:10;:::i;:::-;45807:24;;:2;:24;:::i;:::-;45794:39;;45777:6;45784;45777:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;45777:56:0;;;;;;;;-1:-1:-1;45848:11:0;45857:2;45848:11;;:::i;:::-;;;45717:154;;24895:681;25018:19;25024:2;25028:8;25018:5;:19::i;:::-;-1:-1:-1;;;;;25079:14:0;;;:19;25075:483;;25133:13;;25181:14;;;25214:233;25245:62;25284:1;25288:2;25292:7;;;;;;25301:5;25245:30;:62::i;:::-;25240:167;;25343:40;;-1:-1:-1;;;25343:40:0;;;;;;;;;;;25240:167;25442:3;25434:5;:11;25214:233;;25529:3;25512:13;;:20;25508:34;;25534:8;;;25508:34;25100:458;;24895:681;;;:::o;25849:1529::-;25937:13;;-1:-1:-1;;;;;25965:16:0;;25961:48;;25990:19;;-1:-1:-1;;;25990:19:0;;;;;;;;;;;25961:48;26024:8;26036:1;26024:13;26020:44;;26046:18;;-1:-1:-1;;;26046:18:0;;;;;;;;;;;26020:44;-1:-1:-1;;;;;26552:22:0;;;;;;:18;:22;;9996:2;26552:22;;:70;;26590:31;26578:44;;26552:70;;;19960:11;19936:22;19932:40;-1:-1:-1;21670:15:0;;21645:23;21641:45;19929:51;19919:62;26865:31;;;;:17;:31;;;;;:173;26883:12;27114:23;;;27152:101;27179:35;;27204:9;;;;;-1:-1:-1;;;;;27179:35:0;;;27196:1;;27179:35;;27196:1;;27179:35;27248:3;27238:7;:13;27152:101;;27269:13;:19;-1:-1:-1;23108:185:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;5904:545::-;6006:2;6001:3;5998:11;5995:448;;;6042:1;6067:5;6063:2;6056:17;6112:4;6108:2;6098:19;6182:2;6170:10;6166:19;6163:1;6159:27;6153:4;6149:38;6218:4;6206:10;6203:20;6200:47;;;-1:-1:-1;6241:4:1;6200:47;6296:2;6291:3;6287:12;6284:1;6280:20;6274:4;6270:31;6260:41;;6351:82;6369:2;6362:5;6359:13;6351:82;;;6414:17;;;6395:1;6384:13;6351:82;;6625:1352;6751:3;6745:10;6778:18;6770:6;6767:30;6764:56;;;6800:18;;:::i;:::-;6829:97;6919:6;6879:38;6911:4;6905:11;6879:38;:::i;:::-;6873:4;6829:97;:::i;:::-;6981:4;;7045:2;7034:14;;7062:1;7057:663;;;;7764:1;7781:6;7778:89;;;-1:-1:-1;7833:19:1;;;7827:26;7778:89;-1:-1:-1;;6582:1:1;6578:11;;;6574:24;6570:29;6560:40;6606:1;6602:11;;;6557:57;7880:81;;7027:944;;7057:663;5851:1;5844:14;;;5888:4;5875:18;;-1:-1:-1;;7093:20:1;;;7211:236;7225:7;7222:1;7219:14;7211:236;;;7314:19;;;7308:26;7293:42;;7406:27;;;;7374:1;7362:14;;;;7241:19;;7211:236;;;7215:3;7475:6;7466:7;7463:19;7460:201;;;7536:19;;;7530:26;-1:-1:-1;;7619:1:1;7615:14;;;7631:3;7611:24;7607:37;7603:42;7588:58;7573:74;;7460:201;-1:-1:-1;;;;;7707:1:1;7691:14;;;7687:22;7674:36;;-1:-1:-1;6625:1352:1:o;9230:127::-;9291:10;9286:3;9282:20;9279:1;9272:31;9322:4;9319:1;9312:15;9346:4;9343:1;9336:15;9362:128;9402:3;9433:1;9429:6;9426:1;9423:13;9420:39;;;9439:18;;:::i;:::-;-1:-1:-1;9475:9:1;;9362:128::o;10247:168::-;10287:7;10353:1;10349;10345:6;10341:14;10338:1;10335:21;10330:1;10323:9;10316:17;10312:45;10309:71;;;10360:18;;:::i;:::-;-1:-1:-1;10400:9:1;;10247:168::o;11825:1201::-;12049:3;12078:1;12111:6;12105:13;12141:36;12167:9;12141:36;:::i;:::-;12196:1;12213:18;;;12240:133;;;;12387:1;12382:356;;;;12206:532;;12240:133;-1:-1:-1;;12273:24:1;;12261:37;;12346:14;;12339:22;12327:35;;12318:45;;;-1:-1:-1;12240:133:1;;12382:356;12413:6;12410:1;12403:17;12443:4;12488:2;12485:1;12475:16;12513:1;12527:165;12541:6;12538:1;12535:13;12527:165;;;12619:14;;12606:11;;;12599:35;12662:16;;;;12556:10;;12527:165;;;12531:3;;;12721:6;12716:3;12712:16;12705:23;;12206:532;;;;;12769:6;12763:13;12785:55;12831:8;12826:3;12819:4;12811:6;12807:17;12785:55;:::i;:::-;12905:13;;12862:18;;;12927:57;12905:13;12862:18;12961:4;12949:17;;12927:57;:::i;:::-;13000:20;;11825:1201;-1:-1:-1;;;;;11825:1201:1:o;13799:489::-;-1:-1:-1;;;;;14068:15:1;;;14050:34;;14120:15;;14115:2;14100:18;;14093:43;14167:2;14152:18;;14145:34;;;14215:3;14210:2;14195:18;;14188:31;;;13993:4;;14236:46;;14262:19;;14254:6;14236:46;:::i;:::-;14228:54;13799:489;-1:-1:-1;;;;;;13799:489:1:o;14293:249::-;14362:6;14415:2;14403:9;14394:7;14390:23;14386:32;14383:52;;;14431:1;14428;14421:12;14383:52;14463:9;14457:16;14482:30;14506:5;14482:30;:::i;14547:135::-;14586:3;14607:17;;;14604:43;;14627:18;;:::i;:::-;-1:-1:-1;14674:1:1;14663:13;;14547:135::o;14687:127::-;14748:10;14743:3;14739:20;14736:1;14729:31;14779:4;14776:1;14769:15;14803:4;14800:1;14793:15;14819:120;14859:1;14885;14875:35;;14890:18;;:::i;:::-;-1:-1:-1;14924:9:1;;14819:120::o;14944:125::-;14984:4;15012:1;15009;15006:8;15003:34;;;15017:18;;:::i;:::-;-1:-1:-1;15054:9:1;;14944:125::o;15074:112::-;15106:1;15132;15122:35;;15137:18;;:::i;:::-;-1:-1:-1;15171:9:1;;15074:112::o;15191:127::-;15252:10;15247:3;15243:20;15240:1;15233:31;15283:4;15280:1;15273:15;15307:4;15304:1;15297:15

Swarm Source

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