ETH Price: $2,909.66 (-3.98%)
Gas: 2 Gwei

Token

Onryo 888 (ONRYO)
 

Overview

Max Total Supply

888 ONRYO

Holders

438

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 ONRYO
0xdb9179c10bead57f223298fa7d2079a0078a435d
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:
ONRYO888

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
//Developer Info:
//Written by Ghazanfar Perdakh
//Email: [email protected]
//Whatsapp NO.: +923331578650
//fiverr: fiverr.com/ghazanfarperdakh
pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees 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.
 */
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 Returns the rebuilt hash obtained by traversing a Merklee 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

pragma solidity ^0.8.0;
/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: ERC2000000.sol



pragma solidity ^0.8.7;










library Address {
    function isContract(address account) internal view returns (bool) {
        uint size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
    
    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) 
        public 
        view 
        virtual 
        override 
        returns (uint) 
    {
        require(owner != address(0), "ERC721: balance query for the zero address");

        uint count;
        uint length= _owners.length;
        for( uint i; i < length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }
        delete length;
        return count;
    }

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _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 {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }

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

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

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

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

        _beforeTokenTransfer(address(0), to, tokenId);
        _owners.push(to);

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

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

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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


pragma solidity ^0.8.7;


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account but rips out the core of the gas-wasting processing that comes from OpenZeppelin.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < _owners.length, "ERC721Enumerable: global index out of bounds");
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) {
        require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds");

        uint count;
        for(uint i; i < _owners.length; i++){
            if(owner == _owners[i]){
                if(count == index) return i;
                else count++;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}
    pragma solidity ^0.8.7;

    contract ONRYO888  is ERC721Enumerable,  Ownable {
    using Strings for uint256;


  string private uriPrefix = "";
  string private uriSuffix = ".json";
  string public hiddenURL = "ipfs://QmcxUHCpqQXCaoW7mHGdaYwD9XnHHn69LQxdUJXW45rXTJ/hidden.json";

  
  

  uint256 public cost = 0.0888 ether;
  uint256 public whiteListCost =0.0888 ether;

  uint8 public maxWLMintAmountPerWallet = 1;  
  mapping (address => uint8) public nftPerWLAddress;
   mapping (address => uint8) public nftPerAddress;
  uint16 public constant maxSupply = 888;
  uint8 public maxMintAmountPerWallet = 3;


  bool public WLpaused = false;
  bool public paused = true;
  bool public reveal = false;

  
  bytes32 public whitelistMerkleRoot = 0xcfea41ea735f36459157573e73601ffd579b02d350609e660b8d01b1dca3a857;
  

  constructor() ERC721("Onryo 888", "ONRYO") {
    
  }
 
  function mint(uint8 _mintAmount) external payable  {
    uint16 totalSupply = uint16(_owners.length);
    uint8 tokens =nftPerAddress[msg.sender];
    require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
    require(_mintAmount + tokens <= maxMintAmountPerWallet, "Exceeds max per transaction.");

    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
     for(uint8 i; i < _mintAmount; i++) {
    _mint(msg.sender, totalSupply + i);
     }
        nftPerAddress[msg.sender] = tokens + _mintAmount;
     delete totalSupply;
     delete _mintAmount;
  }
  
  function Reserve(uint8 _mintAmount, address _receiver) external onlyOwner {
    uint16 totalSupply = uint8(_owners.length);
    require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
    for(uint16 i; i < _mintAmount; i++) {
    _mint(_receiver , totalSupply + i);
     }
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }


   
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if (reveal == false) {
      return hiddenURL;
    }

    

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }
  function setRevealed() external onlyOwner {
    reveal = !reveal;
  }
   function setWLPaused() external onlyOwner {
    WLpaused = !WLpaused;
  }
  function setWLCost(uint256 _cost) external onlyOwner {
    whiteListCost = _cost;
    delete _cost;
  }
  function setMaxTxPerWlAddress(uint8 _limit) external onlyOwner{
    maxWLMintAmountPerWallet = _limit;
   delete _limit;

}
function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner {
        whitelistMerkleRoot = _whitelistMerkleRoot;
    }

    
    function getLeafNode(address _leaf) internal pure returns (bytes32 temp)
    {
        return keccak256(abi.encodePacked(_leaf));
    }
    function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) {
        return MerkleProof.verify(proof, whitelistMerkleRoot, leaf);
    }

function whitelistMint(uint8 _mintAmount, bytes32[] calldata merkleProof) external payable {
        
       bytes32  leafnode = getLeafNode(msg.sender);
        uint8 tokens =nftPerWLAddress[msg.sender] ;
       require(_verify(leafnode ,   merkleProof   ),  "Invalid merkle proof");
       require (tokens + _mintAmount <= maxWLMintAmountPerWallet, "Exceeds max tx per address");
      


    require(!WLpaused, "Whitelist minting is over!");
    require(msg.value >= whiteListCost * _mintAmount, "Insufficient funds!");

       uint16 totalSupply = uint16(_owners.length);
    for(uint8 i; i < _mintAmount; i++) {
    _mint(msg.sender , totalSupply + i);
     }
      nftPerWLAddress[msg.sender] = _mintAmount + tokens;
      delete totalSupply;
      delete _mintAmount;
      
    
    }
  function setHiddenMetadataUri(string memory _hiddenMetadataUri) external onlyOwner {
    hiddenURL = _hiddenMetadataUri;
  }
  
 

  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }


  function setPaused() external onlyOwner {
    paused = !paused;
    WLpaused = true;
  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }


  function setMaxMintAmountPerWallet(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerWallet = _maxtx;

  }

 

  function withdraw() external onlyOwner {
  uint _balance = address(this).balance;
     payable(msg.sender).transfer(_balance ); 
       
  }

   function _mint(address to, uint256 tokenId) internal virtual override {
        _owners.push(to);
        emit Transfer(address(0), to, tokenId);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WLpaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWLMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nftPerAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nftPerWLAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setMaxTxPerWlAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setWLCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWLPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600691620001bb565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600791620001bb565b5060405180608001604052806041815260200162002b0f6041913980516200007b91600891602090910190620001bb565b5067013b7b21280e00006009819055600a55600b805460ff19166001179055600e805463ffffffff1916620100031790557fcfea41ea735f36459157573e73601ffd579b02d350609e660b8d01b1dca3a857600f55348015620000dd57600080fd5b50604080518082018252600981526809edce4f2de407070760bb1b6020808301918252835180850190945260058452644f4e52594f60d81b9084015281519192916200012c91600091620001bb565b50805162000142906001906020840190620001bb565b5050506200015f620001596200016560201b60201c565b62000169565b6200029e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001c99062000261565b90600052602060002090601f016020900481019282620001ed576000855562000238565b82601f106200020857805160ff191683800117855562000238565b8280016001018555821562000238579182015b82811115620002385782518255916020019190600101906200021b565b50620002469291506200024a565b5090565b5b808211156200024657600081556001016200024b565b600181811c908216806200027657607f821691505b602082108114156200029857634e487b7160e01b600052602260045260246000fd5b50919050565b61286180620002ae6000396000f3fe6080604052600436106102725760003560e01c80635c975abb1161014f578063a22cb465116100c1578063c87b56dd1161007a578063c87b56dd14610735578063d1d1921314610755578063d5abeb0114610775578063e985e9c51461079e578063eef440af146107e7578063f2fde38b146107fc57600080fd5b8063a22cb46514610684578063a475b5dd146106a4578063aa98e0c6146106c5578063b88d4fde146106db578063bc951b91146106fb578063bd32fb661461071557600080fd5b8063715018a611610113578063715018a6146105e75780637ec4a659146105fc5780637f6e90931461061c5780638da5cb5b1461063b5780639257e0441461065957806395d89b411461066f57600080fd5b80635c975abb146105545780636352211e1461057457806363937fe0146105945780636ecd2306146105b457806370a08231146105c757600080fd5b806337a66d85116101e8578063492b12e8116101ac578063492b12e8146104755780634f6ccce7146104b75780634fdd43cb146104d7578063506c2030146104f757806358381669146105115780635afcf9001461052457600080fd5b806337a66d85146103f65780633bd649681461040b5780633ccfd60b1461042057806342842e0e1461043557806344a0d68a1461045557600080fd5b806313faede61161023a57806313faede61461033d578063169e490d1461036157806318160ddd1461038157806323b872dd1461039657806328b60d15146103b65780632f745c59146103d657600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063093cfa6314610306578063095ea7b31461031d575b600080fd5b34801561028357600080fd5b50610297610292366004612295565b61081c565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610847565b6040516102a39190612502565b3480156102da57600080fd5b506102ee6102e936600461227c565b6108d9565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b5061031b610966565b005b34801561032957600080fd5b5061031b610338366004612252565b6109ad565b34801561034957600080fd5b5061035360095481565b6040519081526020016102a3565b34801561036d57600080fd5b5061031b61037c366004612333565b610ac3565b34801561038d57600080fd5b50600254610353565b3480156103a257600080fd5b5061031b6103b136600461215e565b610b8f565b3480156103c257600080fd5b5061031b6103d1366004612318565b610bc0565b3480156103e257600080fd5b506103536103f1366004612252565b610c00565b34801561040257600080fd5b5061031b610cb3565b34801561041757600080fd5b5061031b610d06565b34801561042c57600080fd5b5061031b610d51565b34801561044157600080fd5b5061031b61045036600461215e565b610dae565b34801561046157600080fd5b5061031b61047036600461227c565b610dc9565b34801561048157600080fd5b506104a5610490366004612110565b600c6020526000908152604090205460ff1681565b60405160ff90911681526020016102a3565b3480156104c357600080fd5b506103536104d236600461227c565b610df8565b3480156104e357600080fd5b5061031b6104f23660046122cf565b610e65565b34801561050357600080fd5b50600b546104a59060ff1681565b61031b61051f36600461234f565b610ea2565b34801561053057600080fd5b506104a561053f366004612110565b600d6020526000908152604090205460ff1681565b34801561056057600080fd5b50600e546102979062010000900460ff1681565b34801561058057600080fd5b506102ee61058f36600461227c565b6110ec565b3480156105a057600080fd5b5061031b6105af366004612318565b611178565b61031b6105c2366004612318565b6111b8565b3480156105d357600080fd5b506103536105e2366004612110565b61139e565b3480156105f357600080fd5b5061031b611470565b34801561060857600080fd5b5061031b6106173660046122cf565b6114a6565b34801561062857600080fd5b50600e5461029790610100900460ff1681565b34801561064757600080fd5b506005546001600160a01b03166102ee565b34801561066557600080fd5b50610353600a5481565b34801561067b57600080fd5b506102c16114e3565b34801561069057600080fd5b5061031b61069f366004612216565b6114f2565b3480156106b057600080fd5b50600e54610297906301000000900460ff1681565b3480156106d157600080fd5b50610353600f5481565b3480156106e757600080fd5b5061031b6106f636600461219a565b6115b7565b34801561070757600080fd5b50600e546104a59060ff1681565b34801561072157600080fd5b5061031b61073036600461227c565b6115e9565b34801561074157600080fd5b506102c161075036600461227c565b611618565b34801561076157600080fd5b5061031b61077036600461227c565b611789565b34801561078157600080fd5b5061078b61037881565b60405161ffff90911681526020016102a3565b3480156107aa57600080fd5b506102976107b936600461212b565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156107f357600080fd5b506102c16117b8565b34801561080857600080fd5b5061031b610817366004612110565b611846565b60006001600160e01b0319821663780e9d6360e01b14806108415750610841826118e1565b92915050565b60606000805461085690612711565b80601f016020809104026020016040519081016040528092919081815260200182805461088290612711565b80156108cf5780601f106108a4576101008083540402835291602001916108cf565b820191906000526020600020905b8154815290600101906020018083116108b257829003601f168201915b5050505050905090565b60006108e482611931565b61094a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6005546001600160a01b031633146109905760405162461bcd60e51b8152600401610941906125b2565b600e805461ff001981166101009182900460ff1615909102179055565b60006109b8826110ec565b9050806001600160a01b0316836001600160a01b03161415610a265760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610941565b336001600160a01b0382161480610a425750610a4281336107b9565b610ab45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610941565b610abe838361197b565b505050565b6005546001600160a01b03163314610aed5760405162461bcd60e51b8152600401610941906125b2565b60025460ff9081169061037890610b0690851683612638565b61ffff161115610b4e5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610941565b60005b8360ff168161ffff161015610b8957610b7783610b6e8385612638565b61ffff166119e9565b80610b818161274c565b915050610b51565b50505050565b610b993382611a65565b610bb55760405162461bcd60e51b8152600401610941906125e7565b610abe838383611b4f565b6005546001600160a01b03163314610bea5760405162461bcd60e51b8152600401610941906125b2565b600e805460ff191660ff92909216919091179055565b6000610c0b8361139e565b8210610c295760405162461bcd60e51b815260040161094190612515565b6000805b600254811015610c9a5760028181548110610c4a57610c4a6127e9565b6000918252602090912001546001600160a01b0386811691161415610c885783821415610c7a5791506108419050565b81610c848161276e565b9250505b80610c928161276e565b915050610c2d565b5060405162461bcd60e51b815260040161094190612515565b6005546001600160a01b03163314610cdd5760405162461bcd60e51b8152600401610941906125b2565b600e805461ff001960ff620100008084049190911615021662ffff001990911617610100179055565b6005546001600160a01b03163314610d305760405162461bcd60e51b8152600401610941906125b2565b600e805463ff00000019811663010000009182900460ff1615909102179055565b6005546001600160a01b03163314610d7b5760405162461bcd60e51b8152600401610941906125b2565b6040514790339082156108fc029083906000818181858888f19350505050158015610daa573d6000803e3d6000fd5b5050565b610abe838383604051806020016040528060008152506115b7565b6005546001600160a01b03163314610df35760405162461bcd60e51b8152600401610941906125b2565b600955565b6002546000908210610e615760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610941565b5090565b6005546001600160a01b03163314610e8f5760405162461bcd60e51b8152600401610941906125b2565b8051610daa906008906020840190611fdd565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120600090336000908152600c6020908152604091829020548251868302818101840190945286815293945060ff1692610f2f92859288918891829190850190849080828437600092019190915250611ca592505050565b610f725760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b6044820152606401610941565b600b5460ff16610f828683612676565b60ff161115610fd35760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d61782074782070657220616464726573730000000000006044820152606401610941565b600e54610100900460ff161561102b5760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f766572210000000000006044820152606401610941565b8460ff16600a5461103c91906126af565b3410156110815760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610941565b60025460005b8660ff168160ff1610156110b8576110a633610b6e60ff841685612638565b806110b081612789565b915050611087565b506110c38287612676565b336000908152600c60205260409020805460ff191660ff92909216919091179055505050505050565b60008060028381548110611102576111026127e9565b6000918252602090912001546001600160a01b03169050806108415760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610941565b6005546001600160a01b031633146111a25760405162461bcd60e51b8152600401610941906125b2565b600b805460ff191660ff92909216919091179055565b600254336000908152600d602052604090205460ff90811690610378906111e190851684612638565b61ffff1611156112295760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610941565b600e5460ff166112398285612676565b60ff16111561128a5760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610941565b600e5462010000900460ff16156112e35760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610941565b8260ff166009546112f491906126af565b3410156113395760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610941565b60005b8360ff168160ff16101561136d5761135b33610b6e60ff841686612638565b8061136581612789565b91505061133c565b506113788382612676565b336000908152600d60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b0382166114095760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610941565b600254600090815b81811015611467576002818154811061142c5761142c6127e9565b6000918252602090912001546001600160a01b0386811691161415611457576114548361276e565b92505b6114608161276e565b9050611411565b50909392505050565b6005546001600160a01b0316331461149a5760405162461bcd60e51b8152600401610941906125b2565b6114a46000611cb4565b565b6005546001600160a01b031633146114d05760405162461bcd60e51b8152600401610941906125b2565b8051610daa906006906020840190611fdd565b60606001805461085690612711565b6001600160a01b03821633141561154b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610941565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115c13383611a65565b6115dd5760405162461bcd60e51b8152600401610941906125e7565b610b8984848484611d06565b6005546001600160a01b031633146116135760405162461bcd60e51b8152600401610941906125b2565b600f55565b606061162382611931565b6116875760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610941565b600e546301000000900460ff1661172a57600880546116a590612711565b80601f01602080910402602001604051908101604052809291908181526020018280546116d190612711565b801561171e5780601f106116f35761010080835404028352916020019161171e565b820191906000526020600020905b81548152906001019060200180831161170157829003601f168201915b50505050509050919050565b6000611734611d39565b905060008151116117545760405180602001604052806000815250611782565b8061175e84611d48565b600760405160200161177293929190612401565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633146117b35760405162461bcd60e51b8152600401610941906125b2565b600a55565b600880546117c590612711565b80601f01602080910402602001604051908101604052809291908181526020018280546117f190612711565b801561183e5780601f106118135761010080835404028352916020019161183e565b820191906000526020600020905b81548152906001019060200180831161182157829003601f168201915b505050505081565b6005546001600160a01b031633146118705760405162461bcd60e51b8152600401610941906125b2565b6001600160a01b0381166118d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610941565b6118de81611cb4565b50565b60006001600160e01b031982166380ac58cd60e01b148061191257506001600160e01b03198216635b5e139f60e01b145b8061084157506301ffc9a760e01b6001600160e01b0319831614610841565b60025460009082108015610841575060006001600160a01b03166002838154811061195e5761195e6127e9565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119b0826110ec565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611a7082611931565b611ad15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610941565b6000611adc836110ec565b9050806001600160a01b0316846001600160a01b03161480611b175750836001600160a01b0316611b0c846108d9565b6001600160a01b0316145b80611b4757506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b62826110ec565b6001600160a01b031614611bca5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610941565b6001600160a01b038216611c2c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610941565b611c3760008261197b565b8160028281548110611c4b57611c4b6127e9565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600061178282600f5485611e46565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d11848484611b4f565b611d1d84848484611e5c565b610b895760405162461bcd60e51b815260040161094190612560565b60606006805461085690612711565b606081611d6c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d965780611d808161276e565b9150611d8f9050600a8361269b565b9150611d70565b60008167ffffffffffffffff811115611db157611db16127ff565b6040519080825280601f01601f191660200182016040528015611ddb576020820181803683370190505b5090505b8415611b4757611df06001836126ce565b9150611dfd600a866127a9565b611e0890603061265e565b60f81b818381518110611e1d57611e1d6127e9565b60200101906001600160f81b031916908160001a905350611e3f600a8661269b565b9450611ddf565b600082611e538584611f69565b14949350505050565b60006001600160a01b0384163b15611f5e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ea09033908990889088906004016124c5565b602060405180830381600087803b158015611eba57600080fd5b505af1925050508015611eea575060408051601f3d908101601f19168201909252611ee7918101906122b2565b60015b611f44573d808015611f18576040519150601f19603f3d011682016040523d82523d6000602084013e611f1d565b606091505b508051611f3c5760405162461bcd60e51b815260040161094190612560565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b47565b506001949350505050565b600081815b8451811015611fd5576000858281518110611f8b57611f8b6127e9565b60200260200101519050808311611fb15760008381526020829052604090209250611fc2565b600081815260208490526040902092505b5080611fcd8161276e565b915050611f6e565b509392505050565b828054611fe990612711565b90600052602060002090601f01602090048101928261200b5760008555612051565b82601f1061202457805160ff1916838001178555612051565b82800160010185558215612051579182015b82811115612051578251825591602001919060010190612036565b50610e619291505b80821115610e615760008155600101612059565b600067ffffffffffffffff80841115612088576120886127ff565b604051601f8501601f19908116603f011681019082821181831017156120b0576120b06127ff565b816040528093508581528686860111156120c957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146120fa57600080fd5b919050565b803560ff811681146120fa57600080fd5b60006020828403121561212257600080fd5b611782826120e3565b6000806040838503121561213e57600080fd5b612147836120e3565b9150612155602084016120e3565b90509250929050565b60008060006060848603121561217357600080fd5b61217c846120e3565b925061218a602085016120e3565b9150604084013590509250925092565b600080600080608085870312156121b057600080fd5b6121b9856120e3565b93506121c7602086016120e3565b925060408501359150606085013567ffffffffffffffff8111156121ea57600080fd5b8501601f810187136121fb57600080fd5b61220a8782356020840161206d565b91505092959194509250565b6000806040838503121561222957600080fd5b612232836120e3565b91506020830135801515811461224757600080fd5b809150509250929050565b6000806040838503121561226557600080fd5b61226e836120e3565b946020939093013593505050565b60006020828403121561228e57600080fd5b5035919050565b6000602082840312156122a757600080fd5b813561178281612815565b6000602082840312156122c457600080fd5b815161178281612815565b6000602082840312156122e157600080fd5b813567ffffffffffffffff8111156122f857600080fd5b8201601f8101841361230957600080fd5b611b478482356020840161206d565b60006020828403121561232a57600080fd5b611782826120ff565b6000806040838503121561234657600080fd5b612147836120ff565b60008060006040848603121561236457600080fd5b61236d846120ff565b9250602084013567ffffffffffffffff8082111561238a57600080fd5b818601915086601f83011261239e57600080fd5b8135818111156123ad57600080fd5b8760208260051b85010111156123c257600080fd5b6020830194508093505050509250925092565b600081518084526123ed8160208601602086016126e5565b601f01601f19169290920160200192915050565b6000845160206124148285838a016126e5565b8551918401916124278184848a016126e5565b8554920191600090600181811c908083168061244457607f831692505b85831081141561246257634e487b7160e01b85526022600452602485fd5b8080156124765760018114612487576124b4565b60ff198516885283880195506124b4565b60008b81526020902060005b858110156124ac5781548a820152908401908801612493565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124f8908301846123d5565b9695505050505050565b60208152600061178260208301846123d5565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600061ffff808316818516808303821115612655576126556127bd565b01949350505050565b60008219821115612671576126716127bd565b500190565b600060ff821660ff84168060ff03821115612693576126936127bd565b019392505050565b6000826126aa576126aa6127d3565b500490565b60008160001904831182151516156126c9576126c96127bd565b500290565b6000828210156126e0576126e06127bd565b500390565b60005b838110156127005781810151838201526020016126e8565b83811115610b895750506000910152565b600181811c9082168061272557607f821691505b6020821081141561274657634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415612764576127646127bd565b6001019392505050565b6000600019821415612782576127826127bd565b5060010190565b600060ff821660ff8114156127a0576127a06127bd565b60010192915050565b6000826127b8576127b86127d3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146118de57600080fdfea26469706673582212209ba9e41cf0a126643710521b698d448e3ac6bba58fce39515f0d4c4415cbc84364736f6c63430008070033697066733a2f2f516d63785548437071515843616f57376d4847646159774439586e48486e36394c517864554a585734357258544a2f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102725760003560e01c80635c975abb1161014f578063a22cb465116100c1578063c87b56dd1161007a578063c87b56dd14610735578063d1d1921314610755578063d5abeb0114610775578063e985e9c51461079e578063eef440af146107e7578063f2fde38b146107fc57600080fd5b8063a22cb46514610684578063a475b5dd146106a4578063aa98e0c6146106c5578063b88d4fde146106db578063bc951b91146106fb578063bd32fb661461071557600080fd5b8063715018a611610113578063715018a6146105e75780637ec4a659146105fc5780637f6e90931461061c5780638da5cb5b1461063b5780639257e0441461065957806395d89b411461066f57600080fd5b80635c975abb146105545780636352211e1461057457806363937fe0146105945780636ecd2306146105b457806370a08231146105c757600080fd5b806337a66d85116101e8578063492b12e8116101ac578063492b12e8146104755780634f6ccce7146104b75780634fdd43cb146104d7578063506c2030146104f757806358381669146105115780635afcf9001461052457600080fd5b806337a66d85146103f65780633bd649681461040b5780633ccfd60b1461042057806342842e0e1461043557806344a0d68a1461045557600080fd5b806313faede61161023a57806313faede61461033d578063169e490d1461036157806318160ddd1461038157806323b872dd1461039657806328b60d15146103b65780632f745c59146103d657600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063093cfa6314610306578063095ea7b31461031d575b600080fd5b34801561028357600080fd5b50610297610292366004612295565b61081c565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610847565b6040516102a39190612502565b3480156102da57600080fd5b506102ee6102e936600461227c565b6108d9565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b5061031b610966565b005b34801561032957600080fd5b5061031b610338366004612252565b6109ad565b34801561034957600080fd5b5061035360095481565b6040519081526020016102a3565b34801561036d57600080fd5b5061031b61037c366004612333565b610ac3565b34801561038d57600080fd5b50600254610353565b3480156103a257600080fd5b5061031b6103b136600461215e565b610b8f565b3480156103c257600080fd5b5061031b6103d1366004612318565b610bc0565b3480156103e257600080fd5b506103536103f1366004612252565b610c00565b34801561040257600080fd5b5061031b610cb3565b34801561041757600080fd5b5061031b610d06565b34801561042c57600080fd5b5061031b610d51565b34801561044157600080fd5b5061031b61045036600461215e565b610dae565b34801561046157600080fd5b5061031b61047036600461227c565b610dc9565b34801561048157600080fd5b506104a5610490366004612110565b600c6020526000908152604090205460ff1681565b60405160ff90911681526020016102a3565b3480156104c357600080fd5b506103536104d236600461227c565b610df8565b3480156104e357600080fd5b5061031b6104f23660046122cf565b610e65565b34801561050357600080fd5b50600b546104a59060ff1681565b61031b61051f36600461234f565b610ea2565b34801561053057600080fd5b506104a561053f366004612110565b600d6020526000908152604090205460ff1681565b34801561056057600080fd5b50600e546102979062010000900460ff1681565b34801561058057600080fd5b506102ee61058f36600461227c565b6110ec565b3480156105a057600080fd5b5061031b6105af366004612318565b611178565b61031b6105c2366004612318565b6111b8565b3480156105d357600080fd5b506103536105e2366004612110565b61139e565b3480156105f357600080fd5b5061031b611470565b34801561060857600080fd5b5061031b6106173660046122cf565b6114a6565b34801561062857600080fd5b50600e5461029790610100900460ff1681565b34801561064757600080fd5b506005546001600160a01b03166102ee565b34801561066557600080fd5b50610353600a5481565b34801561067b57600080fd5b506102c16114e3565b34801561069057600080fd5b5061031b61069f366004612216565b6114f2565b3480156106b057600080fd5b50600e54610297906301000000900460ff1681565b3480156106d157600080fd5b50610353600f5481565b3480156106e757600080fd5b5061031b6106f636600461219a565b6115b7565b34801561070757600080fd5b50600e546104a59060ff1681565b34801561072157600080fd5b5061031b61073036600461227c565b6115e9565b34801561074157600080fd5b506102c161075036600461227c565b611618565b34801561076157600080fd5b5061031b61077036600461227c565b611789565b34801561078157600080fd5b5061078b61037881565b60405161ffff90911681526020016102a3565b3480156107aa57600080fd5b506102976107b936600461212b565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156107f357600080fd5b506102c16117b8565b34801561080857600080fd5b5061031b610817366004612110565b611846565b60006001600160e01b0319821663780e9d6360e01b14806108415750610841826118e1565b92915050565b60606000805461085690612711565b80601f016020809104026020016040519081016040528092919081815260200182805461088290612711565b80156108cf5780601f106108a4576101008083540402835291602001916108cf565b820191906000526020600020905b8154815290600101906020018083116108b257829003601f168201915b5050505050905090565b60006108e482611931565b61094a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6005546001600160a01b031633146109905760405162461bcd60e51b8152600401610941906125b2565b600e805461ff001981166101009182900460ff1615909102179055565b60006109b8826110ec565b9050806001600160a01b0316836001600160a01b03161415610a265760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610941565b336001600160a01b0382161480610a425750610a4281336107b9565b610ab45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610941565b610abe838361197b565b505050565b6005546001600160a01b03163314610aed5760405162461bcd60e51b8152600401610941906125b2565b60025460ff9081169061037890610b0690851683612638565b61ffff161115610b4e5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610941565b60005b8360ff168161ffff161015610b8957610b7783610b6e8385612638565b61ffff166119e9565b80610b818161274c565b915050610b51565b50505050565b610b993382611a65565b610bb55760405162461bcd60e51b8152600401610941906125e7565b610abe838383611b4f565b6005546001600160a01b03163314610bea5760405162461bcd60e51b8152600401610941906125b2565b600e805460ff191660ff92909216919091179055565b6000610c0b8361139e565b8210610c295760405162461bcd60e51b815260040161094190612515565b6000805b600254811015610c9a5760028181548110610c4a57610c4a6127e9565b6000918252602090912001546001600160a01b0386811691161415610c885783821415610c7a5791506108419050565b81610c848161276e565b9250505b80610c928161276e565b915050610c2d565b5060405162461bcd60e51b815260040161094190612515565b6005546001600160a01b03163314610cdd5760405162461bcd60e51b8152600401610941906125b2565b600e805461ff001960ff620100008084049190911615021662ffff001990911617610100179055565b6005546001600160a01b03163314610d305760405162461bcd60e51b8152600401610941906125b2565b600e805463ff00000019811663010000009182900460ff1615909102179055565b6005546001600160a01b03163314610d7b5760405162461bcd60e51b8152600401610941906125b2565b6040514790339082156108fc029083906000818181858888f19350505050158015610daa573d6000803e3d6000fd5b5050565b610abe838383604051806020016040528060008152506115b7565b6005546001600160a01b03163314610df35760405162461bcd60e51b8152600401610941906125b2565b600955565b6002546000908210610e615760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610941565b5090565b6005546001600160a01b03163314610e8f5760405162461bcd60e51b8152600401610941906125b2565b8051610daa906008906020840190611fdd565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120600090336000908152600c6020908152604091829020548251868302818101840190945286815293945060ff1692610f2f92859288918891829190850190849080828437600092019190915250611ca592505050565b610f725760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b6044820152606401610941565b600b5460ff16610f828683612676565b60ff161115610fd35760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d61782074782070657220616464726573730000000000006044820152606401610941565b600e54610100900460ff161561102b5760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f766572210000000000006044820152606401610941565b8460ff16600a5461103c91906126af565b3410156110815760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610941565b60025460005b8660ff168160ff1610156110b8576110a633610b6e60ff841685612638565b806110b081612789565b915050611087565b506110c38287612676565b336000908152600c60205260409020805460ff191660ff92909216919091179055505050505050565b60008060028381548110611102576111026127e9565b6000918252602090912001546001600160a01b03169050806108415760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610941565b6005546001600160a01b031633146111a25760405162461bcd60e51b8152600401610941906125b2565b600b805460ff191660ff92909216919091179055565b600254336000908152600d602052604090205460ff90811690610378906111e190851684612638565b61ffff1611156112295760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610941565b600e5460ff166112398285612676565b60ff16111561128a5760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610941565b600e5462010000900460ff16156112e35760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610941565b8260ff166009546112f491906126af565b3410156113395760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610941565b60005b8360ff168160ff16101561136d5761135b33610b6e60ff841686612638565b8061136581612789565b91505061133c565b506113788382612676565b336000908152600d60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b0382166114095760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610941565b600254600090815b81811015611467576002818154811061142c5761142c6127e9565b6000918252602090912001546001600160a01b0386811691161415611457576114548361276e565b92505b6114608161276e565b9050611411565b50909392505050565b6005546001600160a01b0316331461149a5760405162461bcd60e51b8152600401610941906125b2565b6114a46000611cb4565b565b6005546001600160a01b031633146114d05760405162461bcd60e51b8152600401610941906125b2565b8051610daa906006906020840190611fdd565b60606001805461085690612711565b6001600160a01b03821633141561154b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610941565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115c13383611a65565b6115dd5760405162461bcd60e51b8152600401610941906125e7565b610b8984848484611d06565b6005546001600160a01b031633146116135760405162461bcd60e51b8152600401610941906125b2565b600f55565b606061162382611931565b6116875760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610941565b600e546301000000900460ff1661172a57600880546116a590612711565b80601f01602080910402602001604051908101604052809291908181526020018280546116d190612711565b801561171e5780601f106116f35761010080835404028352916020019161171e565b820191906000526020600020905b81548152906001019060200180831161170157829003601f168201915b50505050509050919050565b6000611734611d39565b905060008151116117545760405180602001604052806000815250611782565b8061175e84611d48565b600760405160200161177293929190612401565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633146117b35760405162461bcd60e51b8152600401610941906125b2565b600a55565b600880546117c590612711565b80601f01602080910402602001604051908101604052809291908181526020018280546117f190612711565b801561183e5780601f106118135761010080835404028352916020019161183e565b820191906000526020600020905b81548152906001019060200180831161182157829003601f168201915b505050505081565b6005546001600160a01b031633146118705760405162461bcd60e51b8152600401610941906125b2565b6001600160a01b0381166118d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610941565b6118de81611cb4565b50565b60006001600160e01b031982166380ac58cd60e01b148061191257506001600160e01b03198216635b5e139f60e01b145b8061084157506301ffc9a760e01b6001600160e01b0319831614610841565b60025460009082108015610841575060006001600160a01b03166002838154811061195e5761195e6127e9565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119b0826110ec565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611a7082611931565b611ad15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610941565b6000611adc836110ec565b9050806001600160a01b0316846001600160a01b03161480611b175750836001600160a01b0316611b0c846108d9565b6001600160a01b0316145b80611b4757506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b62826110ec565b6001600160a01b031614611bca5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610941565b6001600160a01b038216611c2c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610941565b611c3760008261197b565b8160028281548110611c4b57611c4b6127e9565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600061178282600f5485611e46565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d11848484611b4f565b611d1d84848484611e5c565b610b895760405162461bcd60e51b815260040161094190612560565b60606006805461085690612711565b606081611d6c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d965780611d808161276e565b9150611d8f9050600a8361269b565b9150611d70565b60008167ffffffffffffffff811115611db157611db16127ff565b6040519080825280601f01601f191660200182016040528015611ddb576020820181803683370190505b5090505b8415611b4757611df06001836126ce565b9150611dfd600a866127a9565b611e0890603061265e565b60f81b818381518110611e1d57611e1d6127e9565b60200101906001600160f81b031916908160001a905350611e3f600a8661269b565b9450611ddf565b600082611e538584611f69565b14949350505050565b60006001600160a01b0384163b15611f5e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ea09033908990889088906004016124c5565b602060405180830381600087803b158015611eba57600080fd5b505af1925050508015611eea575060408051601f3d908101601f19168201909252611ee7918101906122b2565b60015b611f44573d808015611f18576040519150601f19603f3d011682016040523d82523d6000602084013e611f1d565b606091505b508051611f3c5760405162461bcd60e51b815260040161094190612560565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b47565b506001949350505050565b600081815b8451811015611fd5576000858281518110611f8b57611f8b6127e9565b60200260200101519050808311611fb15760008381526020829052604090209250611fc2565b600081815260208490526040902092505b5080611fcd8161276e565b915050611f6e565b509392505050565b828054611fe990612711565b90600052602060002090601f01602090048101928261200b5760008555612051565b82601f1061202457805160ff1916838001178555612051565b82800160010185558215612051579182015b82811115612051578251825591602001919060010190612036565b50610e619291505b80821115610e615760008155600101612059565b600067ffffffffffffffff80841115612088576120886127ff565b604051601f8501601f19908116603f011681019082821181831017156120b0576120b06127ff565b816040528093508581528686860111156120c957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146120fa57600080fd5b919050565b803560ff811681146120fa57600080fd5b60006020828403121561212257600080fd5b611782826120e3565b6000806040838503121561213e57600080fd5b612147836120e3565b9150612155602084016120e3565b90509250929050565b60008060006060848603121561217357600080fd5b61217c846120e3565b925061218a602085016120e3565b9150604084013590509250925092565b600080600080608085870312156121b057600080fd5b6121b9856120e3565b93506121c7602086016120e3565b925060408501359150606085013567ffffffffffffffff8111156121ea57600080fd5b8501601f810187136121fb57600080fd5b61220a8782356020840161206d565b91505092959194509250565b6000806040838503121561222957600080fd5b612232836120e3565b91506020830135801515811461224757600080fd5b809150509250929050565b6000806040838503121561226557600080fd5b61226e836120e3565b946020939093013593505050565b60006020828403121561228e57600080fd5b5035919050565b6000602082840312156122a757600080fd5b813561178281612815565b6000602082840312156122c457600080fd5b815161178281612815565b6000602082840312156122e157600080fd5b813567ffffffffffffffff8111156122f857600080fd5b8201601f8101841361230957600080fd5b611b478482356020840161206d565b60006020828403121561232a57600080fd5b611782826120ff565b6000806040838503121561234657600080fd5b612147836120ff565b60008060006040848603121561236457600080fd5b61236d846120ff565b9250602084013567ffffffffffffffff8082111561238a57600080fd5b818601915086601f83011261239e57600080fd5b8135818111156123ad57600080fd5b8760208260051b85010111156123c257600080fd5b6020830194508093505050509250925092565b600081518084526123ed8160208601602086016126e5565b601f01601f19169290920160200192915050565b6000845160206124148285838a016126e5565b8551918401916124278184848a016126e5565b8554920191600090600181811c908083168061244457607f831692505b85831081141561246257634e487b7160e01b85526022600452602485fd5b8080156124765760018114612487576124b4565b60ff198516885283880195506124b4565b60008b81526020902060005b858110156124ac5781548a820152908401908801612493565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124f8908301846123d5565b9695505050505050565b60208152600061178260208301846123d5565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600061ffff808316818516808303821115612655576126556127bd565b01949350505050565b60008219821115612671576126716127bd565b500190565b600060ff821660ff84168060ff03821115612693576126936127bd565b019392505050565b6000826126aa576126aa6127d3565b500490565b60008160001904831182151516156126c9576126c96127bd565b500290565b6000828210156126e0576126e06127bd565b500390565b60005b838110156127005781810151838201526020016126e8565b83811115610b895750506000910152565b600181811c9082168061272557607f821691505b6020821081141561274657634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415612764576127646127bd565b6001019392505050565b6000600019821415612782576127826127bd565b5060010190565b600060ff821660ff8114156127a0576127a06127bd565b60010192915050565b6000826127b8576127b86127d3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146118de57600080fdfea26469706673582212209ba9e41cf0a126643710521b698d448e3ac6bba58fce39515f0d4c4415cbc84364736f6c63430008070033

Deployed Bytecode Sourcemap

31590:5062:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30284:224;;;;;;;;;;-1:-1:-1;30284:224:0;;;;;:::i;:::-;;:::i;:::-;;;8421:14:1;;8414:22;8396:41;;8384:2;8369:18;30284:224:0;;;;;;;;18897:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;19709:308::-;;;;;;;;;;-1:-1:-1;19709:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7719:32:1;;;7701:51;;7689:2;7674:18;19709:308:0;7555:203:1;34093:75:0;;;;;;;;;;;;;:::i;:::-;;19232:411;;;;;;;;;;-1:-1:-1;19232:411:0;;;;;:::i;:::-;;:::i;31863:34::-;;;;;;;;;;;;;;;;;;;8594:25:1;;;8582:2;8567:18;31863:34:0;8448:177:1;33130:374:0;;;;;;;;;;-1:-1:-1;33130:374:0;;;;;:::i;:::-;;:::i;30584:110::-;;;;;;;;;;-1:-1:-1;30672:7:0;:14;30584:110;;20768:376;;;;;;;;;;-1:-1:-1;20768:376:0;;;;;:::i;:::-;;:::i;36124:115::-;;;;;;;;;;-1:-1:-1;36124:115:0;;;;;:::i;:::-;;:::i;31060:490::-;;;;;;;;;;-1:-1:-1;31060:490:0;;;;;:::i;:::-;;:::i;35943:91::-;;;;;;;;;;;;;:::i;34017:71::-;;;;;;;;;;;;;:::i;36250:144::-;;;;;;;;;;;;;:::i;21215:185::-;;;;;;;;;;-1:-1:-1;21215:185:0;;;;;:::i;:::-;;:::i;36040:76::-;;;;;;;;;;-1:-1:-1;36040:76:0;;;;;:::i;:::-;;:::i;31999:49::-;;;;;;;;;;-1:-1:-1;31999:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18354:4:1;18342:17;;;18324:36;;18312:2;18297:18;31999:49:0;18182:184:1;30771:205:0;;;;;;;;;;-1:-1:-1;30771:205:0;;;;;:::i;:::-;;:::i;35694:126::-;;;;;;;;;;-1:-1:-1;35694:126:0;;;;;:::i;:::-;;:::i;31951:41::-;;;;;;;;;;-1:-1:-1;31951:41:0;;;;;;;;34877:813;;;;;;:::i;:::-;;:::i;32054:47::-;;;;;;;;;;-1:-1:-1;32054:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32230:25;;;;;;;;;;-1:-1:-1;32230:25:0;;;;;;;;;;;18504:326;;;;;;;;;;-1:-1:-1;18504:326:0;;;;;:::i;:::-;;:::i;34282:127::-;;;;;;;;;;-1:-1:-1;34282:127:0;;;;;:::i;:::-;;:::i;32473:649::-;;;;;;:::i;:::-;;:::i;17996:446::-;;;;;;;;;;-1:-1:-1;17996:446:0;;;;;:::i;:::-;;:::i;6007:103::-;;;;;;;;;;;;;:::i;35833:102::-;;;;;;;;;;-1:-1:-1;35833:102:0;;;;;:::i;:::-;;:::i;32197:28::-;;;;;;;;;;-1:-1:-1;32197:28:0;;;;;;;;;;;5356:87;;;;;;;;;;-1:-1:-1;5429:6:0;;-1:-1:-1;;;;;5429:6:0;5356:87;;31902:42;;;;;;;;;;;;;;;;19066:104;;;;;;;;;;;;;:::i;20089:327::-;;;;;;;;;;-1:-1:-1;20089:327:0;;;;;:::i;:::-;;:::i;32260:26::-;;;;;;;;;;-1:-1:-1;32260:26:0;;;;;;;;;;;32297:103;;;;;;;;;;;;;;;;21471:365;;;;;;;;;;-1:-1:-1;21471:365:0;;;;;:::i;:::-;;:::i;32149:39::-;;;;;;;;;;-1:-1:-1;32149:39:0;;;;;;;;34411:142;;;;;;;;;;-1:-1:-1;34411:142:0;;;;;:::i;:::-;;:::i;33517:496::-;;;;;;;;;;-1:-1:-1;33517:496:0;;;;;:::i;:::-;;:::i;34172:106::-;;;;;;;;;;-1:-1:-1;34172:106:0;;;;;:::i;:::-;;:::i;32106:38::-;;;;;;;;;;;;32141:3;32106:38;;;;;17981:6:1;17969:19;;;17951:38;;17939:2;17924:18;32106:38:0;17807:188:1;20487:214:0;;;;;;;;;;-1:-1:-1;20487:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;20658:25:0;;;20629:4;20658:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;20487:214;31753:93;;;;;;;;;;;;;:::i;6265:201::-;;;;;;;;;;-1:-1:-1;6265:201:0;;;;;:::i;:::-;;:::i;30284:224::-;30386:4;-1:-1:-1;;;;;;30410:50:0;;-1:-1:-1;;;30410:50:0;;:90;;;30464:36;30488:11;30464:23;:36::i;:::-;30403:97;30284:224;-1:-1:-1;;30284:224:0:o;18897:100::-;18951:13;18984:5;18977:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18897:100;:::o;19709:308::-;19830:7;19877:16;19885:7;19877;:16::i;:::-;19855:110;;;;-1:-1:-1;;;19855:110:0;;13770:2:1;19855:110:0;;;13752:21:1;13809:2;13789:18;;;13782:30;13848:34;13828:18;;;13821:62;-1:-1:-1;;;13899:18:1;;;13892:42;13951:19;;19855:110:0;;;;;;;;;-1:-1:-1;19985:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;19985:24:0;;19709:308::o;34093:75::-;5429:6;;-1:-1:-1;;;;;5429:6:0;4160:10;5576:23;5568:68;;;;-1:-1:-1;;;5568:68:0;;;;;;;:::i;:::-;34154:8:::1;::::0;;-1:-1:-1;;34142:20:0;::::1;34154:8;::::0;;;::::1;;;34153:9;34142:20:::0;;::::1;;::::0;;34093:75::o;19232:411::-;19313:13;19329:23;19344:7;19329:14;:23::i;:::-;19313:39;;19377:5;-1:-1:-1;;;;;19371:11:0;:2;-1:-1:-1;;;;;19371:11:0;;;19363:57;;;;-1:-1:-1;;;19363:57:0;;16071:2:1;19363:57:0;;;16053:21:1;16110:2;16090:18;;;16083:30;16149:34;16129:18;;;16122:62;-1:-1:-1;;;16200:18:1;;;16193:31;16241:19;;19363:57:0;15869:397:1;19363:57:0;4160:10;-1:-1:-1;;;;;19455:21:0;;;;:62;;-1:-1:-1;19480:37:0;19497:5;4160:10;20487:214;:::i;19480:37::-;19433:168;;;;-1:-1:-1;;;19433:168:0;;12524:2:1;19433:168:0;;;12506:21:1;12563:2;12543:18;;;12536:30;12602:34;12582:18;;;12575:62;12673:26;12653:18;;;12646:54;12717:19;;19433:168:0;12322:420:1;19433:168:0;19614:21;19623:2;19627:7;19614:8;:21::i;:::-;19302:341;19232:411;;:::o;33130:374::-;5429:6;;-1:-1:-1;;;;;5429:6:0;4160:10;5576:23;5568:68;;;;-1:-1:-1;;;5568:68:0;;;;;;;:::i;:::-;33238:7:::1;:14:::0;33211:42:::1;::::0;;::::1;::::0;32141:3:::1;::::0;33268:25:::1;::::0;;::::1;33211:42:::0;33268:25:::1;:::i;:::-;:38;;;;33260:70;;;::::0;-1:-1:-1;;;33260:70:0;;9056:2:1;33260:70:0::1;::::0;::::1;9038:21:1::0;9095:2;9075:18;;;9068:30;-1:-1:-1;;;9114:18:1;;;9107:49;9173:18;;33260:70:0::1;8854:343:1::0;33260:70:0::1;33341:8;33337:86;33355:11;33351:15;;:1;:15;;;33337:86;;;33380:34;33386:9:::0;33398:15:::1;33412:1:::0;33398:11;:15:::1;:::i;:::-;33380:34;;:5;:34::i;:::-;33368:3:::0;::::1;::::0;::::1;:::i;:::-;;;;33337:86;;;-1:-1:-1::0;;;;33130:374:0:o;20768:376::-;20977:41;4160:10;21010:7;20977:18;:41::i;:::-;20955:140;;;;-1:-1:-1;;;20955:140:0;;;;;;;:::i;:::-;21108:28;21118:4;21124:2;21128:7;21108:9;:28::i;36124:115::-;5429:6;;-1:-1:-1;;;;;5429:6:0;4160:10;5576:23;5568:68;;;;-1:-1:-1;;;5568:68:0;;;;;;;:::i;:::-;36200:22:::1;:31:::0;;-1:-1:-1;;36200:31:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;36124:115::o;31060:490::-;31157:15;31201:16;31211:5;31201:9;:16::i;:::-;31193:5;:24;31185:80;;;;-1:-1:-1;;;31185:80:0;;;;;;;:::i;:::-;31278:10;31303:6;31299:178;31315:7;:14;31311:18;;31299:178;;;31362:7;31370:1;31362:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;31353:19:0;;;31362:10;;31353:19;31350:116;;;31404:5;31395;:14;31392:58;;;31418:1;-1:-1:-1;31411:8:0;;-1:-1:-1;31411:8:0;31392:58;31443:7;;;;:::i;:::-;;;;31392:58;31331:3;;;;:::i;:::-;;;;31299:178;;;;31489:53;;-1:-1:-1;;;31489:53:0;;;;;;;:::i;35943:91::-;5429:6;;-1:-1:-1;;;;;5429:6:0;4160:10;5576:23;5568:68;;;;-1:-1:-1;;;5568:68:0;;;;;;;:::i;:::-;36000:6:::1;::::0;;-1:-1:-1;;36000:6:0::1;::::0;;;::::1;::::0;;;::::1;35999:7;35990:16;36013:15:::0;-1:-1:-1;;36013:15:0;;;;36000:6:::1;36013:15;::::0;;35943:91::o;34017:71::-;5429:6;;-1:-1:-1;;;;;5429:6:0;4160:10;5576:23;5568:68;;;;-1:-1:-1;;;5568:68:0;;;;;;;:::i;:::-;34076:6:::1;::::0;;-1:-1:-1;;34066:16:0;::::1;34076:6:::0;;;;::::1;;;34075:7;34066:16:::0;;::::1;;::::0;;34017:71::o;36250:144::-;5429:6;;-1:-1:-1;;;;;5429:6:0;4160:10;5576:23;5568:68;;;;-1:-1:-1;;;5568:68:0;;;;;;;:::i;:::-;36339:39:::1;::::0;36310:21:::1;::::0;36347:10:::1;::::0;36339:39;::::1;;;::::0;36310:21;;36294:13:::1;36339:39:::0;36294:13;36339:39;36310:21;36347:10;36339:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;36289:105;36250:144::o:0;21215:185::-;21353:39;21370:4;21376:2;21380:7;21353:39;;;;;;;;;;;;:16;:39::i;36040:76::-;5429:6;;-1:-1:-1;;;;;5429:6:0;4160:10;5576:23;5568:68;;;;-1:-1:-1;;;5568:68:0;;;;;;;:::i;:::-;36096:4:::1;:12:::0;36040:76::o;30771:205::-;30882:7;:14;30846:7;;30874:22;;30866:79;;;;-1:-1:-1;;;30866:79:0;;17248:2:1;30866:79:0;;;17230:21:1;17287:2;17267:18;;;17260:30;17326:34;17306:18;;;17299:62;-1:-1:-1;;;17377:18:1;;;17370:42;17429:19;;30866:79:0;17046:408:1;30866:79:0;-1:-1:-1;30963:5:0;30771:205::o;35694:126::-;5429:6;;-1:-1:-1;;;;;5429:6:0;4160:10;5576:23;5568:68;;;;-1:-1:-1;;;5568:68:0;;;;;;;:::i;:::-;35784:30;;::::1;::::0;:9:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;34877:813::-:0;34673:23;;;35020:10;5938:2:1;5934:15;-1:-1:-1;;5930:53:1;34673:23:0;;;;5918:66:1;;;;34673:23:0;;;;;;;;;6000:12:1;;;;34673:23:0;;;34663:34;;;;;34988:17;;35072:10;35042:12;35056:27;;;:15;:27;;;;;;;;;;35102:36;;;;;;;;;;;;;;;;34988:43;;-1:-1:-1;35056:27:0;;;35102:36;;34988:43;;35123:11;;;;;;35102:36;;;;35123:11;;35102:36;35123:11;35102:36;;;;;;;;;-1:-1:-1;35102:7:0;;-1:-1:-1;;;35102:36:0:i;:::-;35094:70;;;;-1:-1:-1;;;35094:70:0;;14544:2:1;35094:70:0;;;14526:21:1;14583:2;14563:18;;;14556:30;-1:-1:-1;;;14602:18:1;;;14595:50;14662:18;;35094:70:0;14342:344:1;35094:70:0;35207:24;;;;35183:20;35192:11;35183:6;:20;:::i;:::-;:48;;;;35174:88;;;;-1:-1:-1;;;35174:88:0;;12169:2:1;35174:88:0;;;12151:21:1;12208:2;12188:18;;;12181:30;12247:28;12227:18;;;12220:56;12293:18;;35174:88:0;11967:350:1;35174:88:0;35290:8;;;;;;;35289:9;35281:48;;;;-1:-1:-1;;;35281:48:0;;10642:2:1;35281:48:0;;;10624:21:1;10681:2;10661:18;;;10654:30;10720:28;10700:18;;;10693:56;10766:18;;35281:48:0;10440:350:1;35281:48:0;35373:11;35357:27;;:13;;:27;;;;:::i;:::-;35344:9;:40;;35336:72;;;;-1:-1:-1;;;35336:72:0;;17661:2:1;35336:72:0;;;17643:21:1;17700:2;17680:18;;;17673:30;-1:-1:-1;;;17719:18:1;;;17712:49;17778:18;;35336:72:0;17459:343:1;35336:72:0;35448:7;:14;35420:18;35470:86;35487:11;35483:15;;:1;:15;;;35470:86;;;35512:35;35518:10;35531:15;;;;:11;:15;:::i;35512:35::-;35500:3;;;;:::i;:::-;;;;35470:86;;;-1:-1:-1;35594:20:0;35608:6;35594:11;:20;:::i;:::-;35580:10;35564:27;;;;:15;:27;;;;;:50;;-1:-1:-1;;35564:50:0;;;;;;;;;;;;-1:-1:-1;;;;;;34877:813:0:o;18504:326::-;18621:7;18646:13;18662:7;18670;18662:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;18662:16:0;;-1:-1:-1;18711:19:0;18689:110;;;;-1:-1:-1;;;18689:110:0;;13360:2:1;18689:110:0;;;13342:21:1;13399:2;13379:18;;;13372:30;13438:34;13418:18;;;13411:62;-1:-1:-1;;;13489:18:1;;;13482:39;13538:19;;18689:110:0;13158:405:1;34282:127:0;5429:6;;-1:-1:-1;;;;;5429:6:0;4160:10;5576:23;5568:68;;;;-1:-1:-1;;;5568:68:0;;;;;;;:::i;:::-;34351:24:::1;:33:::0;;-1:-1:-1;;34351:33:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;34282:127::o;32473:649::-;32559:7;:14;32609:10;32531:18;32595:25;;;:13;:25;;;;;;;;;;;32141:3;;32635:25;;;;32559:14;32635:25;:::i;:::-;:38;;;;32627:70;;;;-1:-1:-1;;;32627:70:0;;9056:2:1;32627:70:0;;;9038:21:1;9095:2;9075:18;;;9068:30;-1:-1:-1;;;9114:18:1;;;9107:49;9173:18;;32627:70:0;8854:343:1;32627:70:0;32736:22;;;;32712:20;32726:6;32712:11;:20;:::i;:::-;:46;;;;32704:87;;;;-1:-1:-1;;;32704:87:0;;16891:2:1;32704:87:0;;;16873:21:1;16930:2;16910:18;;;16903:30;16969;16949:18;;;16942:58;17017:18;;32704:87:0;16689:352:1;32704:87:0;32809:6;;;;;;;32808:7;32800:43;;;;-1:-1:-1;;;32800:43:0;;14893:2:1;32800:43:0;;;14875:21:1;14932:2;14912:18;;;14905:30;14971:25;14951:18;;;14944:53;15014:18;;32800:43:0;14691:347:1;32800:43:0;32878:11;32871:18;;:4;;:18;;;;:::i;:::-;32858:9;:31;;32850:63;;;;-1:-1:-1;;;32850:63:0;;17661:2:1;32850:63:0;;;17643:21:1;17700:2;17680:18;;;17673:30;-1:-1:-1;;;17719:18:1;;;17712:49;17778:18;;32850:63:0;17459:343:1;32850:63:0;32925:7;32921:85;32938:11;32934:15;;:1;:15;;;32921:85;;;32963:34;32969:10;32981:15;;;;:11;:15;:::i;32963:34::-;32951:3;;;;:::i;:::-;;;;32921:85;;;-1:-1:-1;33044:20:0;33053:11;33044:6;:20;:::i;:::-;33030:10;33016:25;;;;:13;:25;;;;;:48;;-1:-1:-1;;33016:48:0;;;;;;;;;;;;-1:-1:-1;;;32473:649:0:o;17996:446::-;18118:4;-1:-1:-1;;;;;18149:19:0;;18141:74;;;;-1:-1:-1;;;18141:74:0;;12949:2:1;18141:74:0;;;12931:21:1;12988:2;12968:18;;;12961:30;13027:34;13007:18;;;13000:62;-1:-1:-1;;;13078:18:1;;;13071:40;13128:19;;18141:74:0;12747:406:1;18141:74:0;18262:7;:14;18228:10;;;18287:101;18304:6;18300:1;:10;18287:101;;;18343:7;18351:1;18343:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;18334:19:0;;;18343:10;;18334:19;18330:46;;;18369:7;;;:::i;:::-;;;18330:46;18312:3;;;:::i;:::-;;;18287:101;;;-1:-1:-1;18429:5:0;;17996:446;-1:-1:-1;;;17996:446:0:o;6007:103::-;5429:6;;-1:-1:-1;;;;;5429:6:0;4160:10;5576:23;5568:68;;;;-1:-1:-1;;;5568:68:0;;;;;;;:::i;:::-;6072:30:::1;6099:1;6072:18;:30::i;:::-;6007:103::o:0;35833:102::-;5429:6;;-1:-1:-1;;;;;5429:6:0;4160:10;5576:23;5568:68;;;;-1:-1:-1;;;5568:68:0;;;;;;;:::i;:::-;35907:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;19066:104::-:0;19122:13;19155:7;19148:14;;;;;:::i;20089:327::-;-1:-1:-1;;;;;20224:24:0;;4160:10;20224:24;;20216:62;;;;-1:-1:-1;;;20216:62:0;;11402:2:1;20216:62:0;;;11384:21:1;11441:2;11421:18;;;11414:30;11480:27;11460:18;;;11453:55;11525:18;;20216:62:0;11200:349:1;20216:62:0;4160:10;20291:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;20291:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;20291:53:0;;;;;;;;;;20360:48;;8396:41:1;;;20291:42:0;;4160:10;20360:48;;8369:18:1;20360:48:0;;;;;;;20089:327;;:::o;21471:365::-;21660:41;4160:10;21693:7;21660:18;:41::i;:::-;21638:140;;;;-1:-1:-1;;;21638:140:0;;;;;;;:::i;:::-;21789:39;21803:4;21809:2;21813:7;21822:5;21789:13;:39::i;34411:142::-;5429:6;;-1:-1:-1;;;;;5429:6:0;4160:10;5576:23;5568:68;;;;-1:-1:-1;;;5568:68:0;;;;;;;:::i;:::-;34503:19:::1;:42:::0;34411:142::o;33517:496::-;33616:13;33657:17;33665:8;33657:7;:17::i;:::-;33641:98;;;;-1:-1:-1;;;33641:98:0;;15655:2:1;33641:98:0;;;15637:21:1;15694:2;15674:18;;;15667:30;15733:34;15713:18;;;15706:62;-1:-1:-1;;;15784:18:1;;;15777:45;15839:19;;33641:98:0;15453:411:1;33641:98:0;33756:6;;;;;;;33752:54;;33789:9;33782:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33517:496;;;:::o;33752:54::-;33822:28;33853:10;:8;:10::i;:::-;33822:41;;33908:1;33883:14;33877:28;:32;:130;;;;;;;;;;;;;;;;;33945:14;33961:19;:8;:17;:19::i;:::-;33982:9;33928:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33877:130;33870:137;33517:496;-1:-1:-1;;;33517:496:0:o;34172:106::-;5429:6;;-1:-1:-1;;;;;5429:6:0;4160:10;5576:23;5568:68;;;;-1:-1:-1;;;5568:68:0;;;;;;;:::i;:::-;34232:13:::1;:21:::0;34172:106::o;31753:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6265:201::-;5429:6;;-1:-1:-1;;;;;5429:6:0;4160:10;5576:23;5568:68;;;;-1:-1:-1;;;5568:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6354:22:0;::::1;6346:73;;;::::0;-1:-1:-1;;;6346:73:0;;10235:2:1;6346:73:0::1;::::0;::::1;10217:21:1::0;10274:2;10254:18;;;10247:30;10313:34;10293:18;;;10286:62;-1:-1:-1;;;10364:18:1;;;10357:36;10410:19;;6346:73:0::1;10033:402:1::0;6346:73:0::1;6430:28;6449:8;6430:18;:28::i;:::-;6265:201:::0;:::o;17577:355::-;17724:4;-1:-1:-1;;;;;;17766:40:0;;-1:-1:-1;;;17766:40:0;;:105;;-1:-1:-1;;;;;;;17823:48:0;;-1:-1:-1;;;17823:48:0;17766:105;:158;;;-1:-1:-1;;;;;;;;;;9746:40:0;;;17888:36;9637:157;23383:155;23482:7;:14;23448:4;;23472:24;;:58;;;;;23528:1;-1:-1:-1;;;;;23500:30:0;:7;23508;23500:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;23500:16:0;:30;;23465:65;23383:155;-1:-1:-1;;23383:155:0:o;27408:174::-;27483:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;27483:29:0;-1:-1:-1;;;;;27483:29:0;;;;;;;;:24;;27537:23;27483:24;27537:14;:23::i;:::-;-1:-1:-1;;;;;27528:46:0;;;;;;;;;;;27408:174;;:::o;36401:154::-;36482:7;:16;;;;;;;-1:-1:-1;36482:16:0;;;;;;;-1:-1:-1;;;;;;36482:16:0;-1:-1:-1;;;;;36482:16:0;;;;;;;;36514:33;;36539:7;;-1:-1:-1;36514:33:0;;-1:-1:-1;;36514:33:0;36401:154;;:::o;23705:452::-;23834:4;23878:16;23886:7;23878;:16::i;:::-;23856:110;;;;-1:-1:-1;;;23856:110:0;;11756:2:1;23856:110:0;;;11738:21:1;11795:2;11775:18;;;11768:30;11834:34;11814:18;;;11807:62;-1:-1:-1;;;11885:18:1;;;11878:42;11937:19;;23856:110:0;11554:408:1;23856:110:0;23977:13;23993:23;24008:7;23993:14;:23::i;:::-;23977:39;;24046:5;-1:-1:-1;;;;;24035:16:0;:7;-1:-1:-1;;;;;24035:16:0;;:64;;;;24092:7;-1:-1:-1;;;;;24068:31:0;:20;24080:7;24068:11;:20::i;:::-;-1:-1:-1;;;;;24068:31:0;;24035:64;:113;;;-1:-1:-1;;;;;;20658:25:0;;;20629:4;20658:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;24116:32;24027:122;23705:452;-1:-1:-1;;;;23705:452:0:o;26737:553::-;26910:4;-1:-1:-1;;;;;26883:31:0;:23;26898:7;26883:14;:23::i;:::-;-1:-1:-1;;;;;26883:31:0;;26861:122;;;;-1:-1:-1;;;26861:122:0;;15245:2:1;26861:122:0;;;15227:21:1;15284:2;15264:18;;;15257:30;15323:34;15303:18;;;15296:62;-1:-1:-1;;;15374:18:1;;;15367:39;15423:19;;26861:122:0;15043:405:1;26861:122:0;-1:-1:-1;;;;;27002:16:0;;26994:65;;;;-1:-1:-1;;;26994:65:0;;10997:2:1;26994:65:0;;;10979:21:1;11036:2;11016:18;;;11009:30;11075:34;11055:18;;;11048:62;-1:-1:-1;;;11126:18:1;;;11119:34;11170:19;;26994:65:0;10795:400:1;26994:65:0;27176:29;27193:1;27197:7;27176:8;:29::i;:::-;27235:2;27216:7;27224;27216:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;27216:21:0;-1:-1:-1;;;;;27216:21:0;;;;;;27255:27;;27274:7;;27255:27;;;;;;;;;;27216:16;27255:27;26737:553;;;:::o;34711:162::-;34789:4;34813:52;34832:5;34839:19;;34860:4;34813:18;:52::i;6626:191::-;6719:6;;;-1:-1:-1;;;;;6736:17:0;;;-1:-1:-1;;;;;;6736:17:0;;;;;;;6769:40;;6719:6;;;6736:17;6719:6;;6769:40;;6700:16;;6769:40;6689:128;6626:191;:::o;22718:352::-;22875:28;22885:4;22891:2;22895:7;22875:9;:28::i;:::-;22936:48;22959:4;22965:2;22969:7;22978:5;22936:22;:48::i;:::-;22914:148;;;;-1:-1:-1;;;22914:148:0;;;;;;;:::i;36561:88::-;36605:13;36634:9;36627:16;;;;;:::i;2669:723::-;2725:13;2946:10;2942:53;;-1:-1:-1;;2973:10:0;;;;;;;;;;;;-1:-1:-1;;;2973:10:0;;;;;2669:723::o;2942:53::-;3020:5;3005:12;3061:78;3068:9;;3061:78;;3094:8;;;;:::i;:::-;;-1:-1:-1;3117:10:0;;-1:-1:-1;3125:2:0;3117:10;;:::i;:::-;;;3061:78;;;3149:19;3181:6;3171:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3171:17:0;;3149:39;;3199:154;3206:10;;3199:154;;3233:11;3243:1;3233:11;;:::i;:::-;;-1:-1:-1;3302:10:0;3310:2;3302:5;:10;:::i;:::-;3289:24;;:2;:24;:::i;:::-;3276:39;;3259:6;3266;3259:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3259:56:0;;;;;;;;-1:-1:-1;3330:11:0;3339:2;3330:11;;:::i;:::-;;;3199:154;;952:190;1077:4;1130;1101:25;1114:5;1121:4;1101:12;:25::i;:::-;:33;;952:190;-1:-1:-1;;;;952:190:0:o;28147:980::-;28302:4;-1:-1:-1;;;;;28323:13:0;;16777:20;16825:8;28319:801;;28376:175;;-1:-1:-1;;;28376:175:0;;-1:-1:-1;;;;;28376:36:0;;;;;:175;;4160:10;;28470:4;;28497:7;;28527:5;;28376:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28376:175:0;;;;;;;;-1:-1:-1;;28376:175:0;;;;;;;;;;;;:::i;:::-;;;28355:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28734:13:0;;28730:320;;28777:108;;-1:-1:-1;;;28777:108:0;;;;;;;:::i;28730:320::-;29000:6;28994:13;28985:6;28981:2;28977:15;28970:38;28355:710;-1:-1:-1;;;;;;28615:51:0;-1:-1:-1;;;28615:51:0;;-1:-1:-1;28608:58:0;;28319:801;-1:-1:-1;29104:4:0;28147:980;;;;;;:::o;1504:675::-;1587:7;1630:4;1587:7;1645:497;1669:5;:12;1665:1;:16;1645:497;;;1703:20;1726:5;1732:1;1726:8;;;;;;;;:::i;:::-;;;;;;;1703:31;;1769:12;1753;:28;1749:382;;2255:13;2305:15;;;2341:4;2334:15;;;2388:4;2372:21;;1881:57;;1749:382;;;2255:13;2305:15;;;2341:4;2334:15;;;2388:4;2372:21;;2058:57;;1749:382;-1:-1:-1;1683:3:0;;;;:::i;:::-;;;;1645:497;;;-1:-1:-1;2159:12:0;1504:675;-1:-1:-1;;;1504:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:156::-;894:20;;954:4;943:16;;933:27;;923:55;;974:1;971;964:12;989:186;1048:6;1101:2;1089:9;1080:7;1076:23;1072:32;1069:52;;;1117:1;1114;1107:12;1069:52;1140:29;1159:9;1140:29;:::i;1180:260::-;1248:6;1256;1309:2;1297:9;1288:7;1284:23;1280:32;1277:52;;;1325:1;1322;1315:12;1277:52;1348:29;1367:9;1348:29;:::i;:::-;1338:39;;1396:38;1430:2;1419:9;1415:18;1396:38;:::i;:::-;1386:48;;1180:260;;;;;:::o;1445:328::-;1522:6;1530;1538;1591:2;1579:9;1570:7;1566:23;1562:32;1559:52;;;1607:1;1604;1597:12;1559:52;1630:29;1649:9;1630:29;:::i;:::-;1620:39;;1678:38;1712:2;1701:9;1697:18;1678:38;:::i;:::-;1668:48;;1763:2;1752:9;1748:18;1735:32;1725:42;;1445:328;;;;;:::o;1778:666::-;1873:6;1881;1889;1897;1950:3;1938:9;1929:7;1925:23;1921:33;1918:53;;;1967:1;1964;1957:12;1918:53;1990:29;2009:9;1990:29;:::i;:::-;1980:39;;2038:38;2072:2;2061:9;2057:18;2038:38;:::i;:::-;2028:48;;2123:2;2112:9;2108:18;2095:32;2085:42;;2178:2;2167:9;2163:18;2150:32;2205:18;2197:6;2194:30;2191:50;;;2237:1;2234;2227:12;2191:50;2260:22;;2313:4;2305:13;;2301:27;-1:-1:-1;2291:55:1;;2342:1;2339;2332:12;2291:55;2365:73;2430:7;2425:2;2412:16;2407:2;2403;2399:11;2365:73;:::i;:::-;2355:83;;;1778:666;;;;;;;:::o;2449:347::-;2514:6;2522;2575:2;2563:9;2554:7;2550:23;2546:32;2543:52;;;2591:1;2588;2581:12;2543:52;2614:29;2633:9;2614:29;:::i;:::-;2604:39;;2693:2;2682:9;2678:18;2665:32;2740:5;2733:13;2726:21;2719:5;2716:32;2706:60;;2762:1;2759;2752:12;2706:60;2785:5;2775:15;;;2449:347;;;;;:::o;2801:254::-;2869:6;2877;2930:2;2918:9;2909:7;2905:23;2901:32;2898:52;;;2946:1;2943;2936:12;2898:52;2969:29;2988:9;2969:29;:::i;:::-;2959:39;3045:2;3030:18;;;;3017:32;;-1:-1:-1;;;2801:254:1:o;3060:180::-;3119:6;3172:2;3160:9;3151:7;3147:23;3143:32;3140:52;;;3188:1;3185;3178:12;3140:52;-1:-1:-1;3211:23:1;;3060:180;-1:-1:-1;3060:180:1:o;3245:245::-;3303:6;3356:2;3344:9;3335:7;3331:23;3327:32;3324:52;;;3372:1;3369;3362:12;3324:52;3411:9;3398:23;3430:30;3454:5;3430:30;:::i;3495:249::-;3564:6;3617:2;3605:9;3596:7;3592:23;3588:32;3585:52;;;3633:1;3630;3623:12;3585:52;3665:9;3659:16;3684:30;3708:5;3684:30;:::i;3749:450::-;3818:6;3871:2;3859:9;3850:7;3846:23;3842:32;3839:52;;;3887:1;3884;3877:12;3839:52;3927:9;3914:23;3960:18;3952:6;3949:30;3946:50;;;3992:1;3989;3982:12;3946:50;4015:22;;4068:4;4060:13;;4056:27;-1:-1:-1;4046:55:1;;4097:1;4094;4087:12;4046:55;4120:73;4185:7;4180:2;4167:16;4162:2;4158;4154:11;4120:73;:::i;4389:182::-;4446:6;4499:2;4487:9;4478:7;4474:23;4470:32;4467:52;;;4515:1;4512;4505:12;4467:52;4538:27;4555:9;4538:27;:::i;4576:256::-;4642:6;4650;4703:2;4691:9;4682:7;4678:23;4674:32;4671:52;;;4719:1;4716;4709:12;4671:52;4742:27;4759:9;4742:27;:::i;4837:685::-;4930:6;4938;4946;4999:2;4987:9;4978:7;4974:23;4970:32;4967:52;;;5015:1;5012;5005:12;4967:52;5038:27;5055:9;5038:27;:::i;:::-;5028:37;;5116:2;5105:9;5101:18;5088:32;5139:18;5180:2;5172:6;5169:14;5166:34;;;5196:1;5193;5186:12;5166:34;5234:6;5223:9;5219:22;5209:32;;5279:7;5272:4;5268:2;5264:13;5260:27;5250:55;;5301:1;5298;5291:12;5250:55;5341:2;5328:16;5367:2;5359:6;5356:14;5353:34;;;5383:1;5380;5373:12;5353:34;5436:7;5431:2;5421:6;5418:1;5414:14;5410:2;5406:23;5402:32;5399:45;5396:65;;;5457:1;5454;5447:12;5396:65;5488:2;5484;5480:11;5470:21;;5510:6;5500:16;;;;;4837:685;;;;;:::o;5527:257::-;5568:3;5606:5;5600:12;5633:6;5628:3;5621:19;5649:63;5705:6;5698:4;5693:3;5689:14;5682:4;5675:5;5671:16;5649:63;:::i;:::-;5766:2;5745:15;-1:-1:-1;;5741:29:1;5732:39;;;;5773:4;5728:50;;5527:257;-1:-1:-1;;5527:257:1:o;6023:1527::-;6247:3;6285:6;6279:13;6311:4;6324:51;6368:6;6363:3;6358:2;6350:6;6346:15;6324:51;:::i;:::-;6438:13;;6397:16;;;;6460:55;6438:13;6397:16;6482:15;;;6460:55;:::i;:::-;6604:13;;6537:20;;;6577:1;;6664;6686:18;;;;6739;;;;6766:93;;6844:4;6834:8;6830:19;6818:31;;6766:93;6907:2;6897:8;6894:16;6874:18;6871:40;6868:167;;;-1:-1:-1;;;6934:33:1;;6990:4;6987:1;6980:15;7020:4;6941:3;7008:17;6868:167;7051:18;7078:110;;;;7202:1;7197:328;;;;7044:481;;7078:110;-1:-1:-1;;7113:24:1;;7099:39;;7158:20;;;;-1:-1:-1;7078:110:1;;7197:328;18444:1;18437:14;;;18481:4;18468:18;;7292:1;7306:169;7320:8;7317:1;7314:15;7306:169;;;7402:14;;7387:13;;;7380:37;7445:16;;;;7337:10;;7306:169;;;7310:3;;7506:8;7499:5;7495:20;7488:27;;7044:481;-1:-1:-1;7541:3:1;;6023:1527;-1:-1:-1;;;;;;;;;;;6023:1527:1:o;7763:488::-;-1:-1:-1;;;;;8032:15:1;;;8014:34;;8084:15;;8079:2;8064:18;;8057:43;8131:2;8116:18;;8109:34;;;8179:3;8174:2;8159:18;;8152:31;;;7957:4;;8200:45;;8225:19;;8217:6;8200:45;:::i;:::-;8192:53;7763:488;-1:-1:-1;;;;;;7763:488:1:o;8630:219::-;8779:2;8768:9;8761:21;8742:4;8799:44;8839:2;8828:9;8824:18;8816:6;8799:44;:::i;9202:407::-;9404:2;9386:21;;;9443:2;9423:18;;;9416:30;9482:34;9477:2;9462:18;;9455:62;-1:-1:-1;;;9548:2:1;9533:18;;9526:41;9599:3;9584:19;;9202:407::o;9614:414::-;9816:2;9798:21;;;9855:2;9835:18;;;9828:30;9894:34;9889:2;9874:18;;9867:62;-1:-1:-1;;;9960:2:1;9945:18;;9938:48;10018:3;10003:19;;9614:414::o;13981:356::-;14183:2;14165:21;;;14202:18;;;14195:30;14261:34;14256:2;14241:18;;14234:62;14328:2;14313:18;;13981:356::o;16271:413::-;16473:2;16455:21;;;16512:2;16492:18;;;16485:30;16551:34;16546:2;16531:18;;16524:62;-1:-1:-1;;;16617:2:1;16602:18;;16595:47;16674:3;16659:19;;16271:413::o;18497:224::-;18536:3;18564:6;18597:2;18594:1;18590:10;18627:2;18624:1;18620:10;18658:3;18654:2;18650:12;18645:3;18642:21;18639:47;;;18666:18;;:::i;:::-;18702:13;;18497:224;-1:-1:-1;;;;18497:224:1:o;18726:128::-;18766:3;18797:1;18793:6;18790:1;18787:13;18784:39;;;18803:18;;:::i;:::-;-1:-1:-1;18839:9:1;;18726:128::o;18859:204::-;18897:3;18933:4;18930:1;18926:12;18965:4;18962:1;18958:12;19000:3;18994:4;18990:14;18985:3;18982:23;18979:49;;;19008:18;;:::i;:::-;19044:13;;18859:204;-1:-1:-1;;;18859:204:1:o;19068:120::-;19108:1;19134;19124:35;;19139:18;;:::i;:::-;-1:-1:-1;19173:9:1;;19068:120::o;19193:168::-;19233:7;19299:1;19295;19291:6;19287:14;19284:1;19281:21;19276:1;19269:9;19262:17;19258:45;19255:71;;;19306:18;;:::i;:::-;-1:-1:-1;19346:9:1;;19193:168::o;19366:125::-;19406:4;19434:1;19431;19428:8;19425:34;;;19439:18;;:::i;:::-;-1:-1:-1;19476:9:1;;19366:125::o;19496:258::-;19568:1;19578:113;19592:6;19589:1;19586:13;19578:113;;;19668:11;;;19662:18;19649:11;;;19642:39;19614:2;19607:10;19578:113;;;19709:6;19706:1;19703:13;19700:48;;;-1:-1:-1;;19744:1:1;19726:16;;19719:27;19496:258::o;19759:380::-;19838:1;19834:12;;;;19881;;;19902:61;;19956:4;19948:6;19944:17;19934:27;;19902:61;20009:2;20001:6;19998:14;19978:18;19975:38;19972:161;;;20055:10;20050:3;20046:20;20043:1;20036:31;20090:4;20087:1;20080:15;20118:4;20115:1;20108:15;19972:161;;19759:380;;;:::o;20144:197::-;20182:3;20210:6;20251:2;20244:5;20240:14;20278:2;20269:7;20266:15;20263:41;;;20284:18;;:::i;:::-;20333:1;20320:15;;20144:197;-1:-1:-1;;;20144:197:1:o;20346:135::-;20385:3;-1:-1:-1;;20406:17:1;;20403:43;;;20426:18;;:::i;:::-;-1:-1:-1;20473:1:1;20462:13;;20346:135::o;20486:175::-;20523:3;20567:4;20560:5;20556:16;20596:4;20587:7;20584:17;20581:43;;;20604:18;;:::i;:::-;20653:1;20640:15;;20486:175;-1:-1:-1;;20486:175:1:o;20666:112::-;20698:1;20724;20714:35;;20729:18;;:::i;:::-;-1:-1:-1;20763:9:1;;20666:112::o;20783:127::-;20844:10;20839:3;20835:20;20832:1;20825:31;20875:4;20872:1;20865:15;20899:4;20896:1;20889:15;20915:127;20976:10;20971:3;20967:20;20964:1;20957:31;21007:4;21004:1;20997:15;21031:4;21028:1;21021:15;21047:127;21108:10;21103:3;21099:20;21096:1;21089:31;21139:4;21136:1;21129:15;21163:4;21160:1;21153:15;21179:127;21240:10;21235:3;21231:20;21228:1;21221:31;21271:4;21268:1;21261:15;21295:4;21292:1;21285:15;21311:131;-1:-1:-1;;;;;;21385:32:1;;21375:43;;21365:71;;21432:1;21429;21422:12

Swarm Source

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