ETH Price: $2,655.03 (+1.28%)

Token

WagmiSaurus V1 (WAGMIS)
 

Overview

Max Total Supply

1,286 WAGMIS

Holders

364

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WAGMIS
0xc528403Cbb2986a100420d2D44dEA78839E6f4be
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:
WagmiSaurus

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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

// OpenZeppelin Contracts (last updated v4.7.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);
}

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



// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * 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();

    // Compiler will pack this into a single 256bit word.
    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;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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


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

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

// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @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 Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    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();
        }
    }

    /**
     * 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 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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].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 {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // 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.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

    /**
     * @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, tokenId.toString())) : '';
    }

    /**
     * @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 See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

    /**
     * @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 == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 {
        _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.isContract()) 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 && !_ownerships[tokenId].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 {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

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

            if (to.isContract()) {
                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 {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        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 Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == 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 {}
}
// 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);
}




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

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}
// OpenZeppelin Contracts (last updated v4.7.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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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


pragma solidity >=0.8.6;



interface RawrToken {
    function updateRewardOnMint(address _to, uint256 _amount) external;

    function updateReward(address _from, address _to) external;

    function getReward(address _to) external;

    function spend(address _from, uint256 _amount) external;
}

contract WagmiSaurus is ERC721A, Ownable {

    uint public price = 0.005 ether;
    uint public maxSupply = 6000;
    uint public maxTx = 7;

    mapping(address => uint256) public _preSaleCounter;

    bytes32 public merkleRoot;

    bool private mintOpen = false;
    bool private presaleOpen = false;

    string internal baseTokenURI = '';
    
    RawrToken public rawrToken;



    constructor() ERC721A("WagmiSaurus V1", "WAGMIS") {}

    function toggleMint() external onlyOwner {
        mintOpen = !mintOpen;
    }

    function togglePresale() external onlyOwner {
        presaleOpen = !presaleOpen;
    }
    
    function setPrice(uint newPrice) external onlyOwner {
        price = newPrice;
    }
    
    function setBaseTokenURI(string calldata _uri) external onlyOwner {
        baseTokenURI = _uri;
    }

    function setMerkleRoot(bytes32 root) external onlyOwner {
        merkleRoot = root;
    }
    
    function setMaxSupply(uint newSupply) external onlyOwner {
        maxSupply = newSupply;
    }

    function setToken(address _contract) external onlyOwner {
        rawrToken = RawrToken(_contract);
    }
    
    function setMaxTx(uint newMax) external onlyOwner {
        maxTx = newMax;
    }

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

    function buyTo(address to, uint qty) external onlyOwner {
        _mintTo(to, qty);
    }

    function buyPre(uint qty, bytes32[] memory proof) external payable {
        require(presaleOpen, "store closed");
        require(
            _preSaleCounter[msg.sender] + qty <= maxTx,
            "Exceeded max available to purchase"
        );
        _preSaleCounter[msg.sender] =
            _preSaleCounter[msg.sender] +
            qty;
        require(verify(proof), "address not in whitelist");
        _buy(qty);
    }
    
    function buy(uint qty) external payable {
        require(mintOpen, "store closed");
        require(
            _preSaleCounter[msg.sender] + qty <= maxTx,
            "Exceeded max available to purchase"
        );
        _preSaleCounter[msg.sender] =
            _preSaleCounter[msg.sender] +
            qty;
        _buy(qty);
    }

    function _buy(uint qty) internal {
        require(qty <= maxTx && qty > 0, "TRANSACTION: qty of mints not alowed");
        uint free = balanceOf(_msgSender()) == 0 ? 1 : 0;
        require(msg.value >= price * (qty - free), "PAYMENT: invalid value");
        _mintTo(_msgSender(), qty);
        rawrToken.updateRewardOnMint(_msgSender(), qty);
    }

    function _mintTo(address to, uint qty) internal {
        require(qty + totalSupply() <= maxSupply, "SUPPLY: Value exceeds totalSupply");
        _mint(to, qty);
    }

    function airdrop(address[] calldata _users) external onlyOwner {
        for (uint256 i = 0; i < _users.length; i++) {
            _safeMint(_users[i], 1);
        }
    }
    
    function withdraw() external onlyOwner {
        payable(_msgSender()).transfer(address(this).balance);
    }

    function verify(bytes32[] memory proof) internal view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        return MerkleProof.verify(proof, merkleRoot, leaf);
    }

    function claimTokens() external {
        rawrToken.updateReward(msg.sender, address(0));
        rawrToken.getReward(msg.sender);
    }

    function spendTokens(uint256 _amount) external {
        rawrToken.spend(msg.sender, _amount);
    }

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 tokenId,
        uint256 quantity
    ) internal virtual override {
        super._beforeTokenTransfers(from, to, tokenId, quantity);
        if (from != address(0)) {
            rawrToken.updateReward(from, to);
        }
    }
}

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":"","type":"address"}],"name":"_preSaleCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"buyPre","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buyTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimTokens","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"rawrToken","outputs":[{"internalType":"contract RawrToken","name":"","type":"address"}],"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":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"setToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"spendTokens","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":[],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}]

60806040526611c37937e08000600955611770600a556007600b556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff02191690831515021790555060405180602001604052806000815250600f90805190602001906200007792919062000235565b503480156200008557600080fd5b506040518060400160405280600e81526020017f5761676d695361757275732056310000000000000000000000000000000000008152506040518060400160405280600681526020017f5741474d4953000000000000000000000000000000000000000000000000000081525081600290805190602001906200010a92919062000235565b5080600390805190602001906200012392919062000235565b50620001346200016260201b60201c565b60008190555050506200015c620001506200016760201b60201c565b6200016f60201b60201c565b6200034a565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024390620002e5565b90600052602060002090601f016020900481019282620002675760008555620002b3565b82601f106200028257805160ff1916838001178555620002b3565b82800160010185558215620002b3579182015b82811115620002b257825182559160200191906001019062000295565b5b509050620002c29190620002c6565b5090565b5b80821115620002e1576000816000905550600101620002c7565b5090565b60006002820490506001821680620002fe57607f821691505b602082108114156200031557620003146200031b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6142bd806200035a6000396000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063a035b1fe116100ab578063d3dd5fe01161006f578063d3dd5fe0146107a6578063d5abeb01146107bd578063d96a094a146107e8578063e985e9c514610804578063f2fde38b1461084157610225565b8063a035b1fe146106c3578063a22cb465146106ee578063b88d4fde14610717578063bc33718214610740578063c87b56dd1461076957610225565b806381814492116100f257806381814492146105ff5780638da5cb5b1461061b5780638e39f5151461064657806391b7f5ed1461066f57806395d89b411461069857610225565b8063715018a61461056b578063729ad39e146105825780637437681e146105ab5780637cb64759146105d657610225565b80632eb4a7ab116101b15780634742a4f3116101755780634742a4f31461048657806348c54b9d146104b15780636352211e146104c85780636f8b44b01461050557806370a082311461052e57610225565b80632eb4a7ab146103db57806330176e1314610406578063343937431461042f5780633ccfd60b1461044657806342842e0e1461045d57610225565b806309bd4c31116101f857806309bd4c31146102f8578063144fa6d71461032157806318160ddd1461034a57806323b872dd1461037557806327b1425a1461039e57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613569565b61086a565b60405161025e91906139ae565b60405180910390f35b34801561027357600080fd5b5061027c61094c565b60405161028991906139ff565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613610565b6109de565b6040516102c691906138f5565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906134af565b610a5a565b005b34801561030457600080fd5b5061031f600480360381019061031a91906134af565b610b5f565b005b34801561032d57600080fd5b506103486004803603810190610343919061332c565b610b75565b005b34801561035657600080fd5b5061035f610bc1565b60405161036c9190613b21565b60405180910390f35b34801561038157600080fd5b5061039c60048036038101906103979190613399565b610bd8565b005b3480156103aa57600080fd5b506103c560048036038101906103c0919061332c565b610be8565b6040516103d29190613b21565b60405180910390f35b3480156103e757600080fd5b506103f0610c00565b6040516103fd91906139c9565b60405180910390f35b34801561041257600080fd5b5061042d600480360381019061042891906135c3565b610c06565b005b34801561043b57600080fd5b50610444610c24565b005b34801561045257600080fd5b5061045b610c58565b005b34801561046957600080fd5b50610484600480360381019061047f9190613399565b610cb0565b005b34801561049257600080fd5b5061049b610cd0565b6040516104a891906139e4565b60405180910390f35b3480156104bd57600080fd5b506104c6610cf6565b005b3480156104d457600080fd5b506104ef60048036038101906104ea9190613610565b610e15565b6040516104fc91906138f5565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190613610565b610e2b565b005b34801561053a57600080fd5b506105556004803603810190610550919061332c565b610e3d565b6040516105629190613b21565b60405180910390f35b34801561057757600080fd5b50610580610f0d565b005b34801561058e57600080fd5b506105a960048036038101906105a491906134ef565b610f21565b005b3480156105b757600080fd5b506105c0610f81565b6040516105cd9190613b21565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f8919061353c565b610f87565b005b6106196004803603810190610614919061363d565b610f99565b005b34801561062757600080fd5b5061063061115a565b60405161063d91906138f5565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190613610565b611184565b005b34801561067b57600080fd5b5061069660048036038101906106919190613610565b611216565b005b3480156106a457600080fd5b506106ad611228565b6040516106ba91906139ff565b60405180910390f35b3480156106cf57600080fd5b506106d86112ba565b6040516106e59190613b21565b60405180910390f35b3480156106fa57600080fd5b506107156004803603810190610710919061346f565b6112c0565b005b34801561072357600080fd5b5061073e600480360381019061073991906133ec565b611438565b005b34801561074c57600080fd5b5061076760048036038101906107629190613610565b6114b0565b005b34801561077557600080fd5b50610790600480360381019061078b9190613610565b6114c2565b60405161079d91906139ff565b60405180910390f35b3480156107b257600080fd5b506107bb611561565b005b3480156107c957600080fd5b506107d2611595565b6040516107df9190613b21565b60405180910390f35b61080260048036038101906107fd9190613610565b61159b565b005b34801561081057600080fd5b5061082b60048036038101906108269190613359565b611713565b60405161083891906139ae565b60405180910390f35b34801561084d57600080fd5b506108686004803603810190610863919061332c565b6117a7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094557506109448261182b565b5b9050919050565b60606002805461095b90613e0c565b80601f016020809104026020016040519081016040528092919081815260200182805461098790613e0c565b80156109d45780601f106109a9576101008083540402835291602001916109d4565b820191906000526020600020905b8154815290600101906020018083116109b757829003601f168201915b5050505050905090565b60006109e982611895565b610a1f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6582610e15565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610acd576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aec6118e3565b73ffffffffffffffffffffffffffffffffffffffff1614610b4f57610b1881610b136118e3565b611713565b610b4e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610b5a8383836118eb565b505050565b610b6761199d565b610b718282611a1b565b5050565b610b7d61199d565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610bcb611a80565b6001546000540303905090565b610be3838383611a85565b505050565b600c6020528060005260406000206000915090505481565b600d5481565b610c0e61199d565b8181600f9190610c1f92919061300e565b505050565b610c2c61199d565b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b610c6061199d565b610c686118e3565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cad573d6000803e3d6000fd5b50565b610ccb83838360405180602001604052806000815250611438565b505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d230af3a3360006040518363ffffffff1660e01b8152600401610d54929190613910565b600060405180830381600087803b158015610d6e57600080fd5b505af1158015610d82573d6000803e3d6000fd5b50505050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c00007b0336040518263ffffffff1660e01b8152600401610de191906138f5565b600060405180830381600087803b158015610dfb57600080fd5b505af1158015610e0f573d6000803e3d6000fd5b50505050565b6000610e2082611f3b565b600001519050919050565b610e3361199d565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f1561199d565b610f1f60006121c6565b565b610f2961199d565b60005b82829050811015610f7c57610f69838383818110610f4d57610f4c613f9a565b5b9050602002016020810190610f62919061332c565b600161228c565b8080610f7490613e6f565b915050610f2c565b505050565b600b5481565b610f8f61199d565b80600d8190555050565b600e60019054906101000a900460ff16610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90613a81565b60405180910390fd5b600b5482600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110369190613c01565b1115611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90613b01565b60405180910390fd5b81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110c29190613c01565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061110e816122aa565b61114d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114490613aa1565b60405180910390fd5b611156826122eb565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663af7d6ca333836040518363ffffffff1660e01b81526004016111e1929190613985565b600060405180830381600087803b1580156111fb57600080fd5b505af115801561120f573d6000803e3d6000fd5b5050505050565b61121e61199d565b8060098190555050565b60606003805461123790613e0c565b80601f016020809104026020016040519081016040528092919081815260200182805461126390613e0c565b80156112b05780601f10611285576101008083540402835291602001916112b0565b820191906000526020600020905b81548152906001019060200180831161129357829003601f168201915b5050505050905090565b60095481565b6112c86118e3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561132d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061133a6118e3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113e76118e3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161142c91906139ae565b60405180910390a35050565b611443848484611a85565b6114628373ffffffffffffffffffffffffffffffffffffffff16612469565b156114aa576114738484848461248c565b6114a9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6114b861199d565b80600b8190555050565b60606114cd82611895565b611503576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061150d6125ec565b905060008151141561152e5760405180602001604052806000815250611559565b806115388461267e565b6040516020016115499291906138d1565b6040516020818303038152906040525b915050919050565b61156961199d565b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600a5481565b600e60009054906101000a900460ff166115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e190613a81565b60405180910390fd5b600b5481600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116389190613c01565b1115611679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167090613b01565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116c49190613c01565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611710816122eb565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117af61199d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561181f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181690613a21565b60405180910390fd5b611828816121c6565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816118a0611a80565b111580156118af575060005482105b80156118dc575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6119a56118e3565b73ffffffffffffffffffffffffffffffffffffffff166119c361115a565b73ffffffffffffffffffffffffffffffffffffffff1614611a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1090613ac1565b60405180910390fd5b565b600a54611a26610bc1565b82611a319190613c01565b1115611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6990613ae1565b60405180910390fd5b611a7c82826127df565b5050565b600090565b6000611a9082611f3b565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611afb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b1c6118e3565b73ffffffffffffffffffffffffffffffffffffffff161480611b4b5750611b4a85611b456118e3565b611713565b5b80611b905750611b596118e3565b73ffffffffffffffffffffffffffffffffffffffff16611b78846109de565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611bc9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c30576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c3d8585856001612abb565b611c49600084876118eb565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ec9576000548214611ec857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f348585856001612b91565b5050505050565b611f43613094565b600082905080611f51611a80565b1161218f5760005481101561218e576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161218c57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120705780925050506121c1565b5b60011561218b57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121865780925050506121c1565b612071565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122a6828260405180602001604052806000815250612b97565b5050565b600080336040516020016122be91906138b6565b6040516020818303038152906040528051906020012090506122e383600d5483612f59565b915050919050565b600b5481111580156122fd5750600081115b61233c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233390613a41565b60405180910390fd5b60008061234f61234a6118e3565b610e3d565b1461235b57600061235e565b60015b60ff169050808261236f9190613ce2565b60095461237c9190613c88565b3410156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b590613a61565b60405180910390fd5b6123cf6123c96118e3565b83611a1b565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cc240c016124156118e3565b846040518363ffffffff1660e01b8152600401612433929190613985565b600060405180830381600087803b15801561244d57600080fd5b505af1158015612461573d6000803e3d6000fd5b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124b26118e3565b8786866040518563ffffffff1660e01b81526004016124d49493929190613939565b602060405180830381600087803b1580156124ee57600080fd5b505af192505050801561251f57506040513d601f19601f8201168201806040525081019061251c9190613596565b60015b612599573d806000811461254f576040519150601f19603f3d011682016040523d82523d6000602084013e612554565b606091505b50600081511415612591576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f80546125fb90613e0c565b80601f016020809104026020016040519081016040528092919081815260200182805461262790613e0c565b80156126745780601f1061264957610100808354040283529160200191612674565b820191906000526020600020905b81548152906001019060200180831161265757829003601f168201915b5050505050905090565b606060008214156126c6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127da565b600082905060005b600082146126f85780806126e190613e6f565b915050600a826126f19190613c57565b91506126ce565b60008167ffffffffffffffff81111561271457612713613fc9565b5b6040519080825280601f01601f1916602001820160405280156127465781602001600182028036833780820191505090505b5090505b600085146127d35760018261275f9190613ce2565b9150600a8561276e9190613edc565b603061277a9190613c01565b60f81b8183815181106127905761278f613f9a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127cc9190613c57565b945061274a565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561284c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612887576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128946000848385612abb565b81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612a3757816000819055505050612ab66000848385612b91565b505050565b612ac784848484612f70565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612b8b57601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d230af3a85856040518363ffffffff1660e01b8152600401612b58929190613910565b600060405180830381600087803b158015612b7257600080fd5b505af1158015612b86573d6000803e3d6000fd5b505050505b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c04576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612c3f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c4c6000858386612abb565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612e0d8673ffffffffffffffffffffffffffffffffffffffff16612469565b15612ed2575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e82600087848060010195508761248c565b612eb8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612e13578260005414612ecd57600080fd5b612f3d565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612ed3575b816000819055505050612f536000858386612b91565b50505050565b600082612f668584612f76565b1490509392505050565b50505050565b60008082905060005b8451811015612fc157612fac82868381518110612f9f57612f9e613f9a565b5b6020026020010151612fcc565b91508080612fb990613e6f565b915050612f7f565b508091505092915050565b6000818310612fe457612fdf8284612ff7565b612fef565b612fee8383612ff7565b5b905092915050565b600082600052816020526040600020905092915050565b82805461301a90613e0c565b90600052602060002090601f01602090048101928261303c5760008555613083565b82601f1061305557803560ff1916838001178555613083565b82800160010185558215613083579182015b82811115613082578235825591602001919060010190613067565b5b50905061309091906130d7565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156130f05760008160009055506001016130d8565b5090565b600061310761310284613b61565b613b3c565b9050808382526020820190508285602086028201111561312a57613129614002565b5b60005b8581101561315a57816131408882613254565b84526020840193506020830192505060018101905061312d565b5050509392505050565b600061317761317284613b8d565b613b3c565b90508281526020810184848401111561319357613192614007565b5b61319e848285613dca565b509392505050565b6000813590506131b581614214565b92915050565b60008083601f8401126131d1576131d0613ffd565b5b8235905067ffffffffffffffff8111156131ee576131ed613ff8565b5b60208301915083602082028301111561320a57613209614002565b5b9250929050565b600082601f83011261322657613225613ffd565b5b81356132368482602086016130f4565b91505092915050565b60008135905061324e8161422b565b92915050565b60008135905061326381614242565b92915050565b60008135905061327881614259565b92915050565b60008151905061328d81614259565b92915050565b600082601f8301126132a8576132a7613ffd565b5b81356132b8848260208601613164565b91505092915050565b60008083601f8401126132d7576132d6613ffd565b5b8235905067ffffffffffffffff8111156132f4576132f3613ff8565b5b6020830191508360018202830111156133105761330f614002565b5b9250929050565b60008135905061332681614270565b92915050565b60006020828403121561334257613341614011565b5b6000613350848285016131a6565b91505092915050565b600080604083850312156133705761336f614011565b5b600061337e858286016131a6565b925050602061338f858286016131a6565b9150509250929050565b6000806000606084860312156133b2576133b1614011565b5b60006133c0868287016131a6565b93505060206133d1868287016131a6565b92505060406133e286828701613317565b9150509250925092565b6000806000806080858703121561340657613405614011565b5b6000613414878288016131a6565b9450506020613425878288016131a6565b935050604061343687828801613317565b925050606085013567ffffffffffffffff8111156134575761345661400c565b5b61346387828801613293565b91505092959194509250565b6000806040838503121561348657613485614011565b5b6000613494858286016131a6565b92505060206134a58582860161323f565b9150509250929050565b600080604083850312156134c6576134c5614011565b5b60006134d4858286016131a6565b92505060206134e585828601613317565b9150509250929050565b6000806020838503121561350657613505614011565b5b600083013567ffffffffffffffff8111156135245761352361400c565b5b613530858286016131bb565b92509250509250929050565b60006020828403121561355257613551614011565b5b600061356084828501613254565b91505092915050565b60006020828403121561357f5761357e614011565b5b600061358d84828501613269565b91505092915050565b6000602082840312156135ac576135ab614011565b5b60006135ba8482850161327e565b91505092915050565b600080602083850312156135da576135d9614011565b5b600083013567ffffffffffffffff8111156135f8576135f761400c565b5b613604858286016132c1565b92509250509250929050565b60006020828403121561362657613625614011565b5b600061363484828501613317565b91505092915050565b6000806040838503121561365457613653614011565b5b600061366285828601613317565b925050602083013567ffffffffffffffff8111156136835761368261400c565b5b61368f85828601613211565b9150509250929050565b6136a281613d16565b82525050565b6136b96136b482613d16565b613eb8565b82525050565b6136c881613d28565b82525050565b6136d781613d34565b82525050565b60006136e882613bbe565b6136f28185613bd4565b9350613702818560208601613dd9565b61370b81614016565b840191505092915050565b61371f81613d94565b82525050565b600061373082613bc9565b61373a8185613be5565b935061374a818560208601613dd9565b61375381614016565b840191505092915050565b600061376982613bc9565b6137738185613bf6565b9350613783818560208601613dd9565b80840191505092915050565b600061379c602683613be5565b91506137a782614034565b604082019050919050565b60006137bf602483613be5565b91506137ca82614083565b604082019050919050565b60006137e2601683613be5565b91506137ed826140d2565b602082019050919050565b6000613805600c83613be5565b9150613810826140fb565b602082019050919050565b6000613828601883613be5565b915061383382614124565b602082019050919050565b600061384b602083613be5565b91506138568261414d565b602082019050919050565b600061386e602183613be5565b915061387982614176565b604082019050919050565b6000613891602283613be5565b915061389c826141c5565b604082019050919050565b6138b081613d8a565b82525050565b60006138c282846136a8565b60148201915081905092915050565b60006138dd828561375e565b91506138e9828461375e565b91508190509392505050565b600060208201905061390a6000830184613699565b92915050565b60006040820190506139256000830185613699565b6139326020830184613699565b9392505050565b600060808201905061394e6000830187613699565b61395b6020830186613699565b61396860408301856138a7565b818103606083015261397a81846136dd565b905095945050505050565b600060408201905061399a6000830185613699565b6139a760208301846138a7565b9392505050565b60006020820190506139c360008301846136bf565b92915050565b60006020820190506139de60008301846136ce565b92915050565b60006020820190506139f96000830184613716565b92915050565b60006020820190508181036000830152613a198184613725565b905092915050565b60006020820190508181036000830152613a3a8161378f565b9050919050565b60006020820190508181036000830152613a5a816137b2565b9050919050565b60006020820190508181036000830152613a7a816137d5565b9050919050565b60006020820190508181036000830152613a9a816137f8565b9050919050565b60006020820190508181036000830152613aba8161381b565b9050919050565b60006020820190508181036000830152613ada8161383e565b9050919050565b60006020820190508181036000830152613afa81613861565b9050919050565b60006020820190508181036000830152613b1a81613884565b9050919050565b6000602082019050613b3660008301846138a7565b92915050565b6000613b46613b57565b9050613b528282613e3e565b919050565b6000604051905090565b600067ffffffffffffffff821115613b7c57613b7b613fc9565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613ba857613ba7613fc9565b5b613bb182614016565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c0c82613d8a565b9150613c1783613d8a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c4c57613c4b613f0d565b5b828201905092915050565b6000613c6282613d8a565b9150613c6d83613d8a565b925082613c7d57613c7c613f3c565b5b828204905092915050565b6000613c9382613d8a565b9150613c9e83613d8a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cd757613cd6613f0d565b5b828202905092915050565b6000613ced82613d8a565b9150613cf883613d8a565b925082821015613d0b57613d0a613f0d565b5b828203905092915050565b6000613d2182613d6a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613d9f82613da6565b9050919050565b6000613db182613db8565b9050919050565b6000613dc382613d6a565b9050919050565b82818337600083830152505050565b60005b83811015613df7578082015181840152602081019050613ddc565b83811115613e06576000848401525b50505050565b60006002820490506001821680613e2457607f821691505b60208210811415613e3857613e37613f6b565b5b50919050565b613e4782614016565b810181811067ffffffffffffffff82111715613e6657613e65613fc9565b5b80604052505050565b6000613e7a82613d8a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ead57613eac613f0d565b5b600182019050919050565b6000613ec382613eca565b9050919050565b6000613ed582614027565b9050919050565b6000613ee782613d8a565b9150613ef283613d8a565b925082613f0257613f01613f3c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f73746f726520636c6f7365640000000000000000000000000000000000000000600082015250565b7f61646472657373206e6f7420696e2077686974656c6973740000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b61421d81613d16565b811461422857600080fd5b50565b61423481613d28565b811461423f57600080fd5b50565b61424b81613d34565b811461425657600080fd5b50565b61426281613d3e565b811461426d57600080fd5b50565b61427981613d8a565b811461428457600080fd5b5056fea2646970667358221220607fedfce5eba6a6d172458dc42966a53e81fc24a7cef871dbe3ac6f02d1d4d564736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063715018a611610123578063a035b1fe116100ab578063d3dd5fe01161006f578063d3dd5fe0146107a6578063d5abeb01146107bd578063d96a094a146107e8578063e985e9c514610804578063f2fde38b1461084157610225565b8063a035b1fe146106c3578063a22cb465146106ee578063b88d4fde14610717578063bc33718214610740578063c87b56dd1461076957610225565b806381814492116100f257806381814492146105ff5780638da5cb5b1461061b5780638e39f5151461064657806391b7f5ed1461066f57806395d89b411461069857610225565b8063715018a61461056b578063729ad39e146105825780637437681e146105ab5780637cb64759146105d657610225565b80632eb4a7ab116101b15780634742a4f3116101755780634742a4f31461048657806348c54b9d146104b15780636352211e146104c85780636f8b44b01461050557806370a082311461052e57610225565b80632eb4a7ab146103db57806330176e1314610406578063343937431461042f5780633ccfd60b1461044657806342842e0e1461045d57610225565b806309bd4c31116101f857806309bd4c31146102f8578063144fa6d71461032157806318160ddd1461034a57806323b872dd1461037557806327b1425a1461039e57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613569565b61086a565b60405161025e91906139ae565b60405180910390f35b34801561027357600080fd5b5061027c61094c565b60405161028991906139ff565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613610565b6109de565b6040516102c691906138f5565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906134af565b610a5a565b005b34801561030457600080fd5b5061031f600480360381019061031a91906134af565b610b5f565b005b34801561032d57600080fd5b506103486004803603810190610343919061332c565b610b75565b005b34801561035657600080fd5b5061035f610bc1565b60405161036c9190613b21565b60405180910390f35b34801561038157600080fd5b5061039c60048036038101906103979190613399565b610bd8565b005b3480156103aa57600080fd5b506103c560048036038101906103c0919061332c565b610be8565b6040516103d29190613b21565b60405180910390f35b3480156103e757600080fd5b506103f0610c00565b6040516103fd91906139c9565b60405180910390f35b34801561041257600080fd5b5061042d600480360381019061042891906135c3565b610c06565b005b34801561043b57600080fd5b50610444610c24565b005b34801561045257600080fd5b5061045b610c58565b005b34801561046957600080fd5b50610484600480360381019061047f9190613399565b610cb0565b005b34801561049257600080fd5b5061049b610cd0565b6040516104a891906139e4565b60405180910390f35b3480156104bd57600080fd5b506104c6610cf6565b005b3480156104d457600080fd5b506104ef60048036038101906104ea9190613610565b610e15565b6040516104fc91906138f5565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190613610565b610e2b565b005b34801561053a57600080fd5b506105556004803603810190610550919061332c565b610e3d565b6040516105629190613b21565b60405180910390f35b34801561057757600080fd5b50610580610f0d565b005b34801561058e57600080fd5b506105a960048036038101906105a491906134ef565b610f21565b005b3480156105b757600080fd5b506105c0610f81565b6040516105cd9190613b21565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f8919061353c565b610f87565b005b6106196004803603810190610614919061363d565b610f99565b005b34801561062757600080fd5b5061063061115a565b60405161063d91906138f5565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190613610565b611184565b005b34801561067b57600080fd5b5061069660048036038101906106919190613610565b611216565b005b3480156106a457600080fd5b506106ad611228565b6040516106ba91906139ff565b60405180910390f35b3480156106cf57600080fd5b506106d86112ba565b6040516106e59190613b21565b60405180910390f35b3480156106fa57600080fd5b506107156004803603810190610710919061346f565b6112c0565b005b34801561072357600080fd5b5061073e600480360381019061073991906133ec565b611438565b005b34801561074c57600080fd5b5061076760048036038101906107629190613610565b6114b0565b005b34801561077557600080fd5b50610790600480360381019061078b9190613610565b6114c2565b60405161079d91906139ff565b60405180910390f35b3480156107b257600080fd5b506107bb611561565b005b3480156107c957600080fd5b506107d2611595565b6040516107df9190613b21565b60405180910390f35b61080260048036038101906107fd9190613610565b61159b565b005b34801561081057600080fd5b5061082b60048036038101906108269190613359565b611713565b60405161083891906139ae565b60405180910390f35b34801561084d57600080fd5b506108686004803603810190610863919061332c565b6117a7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094557506109448261182b565b5b9050919050565b60606002805461095b90613e0c565b80601f016020809104026020016040519081016040528092919081815260200182805461098790613e0c565b80156109d45780601f106109a9576101008083540402835291602001916109d4565b820191906000526020600020905b8154815290600101906020018083116109b757829003601f168201915b5050505050905090565b60006109e982611895565b610a1f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6582610e15565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610acd576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aec6118e3565b73ffffffffffffffffffffffffffffffffffffffff1614610b4f57610b1881610b136118e3565b611713565b610b4e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610b5a8383836118eb565b505050565b610b6761199d565b610b718282611a1b565b5050565b610b7d61199d565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610bcb611a80565b6001546000540303905090565b610be3838383611a85565b505050565b600c6020528060005260406000206000915090505481565b600d5481565b610c0e61199d565b8181600f9190610c1f92919061300e565b505050565b610c2c61199d565b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b610c6061199d565b610c686118e3565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cad573d6000803e3d6000fd5b50565b610ccb83838360405180602001604052806000815250611438565b505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d230af3a3360006040518363ffffffff1660e01b8152600401610d54929190613910565b600060405180830381600087803b158015610d6e57600080fd5b505af1158015610d82573d6000803e3d6000fd5b50505050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c00007b0336040518263ffffffff1660e01b8152600401610de191906138f5565b600060405180830381600087803b158015610dfb57600080fd5b505af1158015610e0f573d6000803e3d6000fd5b50505050565b6000610e2082611f3b565b600001519050919050565b610e3361199d565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f1561199d565b610f1f60006121c6565b565b610f2961199d565b60005b82829050811015610f7c57610f69838383818110610f4d57610f4c613f9a565b5b9050602002016020810190610f62919061332c565b600161228c565b8080610f7490613e6f565b915050610f2c565b505050565b600b5481565b610f8f61199d565b80600d8190555050565b600e60019054906101000a900460ff16610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90613a81565b60405180910390fd5b600b5482600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110369190613c01565b1115611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90613b01565b60405180910390fd5b81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110c29190613c01565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061110e816122aa565b61114d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114490613aa1565b60405180910390fd5b611156826122eb565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663af7d6ca333836040518363ffffffff1660e01b81526004016111e1929190613985565b600060405180830381600087803b1580156111fb57600080fd5b505af115801561120f573d6000803e3d6000fd5b5050505050565b61121e61199d565b8060098190555050565b60606003805461123790613e0c565b80601f016020809104026020016040519081016040528092919081815260200182805461126390613e0c565b80156112b05780601f10611285576101008083540402835291602001916112b0565b820191906000526020600020905b81548152906001019060200180831161129357829003601f168201915b5050505050905090565b60095481565b6112c86118e3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561132d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061133a6118e3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113e76118e3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161142c91906139ae565b60405180910390a35050565b611443848484611a85565b6114628373ffffffffffffffffffffffffffffffffffffffff16612469565b156114aa576114738484848461248c565b6114a9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6114b861199d565b80600b8190555050565b60606114cd82611895565b611503576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061150d6125ec565b905060008151141561152e5760405180602001604052806000815250611559565b806115388461267e565b6040516020016115499291906138d1565b6040516020818303038152906040525b915050919050565b61156961199d565b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600a5481565b600e60009054906101000a900460ff166115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e190613a81565b60405180910390fd5b600b5481600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116389190613c01565b1115611679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167090613b01565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116c49190613c01565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611710816122eb565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117af61199d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561181f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181690613a21565b60405180910390fd5b611828816121c6565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816118a0611a80565b111580156118af575060005482105b80156118dc575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6119a56118e3565b73ffffffffffffffffffffffffffffffffffffffff166119c361115a565b73ffffffffffffffffffffffffffffffffffffffff1614611a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1090613ac1565b60405180910390fd5b565b600a54611a26610bc1565b82611a319190613c01565b1115611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6990613ae1565b60405180910390fd5b611a7c82826127df565b5050565b600090565b6000611a9082611f3b565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611afb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b1c6118e3565b73ffffffffffffffffffffffffffffffffffffffff161480611b4b5750611b4a85611b456118e3565b611713565b5b80611b905750611b596118e3565b73ffffffffffffffffffffffffffffffffffffffff16611b78846109de565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611bc9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c30576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c3d8585856001612abb565b611c49600084876118eb565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ec9576000548214611ec857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f348585856001612b91565b5050505050565b611f43613094565b600082905080611f51611a80565b1161218f5760005481101561218e576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161218c57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120705780925050506121c1565b5b60011561218b57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121865780925050506121c1565b612071565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122a6828260405180602001604052806000815250612b97565b5050565b600080336040516020016122be91906138b6565b6040516020818303038152906040528051906020012090506122e383600d5483612f59565b915050919050565b600b5481111580156122fd5750600081115b61233c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233390613a41565b60405180910390fd5b60008061234f61234a6118e3565b610e3d565b1461235b57600061235e565b60015b60ff169050808261236f9190613ce2565b60095461237c9190613c88565b3410156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b590613a61565b60405180910390fd5b6123cf6123c96118e3565b83611a1b565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cc240c016124156118e3565b846040518363ffffffff1660e01b8152600401612433929190613985565b600060405180830381600087803b15801561244d57600080fd5b505af1158015612461573d6000803e3d6000fd5b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124b26118e3565b8786866040518563ffffffff1660e01b81526004016124d49493929190613939565b602060405180830381600087803b1580156124ee57600080fd5b505af192505050801561251f57506040513d601f19601f8201168201806040525081019061251c9190613596565b60015b612599573d806000811461254f576040519150601f19603f3d011682016040523d82523d6000602084013e612554565b606091505b50600081511415612591576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f80546125fb90613e0c565b80601f016020809104026020016040519081016040528092919081815260200182805461262790613e0c565b80156126745780601f1061264957610100808354040283529160200191612674565b820191906000526020600020905b81548152906001019060200180831161265757829003601f168201915b5050505050905090565b606060008214156126c6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127da565b600082905060005b600082146126f85780806126e190613e6f565b915050600a826126f19190613c57565b91506126ce565b60008167ffffffffffffffff81111561271457612713613fc9565b5b6040519080825280601f01601f1916602001820160405280156127465781602001600182028036833780820191505090505b5090505b600085146127d35760018261275f9190613ce2565b9150600a8561276e9190613edc565b603061277a9190613c01565b60f81b8183815181106127905761278f613f9a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127cc9190613c57565b945061274a565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561284c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612887576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128946000848385612abb565b81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612a3757816000819055505050612ab66000848385612b91565b505050565b612ac784848484612f70565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612b8b57601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d230af3a85856040518363ffffffff1660e01b8152600401612b58929190613910565b600060405180830381600087803b158015612b7257600080fd5b505af1158015612b86573d6000803e3d6000fd5b505050505b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c04576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612c3f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c4c6000858386612abb565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612e0d8673ffffffffffffffffffffffffffffffffffffffff16612469565b15612ed2575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e82600087848060010195508761248c565b612eb8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612e13578260005414612ecd57600080fd5b612f3d565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612ed3575b816000819055505050612f536000858386612b91565b50505050565b600082612f668584612f76565b1490509392505050565b50505050565b60008082905060005b8451811015612fc157612fac82868381518110612f9f57612f9e613f9a565b5b6020026020010151612fcc565b91508080612fb990613e6f565b915050612f7f565b508091505092915050565b6000818310612fe457612fdf8284612ff7565b612fef565b612fee8383612ff7565b5b905092915050565b600082600052816020526040600020905092915050565b82805461301a90613e0c565b90600052602060002090601f01602090048101928261303c5760008555613083565b82601f1061305557803560ff1916838001178555613083565b82800160010185558215613083579182015b82811115613082578235825591602001919060010190613067565b5b50905061309091906130d7565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156130f05760008160009055506001016130d8565b5090565b600061310761310284613b61565b613b3c565b9050808382526020820190508285602086028201111561312a57613129614002565b5b60005b8581101561315a57816131408882613254565b84526020840193506020830192505060018101905061312d565b5050509392505050565b600061317761317284613b8d565b613b3c565b90508281526020810184848401111561319357613192614007565b5b61319e848285613dca565b509392505050565b6000813590506131b581614214565b92915050565b60008083601f8401126131d1576131d0613ffd565b5b8235905067ffffffffffffffff8111156131ee576131ed613ff8565b5b60208301915083602082028301111561320a57613209614002565b5b9250929050565b600082601f83011261322657613225613ffd565b5b81356132368482602086016130f4565b91505092915050565b60008135905061324e8161422b565b92915050565b60008135905061326381614242565b92915050565b60008135905061327881614259565b92915050565b60008151905061328d81614259565b92915050565b600082601f8301126132a8576132a7613ffd565b5b81356132b8848260208601613164565b91505092915050565b60008083601f8401126132d7576132d6613ffd565b5b8235905067ffffffffffffffff8111156132f4576132f3613ff8565b5b6020830191508360018202830111156133105761330f614002565b5b9250929050565b60008135905061332681614270565b92915050565b60006020828403121561334257613341614011565b5b6000613350848285016131a6565b91505092915050565b600080604083850312156133705761336f614011565b5b600061337e858286016131a6565b925050602061338f858286016131a6565b9150509250929050565b6000806000606084860312156133b2576133b1614011565b5b60006133c0868287016131a6565b93505060206133d1868287016131a6565b92505060406133e286828701613317565b9150509250925092565b6000806000806080858703121561340657613405614011565b5b6000613414878288016131a6565b9450506020613425878288016131a6565b935050604061343687828801613317565b925050606085013567ffffffffffffffff8111156134575761345661400c565b5b61346387828801613293565b91505092959194509250565b6000806040838503121561348657613485614011565b5b6000613494858286016131a6565b92505060206134a58582860161323f565b9150509250929050565b600080604083850312156134c6576134c5614011565b5b60006134d4858286016131a6565b92505060206134e585828601613317565b9150509250929050565b6000806020838503121561350657613505614011565b5b600083013567ffffffffffffffff8111156135245761352361400c565b5b613530858286016131bb565b92509250509250929050565b60006020828403121561355257613551614011565b5b600061356084828501613254565b91505092915050565b60006020828403121561357f5761357e614011565b5b600061358d84828501613269565b91505092915050565b6000602082840312156135ac576135ab614011565b5b60006135ba8482850161327e565b91505092915050565b600080602083850312156135da576135d9614011565b5b600083013567ffffffffffffffff8111156135f8576135f761400c565b5b613604858286016132c1565b92509250509250929050565b60006020828403121561362657613625614011565b5b600061363484828501613317565b91505092915050565b6000806040838503121561365457613653614011565b5b600061366285828601613317565b925050602083013567ffffffffffffffff8111156136835761368261400c565b5b61368f85828601613211565b9150509250929050565b6136a281613d16565b82525050565b6136b96136b482613d16565b613eb8565b82525050565b6136c881613d28565b82525050565b6136d781613d34565b82525050565b60006136e882613bbe565b6136f28185613bd4565b9350613702818560208601613dd9565b61370b81614016565b840191505092915050565b61371f81613d94565b82525050565b600061373082613bc9565b61373a8185613be5565b935061374a818560208601613dd9565b61375381614016565b840191505092915050565b600061376982613bc9565b6137738185613bf6565b9350613783818560208601613dd9565b80840191505092915050565b600061379c602683613be5565b91506137a782614034565b604082019050919050565b60006137bf602483613be5565b91506137ca82614083565b604082019050919050565b60006137e2601683613be5565b91506137ed826140d2565b602082019050919050565b6000613805600c83613be5565b9150613810826140fb565b602082019050919050565b6000613828601883613be5565b915061383382614124565b602082019050919050565b600061384b602083613be5565b91506138568261414d565b602082019050919050565b600061386e602183613be5565b915061387982614176565b604082019050919050565b6000613891602283613be5565b915061389c826141c5565b604082019050919050565b6138b081613d8a565b82525050565b60006138c282846136a8565b60148201915081905092915050565b60006138dd828561375e565b91506138e9828461375e565b91508190509392505050565b600060208201905061390a6000830184613699565b92915050565b60006040820190506139256000830185613699565b6139326020830184613699565b9392505050565b600060808201905061394e6000830187613699565b61395b6020830186613699565b61396860408301856138a7565b818103606083015261397a81846136dd565b905095945050505050565b600060408201905061399a6000830185613699565b6139a760208301846138a7565b9392505050565b60006020820190506139c360008301846136bf565b92915050565b60006020820190506139de60008301846136ce565b92915050565b60006020820190506139f96000830184613716565b92915050565b60006020820190508181036000830152613a198184613725565b905092915050565b60006020820190508181036000830152613a3a8161378f565b9050919050565b60006020820190508181036000830152613a5a816137b2565b9050919050565b60006020820190508181036000830152613a7a816137d5565b9050919050565b60006020820190508181036000830152613a9a816137f8565b9050919050565b60006020820190508181036000830152613aba8161381b565b9050919050565b60006020820190508181036000830152613ada8161383e565b9050919050565b60006020820190508181036000830152613afa81613861565b9050919050565b60006020820190508181036000830152613b1a81613884565b9050919050565b6000602082019050613b3660008301846138a7565b92915050565b6000613b46613b57565b9050613b528282613e3e565b919050565b6000604051905090565b600067ffffffffffffffff821115613b7c57613b7b613fc9565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613ba857613ba7613fc9565b5b613bb182614016565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c0c82613d8a565b9150613c1783613d8a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c4c57613c4b613f0d565b5b828201905092915050565b6000613c6282613d8a565b9150613c6d83613d8a565b925082613c7d57613c7c613f3c565b5b828204905092915050565b6000613c9382613d8a565b9150613c9e83613d8a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cd757613cd6613f0d565b5b828202905092915050565b6000613ced82613d8a565b9150613cf883613d8a565b925082821015613d0b57613d0a613f0d565b5b828203905092915050565b6000613d2182613d6a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613d9f82613da6565b9050919050565b6000613db182613db8565b9050919050565b6000613dc382613d6a565b9050919050565b82818337600083830152505050565b60005b83811015613df7578082015181840152602081019050613ddc565b83811115613e06576000848401525b50505050565b60006002820490506001821680613e2457607f821691505b60208210811415613e3857613e37613f6b565b5b50919050565b613e4782614016565b810181811067ffffffffffffffff82111715613e6657613e65613fc9565b5b80604052505050565b6000613e7a82613d8a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ead57613eac613f0d565b5b600182019050919050565b6000613ec382613eca565b9050919050565b6000613ed582614027565b9050919050565b6000613ee782613d8a565b9150613ef283613d8a565b925082613f0257613f01613f3c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f73746f726520636c6f7365640000000000000000000000000000000000000000600082015250565b7f61646472657373206e6f7420696e2077686974656c6973740000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b61421d81613d16565b811461422857600080fd5b50565b61423481613d28565b811461423f57600080fd5b50565b61424b81613d34565b811461425657600080fd5b50565b61426281613d3e565b811461426d57600080fd5b50565b61427981613d8a565b811461428457600080fd5b5056fea2646970667358221220607fedfce5eba6a6d172458dc42966a53e81fc24a7cef871dbe3ac6f02d1d4d564736f6c63430008070033

Deployed Bytecode Sourcemap

57165:3957:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13937:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17052:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18556:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18118:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58565:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58242:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13177:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19421:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57318:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57377:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57921:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57721:89;;;;;;;;;;;;;:::i;:::-;;60203:111;;;;;;;;;;;;;:::i;:::-;;19662:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57534:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60533:139;;;;;;;;;;;;;:::i;:::-;;16860:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58137:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14306:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56033:103;;;;;;;;;;;;;:::i;:::-;;60016:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57288:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58033:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58664:440;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55385:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60680:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57822:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17221:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57215:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18832:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19918:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58361:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17396:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57633:80;;;;;;;;;;;;;:::i;:::-;;57253:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59116:349;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19190:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56291:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13937:305;14039:4;14091:25;14076:40;;;:11;:40;;;;:105;;;;14148:33;14133:48;;;:11;:48;;;;14076:105;:158;;;;14198:36;14222:11;14198:23;:36::i;:::-;14076:158;14056:178;;13937:305;;;:::o;17052:100::-;17106:13;17139:5;17132:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17052:100;:::o;18556:204::-;18624:7;18649:16;18657:7;18649;:16::i;:::-;18644:64;;18674:34;;;;;;;;;;;;;;18644:64;18728:15;:24;18744:7;18728:24;;;;;;;;;;;;;;;;;;;;;18721:31;;18556:204;;;:::o;18118:372::-;18191:13;18207:24;18223:7;18207:15;:24::i;:::-;18191:40;;18252:5;18246:11;;:2;:11;;;18242:48;;;18266:24;;;;;;;;;;;;;;18242:48;18323:5;18307:21;;:12;:10;:12::i;:::-;:21;;;18303:139;;18334:37;18351:5;18358:12;:10;:12::i;:::-;18334:16;:37::i;:::-;18330:112;;18395:35;;;;;;;;;;;;;;18330:112;18303:139;18454:28;18463:2;18467:7;18476:5;18454:8;:28::i;:::-;18180:310;18118:372;;:::o;58565:91::-;55271:13;:11;:13::i;:::-;58632:16:::1;58640:2;58644:3;58632:7;:16::i;:::-;58565:91:::0;;:::o;58242:107::-;55271:13;:11;:13::i;:::-;58331:9:::1;58309;;:32;;;;;;;;;;;;;;;;;;58242:107:::0;:::o;13177:312::-;13230:7;13455:15;:13;:15::i;:::-;13440:12;;13424:13;;:28;:46;13417:53;;13177:312;:::o;19421:170::-;19555:28;19565:4;19571:2;19575:7;19555:9;:28::i;:::-;19421:170;;;:::o;57318:50::-;;;;;;;;;;;;;;;;;:::o;57377:25::-;;;;:::o;57921:104::-;55271:13;:11;:13::i;:::-;58013:4:::1;;57998:12;:19;;;;;;;:::i;:::-;;57921:104:::0;;:::o;57721:89::-;55271:13;:11;:13::i;:::-;57791:11:::1;;;;;;;;;;;57790:12;57776:11;;:26;;;;;;;;;;;;;;;;;;57721:89::o:0;60203:111::-;55271:13;:11;:13::i;:::-;60261:12:::1;:10;:12::i;:::-;60253:30;;:53;60284:21;60253:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;60203:111::o:0;19662:185::-;19800:39;19817:4;19823:2;19827:7;19800:39;;;;;;;;;;;;:16;:39::i;:::-;19662:185;;;:::o;57534:26::-;;;;;;;;;;;;;:::o;60533:139::-;60576:9;;;;;;;;;;;:22;;;60599:10;60619:1;60576:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60633:9;;;;;;;;;;;:19;;;60653:10;60633:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60533:139::o;16860:125::-;16924:7;16951:21;16964:7;16951:12;:21::i;:::-;:26;;;16944:33;;16860:125;;;:::o;58137:97::-;55271:13;:11;:13::i;:::-;58217:9:::1;58205;:21;;;;58137:97:::0;:::o;14306:206::-;14370:7;14411:1;14394:19;;:5;:19;;;14390:60;;;14422:28;;;;;;;;;;;;;;14390:60;14476:12;:19;14489:5;14476:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;14468:36;;14461:43;;14306:206;;;:::o;56033:103::-;55271:13;:11;:13::i;:::-;56098:30:::1;56125:1;56098:18;:30::i;:::-;56033:103::o:0;60016:175::-;55271:13;:11;:13::i;:::-;60095:9:::1;60090:94;60114:6;;:13;;60110:1;:17;60090:94;;;60149:23;60159:6;;60166:1;60159:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;60170:1;60149:9;:23::i;:::-;60129:3;;;;;:::i;:::-;;;;60090:94;;;;60016:175:::0;;:::o;57288:21::-;;;;:::o;58033:92::-;55271:13;:11;:13::i;:::-;58113:4:::1;58100:10;:17;;;;58033:92:::0;:::o;58664:440::-;58750:11;;;;;;;;;;;58742:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;58848:5;;58841:3;58811:15;:27;58827:10;58811:27;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;:42;;58789:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;59012:3;58969:15;:27;58985:10;58969:27;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;58926:15;:27;58942:10;58926:27;;;;;;;;;;;;;;;:89;;;;59034:13;59041:5;59034:6;:13::i;:::-;59026:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;59087:9;59092:3;59087:4;:9::i;:::-;58664:440;;:::o;55385:87::-;55431:7;55458:6;;;;;;;;;;;55451:13;;55385:87;:::o;60680:102::-;60738:9;;;;;;;;;;;:15;;;60754:10;60766:7;60738:36;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60680:102;:::o;57822:87::-;55271:13;:11;:13::i;:::-;57893:8:::1;57885:5;:16;;;;57822:87:::0;:::o;17221:104::-;17277:13;17310:7;17303:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17221:104;:::o;57215:31::-;;;;:::o;18832:287::-;18943:12;:10;:12::i;:::-;18931:24;;:8;:24;;;18927:54;;;18964:17;;;;;;;;;;;;;;18927:54;19039:8;18994:18;:32;19013:12;:10;:12::i;:::-;18994:32;;;;;;;;;;;;;;;:42;19027:8;18994:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;19092:8;19063:48;;19078:12;:10;:12::i;:::-;19063:48;;;19102:8;19063:48;;;;;;:::i;:::-;;;;;;;;18832:287;;:::o;19918:370::-;20085:28;20095:4;20101:2;20105:7;20085:9;:28::i;:::-;20128:15;:2;:13;;;:15::i;:::-;20124:157;;;20149:56;20180:4;20186:2;20190:7;20199:5;20149:30;:56::i;:::-;20145:136;;20229:40;;;;;;;;;;;;;;20145:136;20124:157;19918:370;;;;:::o;58361:83::-;55271:13;:11;:13::i;:::-;58430:6:::1;58422:5;:14;;;;58361:83:::0;:::o;17396:318::-;17469:13;17500:16;17508:7;17500;:16::i;:::-;17495:59;;17525:29;;;;;;;;;;;;;;17495:59;17567:21;17591:10;:8;:10::i;:::-;17567:34;;17644:1;17625:7;17619:21;:26;;:87;;;;;;;;;;;;;;;;;17672:7;17681:18;:7;:16;:18::i;:::-;17655:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;17619:87;17612:94;;;17396:318;;;:::o;57633:80::-;55271:13;:11;:13::i;:::-;57697:8:::1;;;;;;;;;;;57696:9;57685:8;;:20;;;;;;;;;;;;;;;;;;57633:80::o:0;57253:28::-;;;;:::o;59116:349::-;59175:8;;;;;;;;;;;59167:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;59270:5;;59263:3;59233:15;:27;59249:10;59233:27;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;:42;;59211:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;59434:3;59391:15;:27;59407:10;59391:27;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;59348:15;:27;59364:10;59348:27;;;;;;;;;;;;;;;:89;;;;59448:9;59453:3;59448:4;:9::i;:::-;59116:349;:::o;19190:164::-;19287:4;19311:18;:25;19330:5;19311:25;;;;;;;;;;;;;;;:35;19337:8;19311:35;;;;;;;;;;;;;;;;;;;;;;;;;19304:42;;19190:164;;;;:::o;56291:201::-;55271:13;:11;:13::i;:::-;56400:1:::1;56380:22;;:8;:22;;;;56372:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;56456:28;56475:8;56456:18;:28::i;:::-;56291:201:::0;:::o;10978:157::-;11063:4;11102:25;11087:40;;;:11;:40;;;;11080:47;;10978:157;;;:::o;20543:174::-;20600:4;20643:7;20624:15;:13;:15::i;:::-;:26;;:53;;;;;20664:13;;20654:7;:23;20624:53;:85;;;;;20682:11;:20;20694:7;20682:20;;;;;;;;;;;:27;;;;;;;;;;;;20681:28;20624:85;20617:92;;20543:174;;;:::o;9966:98::-;10019:7;10046:10;10039:17;;9966:98;:::o;29765:196::-;29907:2;29880:15;:24;29896:7;29880:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29945:7;29941:2;29925:28;;29934:5;29925:28;;;;;;;;;;;;29765:196;;;:::o;55550:132::-;55625:12;:10;:12::i;:::-;55614:23;;:7;:5;:7::i;:::-;:23;;;55606:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55550:132::o;59838:170::-;59928:9;;59911:13;:11;:13::i;:::-;59905:3;:19;;;;:::i;:::-;:32;;59897:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;59986:14;59992:2;59996:3;59986:5;:14::i;:::-;59838:170;;:::o;12951:92::-;13007:7;12951:92;:::o;24713:2130::-;24828:35;24866:21;24879:7;24866:12;:21::i;:::-;24828:59;;24926:4;24904:26;;:13;:18;;;:26;;;24900:67;;24939:28;;;;;;;;;;;;;;24900:67;24980:22;25022:4;25006:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;25043:36;25060:4;25066:12;:10;:12::i;:::-;25043:16;:36::i;:::-;25006:73;:126;;;;25120:12;:10;:12::i;:::-;25096:36;;:20;25108:7;25096:11;:20::i;:::-;:36;;;25006:126;24980:153;;25151:17;25146:66;;25177:35;;;;;;;;;;;;;;25146:66;25241:1;25227:16;;:2;:16;;;25223:52;;;25252:23;;;;;;;;;;;;;;25223:52;25288:43;25310:4;25316:2;25320:7;25329:1;25288:21;:43::i;:::-;25396:35;25413:1;25417:7;25426:4;25396:8;:35::i;:::-;25757:1;25727:12;:18;25740:4;25727:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25801:1;25773:12;:16;25786:2;25773:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25819:31;25853:11;:20;25865:7;25853:20;;;;;;;;;;;25819:54;;25904:2;25888:8;:13;;;:18;;;;;;;;;;;;;;;;;;25954:15;25921:8;:23;;;:49;;;;;;;;;;;;;;;;;;26222:19;26254:1;26244:7;:11;26222:33;;26270:31;26304:11;:24;26316:11;26304:24;;;;;;;;;;;26270:58;;26372:1;26347:27;;:8;:13;;;;;;;;;;;;:27;;;26343:384;;;26557:13;;26542:11;:28;26538:174;;26611:4;26595:8;:13;;;:20;;;;;;;;;;;;;;;;;;26664:13;:28;;;26638:8;:23;;;:54;;;;;;;;;;;;;;;;;;26538:174;26343:384;25702:1036;;;26774:7;26770:2;26755:27;;26764:4;26755:27;;;;;;;;;;;;26793:42;26814:4;26820:2;26824:7;26833:1;26793:20;:42::i;:::-;24817:2026;;24713:2130;;;:::o;15687:1111::-;15749:21;;:::i;:::-;15783:12;15798:7;15783:22;;15866:4;15847:15;:13;:15::i;:::-;:23;15843:888;;15883:13;;15876:4;:20;15872:859;;;15917:31;15951:11;:17;15963:4;15951:17;;;;;;;;;;;15917:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15992:9;:16;;;15987:729;;16063:1;16037:28;;:9;:14;;;:28;;;16033:101;;16101:9;16094:16;;;;;;16033:101;16436:261;16443:4;16436:261;;;16476:6;;;;;;;;16521:11;:17;16533:4;16521:17;;;;;;;;;;;16509:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16595:1;16569:28;;:9;:14;;;:28;;;16565:109;;16637:9;16630:16;;;;;;16565:109;16436:261;;;15987:729;15898:833;15872:859;15843:888;16759:31;;;;;;;;;;;;;;15687:1111;;;;:::o;56652:191::-;56726:16;56745:6;;;;;;;;;;;56726:25;;56771:8;56762:6;;:17;;;;;;;;;;;;;;;;;;56826:8;56795:40;;56816:8;56795:40;;;;;;;;;;;;56715:128;56652:191;:::o;20801:104::-;20870:27;20880:2;20884:8;20870:27;;;;;;;;;;;;:9;:27::i;:::-;20801:104;;:::o;60322:203::-;60385:4;60402:12;60444:10;60427:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;60417:39;;;;;;60402:54;;60474:43;60493:5;60500:10;;60512:4;60474:18;:43::i;:::-;60467:50;;;60322:203;;;:::o;59473:357::-;59532:5;;59525:3;:12;;:23;;;;;59547:1;59541:3;:7;59525:23;59517:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;59600:9;59639:1;59612:23;59622:12;:10;:12::i;:::-;59612:9;:23::i;:::-;:28;:36;;59647:1;59612:36;;;59643:1;59612:36;59600:48;;;;59695:4;59689:3;:10;;;;:::i;:::-;59680:5;;:20;;;;:::i;:::-;59667:9;:33;;59659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59738:26;59746:12;:10;:12::i;:::-;59760:3;59738:7;:26::i;:::-;59775:9;;;;;;;;;;;:28;;;59804:12;:10;:12::i;:::-;59818:3;59775:47;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59506:324;59473:357;:::o;37354:326::-;37414:4;37671:1;37649:7;:19;;;:23;37642:30;;37354:326;;;:::o;30453:667::-;30616:4;30653:2;30637:36;;;30674:12;:10;:12::i;:::-;30688:4;30694:7;30703:5;30637:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30633:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30888:1;30871:6;:13;:18;30867:235;;;30917:40;;;;;;;;;;;;;;30867:235;31060:6;31054:13;31045:6;31041:2;31037:15;31030:38;30633:480;30766:45;;;30756:55;;;:6;:55;;;;30749:62;;;30453:667;;;;;;:::o;58452:105::-;58504:13;58537:12;58530:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58452:105;:::o;34112:723::-;34168:13;34398:1;34389:5;:10;34385:53;;;34416:10;;;;;;;;;;;;;;;;;;;;;34385:53;34448:12;34463:5;34448:20;;34479:14;34504:78;34519:1;34511:4;:9;34504:78;;34537:8;;;;;:::i;:::-;;;;34568:2;34560:10;;;;;:::i;:::-;;;34504:78;;;34592:19;34624:6;34614:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34592:39;;34642:154;34658:1;34649:5;:10;34642:154;;34686:1;34676:11;;;;;:::i;:::-;;;34753:2;34745:5;:10;;;;:::i;:::-;34732:2;:24;;;;:::i;:::-;34719:39;;34702:6;34709;34702:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;34782:2;34773:11;;;;;:::i;:::-;;;34642:154;;;34820:6;34806:21;;;;;34112:723;;;;:::o;23286:1173::-;23351:20;23374:13;;23351:36;;23416:1;23402:16;;:2;:16;;;23398:48;;;23427:19;;;;;;;;;;;;;;23398:48;23473:1;23461:8;:13;23457:44;;;23483:18;;;;;;;;;;;;;;23457:44;23514:61;23544:1;23548:2;23552:12;23566:8;23514:21;:61::i;:::-;23887:8;23852:12;:16;23865:2;23852:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23951:8;23911:12;:16;23924:2;23911:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24010:2;23977:11;:25;23989:12;23977:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;24077:15;24027:11;:25;24039:12;24027:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;24110:20;24133:12;24110:35;;24160:11;24189:8;24174:12;:23;24160:37;;24214:111;24266:14;;;;;;24262:2;24241:40;;24258:1;24241:40;;;;;;;;;;;;24320:3;24305:12;:18;24214:111;;24357:12;24341:13;:28;;;;23827:554;;24391:60;24420:1;24424:2;24428:12;24442:8;24391:20;:60::i;:::-;23340:1119;23286:1173;;:::o;60790:329::-;60962:56;60990:4;60996:2;61000:7;61009:8;60962:27;:56::i;:::-;61049:1;61033:18;;:4;:18;;;61029:83;;61068:9;;;;;;;;;;;:22;;;61091:4;61097:2;61068:32;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61029:83;60790:329;;;;:::o;32586:158::-;;;;;:::o;21278:1749::-;21401:20;21424:13;;21401:36;;21466:1;21452:16;;:2;:16;;;21448:48;;;21477:19;;;;;;;;;;;;;;21448:48;21523:1;21511:8;:13;21507:44;;;21533:18;;;;;;;;;;;;;;21507:44;21564:61;21594:1;21598:2;21602:12;21616:8;21564:21;:61::i;:::-;21937:8;21902:12;:16;21915:2;21902:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22001:8;21961:12;:16;21974:2;21961:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22060:2;22027:11;:25;22039:12;22027:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;22127:15;22077:11;:25;22089:12;22077:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;22160:20;22183:12;22160:35;;22210:11;22239:8;22224:12;:23;22210:37;;22268:15;:2;:13;;;:15::i;:::-;22264:631;;;22304:313;22360:12;22356:2;22335:38;;22352:1;22335:38;;;;;;;;;;;;22401:69;22440:1;22444:2;22448:14;;;;;;22464:5;22401:30;:69::i;:::-;22396:174;;22506:40;;;;;;;;;;;;;;22396:174;22612:3;22597:12;:18;22304:313;;22698:12;22681:13;;:29;22677:43;;22712:8;;;22677:43;22264:631;;;22761:119;22817:14;;;;;;22813:2;22792:40;;22809:1;22792:40;;;;;;;;;;;;22875:3;22860:12;:18;22761:119;;22264:631;22925:12;22909:13;:28;;;;21877:1072;;22959:60;22988:1;22992:2;22996:12;23010:8;22959:20;:60::i;:::-;21390:1637;21278:1749;;;:::o;46697:190::-;46822:4;46875;46846:25;46859:5;46866:4;46846:12;:25::i;:::-;:33;46839:40;;46697:190;;;;;:::o;31768:159::-;;;;;:::o;47564:296::-;47647:7;47667:20;47690:4;47667:27;;47710:9;47705:118;47729:5;:12;47725:1;:16;47705:118;;;47778:33;47788:12;47802:5;47808:1;47802:8;;;;;;;;:::i;:::-;;;;;;;;47778:9;:33::i;:::-;47763:48;;47743:3;;;;;:::i;:::-;;;;47705:118;;;;47840:12;47833:19;;;47564:296;;;;:::o;53771:149::-;53834:7;53865:1;53861;:5;:51;;53892:20;53907:1;53910;53892:14;:20::i;:::-;53861:51;;;53869:20;53884:1;53887;53869:14;:20::i;:::-;53861:51;53854:58;;53771:149;;;;:::o;53928:268::-;53996:13;54103:1;54097:4;54090:15;54132:1;54126:4;54119:15;54173:4;54167;54157:21;54148:30;;53928:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:139::-;1214:5;1252:6;1239:20;1230:29;;1268:33;1295:5;1268:33;:::i;:::-;1168:139;;;;:::o;1330:568::-;1403:8;1413:6;1463:3;1456:4;1448:6;1444:17;1440:27;1430:122;;1471:79;;:::i;:::-;1430:122;1584:6;1571:20;1561:30;;1614:18;1606:6;1603:30;1600:117;;;1636:79;;:::i;:::-;1600:117;1750:4;1742:6;1738:17;1726:29;;1804:3;1796:4;1788:6;1784:17;1774:8;1770:32;1767:41;1764:128;;;1811:79;;:::i;:::-;1764:128;1330:568;;;;;:::o;1921:370::-;1992:5;2041:3;2034:4;2026:6;2022:17;2018:27;2008:122;;2049:79;;:::i;:::-;2008:122;2166:6;2153:20;2191:94;2281:3;2273:6;2266:4;2258:6;2254:17;2191:94;:::i;:::-;2182:103;;1998:293;1921:370;;;;:::o;2297:133::-;2340:5;2378:6;2365:20;2356:29;;2394:30;2418:5;2394:30;:::i;:::-;2297:133;;;;:::o;2436:139::-;2482:5;2520:6;2507:20;2498:29;;2536:33;2563:5;2536:33;:::i;:::-;2436:139;;;;:::o;2581:137::-;2626:5;2664:6;2651:20;2642:29;;2680:32;2706:5;2680:32;:::i;:::-;2581:137;;;;:::o;2724:141::-;2780:5;2811:6;2805:13;2796:22;;2827:32;2853:5;2827:32;:::i;:::-;2724:141;;;;:::o;2884:338::-;2939:5;2988:3;2981:4;2973:6;2969:17;2965:27;2955:122;;2996:79;;:::i;:::-;2955:122;3113:6;3100:20;3138:78;3212:3;3204:6;3197:4;3189:6;3185:17;3138:78;:::i;:::-;3129:87;;2945:277;2884:338;;;;:::o;3242:553::-;3300:8;3310:6;3360:3;3353:4;3345:6;3341:17;3337:27;3327:122;;3368:79;;:::i;:::-;3327:122;3481:6;3468:20;3458:30;;3511:18;3503:6;3500:30;3497:117;;;3533:79;;:::i;:::-;3497:117;3647:4;3639:6;3635:17;3623:29;;3701:3;3693:4;3685:6;3681:17;3671:8;3667:32;3664:41;3661:128;;;3708:79;;:::i;:::-;3661:128;3242:553;;;;;:::o;3801:139::-;3847:5;3885:6;3872:20;3863:29;;3901:33;3928:5;3901:33;:::i;:::-;3801:139;;;;:::o;3946:329::-;4005:6;4054:2;4042:9;4033:7;4029:23;4025:32;4022:119;;;4060:79;;:::i;:::-;4022:119;4180:1;4205:53;4250:7;4241:6;4230:9;4226:22;4205:53;:::i;:::-;4195:63;;4151:117;3946:329;;;;:::o;4281:474::-;4349:6;4357;4406:2;4394:9;4385:7;4381:23;4377:32;4374:119;;;4412:79;;:::i;:::-;4374:119;4532:1;4557:53;4602:7;4593:6;4582:9;4578:22;4557:53;:::i;:::-;4547:63;;4503:117;4659:2;4685:53;4730:7;4721:6;4710:9;4706:22;4685:53;:::i;:::-;4675:63;;4630:118;4281:474;;;;;:::o;4761:619::-;4838:6;4846;4854;4903:2;4891:9;4882:7;4878:23;4874:32;4871:119;;;4909:79;;:::i;:::-;4871:119;5029:1;5054:53;5099:7;5090:6;5079:9;5075:22;5054:53;:::i;:::-;5044:63;;5000:117;5156:2;5182:53;5227:7;5218:6;5207:9;5203:22;5182:53;:::i;:::-;5172:63;;5127:118;5284:2;5310:53;5355:7;5346:6;5335:9;5331:22;5310:53;:::i;:::-;5300:63;;5255:118;4761:619;;;;;:::o;5386:943::-;5481:6;5489;5497;5505;5554:3;5542:9;5533:7;5529:23;5525:33;5522:120;;;5561:79;;:::i;:::-;5522:120;5681:1;5706:53;5751:7;5742:6;5731:9;5727:22;5706:53;:::i;:::-;5696:63;;5652:117;5808:2;5834:53;5879:7;5870:6;5859:9;5855:22;5834:53;:::i;:::-;5824:63;;5779:118;5936:2;5962:53;6007:7;5998:6;5987:9;5983:22;5962:53;:::i;:::-;5952:63;;5907:118;6092:2;6081:9;6077:18;6064:32;6123:18;6115:6;6112:30;6109:117;;;6145:79;;:::i;:::-;6109:117;6250:62;6304:7;6295:6;6284:9;6280:22;6250:62;:::i;:::-;6240:72;;6035:287;5386:943;;;;;;;:::o;6335:468::-;6400:6;6408;6457:2;6445:9;6436:7;6432:23;6428:32;6425:119;;;6463:79;;:::i;:::-;6425:119;6583:1;6608:53;6653:7;6644:6;6633:9;6629:22;6608:53;:::i;:::-;6598:63;;6554:117;6710:2;6736:50;6778:7;6769:6;6758:9;6754:22;6736:50;:::i;:::-;6726:60;;6681:115;6335:468;;;;;:::o;6809:474::-;6877:6;6885;6934:2;6922:9;6913:7;6909:23;6905:32;6902:119;;;6940:79;;:::i;:::-;6902:119;7060:1;7085:53;7130:7;7121:6;7110:9;7106:22;7085:53;:::i;:::-;7075:63;;7031:117;7187:2;7213:53;7258:7;7249:6;7238:9;7234:22;7213:53;:::i;:::-;7203:63;;7158:118;6809:474;;;;;:::o;7289:559::-;7375:6;7383;7432:2;7420:9;7411:7;7407:23;7403:32;7400:119;;;7438:79;;:::i;:::-;7400:119;7586:1;7575:9;7571:17;7558:31;7616:18;7608:6;7605:30;7602:117;;;7638:79;;:::i;:::-;7602:117;7751:80;7823:7;7814:6;7803:9;7799:22;7751:80;:::i;:::-;7733:98;;;;7529:312;7289:559;;;;;:::o;7854:329::-;7913:6;7962:2;7950:9;7941:7;7937:23;7933:32;7930:119;;;7968:79;;:::i;:::-;7930:119;8088:1;8113:53;8158:7;8149:6;8138:9;8134:22;8113:53;:::i;:::-;8103:63;;8059:117;7854:329;;;;:::o;8189:327::-;8247:6;8296:2;8284:9;8275:7;8271:23;8267:32;8264:119;;;8302:79;;:::i;:::-;8264:119;8422:1;8447:52;8491:7;8482:6;8471:9;8467:22;8447:52;:::i;:::-;8437:62;;8393:116;8189:327;;;;:::o;8522:349::-;8591:6;8640:2;8628:9;8619:7;8615:23;8611:32;8608:119;;;8646:79;;:::i;:::-;8608:119;8766:1;8791:63;8846:7;8837:6;8826:9;8822:22;8791:63;:::i;:::-;8781:73;;8737:127;8522:349;;;;:::o;8877:529::-;8948:6;8956;9005:2;8993:9;8984:7;8980:23;8976:32;8973:119;;;9011:79;;:::i;:::-;8973:119;9159:1;9148:9;9144:17;9131:31;9189:18;9181:6;9178:30;9175:117;;;9211:79;;:::i;:::-;9175:117;9324:65;9381:7;9372:6;9361:9;9357:22;9324:65;:::i;:::-;9306:83;;;;9102:297;8877:529;;;;;:::o;9412:329::-;9471:6;9520:2;9508:9;9499:7;9495:23;9491:32;9488:119;;;9526:79;;:::i;:::-;9488:119;9646:1;9671:53;9716:7;9707:6;9696:9;9692:22;9671:53;:::i;:::-;9661:63;;9617:117;9412:329;;;;:::o;9747:684::-;9840:6;9848;9897:2;9885:9;9876:7;9872:23;9868:32;9865:119;;;9903:79;;:::i;:::-;9865:119;10023:1;10048:53;10093:7;10084:6;10073:9;10069:22;10048:53;:::i;:::-;10038:63;;9994:117;10178:2;10167:9;10163:18;10150:32;10209:18;10201:6;10198:30;10195:117;;;10231:79;;:::i;:::-;10195:117;10336:78;10406:7;10397:6;10386:9;10382:22;10336:78;:::i;:::-;10326:88;;10121:303;9747:684;;;;;:::o;10437:118::-;10524:24;10542:5;10524:24;:::i;:::-;10519:3;10512:37;10437:118;;:::o;10561:157::-;10666:45;10686:24;10704:5;10686:24;:::i;:::-;10666:45;:::i;:::-;10661:3;10654:58;10561:157;;:::o;10724:109::-;10805:21;10820:5;10805:21;:::i;:::-;10800:3;10793:34;10724:109;;:::o;10839:118::-;10926:24;10944:5;10926:24;:::i;:::-;10921:3;10914:37;10839:118;;:::o;10963:360::-;11049:3;11077:38;11109:5;11077:38;:::i;:::-;11131:70;11194:6;11189:3;11131:70;:::i;:::-;11124:77;;11210:52;11255:6;11250:3;11243:4;11236:5;11232:16;11210:52;:::i;:::-;11287:29;11309:6;11287:29;:::i;:::-;11282:3;11278:39;11271:46;;11053:270;10963:360;;;;:::o;11329:167::-;11434:55;11483:5;11434:55;:::i;:::-;11429:3;11422:68;11329:167;;:::o;11502:364::-;11590:3;11618:39;11651:5;11618:39;:::i;:::-;11673:71;11737:6;11732:3;11673:71;:::i;:::-;11666:78;;11753:52;11798:6;11793:3;11786:4;11779:5;11775:16;11753:52;:::i;:::-;11830:29;11852:6;11830:29;:::i;:::-;11825:3;11821:39;11814:46;;11594:272;11502:364;;;;:::o;11872:377::-;11978:3;12006:39;12039:5;12006:39;:::i;:::-;12061:89;12143:6;12138:3;12061:89;:::i;:::-;12054:96;;12159:52;12204:6;12199:3;12192:4;12185:5;12181:16;12159:52;:::i;:::-;12236:6;12231:3;12227:16;12220:23;;11982:267;11872:377;;;;:::o;12255:366::-;12397:3;12418:67;12482:2;12477:3;12418:67;:::i;:::-;12411:74;;12494:93;12583:3;12494:93;:::i;:::-;12612:2;12607:3;12603:12;12596:19;;12255:366;;;:::o;12627:::-;12769:3;12790:67;12854:2;12849:3;12790:67;:::i;:::-;12783:74;;12866:93;12955:3;12866:93;:::i;:::-;12984:2;12979:3;12975:12;12968:19;;12627:366;;;:::o;12999:::-;13141:3;13162:67;13226:2;13221:3;13162:67;:::i;:::-;13155:74;;13238:93;13327:3;13238:93;:::i;:::-;13356:2;13351:3;13347:12;13340:19;;12999:366;;;:::o;13371:::-;13513:3;13534:67;13598:2;13593:3;13534:67;:::i;:::-;13527:74;;13610:93;13699:3;13610:93;:::i;:::-;13728:2;13723:3;13719:12;13712:19;;13371:366;;;:::o;13743:::-;13885:3;13906:67;13970:2;13965:3;13906:67;:::i;:::-;13899:74;;13982:93;14071:3;13982:93;:::i;:::-;14100:2;14095:3;14091:12;14084:19;;13743:366;;;:::o;14115:::-;14257:3;14278:67;14342:2;14337:3;14278:67;:::i;:::-;14271:74;;14354:93;14443:3;14354:93;:::i;:::-;14472:2;14467:3;14463:12;14456:19;;14115:366;;;:::o;14487:::-;14629:3;14650:67;14714:2;14709:3;14650:67;:::i;:::-;14643:74;;14726:93;14815:3;14726:93;:::i;:::-;14844:2;14839:3;14835:12;14828:19;;14487:366;;;:::o;14859:::-;15001:3;15022:67;15086:2;15081:3;15022:67;:::i;:::-;15015:74;;15098:93;15187:3;15098:93;:::i;:::-;15216:2;15211:3;15207:12;15200:19;;14859:366;;;:::o;15231:118::-;15318:24;15336:5;15318:24;:::i;:::-;15313:3;15306:37;15231:118;;:::o;15355:256::-;15467:3;15482:75;15553:3;15544:6;15482:75;:::i;:::-;15582:2;15577:3;15573:12;15566:19;;15602:3;15595:10;;15355:256;;;;:::o;15617:435::-;15797:3;15819:95;15910:3;15901:6;15819:95;:::i;:::-;15812:102;;15931:95;16022:3;16013:6;15931:95;:::i;:::-;15924:102;;16043:3;16036:10;;15617:435;;;;;:::o;16058:222::-;16151:4;16189:2;16178:9;16174:18;16166:26;;16202:71;16270:1;16259:9;16255:17;16246:6;16202:71;:::i;:::-;16058:222;;;;:::o;16286:332::-;16407:4;16445:2;16434:9;16430:18;16422:26;;16458:71;16526:1;16515:9;16511:17;16502:6;16458:71;:::i;:::-;16539:72;16607:2;16596:9;16592:18;16583:6;16539:72;:::i;:::-;16286:332;;;;;:::o;16624:640::-;16819:4;16857:3;16846:9;16842:19;16834:27;;16871:71;16939:1;16928:9;16924:17;16915:6;16871:71;:::i;:::-;16952:72;17020:2;17009:9;17005:18;16996:6;16952:72;:::i;:::-;17034;17102:2;17091:9;17087:18;17078:6;17034:72;:::i;:::-;17153:9;17147:4;17143:20;17138:2;17127:9;17123:18;17116:48;17181:76;17252:4;17243:6;17181:76;:::i;:::-;17173:84;;16624:640;;;;;;;:::o;17270:332::-;17391:4;17429:2;17418:9;17414:18;17406:26;;17442:71;17510:1;17499:9;17495:17;17486:6;17442:71;:::i;:::-;17523:72;17591:2;17580:9;17576:18;17567:6;17523:72;:::i;:::-;17270:332;;;;;:::o;17608:210::-;17695:4;17733:2;17722:9;17718:18;17710:26;;17746:65;17808:1;17797:9;17793:17;17784:6;17746:65;:::i;:::-;17608:210;;;;:::o;17824:222::-;17917:4;17955:2;17944:9;17940:18;17932:26;;17968:71;18036:1;18025:9;18021:17;18012:6;17968:71;:::i;:::-;17824:222;;;;:::o;18052:258::-;18163:4;18201:2;18190:9;18186:18;18178:26;;18214:89;18300:1;18289:9;18285:17;18276:6;18214:89;:::i;:::-;18052:258;;;;:::o;18316:313::-;18429:4;18467:2;18456:9;18452:18;18444:26;;18516:9;18510:4;18506:20;18502:1;18491:9;18487:17;18480:47;18544:78;18617:4;18608:6;18544:78;:::i;:::-;18536:86;;18316:313;;;;:::o;18635:419::-;18801:4;18839:2;18828:9;18824:18;18816:26;;18888:9;18882:4;18878:20;18874:1;18863:9;18859:17;18852:47;18916:131;19042:4;18916:131;:::i;:::-;18908:139;;18635:419;;;:::o;19060:::-;19226:4;19264:2;19253:9;19249:18;19241:26;;19313:9;19307:4;19303:20;19299:1;19288:9;19284:17;19277:47;19341:131;19467:4;19341:131;:::i;:::-;19333:139;;19060:419;;;:::o;19485:::-;19651:4;19689:2;19678:9;19674:18;19666:26;;19738:9;19732:4;19728:20;19724:1;19713:9;19709:17;19702:47;19766:131;19892:4;19766:131;:::i;:::-;19758:139;;19485:419;;;:::o;19910:::-;20076:4;20114:2;20103:9;20099:18;20091:26;;20163:9;20157:4;20153:20;20149:1;20138:9;20134:17;20127:47;20191:131;20317:4;20191:131;:::i;:::-;20183:139;;19910:419;;;:::o;20335:::-;20501:4;20539:2;20528:9;20524:18;20516:26;;20588:9;20582:4;20578:20;20574:1;20563:9;20559:17;20552:47;20616:131;20742:4;20616:131;:::i;:::-;20608:139;;20335:419;;;:::o;20760:::-;20926:4;20964:2;20953:9;20949:18;20941:26;;21013:9;21007:4;21003:20;20999:1;20988:9;20984:17;20977:47;21041:131;21167:4;21041:131;:::i;:::-;21033:139;;20760:419;;;:::o;21185:::-;21351:4;21389:2;21378:9;21374:18;21366:26;;21438:9;21432:4;21428:20;21424:1;21413:9;21409:17;21402:47;21466:131;21592:4;21466:131;:::i;:::-;21458:139;;21185:419;;;:::o;21610:::-;21776:4;21814:2;21803:9;21799:18;21791:26;;21863:9;21857:4;21853:20;21849:1;21838:9;21834:17;21827:47;21891:131;22017:4;21891:131;:::i;:::-;21883:139;;21610:419;;;:::o;22035:222::-;22128:4;22166:2;22155:9;22151:18;22143:26;;22179:71;22247:1;22236:9;22232:17;22223:6;22179:71;:::i;:::-;22035:222;;;;:::o;22263:129::-;22297:6;22324:20;;:::i;:::-;22314:30;;22353:33;22381:4;22373:6;22353:33;:::i;:::-;22263:129;;;:::o;22398:75::-;22431:6;22464:2;22458:9;22448:19;;22398:75;:::o;22479:311::-;22556:4;22646:18;22638:6;22635:30;22632:56;;;22668:18;;:::i;:::-;22632:56;22718:4;22710:6;22706:17;22698:25;;22778:4;22772;22768:15;22760:23;;22479:311;;;:::o;22796:307::-;22857:4;22947:18;22939:6;22936:30;22933:56;;;22969:18;;:::i;:::-;22933:56;23007:29;23029:6;23007:29;:::i;:::-;22999:37;;23091:4;23085;23081:15;23073:23;;22796:307;;;:::o;23109:98::-;23160:6;23194:5;23188:12;23178:22;;23109:98;;;:::o;23213:99::-;23265:6;23299:5;23293:12;23283:22;;23213:99;;;:::o;23318:168::-;23401:11;23435:6;23430:3;23423:19;23475:4;23470:3;23466:14;23451:29;;23318:168;;;;:::o;23492:169::-;23576:11;23610:6;23605:3;23598:19;23650:4;23645:3;23641:14;23626:29;;23492:169;;;;:::o;23667:148::-;23769:11;23806:3;23791:18;;23667:148;;;;:::o;23821:305::-;23861:3;23880:20;23898:1;23880:20;:::i;:::-;23875:25;;23914:20;23932:1;23914:20;:::i;:::-;23909:25;;24068:1;24000:66;23996:74;23993:1;23990:81;23987:107;;;24074:18;;:::i;:::-;23987:107;24118:1;24115;24111:9;24104:16;;23821:305;;;;:::o;24132:185::-;24172:1;24189:20;24207:1;24189:20;:::i;:::-;24184:25;;24223:20;24241:1;24223:20;:::i;:::-;24218:25;;24262:1;24252:35;;24267:18;;:::i;:::-;24252:35;24309:1;24306;24302:9;24297:14;;24132:185;;;;:::o;24323:348::-;24363:7;24386:20;24404:1;24386:20;:::i;:::-;24381:25;;24420:20;24438:1;24420:20;:::i;:::-;24415:25;;24608:1;24540:66;24536:74;24533:1;24530:81;24525:1;24518:9;24511:17;24507:105;24504:131;;;24615:18;;:::i;:::-;24504:131;24663:1;24660;24656:9;24645:20;;24323:348;;;;:::o;24677:191::-;24717:4;24737:20;24755:1;24737:20;:::i;:::-;24732:25;;24771:20;24789:1;24771:20;:::i;:::-;24766:25;;24810:1;24807;24804:8;24801:34;;;24815:18;;:::i;:::-;24801:34;24860:1;24857;24853:9;24845:17;;24677:191;;;;:::o;24874:96::-;24911:7;24940:24;24958:5;24940:24;:::i;:::-;24929:35;;24874:96;;;:::o;24976:90::-;25010:7;25053:5;25046:13;25039:21;25028:32;;24976:90;;;:::o;25072:77::-;25109:7;25138:5;25127:16;;25072:77;;;:::o;25155:149::-;25191:7;25231:66;25224:5;25220:78;25209:89;;25155:149;;;:::o;25310:126::-;25347:7;25387:42;25380:5;25376:54;25365:65;;25310:126;;;:::o;25442:77::-;25479:7;25508:5;25497:16;;25442:77;;;:::o;25525:144::-;25593:9;25626:37;25657:5;25626:37;:::i;:::-;25613:50;;25525:144;;;:::o;25675:126::-;25725:9;25758:37;25789:5;25758:37;:::i;:::-;25745:50;;25675:126;;;:::o;25807:113::-;25857:9;25890:24;25908:5;25890:24;:::i;:::-;25877:37;;25807:113;;;:::o;25926:154::-;26010:6;26005:3;26000;25987:30;26072:1;26063:6;26058:3;26054:16;26047:27;25926:154;;;:::o;26086:307::-;26154:1;26164:113;26178:6;26175:1;26172:13;26164:113;;;26263:1;26258:3;26254:11;26248:18;26244:1;26239:3;26235:11;26228:39;26200:2;26197:1;26193:10;26188:15;;26164:113;;;26295:6;26292:1;26289:13;26286:101;;;26375:1;26366:6;26361:3;26357:16;26350:27;26286:101;26135:258;26086:307;;;:::o;26399:320::-;26443:6;26480:1;26474:4;26470:12;26460:22;;26527:1;26521:4;26517:12;26548:18;26538:81;;26604:4;26596:6;26592:17;26582:27;;26538:81;26666:2;26658:6;26655:14;26635:18;26632:38;26629:84;;;26685:18;;:::i;:::-;26629:84;26450:269;26399:320;;;:::o;26725:281::-;26808:27;26830:4;26808:27;:::i;:::-;26800:6;26796:40;26938:6;26926:10;26923:22;26902:18;26890:10;26887:34;26884:62;26881:88;;;26949:18;;:::i;:::-;26881:88;26989:10;26985:2;26978:22;26768:238;26725:281;;:::o;27012:233::-;27051:3;27074:24;27092:5;27074:24;:::i;:::-;27065:33;;27120:66;27113:5;27110:77;27107:103;;;27190:18;;:::i;:::-;27107:103;27237:1;27230:5;27226:13;27219:20;;27012:233;;;:::o;27251:100::-;27290:7;27319:26;27339:5;27319:26;:::i;:::-;27308:37;;27251:100;;;:::o;27357:94::-;27396:7;27425:20;27439:5;27425:20;:::i;:::-;27414:31;;27357:94;;;:::o;27457:176::-;27489:1;27506:20;27524:1;27506:20;:::i;:::-;27501:25;;27540:20;27558:1;27540:20;:::i;:::-;27535:25;;27579:1;27569:35;;27584:18;;:::i;:::-;27569:35;27625:1;27622;27618:9;27613:14;;27457:176;;;;:::o;27639:180::-;27687:77;27684:1;27677:88;27784:4;27781:1;27774:15;27808:4;27805:1;27798:15;27825:180;27873:77;27870:1;27863:88;27970:4;27967:1;27960:15;27994:4;27991:1;27984:15;28011:180;28059:77;28056:1;28049:88;28156:4;28153:1;28146:15;28180:4;28177:1;28170:15;28197:180;28245:77;28242:1;28235:88;28342:4;28339:1;28332:15;28366:4;28363:1;28356:15;28383:180;28431:77;28428:1;28421:88;28528:4;28525:1;28518:15;28552:4;28549:1;28542:15;28569:117;28678:1;28675;28668:12;28692:117;28801:1;28798;28791:12;28815:117;28924:1;28921;28914:12;28938:117;29047:1;29044;29037:12;29061:117;29170:1;29167;29160:12;29184:117;29293:1;29290;29283:12;29307:102;29348:6;29399:2;29395:7;29390:2;29383:5;29379:14;29375:28;29365:38;;29307:102;;;:::o;29415:94::-;29448:8;29496:5;29492:2;29488:14;29467:35;;29415:94;;;:::o;29515:225::-;29655:34;29651:1;29643:6;29639:14;29632:58;29724:8;29719:2;29711:6;29707:15;29700:33;29515:225;:::o;29746:223::-;29886:34;29882:1;29874:6;29870:14;29863:58;29955:6;29950:2;29942:6;29938:15;29931:31;29746:223;:::o;29975:172::-;30115:24;30111:1;30103:6;30099:14;30092:48;29975:172;:::o;30153:162::-;30293:14;30289:1;30281:6;30277:14;30270:38;30153:162;:::o;30321:174::-;30461:26;30457:1;30449:6;30445:14;30438:50;30321:174;:::o;30501:182::-;30641:34;30637:1;30629:6;30625:14;30618:58;30501:182;:::o;30689:220::-;30829:34;30825:1;30817:6;30813:14;30806:58;30898:3;30893:2;30885:6;30881:15;30874:28;30689:220;:::o;30915:221::-;31055:34;31051:1;31043:6;31039:14;31032:58;31124:4;31119:2;31111:6;31107:15;31100:29;30915:221;:::o;31142:122::-;31215:24;31233:5;31215:24;:::i;:::-;31208:5;31205:35;31195:63;;31254:1;31251;31244:12;31195:63;31142:122;:::o;31270:116::-;31340:21;31355:5;31340:21;:::i;:::-;31333:5;31330:32;31320:60;;31376:1;31373;31366:12;31320:60;31270:116;:::o;31392:122::-;31465:24;31483:5;31465:24;:::i;:::-;31458:5;31455:35;31445:63;;31504:1;31501;31494:12;31445:63;31392:122;:::o;31520:120::-;31592:23;31609:5;31592:23;:::i;:::-;31585:5;31582:34;31572:62;;31630:1;31627;31620:12;31572:62;31520:120;:::o;31646:122::-;31719:24;31737:5;31719:24;:::i;:::-;31712:5;31709:35;31699:63;;31758:1;31755;31748:12;31699:63;31646:122;:::o

Swarm Source

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