ETH Price: $2,965.77 (+2.24%)
Gas: 1 Gwei

Token

DINOREVEAL (DINOREVEAL)
 

Overview

Max Total Supply

6,400 DINOREVEAL

Holders

2,274

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
scottlowry.eth
Balance
1 DINOREVEAL
0x146860d31ab0f6dc858106f1a5d7a52bd6c86d1d
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:
DinoReveal

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-09-27
*/

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



// Contract ERC721A From: Chiru Labs


pragma solidity >=0.8.6;


contract DinoReveal is ERC721A, Ownable {

    uint public price = 0.009 ether;
    uint public maxSupply = 5200;
    uint public maxSupplyPre = 1200;
    uint public maxTx = 3;
    uint public maxTxPre = 1;

    bytes32 public merkleRoot;

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

    mapping(address => uint256) public _preSaleCounter;

    string internal baseTokenURI = '';

    constructor() ERC721A("DINOREVEAL", "DINOREVEAL") {}

    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 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, "Mint is not Open Yet.");
        require(
            _preSaleCounter[msg.sender] + qty <= maxTxPre,
            "Exceeded max available to purchase, PreSale Gets 1 Free Only."
        );
        _preSaleCounter[msg.sender] =
            _preSaleCounter[msg.sender] +
            qty;
        require(verify(proof), "Your Address is not on the Whitelist.");
        _buyPre(qty);
    }
    
    function buy(uint qty) external payable {
        require(mintOpen, "Mint is not Open Yet.");
        require(
            _preSaleCounter[msg.sender] + qty <= maxTx,
            "Exceeded max available to purchase"
        );
        require(msg.value >= price * qty, "PAYMENT: invalid value");
        _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");
        require(totalSupply() + qty <= maxSupply, "reached max supply");
        _mintTo(_msgSender(), qty);
    }

    function _buyPre(uint qty) internal {
        require(qty <= maxTxPre && qty > 0, "TRANSACTION: qty of mints not alowed");
        require(totalSupply() + qty <= maxSupplyPre, "reached max supply");
        _mintTo(_msgSender(), qty);
    }

    function _mintTo(address to, uint qty) internal {
        require(qty + totalSupply() <= maxSupply, "SUPPLY: Value exceeds totalSupply");
        _mint(to, qty);
    }
    
    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 airdrop(address[] calldata _users) external onlyOwner {
        for (uint256 i = 0; i < _users.length; i++) {
            _safeMint(_users[i], 1);
        }
    }

}

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":[{"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":"maxSupplyPre","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":"maxTxPre","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":"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":"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"}]

6080604052661ff973cafa8000600955611450600a556104b0600b556003600c556001600d556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff02191690831515021790555060405180602001604052806000815250601190805190602001906200008292919062000240565b503480156200009057600080fd5b506040518060400160405280600a81526020017f44494e4f52455645414c000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f44494e4f52455645414c0000000000000000000000000000000000000000000081525081600290805190602001906200011592919062000240565b5080600390805190602001906200012e92919062000240565b506200013f6200016d60201b60201c565b6000819055505050620001676200015b6200017260201b60201c565b6200017a60201b60201c565b62000355565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024e90620002f0565b90600052602060002090601f016020900481019282620002725760008555620002be565b82601f106200028d57805160ff1916838001178555620002be565b82800160010185558215620002be579182015b82811115620002bd578251825591602001919060010190620002a0565b5b509050620002cd9190620002d1565b5090565b5b80821115620002ec576000816000905550600101620002d2565b5090565b600060028204905060018216806200030957607f821691505b6020821081141562000320576200031f62000326565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61403880620003656000396000f3fe60806040526004361061020f5760003560e01c8063729ad39e11610118578063b88d4fde116100a0578063d3dd5fe01161006f578063d3dd5fe014610752578063d5abeb0114610769578063d96a094a14610794578063e985e9c5146107b0578063f2fde38b146107ed5761020f565b8063b88d4fde14610698578063bc337182146106c1578063c81c63ef146106ea578063c87b56dd146107155761020f565b80638da5cb5b116100e75780638da5cb5b146105c557806391b7f5ed146105f057806395d89b4114610619578063a035b1fe14610644578063a22cb4651461066f5761020f565b8063729ad39e1461052c5780637437681e146105555780637cb647591461058057806381814492146105a95761020f565b806330176e131161019b578063596599ae1161016a578063596599ae146104475780636352211e146104725780636f8b44b0146104af57806370a08231146104d8578063715018a6146105155761020f565b806330176e13146103c757806334393743146103f05780633ccfd60b1461040757806342842e0e1461041e5761020f565b806309bd4c31116101e257806309bd4c31146102e257806318160ddd1461030b57806323b872dd1461033657806327b1425a1461035f5780632eb4a7ab1461039c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613272565b610816565b604051610248919061369c565b60405180910390f35b34801561025d57600080fd5b506102666108f8565b60405161027391906136d2565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613319565b61098a565b6040516102b09190613635565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db91906131b8565b610a06565b005b3480156102ee57600080fd5b50610309600480360381019061030491906131b8565b610b0b565b005b34801561031757600080fd5b50610320610b21565b60405161032d9190613834565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906130a2565b610b38565b005b34801561036b57600080fd5b5061038660048036038101906103819190613035565b610b48565b6040516103939190613834565b60405180910390f35b3480156103a857600080fd5b506103b1610b60565b6040516103be91906136b7565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e991906132cc565b610b66565b005b3480156103fc57600080fd5b50610405610b84565b005b34801561041357600080fd5b5061041c610bb8565b005b34801561042a57600080fd5b50610445600480360381019061044091906130a2565b610c10565b005b34801561045357600080fd5b5061045c610c30565b6040516104699190613834565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190613319565b610c36565b6040516104a69190613635565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190613319565b610c4c565b005b3480156104e457600080fd5b506104ff60048036038101906104fa9190613035565b610c5e565b60405161050c9190613834565b60405180910390f35b34801561052157600080fd5b5061052a610d2e565b005b34801561053857600080fd5b50610553600480360381019061054e91906131f8565b610d42565b005b34801561056157600080fd5b5061056a610da2565b6040516105779190613834565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a29190613245565b610da8565b005b6105c360048036038101906105be9190613346565b610dba565b005b3480156105d157600080fd5b506105da610f7b565b6040516105e79190613635565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190613319565b610fa5565b005b34801561062557600080fd5b5061062e610fb7565b60405161063b91906136d2565b60405180910390f35b34801561065057600080fd5b50610659611049565b6040516106669190613834565b60405180910390f35b34801561067b57600080fd5b5061069660048036038101906106919190613178565b61104f565b005b3480156106a457600080fd5b506106bf60048036038101906106ba91906130f5565b6111c7565b005b3480156106cd57600080fd5b506106e860048036038101906106e39190613319565b61123f565b005b3480156106f657600080fd5b506106ff611251565b60405161070c9190613834565b60405180910390f35b34801561072157600080fd5b5061073c60048036038101906107379190613319565b611257565b60405161074991906136d2565b60405180910390f35b34801561075e57600080fd5b506107676112f6565b005b34801561077557600080fd5b5061077e61132a565b60405161078b9190613834565b60405180910390f35b6107ae60048036038101906107a99190613319565b611330565b005b3480156107bc57600080fd5b506107d760048036038101906107d29190613062565b6114f8565b6040516107e4919061369c565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f9190613035565b61158c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f157506108f082611610565b5b9050919050565b60606002805461090790613ae9565b80601f016020809104026020016040519081016040528092919081815260200182805461093390613ae9565b80156109805780601f1061095557610100808354040283529160200191610980565b820191906000526020600020905b81548152906001019060200180831161096357829003601f168201915b5050505050905090565b60006109958261167a565b6109cb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1182610c36565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a79576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a986116c8565b73ffffffffffffffffffffffffffffffffffffffff1614610afb57610ac481610abf6116c8565b6114f8565b610afa576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610b068383836116d0565b505050565b610b13611782565b610b1d8282611800565b5050565b6000610b2b611865565b6001546000540303905090565b610b4383838361186a565b505050565b60106020528060005260406000206000915090505481565b600e5481565b610b6e611782565b818160119190610b7f929190612d17565b505050565b610b8c611782565b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b610bc0611782565b610bc86116c8565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c0d573d6000803e3d6000fd5b50565b610c2b838383604051806020016040528060008152506111c7565b505050565b600b5481565b6000610c4182611d20565b600001519050919050565b610c54611782565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610d36611782565b610d406000611fab565b565b610d4a611782565b60005b82829050811015610d9d57610d8a838383818110610d6e57610d6d613c77565b5b9050602002016020810190610d839190613035565b6001612071565b8080610d9590613b4c565b915050610d4d565b505050565b600c5481565b610db0611782565b80600e8190555050565b600f60019054906101000a900460ff16610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090613814565b60405180910390fd5b600d5482601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e579190613914565b1115610e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8f90613774565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ee39190613914565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f2f8161208f565b610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f65906137b4565b60405180910390fd5b610f77826120d0565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fad611782565b8060098190555050565b606060038054610fc690613ae9565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff290613ae9565b801561103f5780601f106110145761010080835404028352916020019161103f565b820191906000526020600020905b81548152906001019060200180831161102257829003601f168201915b5050505050905090565b60095481565b6110576116c8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110bc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110c96116c8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111766116c8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111bb919061369c565b60405180910390a35050565b6111d284848461186a565b6111f18373ffffffffffffffffffffffffffffffffffffffff1661218c565b1561123957611202848484846121af565b611238576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611247611782565b80600c8190555050565b600d5481565b60606112628261167a565b611298576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112a261230f565b90506000815114156112c357604051806020016040528060008152506112ee565b806112cd846123a1565b6040516020016112de929190613611565b6040516020818303038152906040525b915050919050565b6112fe611782565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600a5481565b600f60009054906101000a900460ff1661137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690613814565b60405180910390fd5b600c5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113cd9190613914565b111561140e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611405906137f4565b60405180910390fd5b8060095461141c919061399b565b34101561145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590613734565b60405180910390fd5b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114a99190613914565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506114f581612502565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611594611782565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb906136f4565b60405180910390fd5b61160d81611fab565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611685611865565b11158015611694575060005482105b80156116c1575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61178a6116c8565b73ffffffffffffffffffffffffffffffffffffffff166117a8610f7b565b73ffffffffffffffffffffffffffffffffffffffff16146117fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f590613794565b60405180910390fd5b565b600a5461180b610b21565b826118169190613914565b1115611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e906137d4565b60405180910390fd5b61186182826125be565b5050565b600090565b600061187582611d20565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146118e0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166119016116c8565b73ffffffffffffffffffffffffffffffffffffffff161480611930575061192f8561192a6116c8565b6114f8565b5b80611975575061193e6116c8565b73ffffffffffffffffffffffffffffffffffffffff1661195d8461098a565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806119ae576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a15576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a22858585600161289a565b611a2e600084876116d0565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611cae576000548214611cad57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d1985858560016128a0565b5050505050565b611d28612d9d565b600082905080611d36611865565b11611f7457600054811015611f73576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611f7157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e55578092505050611fa6565b5b600115611f7057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f6b578092505050611fa6565b611e56565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61208b8282604051806020016040528060008152506128a6565b5050565b600080336040516020016120a391906135f6565b6040516020818303038152906040528051906020012090506120c883600e5483612c68565b915050919050565b600d5481111580156120e25750600081115b612121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211890613714565b60405180910390fd5b600b548161212d610b21565b6121379190613914565b1115612178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216f90613754565b60405180910390fd5b6121896121836116c8565b82611800565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121d56116c8565b8786866040518563ffffffff1660e01b81526004016121f79493929190613650565b602060405180830381600087803b15801561221157600080fd5b505af192505050801561224257506040513d601f19601f8201168201806040525081019061223f919061329f565b60015b6122bc573d8060008114612272576040519150601f19603f3d011682016040523d82523d6000602084013e612277565b606091505b506000815114156122b4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606011805461231e90613ae9565b80601f016020809104026020016040519081016040528092919081815260200182805461234a90613ae9565b80156123975780601f1061236c57610100808354040283529160200191612397565b820191906000526020600020905b81548152906001019060200180831161237a57829003601f168201915b5050505050905090565b606060008214156123e9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124fd565b600082905060005b6000821461241b57808061240490613b4c565b915050600a82612414919061396a565b91506123f1565b60008167ffffffffffffffff81111561243757612436613ca6565b5b6040519080825280601f01601f1916602001820160405280156124695781602001600182028036833780820191505090505b5090505b600085146124f65760018261248291906139f5565b9150600a856124919190613bb9565b603061249d9190613914565b60f81b8183815181106124b3576124b2613c77565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124ef919061396a565b945061246d565b8093505050505b919050565b600c5481111580156125145750600081115b612553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254a90613714565b60405180910390fd5b600a548161255f610b21565b6125699190613914565b11156125aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a190613754565b60405180910390fd5b6125bb6125b56116c8565b82611800565b50565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561262b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612666576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612673600084838561289a565b81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106128165781600081905550505061289560008483856128a0565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612913576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561294e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61295b600085838661289a565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612b1c8673ffffffffffffffffffffffffffffffffffffffff1661218c565b15612be1575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b9160008784806001019550876121af565b612bc7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612b22578260005414612bdc57600080fd5b612c4c565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612be2575b816000819055505050612c6260008583866128a0565b50505050565b600082612c758584612c7f565b1490509392505050565b60008082905060005b8451811015612cca57612cb582868381518110612ca857612ca7613c77565b5b6020026020010151612cd5565b91508080612cc290613b4c565b915050612c88565b508091505092915050565b6000818310612ced57612ce88284612d00565b612cf8565b612cf78383612d00565b5b905092915050565b600082600052816020526040600020905092915050565b828054612d2390613ae9565b90600052602060002090601f016020900481019282612d455760008555612d8c565b82601f10612d5e57803560ff1916838001178555612d8c565b82800160010185558215612d8c579182015b82811115612d8b578235825591602001919060010190612d70565b5b509050612d999190612de0565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612df9576000816000905550600101612de1565b5090565b6000612e10612e0b84613874565b61384f565b90508083825260208201905082856020860282011115612e3357612e32613cdf565b5b60005b85811015612e635781612e498882612f5d565b845260208401935060208301925050600181019050612e36565b5050509392505050565b6000612e80612e7b846138a0565b61384f565b905082815260208101848484011115612e9c57612e9b613ce4565b5b612ea7848285613aa7565b509392505050565b600081359050612ebe81613f8f565b92915050565b60008083601f840112612eda57612ed9613cda565b5b8235905067ffffffffffffffff811115612ef757612ef6613cd5565b5b602083019150836020820283011115612f1357612f12613cdf565b5b9250929050565b600082601f830112612f2f57612f2e613cda565b5b8135612f3f848260208601612dfd565b91505092915050565b600081359050612f5781613fa6565b92915050565b600081359050612f6c81613fbd565b92915050565b600081359050612f8181613fd4565b92915050565b600081519050612f9681613fd4565b92915050565b600082601f830112612fb157612fb0613cda565b5b8135612fc1848260208601612e6d565b91505092915050565b60008083601f840112612fe057612fdf613cda565b5b8235905067ffffffffffffffff811115612ffd57612ffc613cd5565b5b60208301915083600182028301111561301957613018613cdf565b5b9250929050565b60008135905061302f81613feb565b92915050565b60006020828403121561304b5761304a613cee565b5b600061305984828501612eaf565b91505092915050565b6000806040838503121561307957613078613cee565b5b600061308785828601612eaf565b925050602061309885828601612eaf565b9150509250929050565b6000806000606084860312156130bb576130ba613cee565b5b60006130c986828701612eaf565b93505060206130da86828701612eaf565b92505060406130eb86828701613020565b9150509250925092565b6000806000806080858703121561310f5761310e613cee565b5b600061311d87828801612eaf565b945050602061312e87828801612eaf565b935050604061313f87828801613020565b925050606085013567ffffffffffffffff8111156131605761315f613ce9565b5b61316c87828801612f9c565b91505092959194509250565b6000806040838503121561318f5761318e613cee565b5b600061319d85828601612eaf565b92505060206131ae85828601612f48565b9150509250929050565b600080604083850312156131cf576131ce613cee565b5b60006131dd85828601612eaf565b92505060206131ee85828601613020565b9150509250929050565b6000806020838503121561320f5761320e613cee565b5b600083013567ffffffffffffffff81111561322d5761322c613ce9565b5b61323985828601612ec4565b92509250509250929050565b60006020828403121561325b5761325a613cee565b5b600061326984828501612f5d565b91505092915050565b60006020828403121561328857613287613cee565b5b600061329684828501612f72565b91505092915050565b6000602082840312156132b5576132b4613cee565b5b60006132c384828501612f87565b91505092915050565b600080602083850312156132e3576132e2613cee565b5b600083013567ffffffffffffffff81111561330157613300613ce9565b5b61330d85828601612fca565b92509250509250929050565b60006020828403121561332f5761332e613cee565b5b600061333d84828501613020565b91505092915050565b6000806040838503121561335d5761335c613cee565b5b600061336b85828601613020565b925050602083013567ffffffffffffffff81111561338c5761338b613ce9565b5b61339885828601612f1a565b9150509250929050565b6133ab81613a29565b82525050565b6133c26133bd82613a29565b613b95565b82525050565b6133d181613a3b565b82525050565b6133e081613a47565b82525050565b60006133f1826138d1565b6133fb81856138e7565b935061340b818560208601613ab6565b61341481613cf3565b840191505092915050565b600061342a826138dc565b61343481856138f8565b9350613444818560208601613ab6565b61344d81613cf3565b840191505092915050565b6000613463826138dc565b61346d8185613909565b935061347d818560208601613ab6565b80840191505092915050565b60006134966026836138f8565b91506134a182613d11565b604082019050919050565b60006134b96024836138f8565b91506134c482613d60565b604082019050919050565b60006134dc6016836138f8565b91506134e782613daf565b602082019050919050565b60006134ff6012836138f8565b915061350a82613dd8565b602082019050919050565b6000613522603d836138f8565b915061352d82613e01565b604082019050919050565b60006135456020836138f8565b915061355082613e50565b602082019050919050565b60006135686025836138f8565b915061357382613e79565b604082019050919050565b600061358b6021836138f8565b915061359682613ec8565b604082019050919050565b60006135ae6022836138f8565b91506135b982613f17565b604082019050919050565b60006135d16015836138f8565b91506135dc82613f66565b602082019050919050565b6135f081613a9d565b82525050565b600061360282846133b1565b60148201915081905092915050565b600061361d8285613458565b91506136298284613458565b91508190509392505050565b600060208201905061364a60008301846133a2565b92915050565b600060808201905061366560008301876133a2565b61367260208301866133a2565b61367f60408301856135e7565b818103606083015261369181846133e6565b905095945050505050565b60006020820190506136b160008301846133c8565b92915050565b60006020820190506136cc60008301846133d7565b92915050565b600060208201905081810360008301526136ec818461341f565b905092915050565b6000602082019050818103600083015261370d81613489565b9050919050565b6000602082019050818103600083015261372d816134ac565b9050919050565b6000602082019050818103600083015261374d816134cf565b9050919050565b6000602082019050818103600083015261376d816134f2565b9050919050565b6000602082019050818103600083015261378d81613515565b9050919050565b600060208201905081810360008301526137ad81613538565b9050919050565b600060208201905081810360008301526137cd8161355b565b9050919050565b600060208201905081810360008301526137ed8161357e565b9050919050565b6000602082019050818103600083015261380d816135a1565b9050919050565b6000602082019050818103600083015261382d816135c4565b9050919050565b600060208201905061384960008301846135e7565b92915050565b600061385961386a565b90506138658282613b1b565b919050565b6000604051905090565b600067ffffffffffffffff82111561388f5761388e613ca6565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156138bb576138ba613ca6565b5b6138c482613cf3565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061391f82613a9d565b915061392a83613a9d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561395f5761395e613bea565b5b828201905092915050565b600061397582613a9d565b915061398083613a9d565b9250826139905761398f613c19565b5b828204905092915050565b60006139a682613a9d565b91506139b183613a9d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139ea576139e9613bea565b5b828202905092915050565b6000613a0082613a9d565b9150613a0b83613a9d565b925082821015613a1e57613a1d613bea565b5b828203905092915050565b6000613a3482613a7d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ad4578082015181840152602081019050613ab9565b83811115613ae3576000848401525b50505050565b60006002820490506001821680613b0157607f821691505b60208210811415613b1557613b14613c48565b5b50919050565b613b2482613cf3565b810181811067ffffffffffffffff82111715613b4357613b42613ca6565b5b80604052505050565b6000613b5782613a9d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b8a57613b89613bea565b5b600182019050919050565b6000613ba082613ba7565b9050919050565b6000613bb282613d04565b9050919050565b6000613bc482613a9d565b9150613bcf83613a9d565b925082613bdf57613bde613c19565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f73652c2050726553616c65204765747320312046726565204f6e6c792e000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f75722041646472657373206973206e6f74206f6e2074686520576869746560008201527f6c6973742e000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74204f70656e205965742e0000000000000000000000600082015250565b613f9881613a29565b8114613fa357600080fd5b50565b613faf81613a3b565b8114613fba57600080fd5b50565b613fc681613a47565b8114613fd157600080fd5b50565b613fdd81613a51565b8114613fe857600080fd5b50565b613ff481613a9d565b8114613fff57600080fd5b5056fea26469706673582212204b5ea5f34a5b4e17755a7cfd874d264af98bd5e633ee348b4237709be593048164736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063729ad39e11610118578063b88d4fde116100a0578063d3dd5fe01161006f578063d3dd5fe014610752578063d5abeb0114610769578063d96a094a14610794578063e985e9c5146107b0578063f2fde38b146107ed5761020f565b8063b88d4fde14610698578063bc337182146106c1578063c81c63ef146106ea578063c87b56dd146107155761020f565b80638da5cb5b116100e75780638da5cb5b146105c557806391b7f5ed146105f057806395d89b4114610619578063a035b1fe14610644578063a22cb4651461066f5761020f565b8063729ad39e1461052c5780637437681e146105555780637cb647591461058057806381814492146105a95761020f565b806330176e131161019b578063596599ae1161016a578063596599ae146104475780636352211e146104725780636f8b44b0146104af57806370a08231146104d8578063715018a6146105155761020f565b806330176e13146103c757806334393743146103f05780633ccfd60b1461040757806342842e0e1461041e5761020f565b806309bd4c31116101e257806309bd4c31146102e257806318160ddd1461030b57806323b872dd1461033657806327b1425a1461035f5780632eb4a7ab1461039c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613272565b610816565b604051610248919061369c565b60405180910390f35b34801561025d57600080fd5b506102666108f8565b60405161027391906136d2565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613319565b61098a565b6040516102b09190613635565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db91906131b8565b610a06565b005b3480156102ee57600080fd5b50610309600480360381019061030491906131b8565b610b0b565b005b34801561031757600080fd5b50610320610b21565b60405161032d9190613834565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906130a2565b610b38565b005b34801561036b57600080fd5b5061038660048036038101906103819190613035565b610b48565b6040516103939190613834565b60405180910390f35b3480156103a857600080fd5b506103b1610b60565b6040516103be91906136b7565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e991906132cc565b610b66565b005b3480156103fc57600080fd5b50610405610b84565b005b34801561041357600080fd5b5061041c610bb8565b005b34801561042a57600080fd5b50610445600480360381019061044091906130a2565b610c10565b005b34801561045357600080fd5b5061045c610c30565b6040516104699190613834565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190613319565b610c36565b6040516104a69190613635565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190613319565b610c4c565b005b3480156104e457600080fd5b506104ff60048036038101906104fa9190613035565b610c5e565b60405161050c9190613834565b60405180910390f35b34801561052157600080fd5b5061052a610d2e565b005b34801561053857600080fd5b50610553600480360381019061054e91906131f8565b610d42565b005b34801561056157600080fd5b5061056a610da2565b6040516105779190613834565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a29190613245565b610da8565b005b6105c360048036038101906105be9190613346565b610dba565b005b3480156105d157600080fd5b506105da610f7b565b6040516105e79190613635565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190613319565b610fa5565b005b34801561062557600080fd5b5061062e610fb7565b60405161063b91906136d2565b60405180910390f35b34801561065057600080fd5b50610659611049565b6040516106669190613834565b60405180910390f35b34801561067b57600080fd5b5061069660048036038101906106919190613178565b61104f565b005b3480156106a457600080fd5b506106bf60048036038101906106ba91906130f5565b6111c7565b005b3480156106cd57600080fd5b506106e860048036038101906106e39190613319565b61123f565b005b3480156106f657600080fd5b506106ff611251565b60405161070c9190613834565b60405180910390f35b34801561072157600080fd5b5061073c60048036038101906107379190613319565b611257565b60405161074991906136d2565b60405180910390f35b34801561075e57600080fd5b506107676112f6565b005b34801561077557600080fd5b5061077e61132a565b60405161078b9190613834565b60405180910390f35b6107ae60048036038101906107a99190613319565b611330565b005b3480156107bc57600080fd5b506107d760048036038101906107d29190613062565b6114f8565b6040516107e4919061369c565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f9190613035565b61158c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f157506108f082611610565b5b9050919050565b60606002805461090790613ae9565b80601f016020809104026020016040519081016040528092919081815260200182805461093390613ae9565b80156109805780601f1061095557610100808354040283529160200191610980565b820191906000526020600020905b81548152906001019060200180831161096357829003601f168201915b5050505050905090565b60006109958261167a565b6109cb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1182610c36565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a79576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a986116c8565b73ffffffffffffffffffffffffffffffffffffffff1614610afb57610ac481610abf6116c8565b6114f8565b610afa576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610b068383836116d0565b505050565b610b13611782565b610b1d8282611800565b5050565b6000610b2b611865565b6001546000540303905090565b610b4383838361186a565b505050565b60106020528060005260406000206000915090505481565b600e5481565b610b6e611782565b818160119190610b7f929190612d17565b505050565b610b8c611782565b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b610bc0611782565b610bc86116c8565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c0d573d6000803e3d6000fd5b50565b610c2b838383604051806020016040528060008152506111c7565b505050565b600b5481565b6000610c4182611d20565b600001519050919050565b610c54611782565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610d36611782565b610d406000611fab565b565b610d4a611782565b60005b82829050811015610d9d57610d8a838383818110610d6e57610d6d613c77565b5b9050602002016020810190610d839190613035565b6001612071565b8080610d9590613b4c565b915050610d4d565b505050565b600c5481565b610db0611782565b80600e8190555050565b600f60019054906101000a900460ff16610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090613814565b60405180910390fd5b600d5482601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e579190613914565b1115610e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8f90613774565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ee39190613914565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f2f8161208f565b610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f65906137b4565b60405180910390fd5b610f77826120d0565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fad611782565b8060098190555050565b606060038054610fc690613ae9565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff290613ae9565b801561103f5780601f106110145761010080835404028352916020019161103f565b820191906000526020600020905b81548152906001019060200180831161102257829003601f168201915b5050505050905090565b60095481565b6110576116c8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110bc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110c96116c8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111766116c8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111bb919061369c565b60405180910390a35050565b6111d284848461186a565b6111f18373ffffffffffffffffffffffffffffffffffffffff1661218c565b1561123957611202848484846121af565b611238576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611247611782565b80600c8190555050565b600d5481565b60606112628261167a565b611298576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112a261230f565b90506000815114156112c357604051806020016040528060008152506112ee565b806112cd846123a1565b6040516020016112de929190613611565b6040516020818303038152906040525b915050919050565b6112fe611782565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600a5481565b600f60009054906101000a900460ff1661137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690613814565b60405180910390fd5b600c5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113cd9190613914565b111561140e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611405906137f4565b60405180910390fd5b8060095461141c919061399b565b34101561145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590613734565b60405180910390fd5b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114a99190613914565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506114f581612502565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611594611782565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb906136f4565b60405180910390fd5b61160d81611fab565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611685611865565b11158015611694575060005482105b80156116c1575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61178a6116c8565b73ffffffffffffffffffffffffffffffffffffffff166117a8610f7b565b73ffffffffffffffffffffffffffffffffffffffff16146117fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f590613794565b60405180910390fd5b565b600a5461180b610b21565b826118169190613914565b1115611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e906137d4565b60405180910390fd5b61186182826125be565b5050565b600090565b600061187582611d20565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146118e0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166119016116c8565b73ffffffffffffffffffffffffffffffffffffffff161480611930575061192f8561192a6116c8565b6114f8565b5b80611975575061193e6116c8565b73ffffffffffffffffffffffffffffffffffffffff1661195d8461098a565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806119ae576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a15576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a22858585600161289a565b611a2e600084876116d0565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611cae576000548214611cad57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d1985858560016128a0565b5050505050565b611d28612d9d565b600082905080611d36611865565b11611f7457600054811015611f73576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611f7157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e55578092505050611fa6565b5b600115611f7057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f6b578092505050611fa6565b611e56565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61208b8282604051806020016040528060008152506128a6565b5050565b600080336040516020016120a391906135f6565b6040516020818303038152906040528051906020012090506120c883600e5483612c68565b915050919050565b600d5481111580156120e25750600081115b612121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211890613714565b60405180910390fd5b600b548161212d610b21565b6121379190613914565b1115612178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216f90613754565b60405180910390fd5b6121896121836116c8565b82611800565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121d56116c8565b8786866040518563ffffffff1660e01b81526004016121f79493929190613650565b602060405180830381600087803b15801561221157600080fd5b505af192505050801561224257506040513d601f19601f8201168201806040525081019061223f919061329f565b60015b6122bc573d8060008114612272576040519150601f19603f3d011682016040523d82523d6000602084013e612277565b606091505b506000815114156122b4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606011805461231e90613ae9565b80601f016020809104026020016040519081016040528092919081815260200182805461234a90613ae9565b80156123975780601f1061236c57610100808354040283529160200191612397565b820191906000526020600020905b81548152906001019060200180831161237a57829003601f168201915b5050505050905090565b606060008214156123e9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124fd565b600082905060005b6000821461241b57808061240490613b4c565b915050600a82612414919061396a565b91506123f1565b60008167ffffffffffffffff81111561243757612436613ca6565b5b6040519080825280601f01601f1916602001820160405280156124695781602001600182028036833780820191505090505b5090505b600085146124f65760018261248291906139f5565b9150600a856124919190613bb9565b603061249d9190613914565b60f81b8183815181106124b3576124b2613c77565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124ef919061396a565b945061246d565b8093505050505b919050565b600c5481111580156125145750600081115b612553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254a90613714565b60405180910390fd5b600a548161255f610b21565b6125699190613914565b11156125aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a190613754565b60405180910390fd5b6125bb6125b56116c8565b82611800565b50565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561262b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612666576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612673600084838561289a565b81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106128165781600081905550505061289560008483856128a0565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612913576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561294e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61295b600085838661289a565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612b1c8673ffffffffffffffffffffffffffffffffffffffff1661218c565b15612be1575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b9160008784806001019550876121af565b612bc7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612b22578260005414612bdc57600080fd5b612c4c565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612be2575b816000819055505050612c6260008583866128a0565b50505050565b600082612c758584612c7f565b1490509392505050565b60008082905060005b8451811015612cca57612cb582868381518110612ca857612ca7613c77565b5b6020026020010151612cd5565b91508080612cc290613b4c565b915050612c88565b508091505092915050565b6000818310612ced57612ce88284612d00565b612cf8565b612cf78383612d00565b5b905092915050565b600082600052816020526040600020905092915050565b828054612d2390613ae9565b90600052602060002090601f016020900481019282612d455760008555612d8c565b82601f10612d5e57803560ff1916838001178555612d8c565b82800160010185558215612d8c579182015b82811115612d8b578235825591602001919060010190612d70565b5b509050612d999190612de0565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612df9576000816000905550600101612de1565b5090565b6000612e10612e0b84613874565b61384f565b90508083825260208201905082856020860282011115612e3357612e32613cdf565b5b60005b85811015612e635781612e498882612f5d565b845260208401935060208301925050600181019050612e36565b5050509392505050565b6000612e80612e7b846138a0565b61384f565b905082815260208101848484011115612e9c57612e9b613ce4565b5b612ea7848285613aa7565b509392505050565b600081359050612ebe81613f8f565b92915050565b60008083601f840112612eda57612ed9613cda565b5b8235905067ffffffffffffffff811115612ef757612ef6613cd5565b5b602083019150836020820283011115612f1357612f12613cdf565b5b9250929050565b600082601f830112612f2f57612f2e613cda565b5b8135612f3f848260208601612dfd565b91505092915050565b600081359050612f5781613fa6565b92915050565b600081359050612f6c81613fbd565b92915050565b600081359050612f8181613fd4565b92915050565b600081519050612f9681613fd4565b92915050565b600082601f830112612fb157612fb0613cda565b5b8135612fc1848260208601612e6d565b91505092915050565b60008083601f840112612fe057612fdf613cda565b5b8235905067ffffffffffffffff811115612ffd57612ffc613cd5565b5b60208301915083600182028301111561301957613018613cdf565b5b9250929050565b60008135905061302f81613feb565b92915050565b60006020828403121561304b5761304a613cee565b5b600061305984828501612eaf565b91505092915050565b6000806040838503121561307957613078613cee565b5b600061308785828601612eaf565b925050602061309885828601612eaf565b9150509250929050565b6000806000606084860312156130bb576130ba613cee565b5b60006130c986828701612eaf565b93505060206130da86828701612eaf565b92505060406130eb86828701613020565b9150509250925092565b6000806000806080858703121561310f5761310e613cee565b5b600061311d87828801612eaf565b945050602061312e87828801612eaf565b935050604061313f87828801613020565b925050606085013567ffffffffffffffff8111156131605761315f613ce9565b5b61316c87828801612f9c565b91505092959194509250565b6000806040838503121561318f5761318e613cee565b5b600061319d85828601612eaf565b92505060206131ae85828601612f48565b9150509250929050565b600080604083850312156131cf576131ce613cee565b5b60006131dd85828601612eaf565b92505060206131ee85828601613020565b9150509250929050565b6000806020838503121561320f5761320e613cee565b5b600083013567ffffffffffffffff81111561322d5761322c613ce9565b5b61323985828601612ec4565b92509250509250929050565b60006020828403121561325b5761325a613cee565b5b600061326984828501612f5d565b91505092915050565b60006020828403121561328857613287613cee565b5b600061329684828501612f72565b91505092915050565b6000602082840312156132b5576132b4613cee565b5b60006132c384828501612f87565b91505092915050565b600080602083850312156132e3576132e2613cee565b5b600083013567ffffffffffffffff81111561330157613300613ce9565b5b61330d85828601612fca565b92509250509250929050565b60006020828403121561332f5761332e613cee565b5b600061333d84828501613020565b91505092915050565b6000806040838503121561335d5761335c613cee565b5b600061336b85828601613020565b925050602083013567ffffffffffffffff81111561338c5761338b613ce9565b5b61339885828601612f1a565b9150509250929050565b6133ab81613a29565b82525050565b6133c26133bd82613a29565b613b95565b82525050565b6133d181613a3b565b82525050565b6133e081613a47565b82525050565b60006133f1826138d1565b6133fb81856138e7565b935061340b818560208601613ab6565b61341481613cf3565b840191505092915050565b600061342a826138dc565b61343481856138f8565b9350613444818560208601613ab6565b61344d81613cf3565b840191505092915050565b6000613463826138dc565b61346d8185613909565b935061347d818560208601613ab6565b80840191505092915050565b60006134966026836138f8565b91506134a182613d11565b604082019050919050565b60006134b96024836138f8565b91506134c482613d60565b604082019050919050565b60006134dc6016836138f8565b91506134e782613daf565b602082019050919050565b60006134ff6012836138f8565b915061350a82613dd8565b602082019050919050565b6000613522603d836138f8565b915061352d82613e01565b604082019050919050565b60006135456020836138f8565b915061355082613e50565b602082019050919050565b60006135686025836138f8565b915061357382613e79565b604082019050919050565b600061358b6021836138f8565b915061359682613ec8565b604082019050919050565b60006135ae6022836138f8565b91506135b982613f17565b604082019050919050565b60006135d16015836138f8565b91506135dc82613f66565b602082019050919050565b6135f081613a9d565b82525050565b600061360282846133b1565b60148201915081905092915050565b600061361d8285613458565b91506136298284613458565b91508190509392505050565b600060208201905061364a60008301846133a2565b92915050565b600060808201905061366560008301876133a2565b61367260208301866133a2565b61367f60408301856135e7565b818103606083015261369181846133e6565b905095945050505050565b60006020820190506136b160008301846133c8565b92915050565b60006020820190506136cc60008301846133d7565b92915050565b600060208201905081810360008301526136ec818461341f565b905092915050565b6000602082019050818103600083015261370d81613489565b9050919050565b6000602082019050818103600083015261372d816134ac565b9050919050565b6000602082019050818103600083015261374d816134cf565b9050919050565b6000602082019050818103600083015261376d816134f2565b9050919050565b6000602082019050818103600083015261378d81613515565b9050919050565b600060208201905081810360008301526137ad81613538565b9050919050565b600060208201905081810360008301526137cd8161355b565b9050919050565b600060208201905081810360008301526137ed8161357e565b9050919050565b6000602082019050818103600083015261380d816135a1565b9050919050565b6000602082019050818103600083015261382d816135c4565b9050919050565b600060208201905061384960008301846135e7565b92915050565b600061385961386a565b90506138658282613b1b565b919050565b6000604051905090565b600067ffffffffffffffff82111561388f5761388e613ca6565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156138bb576138ba613ca6565b5b6138c482613cf3565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061391f82613a9d565b915061392a83613a9d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561395f5761395e613bea565b5b828201905092915050565b600061397582613a9d565b915061398083613a9d565b9250826139905761398f613c19565b5b828204905092915050565b60006139a682613a9d565b91506139b183613a9d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139ea576139e9613bea565b5b828202905092915050565b6000613a0082613a9d565b9150613a0b83613a9d565b925082821015613a1e57613a1d613bea565b5b828203905092915050565b6000613a3482613a7d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ad4578082015181840152602081019050613ab9565b83811115613ae3576000848401525b50505050565b60006002820490506001821680613b0157607f821691505b60208210811415613b1557613b14613c48565b5b50919050565b613b2482613cf3565b810181811067ffffffffffffffff82111715613b4357613b42613ca6565b5b80604052505050565b6000613b5782613a9d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b8a57613b89613bea565b5b600182019050919050565b6000613ba082613ba7565b9050919050565b6000613bb282613d04565b9050919050565b6000613bc482613a9d565b9150613bcf83613a9d565b925082613bdf57613bde613c19565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f73652c2050726553616c65204765747320312046726565204f6e6c792e000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f75722041646472657373206973206e6f74206f6e2074686520576869746560008201527f6c6973742e000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74204f70656e205965742e0000000000000000000000600082015250565b613f9881613a29565b8114613fa357600080fd5b50565b613faf81613a3b565b8114613fba57600080fd5b50565b613fc681613a47565b8114613fd157600080fd5b50565b613fdd81613a51565b8114613fe857600080fd5b50565b613ff481613a9d565b8114613fff57600080fd5b5056fea26469706673582212204b5ea5f34a5b4e17755a7cfd874d264af98bd5e633ee348b4237709be593048164736f6c63430008070033

Deployed Bytecode Sourcemap

56926:3543:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13937:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17052:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18556:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18118:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58240:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13177:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19421:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57258:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57147:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57707:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57507:89;;;;;;;;;;;;;:::i;:::-;;59959:111;;;;;;;;;;;;;:::i;:::-;;19662:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57048:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16860:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57923:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14306:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56033:103;;;;;;;;;;;;;:::i;:::-;;60289:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57086:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57819:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58339:495;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55385:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57608;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17221:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56975:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18832:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19918:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58034:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57114:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17396:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57419:80;;;;;;;;;;;;;:::i;:::-;;57013:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58846:428;;;;;;;;;;;;;:::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;58240:91::-;55271:13;:11;:13::i;:::-;58307:16:::1;58315:2;58319:3;58307:7;:16::i;:::-;58240:91:::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;57258:50::-;;;;;;;;;;;;;;;;;:::o;57147:25::-;;;;:::o;57707:104::-;55271:13;:11;:13::i;:::-;57799:4:::1;;57784:12;:19;;;;;;;:::i;:::-;;57707:104:::0;;:::o;57507:89::-;55271:13;:11;:13::i;:::-;57577:11:::1;;;;;;;;;;;57576:12;57562:11;;:26;;;;;;;;;;;;;;;;;;57507:89::o:0;59959:111::-;55271:13;:11;:13::i;:::-;60017:12:::1;:10;:12::i;:::-;60009:30;;:53;60040:21;60009:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;59959:111::o:0;19662:185::-;19800:39;19817:4;19823:2;19827:7;19800:39;;;;;;;;;;;;:16;:39::i;:::-;19662:185;;;:::o;57048:31::-;;;;:::o;16860:125::-;16924:7;16951:21;16964:7;16951:12;:21::i;:::-;:26;;;16944:33;;16860:125;;;:::o;57923:97::-;55271:13;:11;:13::i;:::-;58003:9:::1;57991;:21;;;;57923: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;60289:175::-;55271:13;:11;:13::i;:::-;60368:9:::1;60363:94;60387:6;;:13;;60383:1;:17;60363:94;;;60422:23;60432:6;;60439:1;60432:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;60443:1;60422:9;:23::i;:::-;60402:3;;;;;:::i;:::-;;;;60363:94;;;;60289:175:::0;;:::o;57086:21::-;;;;:::o;57819:92::-;55271:13;:11;:13::i;:::-;57899:4:::1;57886:10;:17;;;;57819:92:::0;:::o;58339:495::-;58425:11;;;;;;;;;;;58417:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;58532:8;;58525:3;58495:15;:27;58511:10;58495:27;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;:45;;58473:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;58726:3;58683:15;:27;58699:10;58683:27;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;58640:15;:27;58656:10;58640:27;;;;;;;;;;;;;;;:89;;;;58748:13;58755:5;58748:6;:13::i;:::-;58740:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;58814:12;58822:3;58814:7;:12::i;:::-;58339:495;;:::o;55385:87::-;55431:7;55458:6;;;;;;;;;;;55451:13;;55385:87;:::o;57608:::-;55271:13;:11;:13::i;:::-;57679:8:::1;57671:5;:16;;;;57608:87:::0;:::o;17221:104::-;17277:13;17310:7;17303:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17221:104;:::o;56975: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;58034:83::-;55271:13;:11;:13::i;:::-;58103:6:::1;58095:5;:14;;;;58034:83:::0;:::o;57114:24::-;;;;:::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;57419:80::-;55271:13;:11;:13::i;:::-;57483:8:::1;;;;;;;;;;;57482:9;57471:8;;:20;;;;;;;;;;;;;;;;;;57419:80::o:0;57013:28::-;;;;:::o;58846:428::-;58905:8;;;;;;;;;;;58897:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;59009:5;;59002:3;58972:15;:27;58988:10;58972:27;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;:42;;58950:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;59116:3;59108:5;;:11;;;;:::i;:::-;59095:9;:24;;59087:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;59243:3;59200:15;:27;59216:10;59200:27;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;59157:15;:27;59173:10;59157:27;;;;;;;;;;;;;;;:89;;;;59257:9;59262:3;59257:4;:9::i;:::-;58846:428;:::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;59777:170::-;59867:9;;59850:13;:11;:13::i;:::-;59844:3;:19;;;;:::i;:::-;:32;;59836:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;59925:14;59931:2;59935:3;59925:5;:14::i;:::-;59777: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;60078:203::-;60141:4;60158:12;60200:10;60183:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;60173:39;;;;;;60158:54;;60230:43;60249:5;60256:10;;60268:4;60230:18;:43::i;:::-;60223:50;;;60078:203;;;:::o;59525:244::-;59587:8;;59580:3;:15;;:26;;;;;59605:1;59599:3;:7;59580:26;59572:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;59689:12;;59682:3;59666:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;;59658:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;59735:26;59743:12;:10;:12::i;:::-;59757:3;59735:7;:26::i;:::-;59525:244;:::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;58127:105::-;58179:13;58212:12;58205:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58127: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;59282:235::-;59341:5;;59334:3;:12;;:23;;;;;59356:1;59350:3;:7;59334:23;59326:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;59440:9;;59433:3;59417:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;59409:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;59483:26;59491:12;:10;:12::i;:::-;59505:3;59483:7;:26::i;:::-;59282:235;:::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;31768:159::-;;;;;:::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;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:364::-;11417:3;11445:39;11478:5;11445:39;:::i;:::-;11500:71;11564:6;11559:3;11500:71;:::i;:::-;11493:78;;11580:52;11625:6;11620:3;11613:4;11606:5;11602:16;11580:52;:::i;:::-;11657:29;11679:6;11657:29;:::i;:::-;11652:3;11648:39;11641:46;;11421:272;11329:364;;;;:::o;11699:377::-;11805:3;11833:39;11866:5;11833:39;:::i;:::-;11888:89;11970:6;11965:3;11888:89;:::i;:::-;11881:96;;11986:52;12031:6;12026:3;12019:4;12012:5;12008:16;11986:52;:::i;:::-;12063:6;12058:3;12054:16;12047:23;;11809:267;11699:377;;;;:::o;12082:366::-;12224:3;12245:67;12309:2;12304:3;12245:67;:::i;:::-;12238:74;;12321:93;12410:3;12321:93;:::i;:::-;12439:2;12434:3;12430:12;12423:19;;12082:366;;;:::o;12454:::-;12596:3;12617:67;12681:2;12676:3;12617:67;:::i;:::-;12610:74;;12693:93;12782:3;12693:93;:::i;:::-;12811:2;12806:3;12802:12;12795:19;;12454:366;;;:::o;12826:::-;12968:3;12989:67;13053:2;13048:3;12989:67;:::i;:::-;12982:74;;13065:93;13154:3;13065:93;:::i;:::-;13183:2;13178:3;13174:12;13167:19;;12826:366;;;:::o;13198:::-;13340:3;13361:67;13425:2;13420:3;13361:67;:::i;:::-;13354:74;;13437:93;13526:3;13437:93;:::i;:::-;13555:2;13550:3;13546:12;13539:19;;13198:366;;;:::o;13570:::-;13712:3;13733:67;13797:2;13792:3;13733:67;:::i;:::-;13726:74;;13809:93;13898:3;13809:93;:::i;:::-;13927:2;13922:3;13918:12;13911:19;;13570:366;;;:::o;13942:::-;14084:3;14105:67;14169:2;14164:3;14105:67;:::i;:::-;14098:74;;14181:93;14270:3;14181:93;:::i;:::-;14299:2;14294:3;14290:12;14283:19;;13942:366;;;:::o;14314:::-;14456:3;14477:67;14541:2;14536:3;14477:67;:::i;:::-;14470:74;;14553:93;14642:3;14553:93;:::i;:::-;14671:2;14666:3;14662:12;14655:19;;14314:366;;;:::o;14686:::-;14828:3;14849:67;14913:2;14908:3;14849:67;:::i;:::-;14842:74;;14925:93;15014:3;14925:93;:::i;:::-;15043:2;15038:3;15034:12;15027:19;;14686:366;;;:::o;15058:::-;15200:3;15221:67;15285:2;15280:3;15221:67;:::i;:::-;15214:74;;15297:93;15386:3;15297:93;:::i;:::-;15415:2;15410:3;15406:12;15399:19;;15058:366;;;:::o;15430:::-;15572:3;15593:67;15657:2;15652:3;15593:67;:::i;:::-;15586:74;;15669:93;15758:3;15669:93;:::i;:::-;15787:2;15782:3;15778:12;15771:19;;15430:366;;;:::o;15802:118::-;15889:24;15907:5;15889:24;:::i;:::-;15884:3;15877:37;15802:118;;:::o;15926:256::-;16038:3;16053:75;16124:3;16115:6;16053:75;:::i;:::-;16153:2;16148:3;16144:12;16137:19;;16173:3;16166:10;;15926:256;;;;:::o;16188:435::-;16368:3;16390:95;16481:3;16472:6;16390:95;:::i;:::-;16383:102;;16502:95;16593:3;16584:6;16502:95;:::i;:::-;16495:102;;16614:3;16607:10;;16188:435;;;;;:::o;16629:222::-;16722:4;16760:2;16749:9;16745:18;16737:26;;16773:71;16841:1;16830:9;16826:17;16817:6;16773:71;:::i;:::-;16629:222;;;;:::o;16857:640::-;17052:4;17090:3;17079:9;17075:19;17067:27;;17104:71;17172:1;17161:9;17157:17;17148:6;17104:71;:::i;:::-;17185:72;17253:2;17242:9;17238:18;17229:6;17185:72;:::i;:::-;17267;17335:2;17324:9;17320:18;17311:6;17267:72;:::i;:::-;17386:9;17380:4;17376:20;17371:2;17360:9;17356:18;17349:48;17414:76;17485:4;17476:6;17414:76;:::i;:::-;17406:84;;16857:640;;;;;;;:::o;17503:210::-;17590:4;17628:2;17617:9;17613:18;17605:26;;17641:65;17703:1;17692:9;17688:17;17679:6;17641:65;:::i;:::-;17503:210;;;;:::o;17719:222::-;17812:4;17850:2;17839:9;17835:18;17827:26;;17863:71;17931:1;17920:9;17916:17;17907:6;17863:71;:::i;:::-;17719:222;;;;:::o;17947:313::-;18060:4;18098:2;18087:9;18083:18;18075:26;;18147:9;18141:4;18137:20;18133:1;18122:9;18118:17;18111:47;18175:78;18248:4;18239:6;18175:78;:::i;:::-;18167:86;;17947:313;;;;:::o;18266:419::-;18432:4;18470:2;18459:9;18455:18;18447:26;;18519:9;18513:4;18509:20;18505:1;18494:9;18490:17;18483:47;18547:131;18673:4;18547:131;:::i;:::-;18539:139;;18266:419;;;:::o;18691:::-;18857:4;18895:2;18884:9;18880:18;18872:26;;18944:9;18938:4;18934:20;18930:1;18919:9;18915:17;18908:47;18972:131;19098:4;18972:131;:::i;:::-;18964:139;;18691:419;;;:::o;19116:::-;19282:4;19320:2;19309:9;19305:18;19297:26;;19369:9;19363:4;19359:20;19355:1;19344:9;19340:17;19333:47;19397:131;19523:4;19397:131;:::i;:::-;19389:139;;19116:419;;;:::o;19541:::-;19707:4;19745:2;19734:9;19730:18;19722:26;;19794:9;19788:4;19784:20;19780:1;19769:9;19765:17;19758:47;19822:131;19948:4;19822:131;:::i;:::-;19814:139;;19541:419;;;:::o;19966:::-;20132:4;20170:2;20159:9;20155:18;20147:26;;20219:9;20213:4;20209:20;20205:1;20194:9;20190:17;20183:47;20247:131;20373:4;20247:131;:::i;:::-;20239:139;;19966:419;;;:::o;20391:::-;20557:4;20595:2;20584:9;20580:18;20572:26;;20644:9;20638:4;20634:20;20630:1;20619:9;20615:17;20608:47;20672:131;20798:4;20672:131;:::i;:::-;20664:139;;20391:419;;;:::o;20816:::-;20982:4;21020:2;21009:9;21005:18;20997:26;;21069:9;21063:4;21059:20;21055:1;21044:9;21040:17;21033:47;21097:131;21223:4;21097:131;:::i;:::-;21089:139;;20816:419;;;:::o;21241:::-;21407:4;21445:2;21434:9;21430:18;21422:26;;21494:9;21488:4;21484:20;21480:1;21469:9;21465:17;21458:47;21522:131;21648:4;21522:131;:::i;:::-;21514:139;;21241:419;;;:::o;21666:::-;21832:4;21870:2;21859:9;21855:18;21847:26;;21919:9;21913:4;21909:20;21905:1;21894:9;21890:17;21883:47;21947:131;22073:4;21947:131;:::i;:::-;21939:139;;21666:419;;;:::o;22091:::-;22257:4;22295:2;22284:9;22280:18;22272:26;;22344:9;22338:4;22334:20;22330:1;22319:9;22315:17;22308:47;22372:131;22498:4;22372:131;:::i;:::-;22364:139;;22091:419;;;:::o;22516:222::-;22609:4;22647:2;22636:9;22632:18;22624:26;;22660:71;22728:1;22717:9;22713:17;22704:6;22660:71;:::i;:::-;22516:222;;;;:::o;22744:129::-;22778:6;22805:20;;:::i;:::-;22795:30;;22834:33;22862:4;22854:6;22834:33;:::i;:::-;22744:129;;;:::o;22879:75::-;22912:6;22945:2;22939:9;22929:19;;22879:75;:::o;22960:311::-;23037:4;23127:18;23119:6;23116:30;23113:56;;;23149:18;;:::i;:::-;23113:56;23199:4;23191:6;23187:17;23179:25;;23259:4;23253;23249:15;23241:23;;22960:311;;;:::o;23277:307::-;23338:4;23428:18;23420:6;23417:30;23414:56;;;23450:18;;:::i;:::-;23414:56;23488:29;23510:6;23488:29;:::i;:::-;23480:37;;23572:4;23566;23562:15;23554:23;;23277:307;;;:::o;23590:98::-;23641:6;23675:5;23669:12;23659:22;;23590:98;;;:::o;23694:99::-;23746:6;23780:5;23774:12;23764:22;;23694:99;;;:::o;23799:168::-;23882:11;23916:6;23911:3;23904:19;23956:4;23951:3;23947:14;23932:29;;23799:168;;;;:::o;23973:169::-;24057:11;24091:6;24086:3;24079:19;24131:4;24126:3;24122:14;24107:29;;23973:169;;;;:::o;24148:148::-;24250:11;24287:3;24272:18;;24148:148;;;;:::o;24302:305::-;24342:3;24361:20;24379:1;24361:20;:::i;:::-;24356:25;;24395:20;24413:1;24395:20;:::i;:::-;24390:25;;24549:1;24481:66;24477:74;24474:1;24471:81;24468:107;;;24555:18;;:::i;:::-;24468:107;24599:1;24596;24592:9;24585:16;;24302:305;;;;:::o;24613:185::-;24653:1;24670:20;24688:1;24670:20;:::i;:::-;24665:25;;24704:20;24722:1;24704:20;:::i;:::-;24699:25;;24743:1;24733:35;;24748:18;;:::i;:::-;24733:35;24790:1;24787;24783:9;24778:14;;24613:185;;;;:::o;24804:348::-;24844:7;24867:20;24885:1;24867:20;:::i;:::-;24862:25;;24901:20;24919:1;24901:20;:::i;:::-;24896:25;;25089:1;25021:66;25017:74;25014:1;25011:81;25006:1;24999:9;24992:17;24988:105;24985:131;;;25096:18;;:::i;:::-;24985:131;25144:1;25141;25137:9;25126:20;;24804:348;;;;:::o;25158:191::-;25198:4;25218:20;25236:1;25218:20;:::i;:::-;25213:25;;25252:20;25270:1;25252:20;:::i;:::-;25247:25;;25291:1;25288;25285:8;25282:34;;;25296:18;;:::i;:::-;25282:34;25341:1;25338;25334:9;25326:17;;25158:191;;;;:::o;25355:96::-;25392:7;25421:24;25439:5;25421:24;:::i;:::-;25410:35;;25355:96;;;:::o;25457:90::-;25491:7;25534:5;25527:13;25520:21;25509:32;;25457:90;;;:::o;25553:77::-;25590:7;25619:5;25608:16;;25553:77;;;:::o;25636:149::-;25672:7;25712:66;25705:5;25701:78;25690:89;;25636:149;;;:::o;25791:126::-;25828:7;25868:42;25861:5;25857:54;25846:65;;25791:126;;;:::o;25923:77::-;25960:7;25989:5;25978:16;;25923:77;;;:::o;26006:154::-;26090:6;26085:3;26080;26067:30;26152:1;26143:6;26138:3;26134:16;26127:27;26006:154;;;:::o;26166:307::-;26234:1;26244:113;26258:6;26255:1;26252:13;26244:113;;;26343:1;26338:3;26334:11;26328:18;26324:1;26319:3;26315:11;26308:39;26280:2;26277:1;26273:10;26268:15;;26244:113;;;26375:6;26372:1;26369:13;26366:101;;;26455:1;26446:6;26441:3;26437:16;26430:27;26366:101;26215:258;26166:307;;;:::o;26479:320::-;26523:6;26560:1;26554:4;26550:12;26540:22;;26607:1;26601:4;26597:12;26628:18;26618:81;;26684:4;26676:6;26672:17;26662:27;;26618:81;26746:2;26738:6;26735:14;26715:18;26712:38;26709:84;;;26765:18;;:::i;:::-;26709:84;26530:269;26479:320;;;:::o;26805:281::-;26888:27;26910:4;26888:27;:::i;:::-;26880:6;26876:40;27018:6;27006:10;27003:22;26982:18;26970:10;26967:34;26964:62;26961:88;;;27029:18;;:::i;:::-;26961:88;27069:10;27065:2;27058:22;26848:238;26805:281;;:::o;27092:233::-;27131:3;27154:24;27172:5;27154:24;:::i;:::-;27145:33;;27200:66;27193:5;27190:77;27187:103;;;27270:18;;:::i;:::-;27187:103;27317:1;27310:5;27306:13;27299:20;;27092:233;;;:::o;27331:100::-;27370:7;27399:26;27419:5;27399:26;:::i;:::-;27388:37;;27331:100;;;:::o;27437:94::-;27476:7;27505:20;27519:5;27505:20;:::i;:::-;27494:31;;27437:94;;;:::o;27537:176::-;27569:1;27586:20;27604:1;27586:20;:::i;:::-;27581:25;;27620:20;27638:1;27620:20;:::i;:::-;27615:25;;27659:1;27649:35;;27664:18;;:::i;:::-;27649:35;27705:1;27702;27698:9;27693:14;;27537:176;;;;:::o;27719:180::-;27767:77;27764:1;27757:88;27864:4;27861:1;27854:15;27888:4;27885:1;27878:15;27905:180;27953:77;27950:1;27943:88;28050:4;28047:1;28040:15;28074:4;28071:1;28064:15;28091:180;28139:77;28136:1;28129:88;28236:4;28233:1;28226:15;28260:4;28257:1;28250:15;28277:180;28325:77;28322:1;28315:88;28422:4;28419:1;28412:15;28446:4;28443:1;28436:15;28463:180;28511:77;28508:1;28501:88;28608:4;28605:1;28598:15;28632:4;28629:1;28622:15;28649:117;28758:1;28755;28748:12;28772:117;28881:1;28878;28871:12;28895:117;29004:1;29001;28994:12;29018:117;29127:1;29124;29117:12;29141:117;29250:1;29247;29240:12;29264:117;29373:1;29370;29363:12;29387:102;29428:6;29479:2;29475:7;29470:2;29463:5;29459:14;29455:28;29445:38;;29387:102;;;:::o;29495:94::-;29528:8;29576:5;29572:2;29568:14;29547:35;;29495:94;;;:::o;29595:225::-;29735:34;29731:1;29723:6;29719:14;29712:58;29804:8;29799:2;29791:6;29787:15;29780:33;29595:225;:::o;29826:223::-;29966:34;29962:1;29954:6;29950:14;29943:58;30035:6;30030:2;30022:6;30018:15;30011:31;29826:223;:::o;30055:172::-;30195:24;30191:1;30183:6;30179:14;30172:48;30055:172;:::o;30233:168::-;30373:20;30369:1;30361:6;30357:14;30350:44;30233:168;:::o;30407:248::-;30547:34;30543:1;30535:6;30531:14;30524:58;30616:31;30611:2;30603:6;30599:15;30592:56;30407:248;:::o;30661:182::-;30801:34;30797:1;30789:6;30785:14;30778:58;30661:182;:::o;30849:224::-;30989:34;30985:1;30977:6;30973:14;30966:58;31058:7;31053:2;31045:6;31041:15;31034:32;30849:224;:::o;31079:220::-;31219:34;31215:1;31207:6;31203:14;31196:58;31288:3;31283:2;31275:6;31271:15;31264:28;31079:220;:::o;31305:221::-;31445:34;31441:1;31433:6;31429:14;31422:58;31514:4;31509:2;31501:6;31497:15;31490:29;31305:221;:::o;31532:171::-;31672:23;31668:1;31660:6;31656:14;31649:47;31532:171;:::o;31709:122::-;31782:24;31800:5;31782:24;:::i;:::-;31775:5;31772:35;31762:63;;31821:1;31818;31811:12;31762:63;31709:122;:::o;31837:116::-;31907:21;31922:5;31907:21;:::i;:::-;31900:5;31897:32;31887:60;;31943:1;31940;31933:12;31887:60;31837:116;:::o;31959:122::-;32032:24;32050:5;32032:24;:::i;:::-;32025:5;32022:35;32012:63;;32071:1;32068;32061:12;32012:63;31959:122;:::o;32087:120::-;32159:23;32176:5;32159:23;:::i;:::-;32152:5;32149:34;32139:62;;32197:1;32194;32187:12;32139:62;32087:120;:::o;32213:122::-;32286:24;32304:5;32286:24;:::i;:::-;32279:5;32276:35;32266:63;;32325:1;32322;32315:12;32266:63;32213:122;:::o

Swarm Source

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