ETH Price: $3,237.56 (+1.02%)
 

Overview

Max Total Supply

42 EVE

Holders

42

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 EVE
0x7e41395684eb264827ceef591af04b4dd8f6438e
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:
EVE

Compiler Version
v0.8.7+commit.e28d00a7

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-31
*/

// File: IERC721A.sol

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

pragma solidity ^0.8.4;

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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

    /**
     * @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);
}
// File: IERC721AQueryable.sol

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

pragma solidity ^0.8.4;


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

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

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

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

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

// ERC721A Contracts v4.0.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 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`
    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 (_addressToUint256(owner) == 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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * 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 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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

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

        address approvedAddress = _tokenApprovals[tokenId];

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));
        address approvedAddress = _tokenApprovals[tokenId];

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

            // 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 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: ERC721AQueryable.sol

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

pragma solidity ^0.8.4;


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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}
// File: 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: Ownable.sol

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

pragma solidity ^0.8.4;




contract EVE is ERC721AQueryable, Ownable, ReentrancyGuard {

    // This sets the name and symbol of our NFT contract when it is created.
    constructor() ERC721A("Project EVE", "EVE") {}

    /**
    Este é o máximo de itens disponível na coleção como um todo.
    Ele pode ser alterado através de "updateMaxMintsAvailable"
    Inclui todas as fases de mintagem (pré-venda e venda pública)
     */
    uint public MaxMintsAvailable = 50;

    function updateMaxMintsAvailable(uint64 _NewMaxMintsAvailable) external onlyOwner {
        require(_NewMaxMintsAvailable >= totalSupply(), "Maximum collection size can't be smaller than the currently minted supply.");
        MaxMintsAvailable = _NewMaxMintsAvailable;
    }

    uint public publicMintStageLimitPerWallet = 1;

    function updatePublicMintStageLimitPerWallet(uint128 _newLimit) external onlyOwner
    {
        publicMintStageLimitPerWallet = _newLimit;
        return;
    }

    uint128 public publicMintStagePrice = 1 ether;

    function updatePublicMintStagePrice (uint128 _newPrice) external onlyOwner {
        publicMintStagePrice = _newPrice;
    }
   
    /**
    Este é o flag indicativo de se o mint está publicamente disponível (true)
    Ele pode ser alterado em "setPublicMintStage"
    O drop não é afetado por esse flag.
     */

    bool public isPublicMintStageActive = false;

    function setPublicMintStage(bool newState) external onlyOwner returns (bool) {
        isPublicMintStageActive = newState;
        return isPublicMintStageActive;
    }

    /**
    Este é o endereço base do arquivo de metadados correspondente a cada um dos tokens
    Ele pode ser alterado em "setBaseURI"
     */

    string private _baseTokenURI;

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

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

    /**
    Este é o tamanho máximo do lote por transação. O limite tem que ser necessáriamente menor que o limite por carteira.
    Ele pode ser alterado em setMaximumMintsPerTransaction
     */

    uint private maxMintsPerTransaction = 1;

    function maximumMintsPerTransaction() public view returns (uint)
    {
        return maxMintsPerTransaction;
    }
    
    function setMaximumMintsPerTransaction(uint _newMaximum) external onlyOwner {
        require(_newMaximum <= publicMintStageLimitPerWallet, "Maximum per Transaction must be equal or less than the Limit per Wallet");
        require(_newMaximum > 0, "Maximum Batch Size must be larger than zero");

        maxMintsPerTransaction = _newMaximum;
    }

    /**
    Cunhagem em lote (implícita ao requisitante)
     */

    function batchMint(uint _batchSize) external payable {
        publicMintValidation(msg.sender, _batchSize);

        // Todos os requisitos satisfeitos, cunhar.
        _mint(msg.sender,_batchSize);
    }

    /**
    Cunhagem a terceiros.
     */
    function mintTo(address _mintToAddress, uint128 _batchSize) external payable
    {
        publicMintValidation(_mintToAddress, _batchSize);

        // Todos os requisitor satisfeitos, cunhar.
        _mint(_mintToAddress,_batchSize);
    }

    /**
    Validações comuns aos processos de cunhagem públicos
     */
    function publicMintValidation(address toAddress, uint _batchSize) internal {
        uint256 total_supply = totalSupply();

        // Suprimento está disponível?
        require((total_supply + _batchSize) <= MaxMintsAvailable, "Not enough Tokens left");

        // Menor lote possível é 1
        require(_batchSize > 0, "Batch Size must be at least One");

        // Maior lote possível é o da configuração
        require(_batchSize <= maxMintsPerTransaction, "Maximum Batch Size per Transaction is exceeded.");

        // Mintagem deve estar aberta
        require(isPublicMintStageActive, "Public Mint not active");

        // Carteira não pode já conter mais tokens que o máximo permitido
        require(
            (balanceOf(toAddress) + _batchSize) <= publicMintStageLimitPerWallet,
            "Batch Size may not exceed limit for this Address"
        );

        // Valor pago deve ser suficiente para todos os tokens!
        uint256 batchPrice = publicMintStagePrice * _batchSize;

        require(
            msg.value == batchPrice,
            "Incorrect Price for the Batch"
        );

        return;
    }

    /**
    Cunhagem especial para o dono do contrato custa apenas a taxa de Gas
    Pode ser usada para fazer um drop "caro" de novos tokens
     */
    function batchOwnerMintTo(address toAddress, uint _batchSize) external onlyOwner {
        // A única validação que existe neste caso é se existem tokens disponíveis
        // Suprimento está disponível?
        require((totalSupply() + _batchSize) <= MaxMintsAvailable, "Not enough Tokens left");

        _mint(toAddress, _batchSize);
    }

    /**
    Saque de fundos do contrato para uma carteira específica.
     */

    function withdrawContract(address payable _to, uint256 _amount) public nonReentrant onlyOwner
    {
        (bool sent, bytes memory data) = _to.call{value: _amount}("");
        require(sent, "Failed to send Ether");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"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":"MaxMintsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_batchSize","type":"uint256"}],"name":"batchMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddress","type":"address"},{"internalType":"uint256","name":"_batchSize","type":"uint256"}],"name":"batchOwnerMintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"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":"isPublicMintStageActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumMintsPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_mintToAddress","type":"address"},{"internalType":"uint128","name":"_batchSize","type":"uint128"}],"name":"mintTo","outputs":[],"stateMutability":"payable","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":"publicMintStageLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintStagePrice","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaximum","type":"uint256"}],"name":"setMaximumMintsPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setPublicMintStage","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_NewMaxMintsAvailable","type":"uint64"}],"name":"updateMaxMintsAvailable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"_newLimit","type":"uint128"}],"name":"updatePublicMintStageLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"_newPrice","type":"uint128"}],"name":"updatePublicMintStagePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawContract","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526032600a556001600b819055600c80546001600160881b031916670de0b6b3a7640000179055600e553480156200003a57600080fd5b50604080518082018252600b81526a50726f6a6563742045564560a81b60208083019182528351808501909452600384526245564560e81b90840152815191929162000089916002916200010e565b5080516200009f9060039060208401906200010e565b50506000805550620000b133620000bc565b6001600955620001f1565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011c90620001b4565b90600052602060002090601f0160209004810192826200014057600085556200018b565b82601f106200015b57805160ff19168380011785556200018b565b828001600101855582156200018b579182015b828111156200018b5782518255916020019190600101906200016e565b50620001999291506200019d565b5090565b5b808211156200019957600081556001016200019e565b600181811c90821680620001c957607f821691505b60208210811415620001eb57634e487b7160e01b600052602260045260246000fd5b50919050565b6123dc80620002016000396000f3fe60806040526004361061020f5760003560e01c80637a10f3c311610118578063a22cb465116100a0578063c3a7e9a01161006f578063c3a7e9a014610617578063c87b56dd14610637578063e985e9c514610657578063f2fde38b14610677578063f7d1d8f21461069757600080fd5b8063a22cb46514610597578063a7fcf7b5146105b7578063b88d4fde146105ca578063c23dc68f146105ea57600080fd5b80638c85aaea116100e75780638c85aaea146105045780638da5cb5b1461052457806395d89b411461054257806396bfb41a1461055757806399a2557a1461057757600080fd5b80637a10f3c31461048d5780637eccb63e146104a35780638462151c146104c45780638467be0d146104f157600080fd5b806342842e0e1161019b5780635c9fdd4c1161016a5780635c9fdd4c146103f85780636352211e146104185780636decf6f71461043857806370a0823114610458578063715018a61461047857600080fd5b806342842e0e146103535780634407d7741461037357806355f804b3146103ab5780635bbb2177146103cb57600080fd5b8063095ea7b3116101e2578063095ea7b3146102c257806318160ddd146102e457806322a5967b146102fd57806323b872dd146103135780632a0450561461033357600080fd5b806301ffc9a7146102145780630679fe4d1461024957806306fdde0314610268578063081812fc1461028a575b600080fd5b34801561022057600080fd5b5061023461022f366004611fac565b6106b7565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50600e545b604051908152602001610240565b34801561027457600080fd5b5061027d610709565b60405161024091906121ee565b34801561029657600080fd5b506102aa6102a5366004612072565b61079b565b6040516001600160a01b039091168152602001610240565b3480156102ce57600080fd5b506102e26102dd366004611ce6565b6107df565b005b3480156102f057600080fd5b506001546000540361025a565b34801561030957600080fd5b5061025a600b5481565b34801561031f57600080fd5b506102e261032e366004611d4b565b6108b2565b34801561033f57600080fd5b5061023461034e366004611f91565b6108c2565b34801561035f57600080fd5b506102e261036e366004611d4b565b610921565b34801561037f57600080fd5b50600c54610393906001600160801b031681565b6040516001600160801b039091168152602001610240565b3480156103b757600080fd5b506102e26103c6366004611fe6565b61093c565b3480156103d757600080fd5b506103eb6103e6366004611ee5565b610972565b604051610240919061214c565b34801561040457600080fd5b506102e2610413366004612057565b610a38565b34801561042457600080fd5b506102aa610433366004612072565b610a8d565b34801561044457600080fd5b506102e2610453366004612072565b610a98565b34801561046457600080fd5b5061025a610473366004611cc9565b610bb3565b34801561048457600080fd5b506102e2610bf8565b34801561049957600080fd5b5061025a600a5481565b3480156104af57600080fd5b50600c5461023490600160801b900460ff1681565b3480156104d057600080fd5b506104e46104df366004611cc9565b610c2e565b60405161024091906121b6565b6102e26104ff366004612072565b610d36565b34801561051057600080fd5b506102e261051f366004611ce6565b610d4d565b34801561053057600080fd5b506008546001600160a01b03166102aa565b34801561054e57600080fd5b5061027d610e76565b34801561056357600080fd5b506102e2610572366004611ce6565b610e85565b34801561058357600080fd5b506104e4610592366004611eb0565b610f1f565b3480156105a357600080fd5b506102e26105b2366004611e4f565b61109c565b6102e26105c5366004611e84565b611132565b3480156105d657600080fd5b506102e26105e5366004611d8c565b611158565b3480156105f657600080fd5b5061060a610605366004612072565b6111a2565b6040516102409190612236565b34801561062357600080fd5b506102e261063236600461208b565b61120b565b34801561064357600080fd5b5061027d610652366004612072565b6112db565b34801561066357600080fd5b50610234610672366004611d12565b61135f565b34801561068357600080fd5b506102e2610692366004611cc9565b61138d565b3480156106a357600080fd5b506102e26106b2366004612057565b611425565b60006301ffc9a760e01b6001600160e01b0319831614806106e857506380ac58cd60e01b6001600160e01b03198316145b806107035750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610718906122fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610744906122fe565b80156107915780601f1061076657610100808354040283529160200191610791565b820191906000526020600020905b81548152906001019060200180831161077457829003601f168201915b5050505050905090565b60006107a68261145d565b6107c3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107ea82611484565b9050806001600160a01b0316836001600160a01b0316141561081f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461085657610839813361135f565b610856576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108bd8383836114e5565b505050565b6008546000906001600160a01b031633146108f85760405162461bcd60e51b81526004016108ef90612201565b60405180910390fd5b50600c805460ff60801b1916600160801b8315158102919091179182905560ff9104165b919050565b6108bd83838360405180602001604052806000815250611158565b6008546001600160a01b031633146109665760405162461bcd60e51b81526004016108ef90612201565b6108bd600d8383611c09565b80516060906000816001600160401b0381111561099157610991612365565b6040519080825280602002602001820160405280156109dc57816020015b60408051606081018252600080825260208083018290529282015282526000199092019101816109af5790505b50905060005b828114610a3057610a0b8582815181106109fe576109fe61234f565b60200260200101516111a2565b828281518110610a1d57610a1d61234f565b60209081029190910101526001016109e2565b509392505050565b6008546001600160a01b03163314610a625760405162461bcd60e51b81526004016108ef90612201565b600c80546fffffffffffffffffffffffffffffffff19166001600160801b0392909216919091179055565b600061070382611484565b6008546001600160a01b03163314610ac25760405162461bcd60e51b81526004016108ef90612201565b600b54811115610b4a5760405162461bcd60e51b815260206004820152604760248201527f4d6178696d756d20706572205472616e73616374696f6e206d7573742062652060448201527f657175616c206f72206c657373207468616e20746865204c696d6974207065726064820152660815d85b1b195d60ca1b608482015260a4016108ef565b60008111610bae5760405162461bcd60e51b815260206004820152602b60248201527f4d6178696d756d2042617463682053697a65206d757374206265206c6172676560448201526a72207468616e207a65726f60a81b60648201526084016108ef565b600e55565b600081610bd3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c225760405162461bcd60e51b81526004016108ef90612201565b610c2c6000611695565b565b60606000806000610c3e85610bb3565b90506000816001600160401b03811115610c5a57610c5a612365565b604051908082528060200260200182016040528015610c83578160200160208202803683370190505b509050610ca9604080516060810182526000808252602082018190529181019190915290565b60005b838614610d2a57610cbc816116e7565b9150816040015115610ccd57610d22565b81516001600160a01b031615610ce257815194505b876001600160a01b0316856001600160a01b03161415610d225780838780600101985081518110610d1557610d1561234f565b6020026020010181815250505b600101610cac565b50909695505050505050565b610d40338261171c565b610d4a3382611977565b50565b60026009541415610da05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ef565b60026009556008546001600160a01b03163314610dcf5760405162461bcd60e51b81526004016108ef90612201565b600080836001600160a01b03168360405160006040518083038185875af1925050503d8060008114610e1d576040519150601f19603f3d011682016040523d82523d6000602084013e610e22565b606091505b509150915081610e6b5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b60448201526064016108ef565b505060016009555050565b606060038054610718906122fe565b6008546001600160a01b03163314610eaf5760405162461bcd60e51b81526004016108ef90612201565b600a5481610ec06001546000540390565b610eca919061229b565b1115610f115760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da08151bdad95b9cc81b19599d60521b60448201526064016108ef565b610f1b8282611977565b5050565b6060818310610f4157604051631960ccad60e11b815260040160405180910390fd5b600080610f4d60005490565b905080841115610f5b578093505b6000610f6687610bb3565b905084861015610f855785850381811015610f7f578091505b50610f89565b5060005b6000816001600160401b03811115610fa357610fa3612365565b604051908082528060200260200182016040528015610fcc578160200160208202803683370190505b50905081610fdf57935061109592505050565b6000610fea886111a2565b905060008160400151610ffb575080515b885b88811415801561100d5750848714155b156110895761101b816116e7565b925082604001511561102c57611081565b82516001600160a01b03161561104157825191505b8a6001600160a01b0316826001600160a01b0316141561108157808488806001019950815181106110745761107461234f565b6020026020010181815250505b600101610ffd565b50505092835250909150505b9392505050565b6001600160a01b0382163314156110c65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61114582826001600160801b031661171c565b610f1b82826001600160801b0316611977565b6111638484846114e5565b6001600160a01b0383163b1561119c5761117f84848484611a4c565b61119c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60408051606080820183526000808352602080840182905283850182905284519283018552818352820181905292810183905290915060005483106111e75792915050565b6111f0836116e7565b90508060400151156112025792915050565b61109583611b43565b6008546001600160a01b031633146112355760405162461bcd60e51b81526004016108ef90612201565b60015460005403816001600160401b031610156112cd5760405162461bcd60e51b815260206004820152604a60248201527f4d6178696d756d20636f6c6c656374696f6e2073697a652063616e277420626560448201527f20736d616c6c6572207468616e207468652063757272656e746c79206d696e7460648201526932b21039bab838363c9760b11b608482015260a4016108ef565b6001600160401b0316600a55565b60606112e68261145d565b61130357604051630a14c4b560e41b815260040160405180910390fd5b600061130d611b71565b905080516000141561132e5760405180602001604052806000815250611095565b8061133884611b80565b6040516020016113499291906120e0565b6040516020818303038152906040529392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146113b75760405162461bcd60e51b81526004016108ef90612201565b6001600160a01b03811661141c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ef565b610d4a81611695565b6008546001600160a01b0316331461144f5760405162461bcd60e51b81526004016108ef90612201565b6001600160801b0316600b55565b6000805482108015610703575050600090815260046020526040902054600160e01b161590565b6000816000548110156114cc57600081815260046020526040902054600160e01b81166114ca575b806110955750600019016000818152600460205260409020546114ac565b505b604051636f96cda160e11b815260040160405180910390fd5b60006114f082611484565b9050836001600160a01b0316816001600160a01b0316146115235760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b03908116919086163314806115535750611553863361135f565b8061156657506001600160a01b03821633145b90508061158657604051632ce44b5f60e11b815260040160405180910390fd5b846115a457604051633a954ecd60e21b815260040160405180910390fd5b81156115c757600084815260066020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260056020908152604080832080546000190190559288168252828220805460010190558682526004905220600160e11b4260a01b87178117909155831661164c576001840160008181526004602052604090205461164a57600054811461164a5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516060810182526000808252602082018190529181019190915260008281526004602052604090205461070390611bcf565b600061172b6001546000540390565b600a5490915061173b838361229b565b11156117825760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da08151bdad95b9cc81b19599d60521b60448201526064016108ef565b600082116117d25760405162461bcd60e51b815260206004820152601f60248201527f42617463682053697a65206d757374206265206174206c65617374204f6e650060448201526064016108ef565b600e5482111561183c5760405162461bcd60e51b815260206004820152602f60248201527f4d6178696d756d2042617463682053697a6520706572205472616e736163746960448201526e37b71034b99032bc31b2b2b232b21760891b60648201526084016108ef565b600c54600160801b900460ff1661188e5760405162461bcd60e51b81526020600482015260166024820152755075626c6963204d696e74206e6f742061637469766560501b60448201526064016108ef565b600b548261189b85610bb3565b6118a5919061229b565b111561190c5760405162461bcd60e51b815260206004820152603060248201527f42617463682053697a65206d6179206e6f7420657863656564206c696d69742060448201526f666f722074686973204164647265737360801b60648201526084016108ef565b600c546000906119269084906001600160801b03166122b3565b905080341461119c5760405162461bcd60e51b815260206004820152601d60248201527f496e636f727265637420507269636520666f722074686520426174636800000060448201526064016108ef565b6000548261199757604051622e076360e81b815260040160405180910390fd5b816119b55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a005750600055505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a8190339089908890889060040161210f565b602060405180830381600087803b158015611a9b57600080fd5b505af1925050508015611acb575060408051601f3d908101601f19168201909252611ac891810190611fc9565b60015b611b26573d808015611af9576040519150601f19603f3d011682016040523d82523d6000602084013e611afe565b606091505b508051611b1e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6040805160608101825260008082526020820181905291810191909152610703611b6c83611484565b611bcf565b6060600d8054610718906122fe565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611bbd57600183039250600a81066030018353600a9004611b9f565b50819003601f19909101908152919050565b604080516060810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b90921615159082015290565b828054611c15906122fe565b90600052602060002090601f016020900481019282611c375760008555611c7d565b82601f10611c505782800160ff19823516178555611c7d565b82800160010185558215611c7d579182015b82811115611c7d578235825591602001919060010190611c62565b50611c89929150611c8d565b5090565b5b80821115611c895760008155600101611c8e565b8035801515811461091c57600080fd5b80356001600160801b038116811461091c57600080fd5b600060208284031215611cdb57600080fd5b81356110958161237b565b60008060408385031215611cf957600080fd5b8235611d048161237b565b946020939093013593505050565b60008060408385031215611d2557600080fd5b8235611d308161237b565b91506020830135611d408161237b565b809150509250929050565b600080600060608486031215611d6057600080fd5b8335611d6b8161237b565b92506020840135611d7b8161237b565b929592945050506040919091013590565b60008060008060808587031215611da257600080fd5b8435611dad8161237b565b9350602085810135611dbe8161237b565b93506040860135925060608601356001600160401b0380821115611de157600080fd5b818801915088601f830112611df557600080fd5b813581811115611e0757611e07612365565b611e19601f8201601f1916850161226b565b91508082528984828501011115611e2f57600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215611e6257600080fd5b8235611e6d8161237b565b9150611e7b60208401611ca2565b90509250929050565b60008060408385031215611e9757600080fd5b8235611ea28161237b565b9150611e7b60208401611cb2565b600080600060608486031215611ec557600080fd5b8335611ed08161237b565b95602085013595506040909401359392505050565b60006020808385031215611ef857600080fd5b82356001600160401b0380821115611f0f57600080fd5b818501915085601f830112611f2357600080fd5b813581811115611f3557611f35612365565b8060051b9150611f4684830161226b565b8181528481019084860184860187018a1015611f6157600080fd5b600095505b83861015611f84578035835260019590950194918601918601611f66565b5098975050505050505050565b600060208284031215611fa357600080fd5b61109582611ca2565b600060208284031215611fbe57600080fd5b813561109581612390565b600060208284031215611fdb57600080fd5b815161109581612390565b60008060208385031215611ff957600080fd5b82356001600160401b038082111561201057600080fd5b818501915085601f83011261202457600080fd5b81358181111561203357600080fd5b86602082850101111561204557600080fd5b60209290920196919550909350505050565b60006020828403121561206957600080fd5b61109582611cb2565b60006020828403121561208457600080fd5b5035919050565b60006020828403121561209d57600080fd5b81356001600160401b038116811461109557600080fd5b600081518084526120cc8160208601602086016122d2565b601f01601f19169290920160200192915050565b600083516120f28184602088016122d2565b8351908301906121068183602088016122d2565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612142908301846120b4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610d2a576121a383855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b9284019260609290920191600101612168565b6020808252825182820181905260009190848201906040850190845b81811015610d2a578351835292840192918401916001016121d2565b60208152600061109560208301846120b4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b81516001600160a01b031681526020808301516001600160401b03169082015260408083015115159082015260608101610703565b604051601f8201601f191681016001600160401b038111828210171561229357612293612365565b604052919050565b600082198211156122ae576122ae612339565b500190565b60008160001904831182151516156122cd576122cd612339565b500290565b60005b838110156122ed5781810151838201526020016122d5565b8381111561119c5750506000910152565b600181811c9082168061231257607f821691505b6020821081141561233357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610d4a57600080fd5b6001600160e01b031981168114610d4a57600080fdfea264697066735822122035bd7eda9fb7bf312b887d26b25d18d98b759ca694b2717acf74cf80d8af299564736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80637a10f3c311610118578063a22cb465116100a0578063c3a7e9a01161006f578063c3a7e9a014610617578063c87b56dd14610637578063e985e9c514610657578063f2fde38b14610677578063f7d1d8f21461069757600080fd5b8063a22cb46514610597578063a7fcf7b5146105b7578063b88d4fde146105ca578063c23dc68f146105ea57600080fd5b80638c85aaea116100e75780638c85aaea146105045780638da5cb5b1461052457806395d89b411461054257806396bfb41a1461055757806399a2557a1461057757600080fd5b80637a10f3c31461048d5780637eccb63e146104a35780638462151c146104c45780638467be0d146104f157600080fd5b806342842e0e1161019b5780635c9fdd4c1161016a5780635c9fdd4c146103f85780636352211e146104185780636decf6f71461043857806370a0823114610458578063715018a61461047857600080fd5b806342842e0e146103535780634407d7741461037357806355f804b3146103ab5780635bbb2177146103cb57600080fd5b8063095ea7b3116101e2578063095ea7b3146102c257806318160ddd146102e457806322a5967b146102fd57806323b872dd146103135780632a0450561461033357600080fd5b806301ffc9a7146102145780630679fe4d1461024957806306fdde0314610268578063081812fc1461028a575b600080fd5b34801561022057600080fd5b5061023461022f366004611fac565b6106b7565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50600e545b604051908152602001610240565b34801561027457600080fd5b5061027d610709565b60405161024091906121ee565b34801561029657600080fd5b506102aa6102a5366004612072565b61079b565b6040516001600160a01b039091168152602001610240565b3480156102ce57600080fd5b506102e26102dd366004611ce6565b6107df565b005b3480156102f057600080fd5b506001546000540361025a565b34801561030957600080fd5b5061025a600b5481565b34801561031f57600080fd5b506102e261032e366004611d4b565b6108b2565b34801561033f57600080fd5b5061023461034e366004611f91565b6108c2565b34801561035f57600080fd5b506102e261036e366004611d4b565b610921565b34801561037f57600080fd5b50600c54610393906001600160801b031681565b6040516001600160801b039091168152602001610240565b3480156103b757600080fd5b506102e26103c6366004611fe6565b61093c565b3480156103d757600080fd5b506103eb6103e6366004611ee5565b610972565b604051610240919061214c565b34801561040457600080fd5b506102e2610413366004612057565b610a38565b34801561042457600080fd5b506102aa610433366004612072565b610a8d565b34801561044457600080fd5b506102e2610453366004612072565b610a98565b34801561046457600080fd5b5061025a610473366004611cc9565b610bb3565b34801561048457600080fd5b506102e2610bf8565b34801561049957600080fd5b5061025a600a5481565b3480156104af57600080fd5b50600c5461023490600160801b900460ff1681565b3480156104d057600080fd5b506104e46104df366004611cc9565b610c2e565b60405161024091906121b6565b6102e26104ff366004612072565b610d36565b34801561051057600080fd5b506102e261051f366004611ce6565b610d4d565b34801561053057600080fd5b506008546001600160a01b03166102aa565b34801561054e57600080fd5b5061027d610e76565b34801561056357600080fd5b506102e2610572366004611ce6565b610e85565b34801561058357600080fd5b506104e4610592366004611eb0565b610f1f565b3480156105a357600080fd5b506102e26105b2366004611e4f565b61109c565b6102e26105c5366004611e84565b611132565b3480156105d657600080fd5b506102e26105e5366004611d8c565b611158565b3480156105f657600080fd5b5061060a610605366004612072565b6111a2565b6040516102409190612236565b34801561062357600080fd5b506102e261063236600461208b565b61120b565b34801561064357600080fd5b5061027d610652366004612072565b6112db565b34801561066357600080fd5b50610234610672366004611d12565b61135f565b34801561068357600080fd5b506102e2610692366004611cc9565b61138d565b3480156106a357600080fd5b506102e26106b2366004612057565b611425565b60006301ffc9a760e01b6001600160e01b0319831614806106e857506380ac58cd60e01b6001600160e01b03198316145b806107035750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610718906122fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610744906122fe565b80156107915780601f1061076657610100808354040283529160200191610791565b820191906000526020600020905b81548152906001019060200180831161077457829003601f168201915b5050505050905090565b60006107a68261145d565b6107c3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107ea82611484565b9050806001600160a01b0316836001600160a01b0316141561081f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461085657610839813361135f565b610856576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108bd8383836114e5565b505050565b6008546000906001600160a01b031633146108f85760405162461bcd60e51b81526004016108ef90612201565b60405180910390fd5b50600c805460ff60801b1916600160801b8315158102919091179182905560ff9104165b919050565b6108bd83838360405180602001604052806000815250611158565b6008546001600160a01b031633146109665760405162461bcd60e51b81526004016108ef90612201565b6108bd600d8383611c09565b80516060906000816001600160401b0381111561099157610991612365565b6040519080825280602002602001820160405280156109dc57816020015b60408051606081018252600080825260208083018290529282015282526000199092019101816109af5790505b50905060005b828114610a3057610a0b8582815181106109fe576109fe61234f565b60200260200101516111a2565b828281518110610a1d57610a1d61234f565b60209081029190910101526001016109e2565b509392505050565b6008546001600160a01b03163314610a625760405162461bcd60e51b81526004016108ef90612201565b600c80546fffffffffffffffffffffffffffffffff19166001600160801b0392909216919091179055565b600061070382611484565b6008546001600160a01b03163314610ac25760405162461bcd60e51b81526004016108ef90612201565b600b54811115610b4a5760405162461bcd60e51b815260206004820152604760248201527f4d6178696d756d20706572205472616e73616374696f6e206d7573742062652060448201527f657175616c206f72206c657373207468616e20746865204c696d6974207065726064820152660815d85b1b195d60ca1b608482015260a4016108ef565b60008111610bae5760405162461bcd60e51b815260206004820152602b60248201527f4d6178696d756d2042617463682053697a65206d757374206265206c6172676560448201526a72207468616e207a65726f60a81b60648201526084016108ef565b600e55565b600081610bd3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c225760405162461bcd60e51b81526004016108ef90612201565b610c2c6000611695565b565b60606000806000610c3e85610bb3565b90506000816001600160401b03811115610c5a57610c5a612365565b604051908082528060200260200182016040528015610c83578160200160208202803683370190505b509050610ca9604080516060810182526000808252602082018190529181019190915290565b60005b838614610d2a57610cbc816116e7565b9150816040015115610ccd57610d22565b81516001600160a01b031615610ce257815194505b876001600160a01b0316856001600160a01b03161415610d225780838780600101985081518110610d1557610d1561234f565b6020026020010181815250505b600101610cac565b50909695505050505050565b610d40338261171c565b610d4a3382611977565b50565b60026009541415610da05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ef565b60026009556008546001600160a01b03163314610dcf5760405162461bcd60e51b81526004016108ef90612201565b600080836001600160a01b03168360405160006040518083038185875af1925050503d8060008114610e1d576040519150601f19603f3d011682016040523d82523d6000602084013e610e22565b606091505b509150915081610e6b5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b60448201526064016108ef565b505060016009555050565b606060038054610718906122fe565b6008546001600160a01b03163314610eaf5760405162461bcd60e51b81526004016108ef90612201565b600a5481610ec06001546000540390565b610eca919061229b565b1115610f115760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da08151bdad95b9cc81b19599d60521b60448201526064016108ef565b610f1b8282611977565b5050565b6060818310610f4157604051631960ccad60e11b815260040160405180910390fd5b600080610f4d60005490565b905080841115610f5b578093505b6000610f6687610bb3565b905084861015610f855785850381811015610f7f578091505b50610f89565b5060005b6000816001600160401b03811115610fa357610fa3612365565b604051908082528060200260200182016040528015610fcc578160200160208202803683370190505b50905081610fdf57935061109592505050565b6000610fea886111a2565b905060008160400151610ffb575080515b885b88811415801561100d5750848714155b156110895761101b816116e7565b925082604001511561102c57611081565b82516001600160a01b03161561104157825191505b8a6001600160a01b0316826001600160a01b0316141561108157808488806001019950815181106110745761107461234f565b6020026020010181815250505b600101610ffd565b50505092835250909150505b9392505050565b6001600160a01b0382163314156110c65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61114582826001600160801b031661171c565b610f1b82826001600160801b0316611977565b6111638484846114e5565b6001600160a01b0383163b1561119c5761117f84848484611a4c565b61119c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60408051606080820183526000808352602080840182905283850182905284519283018552818352820181905292810183905290915060005483106111e75792915050565b6111f0836116e7565b90508060400151156112025792915050565b61109583611b43565b6008546001600160a01b031633146112355760405162461bcd60e51b81526004016108ef90612201565b60015460005403816001600160401b031610156112cd5760405162461bcd60e51b815260206004820152604a60248201527f4d6178696d756d20636f6c6c656374696f6e2073697a652063616e277420626560448201527f20736d616c6c6572207468616e207468652063757272656e746c79206d696e7460648201526932b21039bab838363c9760b11b608482015260a4016108ef565b6001600160401b0316600a55565b60606112e68261145d565b61130357604051630a14c4b560e41b815260040160405180910390fd5b600061130d611b71565b905080516000141561132e5760405180602001604052806000815250611095565b8061133884611b80565b6040516020016113499291906120e0565b6040516020818303038152906040529392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146113b75760405162461bcd60e51b81526004016108ef90612201565b6001600160a01b03811661141c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ef565b610d4a81611695565b6008546001600160a01b0316331461144f5760405162461bcd60e51b81526004016108ef90612201565b6001600160801b0316600b55565b6000805482108015610703575050600090815260046020526040902054600160e01b161590565b6000816000548110156114cc57600081815260046020526040902054600160e01b81166114ca575b806110955750600019016000818152600460205260409020546114ac565b505b604051636f96cda160e11b815260040160405180910390fd5b60006114f082611484565b9050836001600160a01b0316816001600160a01b0316146115235760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b03908116919086163314806115535750611553863361135f565b8061156657506001600160a01b03821633145b90508061158657604051632ce44b5f60e11b815260040160405180910390fd5b846115a457604051633a954ecd60e21b815260040160405180910390fd5b81156115c757600084815260066020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260056020908152604080832080546000190190559288168252828220805460010190558682526004905220600160e11b4260a01b87178117909155831661164c576001840160008181526004602052604090205461164a57600054811461164a5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516060810182526000808252602082018190529181019190915260008281526004602052604090205461070390611bcf565b600061172b6001546000540390565b600a5490915061173b838361229b565b11156117825760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da08151bdad95b9cc81b19599d60521b60448201526064016108ef565b600082116117d25760405162461bcd60e51b815260206004820152601f60248201527f42617463682053697a65206d757374206265206174206c65617374204f6e650060448201526064016108ef565b600e5482111561183c5760405162461bcd60e51b815260206004820152602f60248201527f4d6178696d756d2042617463682053697a6520706572205472616e736163746960448201526e37b71034b99032bc31b2b2b232b21760891b60648201526084016108ef565b600c54600160801b900460ff1661188e5760405162461bcd60e51b81526020600482015260166024820152755075626c6963204d696e74206e6f742061637469766560501b60448201526064016108ef565b600b548261189b85610bb3565b6118a5919061229b565b111561190c5760405162461bcd60e51b815260206004820152603060248201527f42617463682053697a65206d6179206e6f7420657863656564206c696d69742060448201526f666f722074686973204164647265737360801b60648201526084016108ef565b600c546000906119269084906001600160801b03166122b3565b905080341461119c5760405162461bcd60e51b815260206004820152601d60248201527f496e636f727265637420507269636520666f722074686520426174636800000060448201526064016108ef565b6000548261199757604051622e076360e81b815260040160405180910390fd5b816119b55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a005750600055505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a8190339089908890889060040161210f565b602060405180830381600087803b158015611a9b57600080fd5b505af1925050508015611acb575060408051601f3d908101601f19168201909252611ac891810190611fc9565b60015b611b26573d808015611af9576040519150601f19603f3d011682016040523d82523d6000602084013e611afe565b606091505b508051611b1e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6040805160608101825260008082526020820181905291810191909152610703611b6c83611484565b611bcf565b6060600d8054610718906122fe565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611bbd57600183039250600a81066030018353600a9004611b9f565b50819003601f19909101908152919050565b604080516060810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b90921615159082015290565b828054611c15906122fe565b90600052602060002090601f016020900481019282611c375760008555611c7d565b82601f10611c505782800160ff19823516178555611c7d565b82800160010185558215611c7d579182015b82811115611c7d578235825591602001919060010190611c62565b50611c89929150611c8d565b5090565b5b80821115611c895760008155600101611c8e565b8035801515811461091c57600080fd5b80356001600160801b038116811461091c57600080fd5b600060208284031215611cdb57600080fd5b81356110958161237b565b60008060408385031215611cf957600080fd5b8235611d048161237b565b946020939093013593505050565b60008060408385031215611d2557600080fd5b8235611d308161237b565b91506020830135611d408161237b565b809150509250929050565b600080600060608486031215611d6057600080fd5b8335611d6b8161237b565b92506020840135611d7b8161237b565b929592945050506040919091013590565b60008060008060808587031215611da257600080fd5b8435611dad8161237b565b9350602085810135611dbe8161237b565b93506040860135925060608601356001600160401b0380821115611de157600080fd5b818801915088601f830112611df557600080fd5b813581811115611e0757611e07612365565b611e19601f8201601f1916850161226b565b91508082528984828501011115611e2f57600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215611e6257600080fd5b8235611e6d8161237b565b9150611e7b60208401611ca2565b90509250929050565b60008060408385031215611e9757600080fd5b8235611ea28161237b565b9150611e7b60208401611cb2565b600080600060608486031215611ec557600080fd5b8335611ed08161237b565b95602085013595506040909401359392505050565b60006020808385031215611ef857600080fd5b82356001600160401b0380821115611f0f57600080fd5b818501915085601f830112611f2357600080fd5b813581811115611f3557611f35612365565b8060051b9150611f4684830161226b565b8181528481019084860184860187018a1015611f6157600080fd5b600095505b83861015611f84578035835260019590950194918601918601611f66565b5098975050505050505050565b600060208284031215611fa357600080fd5b61109582611ca2565b600060208284031215611fbe57600080fd5b813561109581612390565b600060208284031215611fdb57600080fd5b815161109581612390565b60008060208385031215611ff957600080fd5b82356001600160401b038082111561201057600080fd5b818501915085601f83011261202457600080fd5b81358181111561203357600080fd5b86602082850101111561204557600080fd5b60209290920196919550909350505050565b60006020828403121561206957600080fd5b61109582611cb2565b60006020828403121561208457600080fd5b5035919050565b60006020828403121561209d57600080fd5b81356001600160401b038116811461109557600080fd5b600081518084526120cc8160208601602086016122d2565b601f01601f19169290920160200192915050565b600083516120f28184602088016122d2565b8351908301906121068183602088016122d2565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612142908301846120b4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610d2a576121a383855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b9284019260609290920191600101612168565b6020808252825182820181905260009190848201906040850190845b81811015610d2a578351835292840192918401916001016121d2565b60208152600061109560208301846120b4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b81516001600160a01b031681526020808301516001600160401b03169082015260408083015115159082015260608101610703565b604051601f8201601f191681016001600160401b038111828210171561229357612293612365565b604052919050565b600082198211156122ae576122ae612339565b500190565b60008160001904831182151516156122cd576122cd612339565b500290565b60005b838110156122ed5781810151838201526020016122d5565b8381111561119c5750506000910152565b600181811c9082168061231257607f821691505b6020821081141561233357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610d4a57600080fd5b6001600160e01b031981168114610d4a57600080fdfea264697066735822122035bd7eda9fb7bf312b887d26b25d18d98b759ca694b2717acf74cf80d8af299564736f6c63430008070033

Deployed Bytecode Sourcemap

53289:5453:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15408:615;;;;;;;;;;-1:-1:-1;15408:615:0;;;;;:::i;:::-;;:::i;:::-;;;10644:14:1;;10637:22;10619:41;;10607:2;10592:18;15408:615:0;;;;;;;;55567:118;;;;;;;;;;-1:-1:-1;55655:22:0;;55567:118;;;16637:25:1;;;16625:2;16610:18;55567:118:0;16491:177:1;20431:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22499:204::-;;;;;;;;;;-1:-1:-1;22499:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8580:32:1;;;8562:51;;8550:2;8535:18;22499:204:0;8416:203:1;21959:474:0;;;;;;;;;;-1:-1:-1;21959:474:0;;;;;:::i;:::-;;:::i;:::-;;14462:315;;;;;;;;;;-1:-1:-1;14728:12:0;;14515:7;14712:13;:28;14462:315;;54041:45;;;;;;;;;;;;;;;;23385:170;;;;;;;;;;-1:-1:-1;23385:170:0;;;;;:::i;:::-;;:::i;54707:171::-;;;;;;;;;;-1:-1:-1;54707:171:0;;;;;:::i;:::-;;:::i;23626:185::-;;;;;;;;;;-1:-1:-1;23626:185:0;;;;;:::i;:::-;;:::i;54268:45::-;;;;;;;;;;-1:-1:-1;54268:45:0;;;;-1:-1:-1;;;;;54268:45:0;;;;;;-1:-1:-1;;;;;16432:47:1;;;16414:66;;16402:2;16387:18;54268:45:0;16268:218:1;55198:106:0;;;;;;;;;;-1:-1:-1;55198:106:0;;;;;:::i;:::-;;:::i;42448:468::-;;;;;;;;;;-1:-1:-1;42448:468:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54322:126::-;;;;;;;;;;-1:-1:-1;54322:126:0;;;;;:::i;:::-;;:::i;20220:144::-;;;;;;;;;;-1:-1:-1;20220:144:0;;;;;:::i;:::-;;:::i;55697:354::-;;;;;;;;;;-1:-1:-1;55697:354:0;;;;;:::i;:::-;;:::i;16087:234::-;;;;;;;;;;-1:-1:-1;16087:234:0;;;;;:::i;:::-;;:::i;52416:103::-;;;;;;;;;;;;;:::i;53712:34::-;;;;;;;;;;;;;;;;54655:43;;;;;;;;;;-1:-1:-1;54655:43:0;;;;-1:-1:-1;;;54655:43:0;;;;;;46258:892;;;;;;;;;;-1:-1:-1;46258:892:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;56130:210::-;;;;;;:::i;:::-;;:::i;58512:227::-;;;;;;;;;;-1:-1:-1;58512:227:0;;;;;:::i;:::-;;:::i;51765:87::-;;;;;;;;;;-1:-1:-1;51838:6:0;;-1:-1:-1;;;;;51838:6:0;51765:87;;20600:104;;;;;;;;;;;;;:::i;58064:356::-;;;;;;;;;;-1:-1:-1;58064:356:0;;;;;:::i;:::-;;:::i;43306:2503::-;;;;;;;;;;-1:-1:-1;43306:2503:0;;;;;:::i;:::-;;:::i;22775:308::-;;;;;;;;;;-1:-1:-1;22775:308:0;;;;;:::i;:::-;;:::i;56393:247::-;;;;;;:::i;:::-;;:::i;23882:396::-;;;;;;;;;;-1:-1:-1;23882:396:0;;;;;:::i;:::-;;:::i;41869:420::-;;;;;;;;;;-1:-1:-1;41869:420:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53755:278::-;;;;;;;;;;-1:-1:-1;53755:278:0;;;;;:::i;:::-;;:::i;20775:318::-;;;;;;;;;;-1:-1:-1;20775:318:0;;;;;:::i;:::-;;:::i;23154:164::-;;;;;;;;;;-1:-1:-1;23154:164:0;;;;;:::i;:::-;;:::i;52674:201::-;;;;;;;;;;-1:-1:-1;52674:201:0;;;;;:::i;:::-;;:::i;54095:165::-;;;;;;;;;;-1:-1:-1;54095:165:0;;;;;:::i;:::-;;:::i;15408:615::-;15493:4;-1:-1:-1;;;;;;;;;15793:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;15870:25:0;;;15793:102;:179;;;-1:-1:-1;;;;;;;;;;15947:25:0;;;15793:179;15773:199;15408:615;-1:-1:-1;;15408:615:0:o;20431:100::-;20485:13;20518:5;20511:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20431:100;:::o;22499:204::-;22567:7;22592:16;22600:7;22592;:16::i;:::-;22587:64;;22617:34;;-1:-1:-1;;;22617:34:0;;;;;;;;;;;22587:64;-1:-1:-1;22671:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22671:24:0;;22499:204::o;21959:474::-;22032:13;22064:27;22083:7;22064:18;:27::i;:::-;22032:61;;22114:5;-1:-1:-1;;;;;22108:11:0;:2;-1:-1:-1;;;;;22108:11:0;;22104:48;;;22128:24;;-1:-1:-1;;;22128:24:0;;;;;;;;;;;22104:48;38887:10;-1:-1:-1;;;;;22169:28:0;;;22165:175;;22217:44;22234:5;38887:10;23154:164;:::i;22217:44::-;22212:128;;22289:35;;-1:-1:-1;;;22289:35:0;;;;;;;;;;;22212:128;22352:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;22352:29:0;-1:-1:-1;;;;;22352:29:0;;;;;;;;;22397:28;;22352:24;;22397:28;;;;;;;22021:412;21959:474;;:::o;23385:170::-;23519:28;23529:4;23535:2;23539:7;23519:9;:28::i;:::-;23385:170;;;:::o;54707:171::-;51838:6;;54778:4;;-1:-1:-1;;;;;51838:6:0;38887:10;51985:23;51977:68;;;;-1:-1:-1;;;51977:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;54795:23:0::1;:34:::0;;-1:-1:-1;;;;54795:34:0::1;-1:-1:-1::0;;;54795:34:0;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;::::1;54847:23:::0;::::1;;52056:1;54707:171:::0;;;:::o;23626:185::-;23764:39;23781:4;23787:2;23791:7;23764:39;;;;;;;;;;;;:16;:39::i;55198:106::-;51838:6;;-1:-1:-1;;;;;51838:6:0;38887:10;51985:23;51977:68;;;;-1:-1:-1;;;51977:68:0;;;;;;;:::i;:::-;55273:23:::1;:13;55289:7:::0;;55273:23:::1;:::i;42448:468::-:0;42623:15;;42537:23;;42598:22;42623:15;-1:-1:-1;;;;;42690:36:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;42690:36:0;;-1:-1:-1;;42690:36:0;;;;;;;;;;;;42653:73;;42746:9;42741:125;42762:14;42757:1;:19;42741:125;;42818:32;42838:8;42847:1;42838:11;;;;;;;;:::i;:::-;;;;;;;42818:19;:32::i;:::-;42802:10;42813:1;42802:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;42778:3;;42741:125;;;-1:-1:-1;42887:10:0;42448:468;-1:-1:-1;;;42448:468:0:o;54322:126::-;51838:6;;-1:-1:-1;;;;;51838:6:0;38887:10;51985:23;51977:68;;;;-1:-1:-1;;;51977:68:0;;;;;;;:::i;:::-;54408:20:::1;:32:::0;;-1:-1:-1;;54408:32:0::1;-1:-1:-1::0;;;;;54408:32:0;;;::::1;::::0;;;::::1;::::0;;54322:126::o;20220:144::-;20284:7;20327:27;20346:7;20327:18;:27::i;55697:354::-;51838:6;;-1:-1:-1;;;;;51838:6:0;38887:10;51985:23;51977:68;;;;-1:-1:-1;;;51977:68:0;;;;;;;:::i;:::-;55807:29:::1;;55792:11;:44;;55784:128;;;::::0;-1:-1:-1;;;55784:128:0;;14945:2:1;55784:128:0::1;::::0;::::1;14927:21:1::0;14984:2;14964:18;;;14957:30;15023:34;15003:18;;;14996:62;15094:34;15074:18;;;15067:62;-1:-1:-1;;;15145:19:1;;;15138:38;15193:19;;55784:128:0::1;14743:475:1::0;55784:128:0::1;55945:1;55931:11;:15;55923:71;;;::::0;-1:-1:-1;;;55923:71:0;;11097:2:1;55923:71:0::1;::::0;::::1;11079:21:1::0;11136:2;11116:18;;;11109:30;11175:34;11155:18;;;11148:62;-1:-1:-1;;;11226:18:1;;;11219:41;11277:19;;55923:71:0::1;10895:407:1::0;55923:71:0::1;56007:22;:36:::0;55697:354::o;16087:234::-;16151:7;16193:5;16171:70;;16213:28;;-1:-1:-1;;;16213:28:0;;;;;;;;;;;16171:70;-1:-1:-1;;;;;;16259:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;16259:54:0;;16087:234::o;52416:103::-;51838:6;;-1:-1:-1;;;;;51838:6:0;38887:10;51985:23;51977:68;;;;-1:-1:-1;;;51977:68:0;;;;;;;:::i;:::-;52481:30:::1;52508:1;52481:18;:30::i;:::-;52416:103::o:0;46258:892::-;46328:16;46382:19;46416:25;46456:22;46481:16;46491:5;46481:9;:16::i;:::-;46456:41;;46512:25;46554:14;-1:-1:-1;;;;;46540:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46540:29:0;;46512:57;;46584:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;46584:31:0;46635:9;46630:472;46679:14;46664:11;:29;46630:472;;46731:15;46744:1;46731:12;:15::i;:::-;46719:27;;46769:9;:16;;;46765:73;;;46810:8;;46765:73;46860:14;;-1:-1:-1;;;;;46860:28:0;;46856:111;;46933:14;;;-1:-1:-1;46856:111:0;47010:5;-1:-1:-1;;;;;46989:26:0;:17;-1:-1:-1;;;;;46989:26:0;;46985:102;;;47066:1;47040:8;47049:13;;;;;;47040:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;46985:102;46695:3;;46630:472;;;-1:-1:-1;47123:8:0;;46258:892;-1:-1:-1;;;;;;46258:892:0:o;56130:210::-;56194:44;56215:10;56227;56194:20;:44::i;:::-;56304:28;56310:10;56321;56304:5;:28::i;:::-;56130:210;:::o;58512:227::-;48932:1;49530:7;;:19;;49522:63;;;;-1:-1:-1;;;49522:63:0;;15425:2:1;49522:63:0;;;15407:21:1;15464:2;15444:18;;;15437:30;15503:33;15483:18;;;15476:61;15554:18;;49522:63:0;15223:355:1;49522:63:0;48932:1;49663:7;:18;51838:6;;-1:-1:-1;;;;;51838:6:0;38887:10;51985:23:::1;51977:68;;;;-1:-1:-1::0;;;51977:68:0::1;;;;;;;:::i;:::-;58623:9:::2;58634:17:::0;58655:3:::2;-1:-1:-1::0;;;;;58655:8:0::2;58671:7;58655:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58622:61;;;;58702:4;58694:37;;;::::0;-1:-1:-1;;;58694:37:0;;11916:2:1;58694:37:0::2;::::0;::::2;11898:21:1::0;11955:2;11935:18;;;11928:30;-1:-1:-1;;;11974:18:1;;;11967:50;12034:18;;58694:37:0::2;11714:344:1::0;58694:37:0::2;-1:-1:-1::0;;48888:1:0;49842:7;:22;-1:-1:-1;;58512:227:0:o;20600:104::-;20656:13;20689:7;20682:14;;;;;:::i;58064:356::-;51838:6;;-1:-1:-1;;;;;51838:6:0;38887:10;51985:23;51977:68;;;;-1:-1:-1;;;51977:68:0;;;;;;;:::i;:::-;58327:17:::1;;58312:10;58296:13;14728:12:::0;;14515:7;14712:13;:28;;14462:315;58296:13:::1;:26;;;;:::i;:::-;58295:49;;58287:84;;;::::0;-1:-1:-1;;;58287:84:0;;12681:2:1;58287:84:0::1;::::0;::::1;12663:21:1::0;12720:2;12700:18;;;12693:30;-1:-1:-1;;;12739:18:1;;;12732:52;12801:18;;58287:84:0::1;12479:346:1::0;58287:84:0::1;58384:28;58390:9;58401:10;58384:5;:28::i;:::-;58064:356:::0;;:::o;43306:2503::-;43439:16;43506:4;43497:5;:13;43493:45;;43519:19;;-1:-1:-1;;;43519:19:0;;;;;;;;;;;43493:45;43553:19;43587:17;43607:14;14204:7;14231:13;;14157:95;43607:14;43587:34;-1:-1:-1;43858:9:0;43851:4;:16;43847:73;;;43895:9;43888:16;;43847:73;43934:25;43962:16;43972:5;43962:9;:16::i;:::-;43934:44;;44156:4;44148:5;:12;44144:278;;;44203:12;;;44238:31;;;44234:111;;;44314:11;44294:31;;44234:111;44162:198;44144:278;;;-1:-1:-1;44405:1:0;44144:278;44436:25;44478:17;-1:-1:-1;;;;;44464:32:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44464:32:0;-1:-1:-1;44436:60:0;-1:-1:-1;44515:22:0;44511:78;;44565:8;-1:-1:-1;44558:15:0;;-1:-1:-1;;;44558:15:0;44511:78;44733:31;44767:26;44787:5;44767:19;:26::i;:::-;44733:60;;44808:25;45053:9;:16;;;45048:92;;-1:-1:-1;45110:14:0;;45048:92;45171:5;45154:478;45183:4;45178:1;:9;;:45;;;;;45206:17;45191:11;:32;;45178:45;45154:478;;;45261:15;45274:1;45261:12;:15::i;:::-;45249:27;;45299:9;:16;;;45295:73;;;45340:8;;45295:73;45390:14;;-1:-1:-1;;;;;45390:28:0;;45386:111;;45463:14;;;-1:-1:-1;45386:111:0;45540:5;-1:-1:-1;;;;;45519:26:0;:17;-1:-1:-1;;;;;45519:26:0;;45515:102;;;45596:1;45570:8;45579:13;;;;;;45570:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;45515:102;45225:3;;45154:478;;;-1:-1:-1;;;45717:29:0;;;-1:-1:-1;45724:8:0;;-1:-1:-1;;43306:2503:0;;;;;;:::o;22775:308::-;-1:-1:-1;;;;;22874:31:0;;38887:10;22874:31;22870:61;;;22914:17;;-1:-1:-1;;;22914:17:0;;;;;;;;;;;22870:61;38887:10;22944:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;22944:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;22944:60:0;;;;;;;;;;23020:55;;10619:41:1;;;22944:49:0;;38887:10;23020:55;;10592:18:1;23020:55:0;;;;;;;22775:308;;:::o;56393:247::-;56486:48;56507:14;56523:10;-1:-1:-1;;;;;56486:48:0;:20;:48::i;:::-;56600:32;56606:14;56621:10;-1:-1:-1;;;;;56600:32:0;:5;:32::i;23882:396::-;24049:28;24059:4;24065:2;24069:7;24049:9;:28::i;:::-;-1:-1:-1;;;;;24092:14:0;;;:19;24088:183;;24131:56;24162:4;24168:2;24172:7;24181:5;24131:30;:56::i;:::-;24126:145;;24215:40;;-1:-1:-1;;;24215:40:0;;;;;;;;;;;24126:145;23882:396;;;;:::o;41869:420::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14204:7:0;14231:13;42054:7;:25;42021:103;;42103:9;41869:420;-1:-1:-1;;41869:420:0:o;42021:103::-;42146:21;42159:7;42146:12;:21::i;:::-;42134:33;;42182:9;:16;;;42178:65;;;42222:9;41869:420;-1:-1:-1;;41869:420:0:o;42178:65::-;42260:21;42273:7;42260:12;:21::i;53755:278::-;51838:6;;-1:-1:-1;;;;;51838:6:0;38887:10;51985:23;51977:68;;;;-1:-1:-1;;;51977:68:0;;;;;;;:::i;:::-;14728:12;;14515:7;14712:13;:28;53856:21:::1;-1:-1:-1::0;;;;;53856:38:0::1;;;53848:125;;;::::0;-1:-1:-1;;;53848:125:0;;13032:2:1;53848:125:0::1;::::0;::::1;13014:21:1::0;13071:2;13051:18;;;13044:30;13110:34;13090:18;;;13083:62;13181:34;13161:18;;;13154:62;-1:-1:-1;;;13232:19:1;;;13225:41;13283:19;;53848:125:0::1;12830:478:1::0;53848:125:0::1;-1:-1:-1::0;;;;;53984:41:0::1;:17;:41:::0;53755:278::o;20775:318::-;20848:13;20879:16;20887:7;20879;:16::i;:::-;20874:59;;20904:29;;-1:-1:-1;;;20904:29:0;;;;;;;;;;;20874:59;20946:21;20970:10;:8;:10::i;:::-;20946:34;;21004:7;20998:21;21023:1;20998:26;;:87;;;;;;;;;;;;;;;;;21051:7;21060:18;21070:7;21060:9;:18::i;:::-;21034:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20991:94;20775:318;-1:-1:-1;;;20775:318:0:o;23154:164::-;-1:-1:-1;;;;;23275:25:0;;;23251:4;23275:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23154:164::o;52674:201::-;51838:6;;-1:-1:-1;;;;;51838:6:0;38887:10;51985:23;51977:68;;;;-1:-1:-1;;;51977:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52763:22:0;::::1;52755:73;;;::::0;-1:-1:-1;;;52755:73:0;;11509:2:1;52755:73:0::1;::::0;::::1;11491:21:1::0;11548:2;11528:18;;;11521:30;11587:34;11567:18;;;11560:62;-1:-1:-1;;;11638:18:1;;;11631:36;11684:19;;52755:73:0::1;11307:402:1::0;52755:73:0::1;52839:28;52858:8;52839:18;:28::i;54095:165::-:0;51838:6;;-1:-1:-1;;;;;51838:6:0;38887:10;51985:23;51977:68;;;;-1:-1:-1;;;51977:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54194:41:0::1;:29;:41:::0;54095:165::o;24533:273::-;24590:4;24680:13;;24670:7;:23;24627:152;;;;-1:-1:-1;;24731:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;24731:43:0;:48;;24533:273::o;17735:1129::-;17802:7;17837;17939:13;;17932:4;:20;17928:869;;;17977:14;17994:23;;;:17;:23;;;;;;-1:-1:-1;;;18083:23:0;;18079:699;;18602:113;18609:11;18602:113;;-1:-1:-1;;;18680:6:0;18662:25;;;;:17;:25;;;;;;18602:113;;18079:699;17954:843;17928:869;18825:31;;-1:-1:-1;;;18825:31:0;;;;;;;;;;;29792:2654;29907:27;29937;29956:7;29937:18;:27::i;:::-;29907:57;;30022:4;-1:-1:-1;;;;;29981:45:0;29997:19;-1:-1:-1;;;;;29981:45:0;;29977:86;;30035:28;;-1:-1:-1;;;30035:28:0;;;;;;;;;;;29977:86;30076:23;30102:24;;;:15;:24;;;;;;-1:-1:-1;;;;;30102:24:0;;;;30076:23;30165:27;;38887:10;30165:27;;:87;;-1:-1:-1;30209:43:0;30226:4;38887:10;23154:164;:::i;30209:43::-;30165:142;;;-1:-1:-1;;;;;;30269:38:0;;38887:10;30269:38;30165:142;30139:169;;30326:17;30321:66;;30352:35;;-1:-1:-1;;;30352:35:0;;;;;;;;;;;30321:66;30420:2;30398:62;;30437:23;;-1:-1:-1;;;30437:23:0;;;;;;;;;;;30398:62;30604:15;30586:39;30582:103;;30649:24;;;;:15;:24;;;;;30642:31;;-1:-1:-1;;;;;;30642:31:0;;;30582:103;-1:-1:-1;;;;;31052:24:0;;;;;;;:18;:24;;;;;;;;31050:26;;-1:-1:-1;;31050:26:0;;;31121:22;;;;;;;;31119:24;;-1:-1:-1;31119:24:0;;;31414:26;;;:17;:26;;;-1:-1:-1;;;31502:15:0;12086:3;31502:41;31460:84;;:128;;31414:174;;;31708:46;;31704:626;;31812:1;31802:11;;31780:19;31935:30;;;:17;:30;;;;;;31931:384;;32073:13;;32058:11;:28;32054:242;;32220:30;;;;:17;:30;;;;;:52;;;32054:242;31761:569;31704:626;32377:7;32373:2;-1:-1:-1;;;;;32358:27:0;32367:4;-1:-1:-1;;;;;32358:27:0;;;;;;;;;;;29896:2550;;;29792:2654;;;:::o;53035:191::-;53128:6;;;-1:-1:-1;;;;;53145:17:0;;;-1:-1:-1;;;;;;53145:17:0;;;;;;;53178:40;;53128:6;;;53145:17;53128:6;;53178:40;;53109:16;;53178:40;53098:128;53035:191;:::o;19344:153::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;19464:24:0;;;;:17;:24;;;;;;19445:44;;:18;:44::i;56727:1175::-;56813:20;56836:13;14728:12;;14515:7;14712:13;:28;;14462:315;56836:13;56943:17;;56813:36;;-1:-1:-1;56913:25:0;56928:10;56813:36;56913:25;:::i;:::-;56912:48;;56904:83;;;;-1:-1:-1;;;56904:83:0;;12681:2:1;56904:83:0;;;12663:21:1;12720:2;12700:18;;;12693:30;-1:-1:-1;;;12739:18:1;;;12732:52;12801:18;;56904:83:0;12479:346:1;56904:83:0;57059:1;57046:10;:14;57038:58;;;;-1:-1:-1;;;57038:58:0;;14224:2:1;57038:58:0;;;14206:21:1;14263:2;14243:18;;;14236:30;14302:33;14282:18;;;14275:61;14353:18;;57038:58:0;14022:355:1;57038:58:0;57187:22;;57173:10;:36;;57165:96;;;;-1:-1:-1;;;57165:96:0;;12265:2:1;57165:96:0;;;12247:21:1;12304:2;12284:18;;;12277:30;12343:34;12323:18;;;12316:62;-1:-1:-1;;;12394:18:1;;;12387:45;12449:19;;57165:96:0;12063:411:1;57165:96:0;57321:23;;-1:-1:-1;;;57321:23:0;;;;57313:58;;;;-1:-1:-1;;;57313:58:0;;13873:2:1;57313:58:0;;;13855:21:1;13912:2;13892:18;;;13885:30;-1:-1:-1;;;13931:18:1;;;13924:52;13993:18;;57313:58:0;13671:346:1;57313:58:0;57523:29;;57508:10;57485:20;57495:9;57485;:20::i;:::-;:33;;;;:::i;:::-;57484:68;;57462:166;;;;-1:-1:-1;;;57462:166:0;;15785:2:1;57462:166:0;;;15767:21:1;15824:2;15804:18;;;15797:30;15863:34;15843:18;;;15836:62;-1:-1:-1;;;15914:18:1;;;15907:46;15970:19;;57462:166:0;15583:412:1;57462:166:0;57727:20;;57706:18;;57727:33;;57750:10;;-1:-1:-1;;;;;57727:20:0;:33;:::i;:::-;57706:54;;57808:10;57795:9;:23;57773:102;;;;-1:-1:-1;;;57773:102:0;;13515:2:1;57773:102:0;;;13497:21:1;13554:2;13534:18;;;13527:30;13593:31;13573:18;;;13566:59;13642:18;;57773:102:0;13313:353:1;27872:1666:0;27937:20;27960:13;28006:2;27984:58;;28023:19;;-1:-1:-1;;;28023:19:0;;;;;;;;;;;27984:58;28057:13;28053:44;;28079:18;;-1:-1:-1;;;28079:18:0;;;;;;;;;;;28053:44;-1:-1:-1;;;;;28646:22:0;;;;;;:18;:22;;;;11569:2;28646:22;;;:70;;28684:31;28672:44;;28646:70;;;28959:31;;;:17;:31;;;;;29052:15;12086:3;29052:41;29010:84;;-1:-1:-1;29130:13:0;;12345:3;29115:56;29010:162;28959:213;;:31;29253:23;;;29293:111;29320:40;;29345:14;;;;;-1:-1:-1;;;;;29320:40:0;;;29337:1;;29320:40;;29337:1;;29320:40;29399:3;29384:12;:18;29293:111;;-1:-1:-1;29420:13:0;:28;23385:170;;;:::o;36269:716::-;36453:88;;-1:-1:-1;;;36453:88:0;;36432:4;;-1:-1:-1;;;;;36453:45:0;;;;;:88;;38887:10;;36520:4;;36526:7;;36535:5;;36453:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36453:88:0;;;;;;;;-1:-1:-1;;36453:88:0;;;;;;;;;;;;:::i;:::-;;;36449:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36736:13:0;;36732:235;;36782:40;;-1:-1:-1;;;36782:40:0;;;;;;;;;;;36732:235;36925:6;36919:13;36910:6;36906:2;36902:15;36895:38;36449:529;-1:-1:-1;;;;;;36612:64:0;-1:-1:-1;;;36612:64:0;;-1:-1:-1;36269:716:0;;;;;;:::o;20000:158::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;20103:47:0;20122:27;20141:7;20122:18;:27::i;:::-;20103:18;:47::i;55076:114::-;55136:13;55169;55162:20;;;;;:::i;39011:1943::-;39480:4;39474:11;;39487:3;39470:21;;39565:17;;;;40261:11;;;40140:5;40393:2;40407;40397:13;;40389:22;40261:11;40376:36;40448:2;40438:13;;40032:680;40467:4;40032:680;;;40641:1;40636:3;40632:11;40625:18;;40692:2;40686:4;40682:13;40678:2;40674:22;40669:3;40661:36;40562:2;40552:13;;40032:680;;;-1:-1:-1;40742:13:0;;;-1:-1:-1;;40857:12:0;;;40917:19;;;40857:12;39011:1943;-1:-1:-1;39011:1943:0:o;18958:295::-;-1:-1:-1;;;;;;;;;;;;;19068:41:0;;;;12086:3;19154:32;;;-1:-1:-1;;;;;19120:67:0;-1:-1:-1;;;19120:67:0;-1:-1:-1;;;19217:23:0;;;:28;;-1:-1:-1;;;19198:47:0;-1:-1:-1;18958:295:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:160:1;79:20;;135:13;;128:21;118:32;;108:60;;164:1;161;154:12;179:188;247:20;;-1:-1:-1;;;;;296:46:1;;286:57;;276:85;;357:1;354;347:12;372:247;431:6;484:2;472:9;463:7;459:23;455:32;452:52;;;500:1;497;490:12;452:52;539:9;526:23;558:31;583:5;558:31;:::i;624:323::-;700:6;708;761:2;749:9;740:7;736:23;732:32;729:52;;;777:1;774;767:12;729:52;816:9;803:23;835:31;860:5;835:31;:::i;:::-;885:5;937:2;922:18;;;;909:32;;-1:-1:-1;;;624:323:1:o;952:388::-;1020:6;1028;1081:2;1069:9;1060:7;1056:23;1052:32;1049:52;;;1097:1;1094;1087:12;1049:52;1136:9;1123:23;1155:31;1180:5;1155:31;:::i;:::-;1205:5;-1:-1:-1;1262:2:1;1247:18;;1234:32;1275:33;1234:32;1275:33;:::i;:::-;1327:7;1317:17;;;952:388;;;;;:::o;1345:456::-;1422:6;1430;1438;1491:2;1479:9;1470:7;1466:23;1462:32;1459:52;;;1507:1;1504;1497:12;1459:52;1546:9;1533:23;1565:31;1590:5;1565:31;:::i;:::-;1615:5;-1:-1:-1;1672:2:1;1657:18;;1644:32;1685:33;1644:32;1685:33;:::i;:::-;1345:456;;1737:7;;-1:-1:-1;;;1791:2:1;1776:18;;;;1763:32;;1345:456::o;1806:1108::-;1901:6;1909;1917;1925;1978:3;1966:9;1957:7;1953:23;1949:33;1946:53;;;1995:1;1992;1985:12;1946:53;2034:9;2021:23;2053:31;2078:5;2053:31;:::i;:::-;2103:5;-1:-1:-1;2127:2:1;2166:18;;;2153:32;2194:33;2153:32;2194:33;:::i;:::-;2246:7;-1:-1:-1;2300:2:1;2285:18;;2272:32;;-1:-1:-1;2355:2:1;2340:18;;2327:32;-1:-1:-1;;;;;2408:14:1;;;2405:34;;;2435:1;2432;2425:12;2405:34;2473:6;2462:9;2458:22;2448:32;;2518:7;2511:4;2507:2;2503:13;2499:27;2489:55;;2540:1;2537;2530:12;2489:55;2576:2;2563:16;2598:2;2594;2591:10;2588:36;;;2604:18;;:::i;:::-;2646:53;2689:2;2670:13;;-1:-1:-1;;2666:27:1;2662:36;;2646:53;:::i;:::-;2633:66;;2722:2;2715:5;2708:17;2762:7;2757:2;2752;2748;2744:11;2740:20;2737:33;2734:53;;;2783:1;2780;2773:12;2734:53;2838:2;2833;2829;2825:11;2820:2;2813:5;2809:14;2796:45;2882:1;2877:2;2872;2865:5;2861:14;2857:23;2850:34;;2903:5;2893:15;;;;;1806:1108;;;;;;;:::o;2919:315::-;2984:6;2992;3045:2;3033:9;3024:7;3020:23;3016:32;3013:52;;;3061:1;3058;3051:12;3013:52;3100:9;3087:23;3119:31;3144:5;3119:31;:::i;:::-;3169:5;-1:-1:-1;3193:35:1;3224:2;3209:18;;3193:35;:::i;:::-;3183:45;;2919:315;;;;;:::o;3239:321::-;3307:6;3315;3368:2;3356:9;3347:7;3343:23;3339:32;3336:52;;;3384:1;3381;3374:12;3336:52;3423:9;3410:23;3442:31;3467:5;3442:31;:::i;:::-;3492:5;-1:-1:-1;3516:38:1;3550:2;3535:18;;3516:38;:::i;3885:383::-;3962:6;3970;3978;4031:2;4019:9;4010:7;4006:23;4002:32;3999:52;;;4047:1;4044;4037:12;3999:52;4086:9;4073:23;4105:31;4130:5;4105:31;:::i;:::-;4155:5;4207:2;4192:18;;4179:32;;-1:-1:-1;4258:2:1;4243:18;;;4230:32;;3885:383;-1:-1:-1;;;3885:383:1:o;4273:957::-;4357:6;4388:2;4431;4419:9;4410:7;4406:23;4402:32;4399:52;;;4447:1;4444;4437:12;4399:52;4487:9;4474:23;-1:-1:-1;;;;;4557:2:1;4549:6;4546:14;4543:34;;;4573:1;4570;4563:12;4543:34;4611:6;4600:9;4596:22;4586:32;;4656:7;4649:4;4645:2;4641:13;4637:27;4627:55;;4678:1;4675;4668:12;4627:55;4714:2;4701:16;4736:2;4732;4729:10;4726:36;;;4742:18;;:::i;:::-;4788:2;4785:1;4781:10;4771:20;;4811:28;4835:2;4831;4827:11;4811:28;:::i;:::-;4873:15;;;4904:12;;;;4936:11;;;4966;;;4962:20;;4959:33;-1:-1:-1;4956:53:1;;;5005:1;5002;4995:12;4956:53;5027:1;5018:10;;5037:163;5051:2;5048:1;5045:9;5037:163;;;5108:17;;5096:30;;5069:1;5062:9;;;;;5146:12;;;;5178;;5037:163;;;-1:-1:-1;5219:5:1;4273:957;-1:-1:-1;;;;;;;;4273:957:1:o;5235:180::-;5291:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:52;;;5360:1;5357;5350:12;5312:52;5383:26;5399:9;5383:26;:::i;5420:245::-;5478:6;5531:2;5519:9;5510:7;5506:23;5502:32;5499:52;;;5547:1;5544;5537:12;5499:52;5586:9;5573:23;5605:30;5629:5;5605:30;:::i;5670:249::-;5739:6;5792:2;5780:9;5771:7;5767:23;5763:32;5760:52;;;5808:1;5805;5798:12;5760:52;5840:9;5834:16;5859:30;5883:5;5859:30;:::i;5924:592::-;5995:6;6003;6056:2;6044:9;6035:7;6031:23;6027:32;6024:52;;;6072:1;6069;6062:12;6024:52;6112:9;6099:23;-1:-1:-1;;;;;6182:2:1;6174:6;6171:14;6168:34;;;6198:1;6195;6188:12;6168:34;6236:6;6225:9;6221:22;6211:32;;6281:7;6274:4;6270:2;6266:13;6262:27;6252:55;;6303:1;6300;6293:12;6252:55;6343:2;6330:16;6369:2;6361:6;6358:14;6355:34;;;6385:1;6382;6375:12;6355:34;6430:7;6425:2;6416:6;6412:2;6408:15;6404:24;6401:37;6398:57;;;6451:1;6448;6441:12;6398:57;6482:2;6474:11;;;;;6504:6;;-1:-1:-1;5924:592:1;;-1:-1:-1;;;;5924:592:1:o;6521:186::-;6580:6;6633:2;6621:9;6612:7;6608:23;6604:32;6601:52;;;6649:1;6646;6639:12;6601:52;6672:29;6691:9;6672:29;:::i;6712:180::-;6771:6;6824:2;6812:9;6803:7;6799:23;6795:32;6792:52;;;6840:1;6837;6830:12;6792:52;-1:-1:-1;6863:23:1;;6712:180;-1:-1:-1;6712:180:1:o;6897:284::-;6955:6;7008:2;6996:9;6987:7;6983:23;6979:32;6976:52;;;7024:1;7021;7014:12;6976:52;7063:9;7050:23;-1:-1:-1;;;;;7106:5:1;7102:30;7095:5;7092:41;7082:69;;7147:1;7144;7137:12;7186:257;7227:3;7265:5;7259:12;7292:6;7287:3;7280:19;7308:63;7364:6;7357:4;7352:3;7348:14;7341:4;7334:5;7330:16;7308:63;:::i;:::-;7425:2;7404:15;-1:-1:-1;;7400:29:1;7391:39;;;;7432:4;7387:50;;7186:257;-1:-1:-1;;7186:257:1:o;7731:470::-;7910:3;7948:6;7942:13;7964:53;8010:6;8005:3;7998:4;7990:6;7986:17;7964:53;:::i;:::-;8080:13;;8039:16;;;;8102:57;8080:13;8039:16;8136:4;8124:17;;8102:57;:::i;:::-;8175:20;;7731:470;-1:-1:-1;;;;7731:470:1:o;8624:488::-;-1:-1:-1;;;;;8893:15:1;;;8875:34;;8945:15;;8940:2;8925:18;;8918:43;8992:2;8977:18;;8970:34;;;9040:3;9035:2;9020:18;;9013:31;;;8818:4;;9061:45;;9086:19;;9078:6;9061:45;:::i;:::-;9053:53;8624:488;-1:-1:-1;;;;;;8624:488:1:o;9117:720::-;9348:2;9400:21;;;9470:13;;9373:18;;;9492:22;;;9319:4;;9348:2;9571:15;;;;9545:2;9530:18;;;9319:4;9614:197;9628:6;9625:1;9622:13;9614:197;;;9677:52;9725:3;9716:6;9710:13;7532:12;;-1:-1:-1;;;;;7528:38:1;7516:51;;7620:4;7609:16;;;7603:23;-1:-1:-1;;;;;7599:48:1;7583:14;;;7576:72;7711:4;7700:16;;;7694:23;7687:31;7680:39;7664:14;;7657:63;7448:278;9677:52;9786:15;;;;9758:4;9749:14;;;;;9650:1;9643:9;9614:197;;9842:632;10013:2;10065:21;;;10135:13;;10038:18;;;10157:22;;;9984:4;;10013:2;10236:15;;;;10210:2;10195:18;;;9984:4;10279:169;10293:6;10290:1;10287:13;10279:169;;;10354:13;;10342:26;;10423:15;;;;10388:12;;;;10315:1;10308:9;10279:169;;10671:219;10820:2;10809:9;10802:21;10783:4;10840:44;10880:2;10869:9;10865:18;10857:6;10840:44;:::i;14382:356::-;14584:2;14566:21;;;14603:18;;;14596:30;14662:34;14657:2;14642:18;;14635:62;14729:2;14714:18;;14382:356::o;16000:263::-;7532:12;;-1:-1:-1;;;;;7528:38:1;7516:51;;7620:4;7609:16;;;7603:23;-1:-1:-1;;;;;7599:48:1;7583:14;;;7576:72;7711:4;7700:16;;;7694:23;7687:31;7680:39;7664:14;;;7657:63;16194:2;16179:18;;16206:51;7448:278;16673:275;16744:2;16738:9;16809:2;16790:13;;-1:-1:-1;;16786:27:1;16774:40;;-1:-1:-1;;;;;16829:34:1;;16865:22;;;16826:62;16823:88;;;16891:18;;:::i;:::-;16927:2;16920:22;16673:275;;-1:-1:-1;16673:275:1:o;16953:128::-;16993:3;17024:1;17020:6;17017:1;17014:13;17011:39;;;17030:18;;:::i;:::-;-1:-1:-1;17066:9:1;;16953:128::o;17086:168::-;17126:7;17192:1;17188;17184:6;17180:14;17177:1;17174:21;17169:1;17162:9;17155:17;17151:45;17148:71;;;17199:18;;:::i;:::-;-1:-1:-1;17239:9:1;;17086:168::o;17259:258::-;17331:1;17341:113;17355:6;17352:1;17349:13;17341:113;;;17431:11;;;17425:18;17412:11;;;17405:39;17377:2;17370:10;17341:113;;;17472:6;17469:1;17466:13;17463:48;;;-1:-1:-1;;17507:1:1;17489:16;;17482:27;17259:258::o;17522:380::-;17601:1;17597:12;;;;17644;;;17665:61;;17719:4;17711:6;17707:17;17697:27;;17665:61;17772:2;17764:6;17761:14;17741:18;17738:38;17735:161;;;17818:10;17813:3;17809:20;17806:1;17799:31;17853:4;17850:1;17843:15;17881:4;17878:1;17871:15;17735:161;;17522:380;;;:::o;17907:127::-;17968:10;17963:3;17959:20;17956:1;17949:31;17999:4;17996:1;17989:15;18023:4;18020:1;18013:15;18039:127;18100:10;18095:3;18091:20;18088:1;18081:31;18131:4;18128:1;18121:15;18155:4;18152:1;18145:15;18171:127;18232:10;18227:3;18223:20;18220:1;18213:31;18263:4;18260:1;18253:15;18287:4;18284:1;18277:15;18303:131;-1:-1:-1;;;;;18378:31:1;;18368:42;;18358:70;;18424:1;18421;18414:12;18439:131;-1:-1:-1;;;;;;18513:32:1;;18503:43;;18493:71;;18560:1;18557;18550:12

Swarm Source

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