ETH Price: $2,636.43 (-0.37%)

Token

Aldanoah (ALDANOAH)
 

Overview

Max Total Supply

352 ALDANOAH

Holders

129

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 ALDANOAH
0x302a1930b0a9C0291Cc0ca4FE74a4D8652fD34a8
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:
Aldanoah

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-25
*/

// File: contracts/Aldanoah.sol



// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol


// ERC721A Contracts v3.3.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: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// ERC721A Contracts v3.3.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 (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Returns the 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 (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _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 (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _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();

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        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));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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 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);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), 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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/Aldanoah.sol

pragma solidity ^0.8.0;

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

    string private baseURI;
    uint256 public price = 0.002 ether;
    uint256 public maxPerTx = 20;
    uint256 public maxFreePerWallet = 2;
    uint256 public totalFree = 200;
    uint256 public maxSupply = 800;
    bool public mintEnabled = false;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("Aldanoah", "ALDANOAH") {
        _safeMint(msg.sender, 5);
        setBaseURI("ipfs://QmeLhHPLcRqWg8ckseEnbC957b3zNgFyB3RjLZzVVruVoC/");
    }

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalSupply() + count < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet));

        if (isFree) {
            cost = 0;
        }

        require(msg.value >= count * cost, "Please send the exact amount");
        require(totalSupply() + count < maxSupply + 1, "Exceeds max supply");
        require(mintEnabled, "Minting is not live yet");
        require(count < maxPerTx + 1, "Max per TX reached");

        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }

        _safeMint(msg.sender, count);
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }

    function setFreeAmount(uint256 amount) external onlyOwner {
        totalFree = amount;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function flipSale() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266071afd498d0000600a556014600b556002600c5560c8600d55610320600e556000600f60006101000a81548160ff0219169083151502179055503480156200004c57600080fd5b506040518060400160405280600881526020017f416c64616e6f61680000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f414c44414e4f41480000000000000000000000000000000000000000000000008152508160029080519060200190620000d1929190620007b3565b508060039080519060200190620000ea929190620007b3565b50620000fb6200016660201b60201c565b600081905550505062000123620001176200016b60201b60201c565b6200017360201b60201c565b620001363360056200023960201b60201c565b6200016060405180606001604052806036815260200162003d07603691396200025f60201b60201c565b62000b37565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200025b8282604051806020016040528060008152506200030a60201b60201c565b5050565b6200026f6200016b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000295620005ef60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e5906200098a565b60405180910390fd5b806009908051906020019062000306929190620007b3565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141562000378576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415620003b4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003c960008583866200061960201b60201c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e162000436600185146200061f60201b60201c565b901b60a042901b6200044e866200062960201b60201c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146200055f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200050b60008784806001019550876200063360201b60201c565b62000542576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620004945782600054146200055957600080fd5b620005cb565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821062000560575b816000819055505050620005e96000858386620007a560201b60201c565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000661620007ab60201b60201c565b8786866040518563ffffffff1660e01b815260040162000685949392919062000936565b602060405180830381600087803b158015620006a057600080fd5b505af1925050508015620006d457506040513d601f19601f82011682018060405250810190620006d191906200087a565b60015b62000752573d806000811462000707576040519150601f19603f3d011682016040523d82523d6000602084013e6200070c565b606091505b506000815114156200074a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b828054620007c19062000a79565b90600052602060002090601f016020900481019282620007e5576000855562000831565b82601f106200080057805160ff191683800117855562000831565b8280016001018555821562000831579182015b828111156200083057825182559160200191906001019062000813565b5b50905062000840919062000844565b5090565b5b808211156200085f57600081600090555060010162000845565b5090565b600081519050620008748162000b1d565b92915050565b60006020828403121562000893576200089262000ade565b5b6000620008a38482850162000863565b91505092915050565b620008b781620009d9565b82525050565b6000620008ca82620009ac565b620008d68185620009b7565b9350620008e881856020860162000a43565b620008f38162000ae3565b840191505092915050565b60006200090d602083620009c8565b91506200091a8262000af4565b602082019050919050565b620009308162000a39565b82525050565b60006080820190506200094d6000830187620008ac565b6200095c6020830186620008ac565b6200096b604083018562000925565b81810360608301526200097f8184620008bd565b905095945050505050565b60006020820190508181036000830152620009a581620008fe565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620009e68262000a19565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000a6357808201518184015260208101905062000a46565b8381111562000a73576000848401525b50505050565b6000600282049050600182168062000a9257607f821691505b6020821081141562000aa95762000aa862000aaf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000b2881620009ed565b811462000b3457600080fd5b50565b6131c08062000b476000396000f3fe6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063a702735711610095578063d5abeb0111610064578063d5abeb01146105f9578063e985e9c514610624578063f2fde38b14610661578063f968adbe1461068a576101c2565b8063a70273571461053d578063b88d4fde14610568578063c87b56dd14610591578063d1239730146105ce576101c2565b806395d89b41116100d157806395d89b41146104a2578063a035b1fe146104cd578063a0712d68146104f8578063a22cb46514610514576101c2565b80638da5cb5b1461042557806391b7f5ed1461045057806392910eec14610479576101c2565b80633ccfd60b116101645780636352211e1161013e5780636352211e1461037d57806370a08231146103ba578063715018a6146103f75780637ba5e6211461040e576101c2565b80633ccfd60b1461031457806342842e0e1461032b57806355f804b314610354576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c0578063333e44e6146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e9919061254c565b6106b5565b6040516101fb9190612974565b60405180910390f35b34801561021057600080fd5b50610219610747565b604051610226919061298f565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906125ef565b6107d9565b604051610263919061290d565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e919061250c565b610855565b005b3480156102a157600080fd5b506102aa6109fc565b6040516102b79190612ab1565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e291906123f6565b610a13565b005b3480156102f557600080fd5b506102fe610a23565b60405161030b9190612ab1565b60405180910390f35b34801561032057600080fd5b50610329610a29565b005b34801561033757600080fd5b50610352600480360381019061034d91906123f6565b610b54565b005b34801561036057600080fd5b5061037b600480360381019061037691906125a6565b610b74565b005b34801561038957600080fd5b506103a4600480360381019061039f91906125ef565b610c0a565b6040516103b1919061290d565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc9190612389565b610c1c565b6040516103ee9190612ab1565b60405180910390f35b34801561040357600080fd5b5061040c610cd5565b005b34801561041a57600080fd5b50610423610d5d565b005b34801561043157600080fd5b5061043a610e05565b604051610447919061290d565b60405180910390f35b34801561045c57600080fd5b50610477600480360381019061047291906125ef565b610e2f565b005b34801561048557600080fd5b506104a0600480360381019061049b91906125ef565b610eb5565b005b3480156104ae57600080fd5b506104b7610f3b565b6040516104c4919061298f565b60405180910390f35b3480156104d957600080fd5b506104e2610fcd565b6040516104ef9190612ab1565b60405180910390f35b610512600480360381019061050d91906125ef565b610fd3565b005b34801561052057600080fd5b5061053b600480360381019061053691906124cc565b61121f565b005b34801561054957600080fd5b50610552611397565b60405161055f9190612ab1565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190612449565b61139d565b005b34801561059d57600080fd5b506105b860048036038101906105b391906125ef565b611410565b6040516105c5919061298f565b60405180910390f35b3480156105da57600080fd5b506105e361148c565b6040516105f09190612974565b60405180910390f35b34801561060557600080fd5b5061060e61149f565b60405161061b9190612ab1565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906123b6565b6114a5565b6040516106589190612974565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190612389565b611539565b005b34801561069657600080fd5b5061069f611631565b6040516106ac9190612ab1565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107405750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461075690612d81565b80601f016020809104026020016040519081016040528092919081815260200182805461078290612d81565b80156107cf5780601f106107a4576101008083540402835291602001916107cf565b820191906000526020600020905b8154815290600101906020018083116107b257829003601f168201915b5050505050905090565b60006107e482611637565b61081a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086082611696565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e7611764565b73ffffffffffffffffffffffffffffffffffffffff161461094a576109138161090e611764565b6114a5565b610949576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a0661176c565b6001546000540303905090565b610a1e838383611771565b505050565b600d5481565b610a31611b1b565b73ffffffffffffffffffffffffffffffffffffffff16610a4f610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9c90612a11565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610acb906128f8565b60006040518083038185875af1925050503d8060008114610b08576040519150601f19603f3d011682016040523d82523d6000602084013e610b0d565b606091505b5050905080610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4890612a71565b60405180910390fd5b50565b610b6f8383836040518060200160405280600081525061139d565b505050565b610b7c611b1b565b73ffffffffffffffffffffffffffffffffffffffff16610b9a610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be790612a11565b60405180910390fd5b8060099080519060200190610c0692919061219d565b5050565b6000610c1582611696565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c84576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610cdd611b1b565b73ffffffffffffffffffffffffffffffffffffffff16610cfb610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890612a11565b60405180910390fd5b610d5b6000611b23565b565b610d65611b1b565b73ffffffffffffffffffffffffffffffffffffffff16610d83610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd090612a11565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e37611b1b565b73ffffffffffffffffffffffffffffffffffffffff16610e55610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea290612a11565b60405180910390fd5b80600a8190555050565b610ebd611b1b565b73ffffffffffffffffffffffffffffffffffffffff16610edb610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890612a11565b60405180910390fd5b80600d8190555050565b606060038054610f4a90612d81565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7690612d81565b8015610fc35780601f10610f9857610100808354040283529160200191610fc3565b820191906000526020600020905b815481529060010190602001808311610fa657829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d54610feb9190612bb6565b83610ff46109fc565b610ffe9190612bb6565b1080156110575750600c5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110549190612bb6565b11155b9050801561106457600091505b81836110709190612c3d565b3410156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a990612a51565b60405180910390fd5b6001600e546110c19190612bb6565b836110ca6109fc565b6110d49190612bb6565b10611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110b906129f1565b60405180910390fd5b600f60009054906101000a900460ff16611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a906129b1565b60405180910390fd5b6001600b546111729190612bb6565b83106111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90612a91565b60405180910390fd5b80156112105782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112089190612bb6565b925050819055505b61121a3384611be9565b505050565b611227611764565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561128c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611299611764565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611346611764565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161138b9190612974565b60405180910390a35050565b600c5481565b6113a8848484611771565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461140a576113d384848484611c07565b611409576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061141b82611637565b61145a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145190612a31565b60405180910390fd5b600961146583611d67565b6040516020016114769291906128c9565b6040516020818303038152906040529050919050565b600f60009054906101000a900460ff1681565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611541611b1b565b73ffffffffffffffffffffffffffffffffffffffff1661155f610e05565b73ffffffffffffffffffffffffffffffffffffffff16146115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac90612a11565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c906129d1565b60405180910390fd5b61162e81611b23565b50565b600b5481565b60008161164261176c565b11158015611651575060005482105b801561168f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806116a561176c565b1161172d5760005481101561172c5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561172a575b60008114156117205760046000836001900393508381526020019081526020016000205490506116f5565b809250505061175f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061177c82611696565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117e3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611804611764565b73ffffffffffffffffffffffffffffffffffffffff16148061183357506118328561182d611764565b6114a5565b5b806118785750611841611764565b73ffffffffffffffffffffffffffffffffffffffff16611860846107d9565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806118b1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611918576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119258585856001611ec8565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611a2286611ece565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611aac576000600184019050600060046000838152602001908152602001600020541415611aaa576000548114611aa9578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b148585856001611ed8565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c03828260405180602001604052806000815250611ede565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c2d611764565b8786866040518563ffffffff1660e01b8152600401611c4f9493929190612928565b602060405180830381600087803b158015611c6957600080fd5b505af1925050508015611c9a57506040513d601f19601f82011682018060405250810190611c979190612579565b60015b611d14573d8060008114611cca576040519150601f19603f3d011682016040523d82523d6000602084013e611ccf565b606091505b50600081511415611d0c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611daf576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ec3565b600082905060005b60008214611de1578080611dca90612de4565b915050600a82611dda9190612c0c565b9150611db7565b60008167ffffffffffffffff811115611dfd57611dfc612f1a565b5b6040519080825280601f01601f191660200182016040528015611e2f5781602001600182028036833780820191505090505b5090505b60008514611ebc57600182611e489190612c97565b9150600a85611e579190612e2d565b6030611e639190612bb6565b60f81b818381518110611e7957611e78612eeb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611eb59190612c0c565b9450611e33565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f4b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611f86576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f936000858386611ec8565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611ff860018514612193565b901b60a042901b61200886611ece565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461210c575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120bc6000878480600101955087611c07565b6120f2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061204d57826000541461210757600080fd5b612177565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061210d575b81600081905550505061218d6000858386611ed8565b50505050565b6000819050919050565b8280546121a990612d81565b90600052602060002090601f0160209004810192826121cb5760008555612212565b82601f106121e457805160ff1916838001178555612212565b82800160010185558215612212579182015b828111156122115782518255916020019190600101906121f6565b5b50905061221f9190612223565b5090565b5b8082111561223c576000816000905550600101612224565b5090565b600061225361224e84612af1565b612acc565b90508281526020810184848401111561226f5761226e612f4e565b5b61227a848285612d3f565b509392505050565b600061229561229084612b22565b612acc565b9050828152602081018484840111156122b1576122b0612f4e565b5b6122bc848285612d3f565b509392505050565b6000813590506122d38161312e565b92915050565b6000813590506122e881613145565b92915050565b6000813590506122fd8161315c565b92915050565b6000815190506123128161315c565b92915050565b600082601f83011261232d5761232c612f49565b5b813561233d848260208601612240565b91505092915050565b600082601f83011261235b5761235a612f49565b5b813561236b848260208601612282565b91505092915050565b60008135905061238381613173565b92915050565b60006020828403121561239f5761239e612f58565b5b60006123ad848285016122c4565b91505092915050565b600080604083850312156123cd576123cc612f58565b5b60006123db858286016122c4565b92505060206123ec858286016122c4565b9150509250929050565b60008060006060848603121561240f5761240e612f58565b5b600061241d868287016122c4565b935050602061242e868287016122c4565b925050604061243f86828701612374565b9150509250925092565b6000806000806080858703121561246357612462612f58565b5b6000612471878288016122c4565b9450506020612482878288016122c4565b935050604061249387828801612374565b925050606085013567ffffffffffffffff8111156124b4576124b3612f53565b5b6124c087828801612318565b91505092959194509250565b600080604083850312156124e3576124e2612f58565b5b60006124f1858286016122c4565b9250506020612502858286016122d9565b9150509250929050565b6000806040838503121561252357612522612f58565b5b6000612531858286016122c4565b925050602061254285828601612374565b9150509250929050565b60006020828403121561256257612561612f58565b5b6000612570848285016122ee565b91505092915050565b60006020828403121561258f5761258e612f58565b5b600061259d84828501612303565b91505092915050565b6000602082840312156125bc576125bb612f58565b5b600082013567ffffffffffffffff8111156125da576125d9612f53565b5b6125e684828501612346565b91505092915050565b60006020828403121561260557612604612f58565b5b600061261384828501612374565b91505092915050565b61262581612ccb565b82525050565b61263481612cdd565b82525050565b600061264582612b68565b61264f8185612b7e565b935061265f818560208601612d4e565b61266881612f5d565b840191505092915050565b600061267e82612b73565b6126888185612b9a565b9350612698818560208601612d4e565b6126a181612f5d565b840191505092915050565b60006126b782612b73565b6126c18185612bab565b93506126d1818560208601612d4e565b80840191505092915050565b600081546126ea81612d81565b6126f48186612bab565b9450600182166000811461270f576001811461272057612753565b60ff19831686528186019350612753565b61272985612b53565b60005b8381101561274b5781548189015260018201915060208101905061272c565b838801955050505b50505092915050565b6000612769601783612b9a565b915061277482612f6e565b602082019050919050565b600061278c602683612b9a565b915061279782612f97565b604082019050919050565b60006127af601283612b9a565b91506127ba82612fe6565b602082019050919050565b60006127d2600583612bab565b91506127dd8261300f565b600582019050919050565b60006127f5602083612b9a565b915061280082613038565b602082019050919050565b6000612818602f83612b9a565b915061282382613061565b604082019050919050565b600061283b601c83612b9a565b9150612846826130b0565b602082019050919050565b600061285e600083612b8f565b9150612869826130d9565b600082019050919050565b6000612881601083612b9a565b915061288c826130dc565b602082019050919050565b60006128a4601283612b9a565b91506128af82613105565b602082019050919050565b6128c381612d35565b82525050565b60006128d582856126dd565b91506128e182846126ac565b91506128ec826127c5565b91508190509392505050565b600061290382612851565b9150819050919050565b6000602082019050612922600083018461261c565b92915050565b600060808201905061293d600083018761261c565b61294a602083018661261c565b61295760408301856128ba565b8181036060830152612969818461263a565b905095945050505050565b6000602082019050612989600083018461262b565b92915050565b600060208201905081810360008301526129a98184612673565b905092915050565b600060208201905081810360008301526129ca8161275c565b9050919050565b600060208201905081810360008301526129ea8161277f565b9050919050565b60006020820190508181036000830152612a0a816127a2565b9050919050565b60006020820190508181036000830152612a2a816127e8565b9050919050565b60006020820190508181036000830152612a4a8161280b565b9050919050565b60006020820190508181036000830152612a6a8161282e565b9050919050565b60006020820190508181036000830152612a8a81612874565b9050919050565b60006020820190508181036000830152612aaa81612897565b9050919050565b6000602082019050612ac660008301846128ba565b92915050565b6000612ad6612ae7565b9050612ae28282612db3565b919050565b6000604051905090565b600067ffffffffffffffff821115612b0c57612b0b612f1a565b5b612b1582612f5d565b9050602081019050919050565b600067ffffffffffffffff821115612b3d57612b3c612f1a565b5b612b4682612f5d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612bc182612d35565b9150612bcc83612d35565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c0157612c00612e5e565b5b828201905092915050565b6000612c1782612d35565b9150612c2283612d35565b925082612c3257612c31612e8d565b5b828204905092915050565b6000612c4882612d35565b9150612c5383612d35565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c8c57612c8b612e5e565b5b828202905092915050565b6000612ca282612d35565b9150612cad83612d35565b925082821015612cc057612cbf612e5e565b5b828203905092915050565b6000612cd682612d15565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612d6c578082015181840152602081019050612d51565b83811115612d7b576000848401525b50505050565b60006002820490506001821680612d9957607f821691505b60208210811415612dad57612dac612ebc565b5b50919050565b612dbc82612f5d565b810181811067ffffffffffffffff82111715612ddb57612dda612f1a565b5b80604052505050565b6000612def82612d35565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e2257612e21612e5e565b5b600182019050919050565b6000612e3882612d35565b9150612e4383612d35565b925082612e5357612e52612e8d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e7400000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865640000000000000000000000000000600082015250565b61313781612ccb565b811461314257600080fd5b50565b61314e81612cdd565b811461315957600080fd5b50565b61316581612ce9565b811461317057600080fd5b50565b61317c81612d35565b811461318757600080fd5b5056fea264697066735822122074ba437b5889e9953d6951a3ac1dcfb43f48577e8708c50deed5248a5db1d4b164736f6c63430008070033697066733a2f2f516d654c6848504c635271576738636b7365456e624339353762337a4e6746794233526a4c5a7a56567275566f432f

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063a702735711610095578063d5abeb0111610064578063d5abeb01146105f9578063e985e9c514610624578063f2fde38b14610661578063f968adbe1461068a576101c2565b8063a70273571461053d578063b88d4fde14610568578063c87b56dd14610591578063d1239730146105ce576101c2565b806395d89b41116100d157806395d89b41146104a2578063a035b1fe146104cd578063a0712d68146104f8578063a22cb46514610514576101c2565b80638da5cb5b1461042557806391b7f5ed1461045057806392910eec14610479576101c2565b80633ccfd60b116101645780636352211e1161013e5780636352211e1461037d57806370a08231146103ba578063715018a6146103f75780637ba5e6211461040e576101c2565b80633ccfd60b1461031457806342842e0e1461032b57806355f804b314610354576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c0578063333e44e6146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e9919061254c565b6106b5565b6040516101fb9190612974565b60405180910390f35b34801561021057600080fd5b50610219610747565b604051610226919061298f565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906125ef565b6107d9565b604051610263919061290d565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e919061250c565b610855565b005b3480156102a157600080fd5b506102aa6109fc565b6040516102b79190612ab1565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e291906123f6565b610a13565b005b3480156102f557600080fd5b506102fe610a23565b60405161030b9190612ab1565b60405180910390f35b34801561032057600080fd5b50610329610a29565b005b34801561033757600080fd5b50610352600480360381019061034d91906123f6565b610b54565b005b34801561036057600080fd5b5061037b600480360381019061037691906125a6565b610b74565b005b34801561038957600080fd5b506103a4600480360381019061039f91906125ef565b610c0a565b6040516103b1919061290d565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc9190612389565b610c1c565b6040516103ee9190612ab1565b60405180910390f35b34801561040357600080fd5b5061040c610cd5565b005b34801561041a57600080fd5b50610423610d5d565b005b34801561043157600080fd5b5061043a610e05565b604051610447919061290d565b60405180910390f35b34801561045c57600080fd5b50610477600480360381019061047291906125ef565b610e2f565b005b34801561048557600080fd5b506104a0600480360381019061049b91906125ef565b610eb5565b005b3480156104ae57600080fd5b506104b7610f3b565b6040516104c4919061298f565b60405180910390f35b3480156104d957600080fd5b506104e2610fcd565b6040516104ef9190612ab1565b60405180910390f35b610512600480360381019061050d91906125ef565b610fd3565b005b34801561052057600080fd5b5061053b600480360381019061053691906124cc565b61121f565b005b34801561054957600080fd5b50610552611397565b60405161055f9190612ab1565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190612449565b61139d565b005b34801561059d57600080fd5b506105b860048036038101906105b391906125ef565b611410565b6040516105c5919061298f565b60405180910390f35b3480156105da57600080fd5b506105e361148c565b6040516105f09190612974565b60405180910390f35b34801561060557600080fd5b5061060e61149f565b60405161061b9190612ab1565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906123b6565b6114a5565b6040516106589190612974565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190612389565b611539565b005b34801561069657600080fd5b5061069f611631565b6040516106ac9190612ab1565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107405750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461075690612d81565b80601f016020809104026020016040519081016040528092919081815260200182805461078290612d81565b80156107cf5780601f106107a4576101008083540402835291602001916107cf565b820191906000526020600020905b8154815290600101906020018083116107b257829003601f168201915b5050505050905090565b60006107e482611637565b61081a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086082611696565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e7611764565b73ffffffffffffffffffffffffffffffffffffffff161461094a576109138161090e611764565b6114a5565b610949576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a0661176c565b6001546000540303905090565b610a1e838383611771565b505050565b600d5481565b610a31611b1b565b73ffffffffffffffffffffffffffffffffffffffff16610a4f610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9c90612a11565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610acb906128f8565b60006040518083038185875af1925050503d8060008114610b08576040519150601f19603f3d011682016040523d82523d6000602084013e610b0d565b606091505b5050905080610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4890612a71565b60405180910390fd5b50565b610b6f8383836040518060200160405280600081525061139d565b505050565b610b7c611b1b565b73ffffffffffffffffffffffffffffffffffffffff16610b9a610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be790612a11565b60405180910390fd5b8060099080519060200190610c0692919061219d565b5050565b6000610c1582611696565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c84576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610cdd611b1b565b73ffffffffffffffffffffffffffffffffffffffff16610cfb610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890612a11565b60405180910390fd5b610d5b6000611b23565b565b610d65611b1b565b73ffffffffffffffffffffffffffffffffffffffff16610d83610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd090612a11565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e37611b1b565b73ffffffffffffffffffffffffffffffffffffffff16610e55610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea290612a11565b60405180910390fd5b80600a8190555050565b610ebd611b1b565b73ffffffffffffffffffffffffffffffffffffffff16610edb610e05565b73ffffffffffffffffffffffffffffffffffffffff1614610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890612a11565b60405180910390fd5b80600d8190555050565b606060038054610f4a90612d81565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7690612d81565b8015610fc35780601f10610f9857610100808354040283529160200191610fc3565b820191906000526020600020905b815481529060010190602001808311610fa657829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d54610feb9190612bb6565b83610ff46109fc565b610ffe9190612bb6565b1080156110575750600c5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110549190612bb6565b11155b9050801561106457600091505b81836110709190612c3d565b3410156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a990612a51565b60405180910390fd5b6001600e546110c19190612bb6565b836110ca6109fc565b6110d49190612bb6565b10611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110b906129f1565b60405180910390fd5b600f60009054906101000a900460ff16611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a906129b1565b60405180910390fd5b6001600b546111729190612bb6565b83106111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90612a91565b60405180910390fd5b80156112105782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112089190612bb6565b925050819055505b61121a3384611be9565b505050565b611227611764565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561128c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611299611764565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611346611764565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161138b9190612974565b60405180910390a35050565b600c5481565b6113a8848484611771565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461140a576113d384848484611c07565b611409576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061141b82611637565b61145a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145190612a31565b60405180910390fd5b600961146583611d67565b6040516020016114769291906128c9565b6040516020818303038152906040529050919050565b600f60009054906101000a900460ff1681565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611541611b1b565b73ffffffffffffffffffffffffffffffffffffffff1661155f610e05565b73ffffffffffffffffffffffffffffffffffffffff16146115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac90612a11565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c906129d1565b60405180910390fd5b61162e81611b23565b50565b600b5481565b60008161164261176c565b11158015611651575060005482105b801561168f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806116a561176c565b1161172d5760005481101561172c5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561172a575b60008114156117205760046000836001900393508381526020019081526020016000205490506116f5565b809250505061175f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061177c82611696565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117e3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611804611764565b73ffffffffffffffffffffffffffffffffffffffff16148061183357506118328561182d611764565b6114a5565b5b806118785750611841611764565b73ffffffffffffffffffffffffffffffffffffffff16611860846107d9565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806118b1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611918576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119258585856001611ec8565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611a2286611ece565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611aac576000600184019050600060046000838152602001908152602001600020541415611aaa576000548114611aa9578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b148585856001611ed8565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c03828260405180602001604052806000815250611ede565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c2d611764565b8786866040518563ffffffff1660e01b8152600401611c4f9493929190612928565b602060405180830381600087803b158015611c6957600080fd5b505af1925050508015611c9a57506040513d601f19601f82011682018060405250810190611c979190612579565b60015b611d14573d8060008114611cca576040519150601f19603f3d011682016040523d82523d6000602084013e611ccf565b606091505b50600081511415611d0c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611daf576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ec3565b600082905060005b60008214611de1578080611dca90612de4565b915050600a82611dda9190612c0c565b9150611db7565b60008167ffffffffffffffff811115611dfd57611dfc612f1a565b5b6040519080825280601f01601f191660200182016040528015611e2f5781602001600182028036833780820191505090505b5090505b60008514611ebc57600182611e489190612c97565b9150600a85611e579190612e2d565b6030611e639190612bb6565b60f81b818381518110611e7957611e78612eeb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611eb59190612c0c565b9450611e33565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f4b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611f86576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f936000858386611ec8565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611ff860018514612193565b901b60a042901b61200886611ece565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461210c575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120bc6000878480600101955087611c07565b6120f2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061204d57826000541461210757600080fd5b612177565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061210d575b81600081905550505061218d6000858386611ed8565b50505050565b6000819050919050565b8280546121a990612d81565b90600052602060002090601f0160209004810192826121cb5760008555612212565b82601f106121e457805160ff1916838001178555612212565b82800160010185558215612212579182015b828111156122115782518255916020019190600101906121f6565b5b50905061221f9190612223565b5090565b5b8082111561223c576000816000905550600101612224565b5090565b600061225361224e84612af1565b612acc565b90508281526020810184848401111561226f5761226e612f4e565b5b61227a848285612d3f565b509392505050565b600061229561229084612b22565b612acc565b9050828152602081018484840111156122b1576122b0612f4e565b5b6122bc848285612d3f565b509392505050565b6000813590506122d38161312e565b92915050565b6000813590506122e881613145565b92915050565b6000813590506122fd8161315c565b92915050565b6000815190506123128161315c565b92915050565b600082601f83011261232d5761232c612f49565b5b813561233d848260208601612240565b91505092915050565b600082601f83011261235b5761235a612f49565b5b813561236b848260208601612282565b91505092915050565b60008135905061238381613173565b92915050565b60006020828403121561239f5761239e612f58565b5b60006123ad848285016122c4565b91505092915050565b600080604083850312156123cd576123cc612f58565b5b60006123db858286016122c4565b92505060206123ec858286016122c4565b9150509250929050565b60008060006060848603121561240f5761240e612f58565b5b600061241d868287016122c4565b935050602061242e868287016122c4565b925050604061243f86828701612374565b9150509250925092565b6000806000806080858703121561246357612462612f58565b5b6000612471878288016122c4565b9450506020612482878288016122c4565b935050604061249387828801612374565b925050606085013567ffffffffffffffff8111156124b4576124b3612f53565b5b6124c087828801612318565b91505092959194509250565b600080604083850312156124e3576124e2612f58565b5b60006124f1858286016122c4565b9250506020612502858286016122d9565b9150509250929050565b6000806040838503121561252357612522612f58565b5b6000612531858286016122c4565b925050602061254285828601612374565b9150509250929050565b60006020828403121561256257612561612f58565b5b6000612570848285016122ee565b91505092915050565b60006020828403121561258f5761258e612f58565b5b600061259d84828501612303565b91505092915050565b6000602082840312156125bc576125bb612f58565b5b600082013567ffffffffffffffff8111156125da576125d9612f53565b5b6125e684828501612346565b91505092915050565b60006020828403121561260557612604612f58565b5b600061261384828501612374565b91505092915050565b61262581612ccb565b82525050565b61263481612cdd565b82525050565b600061264582612b68565b61264f8185612b7e565b935061265f818560208601612d4e565b61266881612f5d565b840191505092915050565b600061267e82612b73565b6126888185612b9a565b9350612698818560208601612d4e565b6126a181612f5d565b840191505092915050565b60006126b782612b73565b6126c18185612bab565b93506126d1818560208601612d4e565b80840191505092915050565b600081546126ea81612d81565b6126f48186612bab565b9450600182166000811461270f576001811461272057612753565b60ff19831686528186019350612753565b61272985612b53565b60005b8381101561274b5781548189015260018201915060208101905061272c565b838801955050505b50505092915050565b6000612769601783612b9a565b915061277482612f6e565b602082019050919050565b600061278c602683612b9a565b915061279782612f97565b604082019050919050565b60006127af601283612b9a565b91506127ba82612fe6565b602082019050919050565b60006127d2600583612bab565b91506127dd8261300f565b600582019050919050565b60006127f5602083612b9a565b915061280082613038565b602082019050919050565b6000612818602f83612b9a565b915061282382613061565b604082019050919050565b600061283b601c83612b9a565b9150612846826130b0565b602082019050919050565b600061285e600083612b8f565b9150612869826130d9565b600082019050919050565b6000612881601083612b9a565b915061288c826130dc565b602082019050919050565b60006128a4601283612b9a565b91506128af82613105565b602082019050919050565b6128c381612d35565b82525050565b60006128d582856126dd565b91506128e182846126ac565b91506128ec826127c5565b91508190509392505050565b600061290382612851565b9150819050919050565b6000602082019050612922600083018461261c565b92915050565b600060808201905061293d600083018761261c565b61294a602083018661261c565b61295760408301856128ba565b8181036060830152612969818461263a565b905095945050505050565b6000602082019050612989600083018461262b565b92915050565b600060208201905081810360008301526129a98184612673565b905092915050565b600060208201905081810360008301526129ca8161275c565b9050919050565b600060208201905081810360008301526129ea8161277f565b9050919050565b60006020820190508181036000830152612a0a816127a2565b9050919050565b60006020820190508181036000830152612a2a816127e8565b9050919050565b60006020820190508181036000830152612a4a8161280b565b9050919050565b60006020820190508181036000830152612a6a8161282e565b9050919050565b60006020820190508181036000830152612a8a81612874565b9050919050565b60006020820190508181036000830152612aaa81612897565b9050919050565b6000602082019050612ac660008301846128ba565b92915050565b6000612ad6612ae7565b9050612ae28282612db3565b919050565b6000604051905090565b600067ffffffffffffffff821115612b0c57612b0b612f1a565b5b612b1582612f5d565b9050602081019050919050565b600067ffffffffffffffff821115612b3d57612b3c612f1a565b5b612b4682612f5d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612bc182612d35565b9150612bcc83612d35565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c0157612c00612e5e565b5b828201905092915050565b6000612c1782612d35565b9150612c2283612d35565b925082612c3257612c31612e8d565b5b828204905092915050565b6000612c4882612d35565b9150612c5383612d35565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c8c57612c8b612e5e565b5b828202905092915050565b6000612ca282612d35565b9150612cad83612d35565b925082821015612cc057612cbf612e5e565b5b828203905092915050565b6000612cd682612d15565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612d6c578082015181840152602081019050612d51565b83811115612d7b576000848401525b50505050565b60006002820490506001821680612d9957607f821691505b60208210811415612dad57612dac612ebc565b5b50919050565b612dbc82612f5d565b810181811067ffffffffffffffff82111715612ddb57612dda612f1a565b5b80604052505050565b6000612def82612d35565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e2257612e21612e5e565b5b600182019050919050565b6000612e3882612d35565b9150612e4383612d35565b925082612e5357612e52612e8d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e7400000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865640000000000000000000000000000600082015250565b61313781612ccb565b811461314257600080fd5b50565b61314e81612cdd565b811461315957600080fd5b50565b61316581612ce9565b811461317057600080fd5b50565b61317c81612d35565b811461318757600080fd5b5056fea264697066735822122074ba437b5889e9953d6951a3ac1dcfb43f48577e8708c50deed5248a5db1d4b164736f6c63430008070033

Deployed Bytecode Sourcemap

76675:2354:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13192:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18205:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20273:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19733:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12246:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21159:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76901:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78820:206;;;;;;;;;;;;;:::i;:::-;;21400:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78429:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17994:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13871:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43713:103;;;;;;;;;;;;;:::i;:::-;;78728:84;;;;;;;;;;;;;:::i;:::-;;43062:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78628:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78525:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18374:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76783:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77253:694;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20549:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76859:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21656:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78071:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76975:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76938:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20928:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43971:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76824:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13192:615;13277:4;13592:10;13577:25;;:11;:25;;;;:102;;;;13669:10;13654:25;;:11;:25;;;;13577:102;:179;;;;13746:10;13731:25;;:11;:25;;;;13577:179;13557:199;;13192:615;;;:::o;18205:100::-;18259:13;18292:5;18285:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18205:100;:::o;20273:204::-;20341:7;20366:16;20374:7;20366;:16::i;:::-;20361:64;;20391:34;;;;;;;;;;;;;;20361:64;20445:15;:24;20461:7;20445:24;;;;;;;;;;;;;;;;;;;;;20438:31;;20273:204;;;:::o;19733:474::-;19806:13;19838:27;19857:7;19838:18;:27::i;:::-;19806:61;;19888:5;19882:11;;:2;:11;;;19878:48;;;19902:24;;;;;;;;;;;;;;19878:48;19966:5;19943:28;;:19;:17;:19::i;:::-;:28;;;19939:175;;19991:44;20008:5;20015:19;:17;:19::i;:::-;19991:16;:44::i;:::-;19986:128;;20063:35;;;;;;;;;;;;;;19986:128;19939:175;20153:2;20126:15;:24;20142:7;20126:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20191:7;20187:2;20171:28;;20180:5;20171:28;;;;;;;;;;;;19795:412;19733:474;;:::o;12246:315::-;12299:7;12527:15;:13;:15::i;:::-;12512:12;;12496:13;;:28;:46;12489:53;;12246:315;:::o;21159:170::-;21293:28;21303:4;21309:2;21313:7;21293:9;:28::i;:::-;21159:170;;;:::o;76901:30::-;;;;:::o;78820:206::-;43293:12;:10;:12::i;:::-;43282:23;;:7;:5;:7::i;:::-;:23;;;43274:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78871:12:::1;78897:10;78889:24;;78935:21;78889:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78870:101;;;78990:7;78982:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;78859:167;78820:206::o:0;21400:185::-;21538:39;21555:4;21561:2;21565:7;21538:39;;;;;;;;;;;;:16;:39::i;:::-;21400:185;;;:::o;78429:88::-;43293:12;:10;:12::i;:::-;43282:23;;:7;:5;:7::i;:::-;:23;;;43274:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78506:3:::1;78496:7;:13;;;;;;;;;;;;:::i;:::-;;78429:88:::0;:::o;17994:144::-;18058:7;18101:27;18120:7;18101:18;:27::i;:::-;18078:52;;17994:144;;;:::o;13871:224::-;13935:7;13976:1;13959:19;;:5;:19;;;13955:60;;;13987:28;;;;;;;;;;;;;;13955:60;9210:13;14033:18;:25;14052:5;14033:25;;;;;;;;;;;;;;;;:54;14026:61;;13871:224;;;:::o;43713:103::-;43293:12;:10;:12::i;:::-;43282:23;;:7;:5;:7::i;:::-;:23;;;43274:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43778:30:::1;43805:1;43778:18;:30::i;:::-;43713:103::o:0;78728:84::-;43293:12;:10;:12::i;:::-;43282:23;;:7;:5;:7::i;:::-;:23;;;43274:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78793:11:::1;;;;;;;;;;;78792:12;78778:11;;:26;;;;;;;;;;;;;;;;;;78728:84::o:0;43062:87::-;43108:7;43135:6;;;;;;;;;;;43128:13;;43062:87;:::o;78628:92::-;43293:12;:10;:12::i;:::-;43282:23;;:7;:5;:7::i;:::-;:23;;;43274:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78703:9:::1;78695:5;:17;;;;78628:92:::0;:::o;78525:95::-;43293:12;:10;:12::i;:::-;43282:23;;:7;:5;:7::i;:::-;:23;;;43274:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78606:6:::1;78594:9;:18;;;;78525:95:::0;:::o;18374:104::-;18430:13;18463:7;18456:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18374:104;:::o;76783:34::-;;;;:::o;77253:694::-;77310:12;77325:5;;77310:20;;77341:11;77393:1;77381:9;;:13;;;;:::i;:::-;77373:5;77357:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;77356:115;;;;;77454:16;;77445:5;77413:17;:29;77431:10;77413:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:57;;77356:115;77341:131;;77489:6;77485:47;;;77519:1;77512:8;;77485:47;77573:4;77565:5;:12;;;;:::i;:::-;77552:9;:25;;77544:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;77665:1;77653:9;;:13;;;;:::i;:::-;77645:5;77629:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;77621:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77708:11;;;;;;;;;;;77700:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;77785:1;77774:8;;:12;;;;:::i;:::-;77766:5;:20;77758:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;77826:6;77822:77;;;77882:5;77849:17;:29;77867:10;77849:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;77822:77;77911:28;77921:10;77933:5;77911:9;:28::i;:::-;77299:648;;77253:694;:::o;20549:308::-;20660:19;:17;:19::i;:::-;20648:31;;:8;:31;;;20644:61;;;20688:17;;;;;;;;;;;;;;20644:61;20770:8;20718:18;:39;20737:19;:17;:19::i;:::-;20718:39;;;;;;;;;;;;;;;:49;20758:8;20718:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20830:8;20794:55;;20809:19;:17;:19::i;:::-;20794:55;;;20840:8;20794:55;;;;;;:::i;:::-;;;;;;;;20549:308;;:::o;76859:35::-;;;;:::o;21656:396::-;21823:28;21833:4;21839:2;21843:7;21823:9;:28::i;:::-;21884:1;21866:2;:14;;;:19;21862:183;;21905:56;21936:4;21942:2;21946:7;21955:5;21905:30;:56::i;:::-;21900:145;;21989:40;;;;;;;;;;;;;;21900:145;21862:183;21656:396;;;;:::o;78071:350::-;78189:13;78242:16;78250:7;78242;:16::i;:::-;78220:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;78375:7;78384:18;:7;:16;:18::i;:::-;78358:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78344:69;;78071:350;;;:::o;76975:31::-;;;;;;;;;;;;;:::o;76938:30::-;;;;:::o;20928:164::-;21025:4;21049:18;:25;21068:5;21049:25;;;;;;;;;;;;;;;:35;21075:8;21049:35;;;;;;;;;;;;;;;;;;;;;;;;;21042:42;;20928:164;;;;:::o;43971:201::-;43293:12;:10;:12::i;:::-;43282:23;;:7;:5;:7::i;:::-;:23;;;43274:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44080:1:::1;44060:22;;:8;:22;;;;44052:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44136:28;44155:8;44136:18;:28::i;:::-;43971:201:::0;:::o;76824:28::-;;;;:::o;22307:273::-;22364:4;22420:7;22401:15;:13;:15::i;:::-;:26;;:66;;;;;22454:13;;22444:7;:23;22401:66;:152;;;;;22552:1;9980:8;22505:17;:26;22523:7;22505:26;;;;;;;;;;;;:43;:48;22401:152;22381:172;;22307:273;;;:::o;15509:1129::-;15576:7;15596:12;15611:7;15596:22;;15679:4;15660:15;:13;:15::i;:::-;:23;15656:915;;15713:13;;15706:4;:20;15702:869;;;15751:14;15768:17;:23;15786:4;15768:23;;;;;;;;;;;;15751:40;;15884:1;9980:8;15857:6;:23;:28;15853:699;;;16376:113;16393:1;16383:6;:11;16376:113;;;16436:17;:25;16454:6;;;;;;;16436:25;;;;;;;;;;;;16427:34;;16376:113;;;16522:6;16515:13;;;;;;15853:699;15728:843;15702:869;15656:915;16599:31;;;;;;;;;;;;;;15509:1129;;;;:::o;36289:105::-;36349:7;36376:10;36369:17;;36289:105;:::o;11769:92::-;11825:7;11769:92;:::o;27546:2515::-;27661:27;27691;27710:7;27691:18;:27::i;:::-;27661:57;;27776:4;27735:45;;27751:19;27735:45;;;27731:86;;27789:28;;;;;;;;;;;;;;27731:86;27830:22;27879:4;27856:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;27900:43;27917:4;27923:19;:17;:19::i;:::-;27900:16;:43::i;:::-;27856:87;:147;;;;27984:19;:17;:19::i;:::-;27960:43;;:20;27972:7;27960:11;:20::i;:::-;:43;;;27856:147;27830:174;;28022:17;28017:66;;28048:35;;;;;;;;;;;;;;28017:66;28112:1;28098:16;;:2;:16;;;28094:52;;;28123:23;;;;;;;;;;;;;;28094:52;28159:43;28181:4;28187:2;28191:7;28200:1;28159:21;:43::i;:::-;28275:15;:24;28291:7;28275:24;;;;;;;;;;;;28268:31;;;;;;;;;;;28667:18;:24;28686:4;28667:24;;;;;;;;;;;;;;;;28665:26;;;;;;;;;;;;28736:18;:22;28755:2;28736:22;;;;;;;;;;;;;;;;28734:24;;;;;;;;;;;10262:8;9864:3;29117:15;:41;;29075:21;29093:2;29075:17;:21::i;:::-;:84;:128;29029:17;:26;29047:7;29029:26;;;;;;;;;;;:174;;;;29373:1;10262:8;29323:19;:46;:51;29319:626;;;29395:19;29427:1;29417:7;:11;29395:33;;29584:1;29550:17;:30;29568:11;29550:30;;;;;;;;;;;;:35;29546:384;;;29688:13;;29673:11;:28;29669:242;;29868:19;29835:17;:30;29853:11;29835:30;;;;;;;;;;;:52;;;;29669:242;29546:384;29376:569;29319:626;29992:7;29988:2;29973:27;;29982:4;29973:27;;;;;;;;;;;;30011:42;30032:4;30038:2;30042:7;30051:1;30011:20;:42::i;:::-;27650:2411;;27546:2515;;;:::o;41733:98::-;41786:7;41813:10;41806:17;;41733:98;:::o;44332:191::-;44406:16;44425:6;;;;;;;;;;;44406:25;;44451:8;44442:6;;:17;;;;;;;;;;;;;;;;;;44506:8;44475:40;;44496:8;44475:40;;;;;;;;;;;;44395:128;44332:191;:::o;22664:104::-;22733:27;22743:2;22747:8;22733:27;;;;;;;;;;;;:9;:27::i;:::-;22664:104;;:::o;33758:716::-;33921:4;33967:2;33942:45;;;33988:19;:17;:19::i;:::-;34009:4;34015:7;34024:5;33942:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33938:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34242:1;34225:6;:13;:18;34221:235;;;34271:40;;;;;;;;;;;;;;34221:235;34414:6;34408:13;34399:6;34395:2;34391:15;34384:38;33938:529;34111:54;;;34101:64;;;:6;:64;;;;34094:71;;;33758:716;;;;;;:::o;38934:723::-;38990:13;39220:1;39211:5;:10;39207:53;;;39238:10;;;;;;;;;;;;;;;;;;;;;39207:53;39270:12;39285:5;39270:20;;39301:14;39326:78;39341:1;39333:4;:9;39326:78;;39359:8;;;;;:::i;:::-;;;;39390:2;39382:10;;;;;:::i;:::-;;;39326:78;;;39414:19;39446:6;39436:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39414:39;;39464:154;39480:1;39471:5;:10;39464:154;;39508:1;39498:11;;;;;:::i;:::-;;;39575:2;39567:5;:10;;;;:::i;:::-;39554:2;:24;;;;:::i;:::-;39541:39;;39524:6;39531;39524:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;39604:2;39595:11;;;;;:::i;:::-;;;39464:154;;;39642:6;39628:21;;;;;38934:723;;;;:::o;35122:159::-;;;;;:::o;19294:148::-;19358:14;19419:5;19409:15;;19294:148;;;:::o;35940:158::-;;;;;:::o;23141:2236::-;23264:20;23287:13;;23264:36;;23329:1;23315:16;;:2;:16;;;23311:48;;;23340:19;;;;;;;;;;;;;;23311:48;23386:1;23374:8;:13;23370:44;;;23396:18;;;;;;;;;;;;;;23370:44;23427:61;23457:1;23461:2;23465:12;23479:8;23427:21;:61::i;:::-;24031:1;9347:2;24002:1;:25;;24001:31;23989:8;:44;23963:18;:22;23982:2;23963:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;10127:3;24432:29;24459:1;24447:8;:13;24432:14;:29::i;:::-;:56;;9864:3;24369:15;:41;;24327:21;24345:2;24327:17;:21::i;:::-;:84;:162;24276:17;:31;24294:12;24276:31;;;;;;;;;;;:213;;;;24506:20;24529:12;24506:35;;24556:11;24585:8;24570:12;:23;24556:37;;24632:1;24614:2;:14;;;:19;24610:635;;24654:313;24710:12;24706:2;24685:38;;24702:1;24685:38;;;;;;;;;;;;24751:69;24790:1;24794:2;24798:14;;;;;;24814:5;24751:30;:69::i;:::-;24746:174;;24856:40;;;;;;;;;;;;;;24746:174;24962:3;24947:12;:18;24654:313;;25048:12;25031:13;;:29;25027:43;;25062:8;;;25027:43;24610:635;;;25111:119;25167:14;;;;;;25163:2;25142:40;;25159:1;25142:40;;;;;;;;;;;;25225:3;25210:12;:18;25111:119;;24610:635;25275:12;25259:13;:28;;;;23740:1559;;25309:60;25338:1;25342:2;25346:12;25360:8;25309:20;:60::i;:::-;23253:2124;23141:2236;;;:::o;19529:142::-;19587:14;19648:5;19638:15;;19529:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:400::-;10667:3;10688:84;10770:1;10765:3;10688:84;:::i;:::-;10681:91;;10781:93;10870:3;10781:93;:::i;:::-;10899:1;10894:3;10890:11;10883:18;;10507:400;;;:::o;10913:366::-;11055:3;11076:67;11140:2;11135:3;11076:67;:::i;:::-;11069:74;;11152:93;11241:3;11152:93;:::i;:::-;11270:2;11265:3;11261:12;11254:19;;10913:366;;;:::o;11285:::-;11427:3;11448:67;11512:2;11507:3;11448:67;:::i;:::-;11441:74;;11524:93;11613:3;11524:93;:::i;:::-;11642:2;11637:3;11633:12;11626:19;;11285:366;;;:::o;11657:::-;11799:3;11820:67;11884:2;11879:3;11820:67;:::i;:::-;11813:74;;11896:93;11985:3;11896:93;:::i;:::-;12014:2;12009:3;12005:12;11998:19;;11657:366;;;:::o;12029:398::-;12188:3;12209:83;12290:1;12285:3;12209:83;:::i;:::-;12202:90;;12301:93;12390:3;12301:93;:::i;:::-;12419:1;12414:3;12410:11;12403:18;;12029:398;;;:::o;12433:366::-;12575:3;12596:67;12660:2;12655:3;12596:67;:::i;:::-;12589:74;;12672:93;12761:3;12672:93;:::i;:::-;12790:2;12785:3;12781:12;12774:19;;12433:366;;;:::o;12805:::-;12947:3;12968:67;13032:2;13027:3;12968:67;:::i;:::-;12961:74;;13044:93;13133:3;13044:93;:::i;:::-;13162:2;13157:3;13153:12;13146:19;;12805:366;;;:::o;13177:118::-;13264:24;13282:5;13264:24;:::i;:::-;13259:3;13252:37;13177:118;;:::o;13301:695::-;13579:3;13601:92;13689:3;13680:6;13601:92;:::i;:::-;13594:99;;13710:95;13801:3;13792:6;13710:95;:::i;:::-;13703:102;;13822:148;13966:3;13822:148;:::i;:::-;13815:155;;13987:3;13980:10;;13301:695;;;;;:::o;14002:379::-;14186:3;14208:147;14351:3;14208:147;:::i;:::-;14201:154;;14372:3;14365:10;;14002:379;;;:::o;14387:222::-;14480:4;14518:2;14507:9;14503:18;14495:26;;14531:71;14599:1;14588:9;14584:17;14575:6;14531:71;:::i;:::-;14387:222;;;;:::o;14615:640::-;14810:4;14848:3;14837:9;14833:19;14825:27;;14862:71;14930:1;14919:9;14915:17;14906:6;14862:71;:::i;:::-;14943:72;15011:2;15000:9;14996:18;14987:6;14943:72;:::i;:::-;15025;15093:2;15082:9;15078:18;15069:6;15025:72;:::i;:::-;15144:9;15138:4;15134:20;15129:2;15118:9;15114:18;15107:48;15172:76;15243:4;15234:6;15172:76;:::i;:::-;15164:84;;14615:640;;;;;;;:::o;15261:210::-;15348:4;15386:2;15375:9;15371:18;15363:26;;15399:65;15461:1;15450:9;15446:17;15437:6;15399:65;:::i;:::-;15261:210;;;;:::o;15477:313::-;15590:4;15628:2;15617:9;15613:18;15605:26;;15677:9;15671:4;15667:20;15663:1;15652:9;15648:17;15641:47;15705:78;15778:4;15769:6;15705:78;:::i;:::-;15697:86;;15477:313;;;;:::o;15796:419::-;15962:4;16000:2;15989:9;15985:18;15977:26;;16049:9;16043:4;16039:20;16035:1;16024:9;16020:17;16013:47;16077:131;16203:4;16077:131;:::i;:::-;16069:139;;15796:419;;;:::o;16221:::-;16387:4;16425:2;16414:9;16410:18;16402:26;;16474:9;16468:4;16464:20;16460:1;16449:9;16445:17;16438:47;16502:131;16628:4;16502:131;:::i;:::-;16494:139;;16221:419;;;:::o;16646:::-;16812:4;16850:2;16839:9;16835:18;16827:26;;16899:9;16893:4;16889:20;16885:1;16874:9;16870:17;16863:47;16927:131;17053:4;16927:131;:::i;:::-;16919:139;;16646:419;;;:::o;17071:::-;17237:4;17275:2;17264:9;17260:18;17252:26;;17324:9;17318:4;17314:20;17310:1;17299:9;17295:17;17288:47;17352:131;17478:4;17352:131;:::i;:::-;17344:139;;17071:419;;;:::o;17496:::-;17662:4;17700:2;17689:9;17685:18;17677:26;;17749:9;17743:4;17739:20;17735:1;17724:9;17720:17;17713:47;17777:131;17903:4;17777:131;:::i;:::-;17769:139;;17496:419;;;:::o;17921:::-;18087:4;18125:2;18114:9;18110:18;18102:26;;18174:9;18168:4;18164:20;18160:1;18149:9;18145:17;18138:47;18202:131;18328:4;18202:131;:::i;:::-;18194:139;;17921:419;;;:::o;18346:::-;18512:4;18550:2;18539:9;18535:18;18527:26;;18599:9;18593:4;18589:20;18585:1;18574:9;18570:17;18563:47;18627:131;18753:4;18627:131;:::i;:::-;18619:139;;18346:419;;;:::o;18771:::-;18937:4;18975:2;18964:9;18960:18;18952:26;;19024:9;19018:4;19014:20;19010:1;18999:9;18995:17;18988:47;19052:131;19178:4;19052:131;:::i;:::-;19044:139;;18771:419;;;:::o;19196:222::-;19289:4;19327:2;19316:9;19312:18;19304:26;;19340:71;19408:1;19397:9;19393:17;19384:6;19340:71;:::i;:::-;19196:222;;;;:::o;19424:129::-;19458:6;19485:20;;:::i;:::-;19475:30;;19514:33;19542:4;19534:6;19514:33;:::i;:::-;19424:129;;;:::o;19559:75::-;19592:6;19625:2;19619:9;19609:19;;19559:75;:::o;19640:307::-;19701:4;19791:18;19783:6;19780:30;19777:56;;;19813:18;;:::i;:::-;19777:56;19851:29;19873:6;19851:29;:::i;:::-;19843:37;;19935:4;19929;19925:15;19917:23;;19640:307;;;:::o;19953:308::-;20015:4;20105:18;20097:6;20094:30;20091:56;;;20127:18;;:::i;:::-;20091:56;20165:29;20187:6;20165:29;:::i;:::-;20157:37;;20249:4;20243;20239:15;20231:23;;19953:308;;;:::o;20267:141::-;20316:4;20339:3;20331:11;;20362:3;20359:1;20352:14;20396:4;20393:1;20383:18;20375:26;;20267:141;;;:::o;20414:98::-;20465:6;20499:5;20493:12;20483:22;;20414:98;;;:::o;20518:99::-;20570:6;20604:5;20598:12;20588:22;;20518:99;;;:::o;20623:168::-;20706:11;20740:6;20735:3;20728:19;20780:4;20775:3;20771:14;20756:29;;20623:168;;;;:::o;20797:147::-;20898:11;20935:3;20920:18;;20797:147;;;;:::o;20950:169::-;21034:11;21068:6;21063:3;21056:19;21108:4;21103:3;21099:14;21084:29;;20950:169;;;;:::o;21125:148::-;21227:11;21264:3;21249:18;;21125:148;;;;:::o;21279:305::-;21319:3;21338:20;21356:1;21338:20;:::i;:::-;21333:25;;21372:20;21390:1;21372:20;:::i;:::-;21367:25;;21526:1;21458:66;21454:74;21451:1;21448:81;21445:107;;;21532:18;;:::i;:::-;21445:107;21576:1;21573;21569:9;21562:16;;21279:305;;;;:::o;21590:185::-;21630:1;21647:20;21665:1;21647:20;:::i;:::-;21642:25;;21681:20;21699:1;21681:20;:::i;:::-;21676:25;;21720:1;21710:35;;21725:18;;:::i;:::-;21710:35;21767:1;21764;21760:9;21755:14;;21590:185;;;;:::o;21781:348::-;21821:7;21844:20;21862:1;21844:20;:::i;:::-;21839:25;;21878:20;21896:1;21878:20;:::i;:::-;21873:25;;22066:1;21998:66;21994:74;21991:1;21988:81;21983:1;21976:9;21969:17;21965:105;21962:131;;;22073:18;;:::i;:::-;21962:131;22121:1;22118;22114:9;22103:20;;21781:348;;;;:::o;22135:191::-;22175:4;22195:20;22213:1;22195:20;:::i;:::-;22190:25;;22229:20;22247:1;22229:20;:::i;:::-;22224:25;;22268:1;22265;22262:8;22259:34;;;22273:18;;:::i;:::-;22259:34;22318:1;22315;22311:9;22303:17;;22135:191;;;;:::o;22332:96::-;22369:7;22398:24;22416:5;22398:24;:::i;:::-;22387:35;;22332:96;;;:::o;22434:90::-;22468:7;22511:5;22504:13;22497:21;22486:32;;22434:90;;;:::o;22530:149::-;22566:7;22606:66;22599:5;22595:78;22584:89;;22530:149;;;:::o;22685:126::-;22722:7;22762:42;22755:5;22751:54;22740:65;;22685:126;;;:::o;22817:77::-;22854:7;22883:5;22872:16;;22817:77;;;:::o;22900:154::-;22984:6;22979:3;22974;22961:30;23046:1;23037:6;23032:3;23028:16;23021:27;22900:154;;;:::o;23060:307::-;23128:1;23138:113;23152:6;23149:1;23146:13;23138:113;;;23237:1;23232:3;23228:11;23222:18;23218:1;23213:3;23209:11;23202:39;23174:2;23171:1;23167:10;23162:15;;23138:113;;;23269:6;23266:1;23263:13;23260:101;;;23349:1;23340:6;23335:3;23331:16;23324:27;23260:101;23109:258;23060:307;;;:::o;23373:320::-;23417:6;23454:1;23448:4;23444:12;23434:22;;23501:1;23495:4;23491:12;23522:18;23512:81;;23578:4;23570:6;23566:17;23556:27;;23512:81;23640:2;23632:6;23629:14;23609:18;23606:38;23603:84;;;23659:18;;:::i;:::-;23603:84;23424:269;23373:320;;;:::o;23699:281::-;23782:27;23804:4;23782:27;:::i;:::-;23774:6;23770:40;23912:6;23900:10;23897:22;23876:18;23864:10;23861:34;23858:62;23855:88;;;23923:18;;:::i;:::-;23855:88;23963:10;23959:2;23952:22;23742:238;23699:281;;:::o;23986:233::-;24025:3;24048:24;24066:5;24048:24;:::i;:::-;24039:33;;24094:66;24087:5;24084:77;24081:103;;;24164:18;;:::i;:::-;24081:103;24211:1;24204:5;24200:13;24193:20;;23986:233;;;:::o;24225:176::-;24257:1;24274:20;24292:1;24274:20;:::i;:::-;24269:25;;24308:20;24326:1;24308:20;:::i;:::-;24303:25;;24347:1;24337:35;;24352:18;;:::i;:::-;24337:35;24393:1;24390;24386:9;24381:14;;24225:176;;;;:::o;24407:180::-;24455:77;24452:1;24445:88;24552:4;24549:1;24542:15;24576:4;24573:1;24566:15;24593:180;24641:77;24638:1;24631:88;24738:4;24735:1;24728:15;24762:4;24759:1;24752:15;24779:180;24827:77;24824:1;24817:88;24924:4;24921:1;24914:15;24948:4;24945:1;24938:15;24965:180;25013:77;25010:1;25003:88;25110:4;25107:1;25100:15;25134:4;25131:1;25124:15;25151:180;25199:77;25196:1;25189:88;25296:4;25293:1;25286:15;25320:4;25317:1;25310:15;25337:117;25446:1;25443;25436:12;25460:117;25569:1;25566;25559:12;25583:117;25692:1;25689;25682:12;25706:117;25815:1;25812;25805:12;25829:102;25870:6;25921:2;25917:7;25912:2;25905:5;25901:14;25897:28;25887:38;;25829:102;;;:::o;25937:173::-;26077:25;26073:1;26065:6;26061:14;26054:49;25937:173;:::o;26116:225::-;26256:34;26252:1;26244:6;26240:14;26233:58;26325:8;26320:2;26312:6;26308:15;26301:33;26116:225;:::o;26347:168::-;26487:20;26483:1;26475:6;26471:14;26464:44;26347:168;:::o;26521:155::-;26661:7;26657:1;26649:6;26645:14;26638:31;26521:155;:::o;26682:182::-;26822:34;26818:1;26810:6;26806:14;26799:58;26682:182;:::o;26870:234::-;27010:34;27006:1;26998:6;26994:14;26987:58;27079:17;27074:2;27066:6;27062:15;27055:42;26870:234;:::o;27110:178::-;27250:30;27246:1;27238:6;27234:14;27227:54;27110:178;:::o;27294:114::-;;:::o;27414:166::-;27554:18;27550:1;27542:6;27538:14;27531:42;27414:166;:::o;27586:168::-;27726:20;27722:1;27714:6;27710:14;27703:44;27586:168;:::o;27760:122::-;27833:24;27851:5;27833:24;:::i;:::-;27826:5;27823:35;27813:63;;27872:1;27869;27862:12;27813:63;27760:122;:::o;27888:116::-;27958:21;27973:5;27958:21;:::i;:::-;27951:5;27948:32;27938:60;;27994:1;27991;27984:12;27938:60;27888:116;:::o;28010:120::-;28082:23;28099:5;28082:23;:::i;:::-;28075:5;28072:34;28062:62;;28120:1;28117;28110:12;28062:62;28010:120;:::o;28136:122::-;28209:24;28227:5;28209:24;:::i;:::-;28202:5;28199:35;28189:63;;28248:1;28245;28238:12;28189:63;28136:122;:::o

Swarm Source

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