ETH Price: $2,874.95 (-10.23%)
Gas: 13 Gwei

Token

Inhabited Inus (INUS)
 

Overview

Max Total Supply

4,530 INUS

Holders

1,605

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 INUS
0x41c7d446f66b3cf3194d24e369c4562b784fe36c
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:
Inuland

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// 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/utils/Address.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @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: @openzeppelin/contracts/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

        _balances[to] += 1;
        _owners[tokenId] = 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);

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

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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


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

pragma solidity ^0.8.0;



/**
 * @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.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @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-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/Inuland.sol


pragma solidity ^0.8.7;





contract Inuland is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    //Counters
    Counters.Counter internal _airdrops;

    address breedingContract;
    address payable private _shareWallet =
        payable(0xbAD9802234df34D56f2081B5e00572dEc75156e5);

    string public baseURI;
    string public notRevealedUri;
    bytes32 private whitelistRoot;

    //Inventory
    uint16 public maxMintAmountPerTransaction = 5;
    uint16 public maxMintAmountPerWallet = 5;
    uint256 public maxSupply = 10000;

    //Prices
    uint256 public cost = 0.085 ether;
    uint256 public whitelistCost = 0.05 ether;

    //Utility
    bool public paused = true;
    bool public revealed = false;
    bool public whiteListingSale = true;

    //mapping
    mapping(address => bool) private whitelistedMints;

    constructor(string memory _baseUrl, string memory _notRevealedUrl)
        ERC721("Inhabited Inus", "INUS")
    {
        baseURI = _baseUrl;
        notRevealedUri = _notRevealedUrl;
    }

    function setBreedingContractAddress(address _bAddress) public onlyOwner {
        breedingContract = _bAddress;
    }

    function mintExternal(address _address, uint256 _tokenId) external {
        require(
            msg.sender == breedingContract,
            "Sorry you dont have permission to mint"
        );
        _safeMint(_address, _tokenId);
    }

    function setWhitelistingRoot(bytes32 _root) public onlyOwner {
        whitelistRoot = _root;
    }

    // Verify that a given leaf is in the tree.
    function _verify(bytes32 _leafNode, bytes32[] memory proof)
        internal
        view
        returns (bool)
    {
        return MerkleProof.verify(proof, whitelistRoot, _leafNode);
    }

    // Generate the leaf node (just the hash of tokenID concatenated with the account address)
    function _leaf(address account) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(account));
    }

    //whitelist mint
    function mintWhitelist(bytes32[] calldata proof) public payable {
        uint256 supply = totalSupply();
        if (msg.sender != owner()) {
            require(!paused);
            require(whiteListingSale, "Whitelisting Sale 1 not enabled");
            require(_verify(_leaf(msg.sender), proof), "Invalid proof");
            require(!whitelistedMints[msg.sender], "You have already Minted");
            require(msg.value >= whitelistCost, "Insuffient funds");
        }

        _safeMint(msg.sender, supply + 1);
        whitelistedMints[msg.sender] = true;
    }

    // public
    function mint(uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();

        if (msg.sender != owner()) {
            uint256 ownerTokenCount = balanceOf(msg.sender);

            require(!paused);
            require(!whiteListingSale, "You cant mint on Presale");

            require(_mintAmount > 0, "Mint amount should be greater than 0");
            require(
                _mintAmount <= maxMintAmountPerTransaction,
                "Sorry you cant mint this amount at once"
            );
            require(supply + _mintAmount <= maxSupply, "Exceeds Max Supply");
            require(
                (ownerTokenCount + _mintAmount) <= maxMintAmountPerWallet,
                "Sorry you cant mint more"
            );

            require(msg.value >= cost * _mintAmount, "Insuffient funds");
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function gift(address _to, uint256 _mintAmount) public onlyOwner {
        uint256 supply = totalSupply();
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, supply + i);
            _airdrops.increment();
        }
    }

    function totalAirdrops() public view returns (uint256) {
        return _airdrops.current();
    }

    function airdrop(address[] memory _airdropAddresses) public onlyOwner {
        for (uint256 i = 0; i < _airdropAddresses.length; i++) {
            uint256 supply = totalSupply();
            address to = _airdropAddresses[i];
            _safeMint(to, supply + 1);
            _airdrops.increment();
        }
    }

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

    function getTotalMints() public view returns (uint256) {
        return totalSupply() - _airdrops.current();
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        if (revealed == false) {
            return
                bytes(notRevealedUri).length > 0
                    ? string(
                        abi.encodePacked(notRevealedUri, tokenId.toString())
                    )
                    : "";
        } else {
            string memory currentBaseURI = _baseURI();
            return
                bytes(currentBaseURI).length > 0
                    ? string(
                        abi.encodePacked(currentBaseURI, tokenId.toString())
                    )
                    : "";
        }
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function toggleReveal() public onlyOwner {
        revealed = !revealed;
    }

    function toggleWhitelistSale() public onlyOwner {
        whiteListingSale = !whiteListingSale;
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setShareWallet(address paymentAddress) external onlyOwner {
        _shareWallet = payable(paymentAddress);
    }

    function setWhitelisting1Cost(uint256 _newCost) public onlyOwner {
        whitelistCost = _newCost;
    }

    function setmaxMintAmountPerTransaction(uint16 _amount) public onlyOwner {
        maxMintAmountPerTransaction = _amount;
    }

    function setMaxMintAmountPerWallet(uint16 _amount) public onlyOwner {
        maxMintAmountPerWallet = _amount;
    }

    function setMaxSupply(uint256 _supply) public onlyOwner {
        maxSupply = _supply;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

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

    function togglePause() public onlyOwner {
        paused = !paused;
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        uint256 share1 = (balance * 25) / 100;

        (bool shareholder1, ) = _shareWallet.call{value: share1}("");
        require(shareholder1);

        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUrl","type":"string"},{"internalType":"string","name":"_notRevealedUrl","type":"string"}],"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":"address[]","name":"_airdropAddresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"getTotalMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxMintAmountPerTransaction","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mintExternal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","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":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_bAddress","type":"address"}],"name":"setBreedingContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"paymentAddress","type":"address"}],"name":"setShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setWhitelisting1Cost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistingRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setmaxMintAmountPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistSale","outputs":[],"stateMutability":"nonpayable","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":"","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":"totalAirdrops","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListingSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600d805473bad9802234df34d56f2081b5e00572dec75156e56001600160a01b03199091161790556011805463ffffffff19166205000517905561271060125567012dfb0cb5e8800060135566b1a2bc2ec500006014556015805462ffffff1916620100011790553480156200007957600080fd5b5060405162003464380380620034648339810160408190526200009c9162000308565b604080518082018252600e81526d496e6861626974656420496e757360901b602080830191825283518085019094526004845263494e555360e01b908401528151919291620000ee91600091620001ab565b50805162000104906001906020840190620001ab565b505050620001216200011b6200015560201b60201c565b62000159565b81516200013690600e906020850190620001ab565b5080516200014c90600f906020840190620001ab565b505050620003c5565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001b99062000372565b90600052602060002090601f016020900481019282620001dd576000855562000228565b82601f10620001f857805160ff191683800117855562000228565b8280016001018555821562000228579182015b82811115620002285782518255916020019190600101906200020b565b50620002369291506200023a565b5090565b5b808211156200023657600081556001016200023b565b600082601f8301126200026357600080fd5b81516001600160401b0380821115620002805762000280620003af565b604051601f8301601f19908116603f01168101908282118183101715620002ab57620002ab620003af565b81604052838152602092508683858801011115620002c857600080fd5b600091505b83821015620002ec5785820183015181830184015290820190620002cd565b83821115620002fe5760008385830101525b9695505050505050565b600080604083850312156200031c57600080fd5b82516001600160401b03808211156200033457600080fd5b620003428683870162000251565b935060208501519150808211156200035957600080fd5b50620003688582860162000251565b9150509250929050565b600181811c908216806200038757607f821691505b60208210811415620003a957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61308f80620003d56000396000f3fe6080604052600436106102e45760003560e01c8063708e6fc611610190578063c87b56dd116100dc578063e7b99ec711610095578063ee8912121161006f578063ee89121214610893578063f2c4ce1e146108b3578063f2fde38b146108d3578063f4da1846146108f357600080fd5b8063e7b99ec714610814578063e97800cb1461082a578063e985e9c51461084a57600080fd5b8063c87b56dd1461075e578063cbce4c971461077e578063cef117291461079e578063d5abeb01146107be578063d5b9eb3f146107d4578063e5a88cdb146107f457600080fd5b8063971a1ca211610149578063b88d4fde11610123578063b88d4fde146106da578063bbb89744146106fa578063bc951b9114610728578063c4ae31681461074957600080fd5b8063971a1ca214610692578063a0712d68146106a7578063a22cb465146106ba57600080fd5b8063708e6fc6146105ea57806370a082311461060a578063715018a61461062a578063729ad39e1461063f5780638da5cb5b1461065f57806395d89b411461067d57600080fd5b806344a0d68a1161024f5780635b8ad4291161020857806368570bd6116101e257806368570bd6146105805780636c0360eb146105a05780636ec0dfe5146105b55780636f8b44b0146105ca57600080fd5b80635b8ad429146105315780635c975abb146105465780636352211e1461056057600080fd5b806344a0d68a1461048a57806344d84381146104aa5780634f6ccce7146104bd57806351830227146104dd57806355f804b3146104fc57806359eda1b51461051c57600080fd5b806318160ddd116102a157806318160ddd146103d357806323b872dd146103e85780632f745c59146104085780633ccfd60b1461042857806342842e0e1461043d578063438b63001461045d57600080fd5b806301ffc9a7146102e957806306fdde031461031e578063081812fc14610340578063081c8c4414610378578063095ea7b31461038d57806313faede6146103af575b600080fd5b3480156102f557600080fd5b50610309610304366004612b7b565b610913565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033361093e565b6040516103159190612dc1565b34801561034c57600080fd5b5061036061035b366004612b62565b6109d0565b6040516001600160a01b039091168152602001610315565b34801561038457600080fd5b50610333610a6a565b34801561039957600080fd5b506103ad6103a8366004612a0f565b610af8565b005b3480156103bb57600080fd5b506103c560135481565b604051908152602001610315565b3480156103df57600080fd5b506008546103c5565b3480156103f457600080fd5b506103ad61040336600461291b565b610c0e565b34801561041457600080fd5b506103c5610423366004612a0f565b610c3f565b34801561043457600080fd5b506103ad610cd5565b34801561044957600080fd5b506103ad61045836600461291b565b610df5565b34801561046957600080fd5b5061047d6104783660046128cd565b610e10565b6040516103159190612d7d565b34801561049657600080fd5b506103ad6104a5366004612b62565b610eb2565b6103ad6104b8366004612aed565b610ee1565b3480156104c957600080fd5b506103c56104d8366004612b62565b611108565b3480156104e957600080fd5b5060155461030990610100900460ff1681565b34801561050857600080fd5b506103ad610517366004612bb5565b61119b565b34801561052857600080fd5b506103ad6111dc565b34801561053d57600080fd5b506103ad611225565b34801561055257600080fd5b506015546103099060ff1681565b34801561056c57600080fd5b5061036061057b366004612b62565b61126c565b34801561058c57600080fd5b506103ad61059b3660046128cd565b6112e3565b3480156105ac57600080fd5b5061033361132f565b3480156105c157600080fd5b506103c561133c565b3480156105d657600080fd5b506103ad6105e5366004612b62565b611359565b3480156105f657600080fd5b506103ad6106053660046128cd565b611388565b34801561061657600080fd5b506103c56106253660046128cd565b6113d4565b34801561063657600080fd5b506103ad61145b565b34801561064b57600080fd5b506103ad61065a366004612a39565b611491565b34801561066b57600080fd5b50600a546001600160a01b0316610360565b34801561068957600080fd5b50610333611526565b34801561069e57600080fd5b506103c5611535565b6103ad6106b5366004612b62565b611540565b3480156106c657600080fd5b506103ad6106d53660046129d3565b6117e1565b3480156106e657600080fd5b506103ad6106f5366004612957565b6117ec565b34801561070657600080fd5b506011546107159061ffff1681565b60405161ffff9091168152602001610315565b34801561073457600080fd5b506011546107159062010000900461ffff1681565b34801561075557600080fd5b506103ad61181e565b34801561076a57600080fd5b50610333610779366004612b62565b61185c565b34801561078a57600080fd5b506103ad610799366004612a0f565b6119a7565b3480156107aa57600080fd5b506103ad6107b9366004612bfe565b611a16565b3480156107ca57600080fd5b506103c560125481565b3480156107e057600080fd5b506103ad6107ef366004612b62565b611a60565b34801561080057600080fd5b506015546103099062010000900460ff1681565b34801561082057600080fd5b506103c560145481565b34801561083657600080fd5b506103ad610845366004612bfe565b611a8f565b34801561085657600080fd5b506103096108653660046128e8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561089f57600080fd5b506103ad6108ae366004612b62565b611ad1565b3480156108bf57600080fd5b506103ad6108ce366004612bb5565b611b00565b3480156108df57600080fd5b506103ad6108ee3660046128cd565b611b3d565b3480156108ff57600080fd5b506103ad61090e366004612a0f565b611bd8565b60006001600160e01b0319821663780e9d6360e01b1480610938575061093882611c4b565b92915050565b60606000805461094d90612f6b565b80601f016020809104026020016040519081016040528092919081815260200182805461097990612f6b565b80156109c65780601f1061099b576101008083540402835291602001916109c6565b820191906000526020600020905b8154815290600101906020018083116109a957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a4e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600f8054610a7790612f6b565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa390612f6b565b8015610af05780601f10610ac557610100808354040283529160200191610af0565b820191906000526020600020905b815481529060010190602001808311610ad357829003601f168201915b505050505081565b6000610b038261126c565b9050806001600160a01b0316836001600160a01b03161415610b715760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a45565b336001600160a01b0382161480610b8d5750610b8d8133610865565b610bff5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a45565b610c098383611c9b565b505050565b610c183382611d09565b610c345760405162461bcd60e51b8152600401610a4590612e5b565b610c09838383611e00565b6000610c4a836113d4565b8210610cac5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a45565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610cff5760405162461bcd60e51b8152600401610a4590612e26565b4760006064610d0f836019612f09565b610d199190612ef5565b600d546040519192506000916001600160a01b039091169083908381818185875af1925050503d8060008114610d6b576040519150601f19603f3d011682016040523d82523d6000602084013e610d70565b606091505b5050905080610d7e57600080fd5b6000610d92600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ddc576040519150601f19603f3d011682016040523d82523d6000602084013e610de1565b606091505b5050905080610def57600080fd5b50505050565b610c09838383604051806020016040528060008152506117ec565b60606000610e1d836113d4565b905060008167ffffffffffffffff811115610e3a57610e3a61302d565b604051908082528060200260200182016040528015610e63578160200160208202803683370190505b50905060005b82811015610eaa57610e7b8582610c3f565b828281518110610e8d57610e8d613017565b602090810291909101015280610ea281612fa6565b915050610e69565b509392505050565b600a546001600160a01b03163314610edc5760405162461bcd60e51b8152600401610a4590612e26565b601355565b6000610eec60085490565b9050610f00600a546001600160a01b031690565b6001600160a01b0316336001600160a01b0316146110d55760155460ff1615610f2857600080fd5b60155462010000900460ff16610f805760405162461bcd60e51b815260206004820152601f60248201527f57686974656c697374696e672053616c652031206e6f7420656e61626c6564006044820152606401610a45565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120610ff490848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611fab92505050565b6110305760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610a45565b3360009081526016602052604090205460ff16156110905760405162461bcd60e51b815260206004820152601760248201527f596f75206861766520616c7265616479204d696e7465640000000000000000006044820152606401610a45565b6014543410156110d55760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610a45565b6110e9336110e4836001612edd565b611fba565b5050336000908152601660205260409020805460ff1916600117905550565b600061111360085490565b82106111765760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a45565b6008828154811061118957611189613017565b90600052602060002001549050919050565b600a546001600160a01b031633146111c55760405162461bcd60e51b8152600401610a4590612e26565b80516111d890600e9060208401906127c5565b5050565b600a546001600160a01b031633146112065760405162461bcd60e51b8152600401610a4590612e26565b6015805462ff0000198116620100009182900460ff1615909102179055565b600a546001600160a01b0316331461124f5760405162461bcd60e51b8152600401610a4590612e26565b6015805461ff001981166101009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b0316806109385760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a45565b600a546001600160a01b0316331461130d5760405162461bcd60e51b8152600401610a4590612e26565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600e8054610a7790612f6b565b6000611347600b5490565b6008546113549190612f28565b905090565b600a546001600160a01b031633146113835760405162461bcd60e51b8152600401610a4590612e26565b601255565b600a546001600160a01b031633146113b25760405162461bcd60e51b8152600401610a4590612e26565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b03821661143f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a45565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146114855760405162461bcd60e51b8152600401610a4590612e26565b61148f6000611fd4565b565b600a546001600160a01b031633146114bb5760405162461bcd60e51b8152600401610a4590612e26565b60005b81518110156111d85760006114d260085490565b905060008383815181106114e8576114e8613017565b60200260200101519050611503818360016110e49190612edd565b611511600b80546001019055565b5050808061151e90612fa6565b9150506114be565b60606001805461094d90612f6b565b6000611354600b5490565b600061154b60085490565b905061155f600a546001600160a01b031690565b6001600160a01b0316336001600160a01b0316146117b7576000611582336113d4565b60155490915060ff161561159557600080fd5b60155462010000900460ff16156115ee5760405162461bcd60e51b815260206004820152601860248201527f596f752063616e74206d696e74206f6e2050726573616c6500000000000000006044820152606401610a45565b6000831161164a5760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b6064820152608401610a45565b60115461ffff168311156116b05760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b6064820152608401610a45565b6012546116bd8484612edd565b11156117005760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610a45565b60115462010000900461ffff166117178483612edd565b11156117655760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f726500000000000000006044820152606401610a45565b826013546117739190612f09565b3410156117b55760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610a45565b505b60015b828111610c09576117cf336110e48385612edd565b806117d981612fa6565b9150506117ba565b6111d8338383612026565b6117f63383611d09565b6118125760405162461bcd60e51b8152600401610a4590612e5b565b610def848484846120f5565b600a546001600160a01b031633146118485760405162461bcd60e51b8152600401610a4590612e26565b6015805460ff19811660ff90911615179055565b6000818152600260205260409020546060906001600160a01b03166118db5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a45565b601554610100900460ff16611946576000600f80546118f990612f6b565b9050116119155760405180602001604052806000815250610938565b600f61192083612128565b604051602001611931929190612c99565b60405160208183030381529060405292915050565b6000611950612226565b90506000815111611970576040518060200160405280600081525061199b565b8061197a84612128565b60405160200161198b929190612c6a565b6040516020818303038152906040525b9392505050565b919050565b600a546001600160a01b031633146119d15760405162461bcd60e51b8152600401610a4590612e26565b60006119dc60085490565b905060015b828111610def576119f6846110e48385612edd565b611a04600b80546001019055565b80611a0e81612fa6565b9150506119e1565b600a546001600160a01b03163314611a405760405162461bcd60e51b8152600401610a4590612e26565b6011805461ffff909216620100000263ffff000019909216919091179055565b600a546001600160a01b03163314611a8a5760405162461bcd60e51b8152600401610a4590612e26565b601455565b600a546001600160a01b03163314611ab95760405162461bcd60e51b8152600401610a4590612e26565b6011805461ffff191661ffff92909216919091179055565b600a546001600160a01b03163314611afb5760405162461bcd60e51b8152600401610a4590612e26565b601055565b600a546001600160a01b03163314611b2a5760405162461bcd60e51b8152600401610a4590612e26565b80516111d890600f9060208401906127c5565b600a546001600160a01b03163314611b675760405162461bcd60e51b8152600401610a4590612e26565b6001600160a01b038116611bcc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a45565b611bd581611fd4565b50565b600c546001600160a01b03163314611c415760405162461bcd60e51b815260206004820152602660248201527f536f72727920796f7520646f6e742068617665207065726d697373696f6e20746044820152651bc81b5a5b9d60d21b6064820152608401610a45565b6111d88282611fba565b60006001600160e01b031982166380ac58cd60e01b1480611c7c57506001600160e01b03198216635b5e139f60e01b145b8061093857506301ffc9a760e01b6001600160e01b0319831614610938565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611cd08261126c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611d825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a45565b6000611d8d8361126c565b9050806001600160a01b0316846001600160a01b03161480611dc85750836001600160a01b0316611dbd846109d0565b6001600160a01b0316145b80611df857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e138261126c565b6001600160a01b031614611e7b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a45565b6001600160a01b038216611edd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a45565b611ee8838383612235565b611ef3600082611c9b565b6001600160a01b0383166000908152600360205260408120805460019290611f1c908490612f28565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f4a908490612edd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061199b82601054856122ed565b6111d8828260405180602001604052806000815250612303565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120885760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a45565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612100848484611e00565b61210c84848484612336565b610def5760405162461bcd60e51b8152600401610a4590612dd4565b60608161214c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612176578061216081612fa6565b915061216f9050600a83612ef5565b9150612150565b60008167ffffffffffffffff8111156121915761219161302d565b6040519080825280601f01601f1916602001820160405280156121bb576020820181803683370190505b5090505b8415611df8576121d0600183612f28565b91506121dd600a86612fc1565b6121e8906030612edd565b60f81b8183815181106121fd576121fd613017565b60200101906001600160f81b031916908160001a90535061221f600a86612ef5565b94506121bf565b6060600e805461094d90612f6b565b6001600160a01b0383166122905761228b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6122b3565b816001600160a01b0316836001600160a01b0316146122b3576122b38382612443565b6001600160a01b0382166122ca57610c09816124e0565b826001600160a01b0316826001600160a01b031614610c0957610c09828261258f565b6000826122fa85846125d3565b14949350505050565b61230d8383612677565b61231a6000848484612336565b610c095760405162461bcd60e51b8152600401610a4590612dd4565b60006001600160a01b0384163b1561243857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061237a903390899088908890600401612d40565b602060405180830381600087803b15801561239457600080fd5b505af19250505080156123c4575060408051601f3d908101601f191682019092526123c191810190612b98565b60015b61241e573d8080156123f2576040519150601f19603f3d011682016040523d82523d6000602084013e6123f7565b606091505b5080516124165760405162461bcd60e51b8152600401610a4590612dd4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611df8565b506001949350505050565b60006001612450846113d4565b61245a9190612f28565b6000838152600760205260409020549091508082146124ad576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906124f290600190612f28565b6000838152600960205260408120546008805493945090928490811061251a5761251a613017565b90600052602060002001549050806008838154811061253b5761253b613017565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061257357612573613001565b6001900381819060005260206000200160009055905550505050565b600061259a836113d4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600081815b8451811015610eaa5760008582815181106125f5576125f5613017565b60200260200101519050808311612637576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612664565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061266f81612fa6565b9150506125d8565b6001600160a01b0382166126cd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a45565b6000818152600260205260409020546001600160a01b0316156127325760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a45565b61273e60008383612235565b6001600160a01b0382166000908152600360205260408120805460019290612767908490612edd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546127d190612f6b565b90600052602060002090601f0160209004810192826127f35760008555612839565b82601f1061280c57805160ff1916838001178555612839565b82800160010185558215612839579182015b8281111561283957825182559160200191906001019061281e565b50612845929150612849565b5090565b5b80821115612845576000815560010161284a565b600067ffffffffffffffff8311156128785761287861302d565b61288b601f8401601f1916602001612eac565b905082815283838301111561289f57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146119a257600080fd5b6000602082840312156128df57600080fd5b61199b826128b6565b600080604083850312156128fb57600080fd5b612904836128b6565b9150612912602084016128b6565b90509250929050565b60008060006060848603121561293057600080fd5b612939846128b6565b9250612947602085016128b6565b9150604084013590509250925092565b6000806000806080858703121561296d57600080fd5b612976856128b6565b9350612984602086016128b6565b925060408501359150606085013567ffffffffffffffff8111156129a757600080fd5b8501601f810187136129b857600080fd5b6129c78782356020840161285e565b91505092959194509250565b600080604083850312156129e657600080fd5b6129ef836128b6565b915060208301358015158114612a0457600080fd5b809150509250929050565b60008060408385031215612a2257600080fd5b612a2b836128b6565b946020939093013593505050565b60006020808385031215612a4c57600080fd5b823567ffffffffffffffff80821115612a6457600080fd5b818501915085601f830112612a7857600080fd5b813581811115612a8a57612a8a61302d565b8060051b9150612a9b848301612eac565b8181528481019084860184860187018a1015612ab657600080fd5b600095505b83861015612ae057612acc816128b6565b835260019590950194918601918601612abb565b5098975050505050505050565b60008060208385031215612b0057600080fd5b823567ffffffffffffffff80821115612b1857600080fd5b818501915085601f830112612b2c57600080fd5b813581811115612b3b57600080fd5b8660208260051b8501011115612b5057600080fd5b60209290920196919550909350505050565b600060208284031215612b7457600080fd5b5035919050565b600060208284031215612b8d57600080fd5b813561199b81613043565b600060208284031215612baa57600080fd5b815161199b81613043565b600060208284031215612bc757600080fd5b813567ffffffffffffffff811115612bde57600080fd5b8201601f81018413612bef57600080fd5b611df88482356020840161285e565b600060208284031215612c1057600080fd5b813561ffff8116811461199b57600080fd5b60008151808452612c3a816020860160208601612f3f565b601f01601f19169290920160200192915050565b60008151612c60818560208601612f3f565b9290920192915050565b60008351612c7c818460208801612f3f565b835190830190612c90818360208801612f3f565b01949350505050565b600080845481600182811c915080831680612cb557607f831692505b6020808410821415612cd557634e487b7160e01b86526022600452602486fd5b818015612ce95760018114612cfa57612d27565b60ff19861689528489019650612d27565b60008b81526020902060005b86811015612d1f5781548b820152908501908301612d06565b505084890196505b505050505050612d378185612c4e565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d7390830184612c22565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612db557835183529284019291840191600101612d99565b50909695505050505050565b60208152600061199b6020830184612c22565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612ed557612ed561302d565b604052919050565b60008219821115612ef057612ef0612fd5565b500190565b600082612f0457612f04612feb565b500490565b6000816000190483118215151615612f2357612f23612fd5565b500290565b600082821015612f3a57612f3a612fd5565b500390565b60005b83811015612f5a578181015183820152602001612f42565b83811115610def5750506000910152565b600181811c90821680612f7f57607f821691505b60208210811415612fa057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fba57612fba612fd5565b5060010190565b600082612fd057612fd0612feb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611bd557600080fdfea2646970667358221220482679baa6a6e758d5d6b2a29a3cfc038876cf541cfb2c2f92b1dc18cb629a1d64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000003968747470733a2f2f75732d63656e7472616c312d696e756c616e642e636c6f756466756e6374696f6e732e6e65742f6170702f746f6b656e2f00000000000000000000000000000000000000000000000000000000000000000000000000003f68747470733a2f2f75732d63656e7472616c312d696e756c616e642e636c6f756466756e6374696f6e732e6e65742f6170702f6e6f7472657665616c65642f00

Deployed Bytecode

0x6080604052600436106102e45760003560e01c8063708e6fc611610190578063c87b56dd116100dc578063e7b99ec711610095578063ee8912121161006f578063ee89121214610893578063f2c4ce1e146108b3578063f2fde38b146108d3578063f4da1846146108f357600080fd5b8063e7b99ec714610814578063e97800cb1461082a578063e985e9c51461084a57600080fd5b8063c87b56dd1461075e578063cbce4c971461077e578063cef117291461079e578063d5abeb01146107be578063d5b9eb3f146107d4578063e5a88cdb146107f457600080fd5b8063971a1ca211610149578063b88d4fde11610123578063b88d4fde146106da578063bbb89744146106fa578063bc951b9114610728578063c4ae31681461074957600080fd5b8063971a1ca214610692578063a0712d68146106a7578063a22cb465146106ba57600080fd5b8063708e6fc6146105ea57806370a082311461060a578063715018a61461062a578063729ad39e1461063f5780638da5cb5b1461065f57806395d89b411461067d57600080fd5b806344a0d68a1161024f5780635b8ad4291161020857806368570bd6116101e257806368570bd6146105805780636c0360eb146105a05780636ec0dfe5146105b55780636f8b44b0146105ca57600080fd5b80635b8ad429146105315780635c975abb146105465780636352211e1461056057600080fd5b806344a0d68a1461048a57806344d84381146104aa5780634f6ccce7146104bd57806351830227146104dd57806355f804b3146104fc57806359eda1b51461051c57600080fd5b806318160ddd116102a157806318160ddd146103d357806323b872dd146103e85780632f745c59146104085780633ccfd60b1461042857806342842e0e1461043d578063438b63001461045d57600080fd5b806301ffc9a7146102e957806306fdde031461031e578063081812fc14610340578063081c8c4414610378578063095ea7b31461038d57806313faede6146103af575b600080fd5b3480156102f557600080fd5b50610309610304366004612b7b565b610913565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033361093e565b6040516103159190612dc1565b34801561034c57600080fd5b5061036061035b366004612b62565b6109d0565b6040516001600160a01b039091168152602001610315565b34801561038457600080fd5b50610333610a6a565b34801561039957600080fd5b506103ad6103a8366004612a0f565b610af8565b005b3480156103bb57600080fd5b506103c560135481565b604051908152602001610315565b3480156103df57600080fd5b506008546103c5565b3480156103f457600080fd5b506103ad61040336600461291b565b610c0e565b34801561041457600080fd5b506103c5610423366004612a0f565b610c3f565b34801561043457600080fd5b506103ad610cd5565b34801561044957600080fd5b506103ad61045836600461291b565b610df5565b34801561046957600080fd5b5061047d6104783660046128cd565b610e10565b6040516103159190612d7d565b34801561049657600080fd5b506103ad6104a5366004612b62565b610eb2565b6103ad6104b8366004612aed565b610ee1565b3480156104c957600080fd5b506103c56104d8366004612b62565b611108565b3480156104e957600080fd5b5060155461030990610100900460ff1681565b34801561050857600080fd5b506103ad610517366004612bb5565b61119b565b34801561052857600080fd5b506103ad6111dc565b34801561053d57600080fd5b506103ad611225565b34801561055257600080fd5b506015546103099060ff1681565b34801561056c57600080fd5b5061036061057b366004612b62565b61126c565b34801561058c57600080fd5b506103ad61059b3660046128cd565b6112e3565b3480156105ac57600080fd5b5061033361132f565b3480156105c157600080fd5b506103c561133c565b3480156105d657600080fd5b506103ad6105e5366004612b62565b611359565b3480156105f657600080fd5b506103ad6106053660046128cd565b611388565b34801561061657600080fd5b506103c56106253660046128cd565b6113d4565b34801561063657600080fd5b506103ad61145b565b34801561064b57600080fd5b506103ad61065a366004612a39565b611491565b34801561066b57600080fd5b50600a546001600160a01b0316610360565b34801561068957600080fd5b50610333611526565b34801561069e57600080fd5b506103c5611535565b6103ad6106b5366004612b62565b611540565b3480156106c657600080fd5b506103ad6106d53660046129d3565b6117e1565b3480156106e657600080fd5b506103ad6106f5366004612957565b6117ec565b34801561070657600080fd5b506011546107159061ffff1681565b60405161ffff9091168152602001610315565b34801561073457600080fd5b506011546107159062010000900461ffff1681565b34801561075557600080fd5b506103ad61181e565b34801561076a57600080fd5b50610333610779366004612b62565b61185c565b34801561078a57600080fd5b506103ad610799366004612a0f565b6119a7565b3480156107aa57600080fd5b506103ad6107b9366004612bfe565b611a16565b3480156107ca57600080fd5b506103c560125481565b3480156107e057600080fd5b506103ad6107ef366004612b62565b611a60565b34801561080057600080fd5b506015546103099062010000900460ff1681565b34801561082057600080fd5b506103c560145481565b34801561083657600080fd5b506103ad610845366004612bfe565b611a8f565b34801561085657600080fd5b506103096108653660046128e8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561089f57600080fd5b506103ad6108ae366004612b62565b611ad1565b3480156108bf57600080fd5b506103ad6108ce366004612bb5565b611b00565b3480156108df57600080fd5b506103ad6108ee3660046128cd565b611b3d565b3480156108ff57600080fd5b506103ad61090e366004612a0f565b611bd8565b60006001600160e01b0319821663780e9d6360e01b1480610938575061093882611c4b565b92915050565b60606000805461094d90612f6b565b80601f016020809104026020016040519081016040528092919081815260200182805461097990612f6b565b80156109c65780601f1061099b576101008083540402835291602001916109c6565b820191906000526020600020905b8154815290600101906020018083116109a957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a4e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600f8054610a7790612f6b565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa390612f6b565b8015610af05780601f10610ac557610100808354040283529160200191610af0565b820191906000526020600020905b815481529060010190602001808311610ad357829003601f168201915b505050505081565b6000610b038261126c565b9050806001600160a01b0316836001600160a01b03161415610b715760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a45565b336001600160a01b0382161480610b8d5750610b8d8133610865565b610bff5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a45565b610c098383611c9b565b505050565b610c183382611d09565b610c345760405162461bcd60e51b8152600401610a4590612e5b565b610c09838383611e00565b6000610c4a836113d4565b8210610cac5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a45565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610cff5760405162461bcd60e51b8152600401610a4590612e26565b4760006064610d0f836019612f09565b610d199190612ef5565b600d546040519192506000916001600160a01b039091169083908381818185875af1925050503d8060008114610d6b576040519150601f19603f3d011682016040523d82523d6000602084013e610d70565b606091505b5050905080610d7e57600080fd5b6000610d92600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ddc576040519150601f19603f3d011682016040523d82523d6000602084013e610de1565b606091505b5050905080610def57600080fd5b50505050565b610c09838383604051806020016040528060008152506117ec565b60606000610e1d836113d4565b905060008167ffffffffffffffff811115610e3a57610e3a61302d565b604051908082528060200260200182016040528015610e63578160200160208202803683370190505b50905060005b82811015610eaa57610e7b8582610c3f565b828281518110610e8d57610e8d613017565b602090810291909101015280610ea281612fa6565b915050610e69565b509392505050565b600a546001600160a01b03163314610edc5760405162461bcd60e51b8152600401610a4590612e26565b601355565b6000610eec60085490565b9050610f00600a546001600160a01b031690565b6001600160a01b0316336001600160a01b0316146110d55760155460ff1615610f2857600080fd5b60155462010000900460ff16610f805760405162461bcd60e51b815260206004820152601f60248201527f57686974656c697374696e672053616c652031206e6f7420656e61626c6564006044820152606401610a45565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120610ff490848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611fab92505050565b6110305760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610a45565b3360009081526016602052604090205460ff16156110905760405162461bcd60e51b815260206004820152601760248201527f596f75206861766520616c7265616479204d696e7465640000000000000000006044820152606401610a45565b6014543410156110d55760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610a45565b6110e9336110e4836001612edd565b611fba565b5050336000908152601660205260409020805460ff1916600117905550565b600061111360085490565b82106111765760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a45565b6008828154811061118957611189613017565b90600052602060002001549050919050565b600a546001600160a01b031633146111c55760405162461bcd60e51b8152600401610a4590612e26565b80516111d890600e9060208401906127c5565b5050565b600a546001600160a01b031633146112065760405162461bcd60e51b8152600401610a4590612e26565b6015805462ff0000198116620100009182900460ff1615909102179055565b600a546001600160a01b0316331461124f5760405162461bcd60e51b8152600401610a4590612e26565b6015805461ff001981166101009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b0316806109385760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a45565b600a546001600160a01b0316331461130d5760405162461bcd60e51b8152600401610a4590612e26565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600e8054610a7790612f6b565b6000611347600b5490565b6008546113549190612f28565b905090565b600a546001600160a01b031633146113835760405162461bcd60e51b8152600401610a4590612e26565b601255565b600a546001600160a01b031633146113b25760405162461bcd60e51b8152600401610a4590612e26565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b03821661143f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a45565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146114855760405162461bcd60e51b8152600401610a4590612e26565b61148f6000611fd4565b565b600a546001600160a01b031633146114bb5760405162461bcd60e51b8152600401610a4590612e26565b60005b81518110156111d85760006114d260085490565b905060008383815181106114e8576114e8613017565b60200260200101519050611503818360016110e49190612edd565b611511600b80546001019055565b5050808061151e90612fa6565b9150506114be565b60606001805461094d90612f6b565b6000611354600b5490565b600061154b60085490565b905061155f600a546001600160a01b031690565b6001600160a01b0316336001600160a01b0316146117b7576000611582336113d4565b60155490915060ff161561159557600080fd5b60155462010000900460ff16156115ee5760405162461bcd60e51b815260206004820152601860248201527f596f752063616e74206d696e74206f6e2050726573616c6500000000000000006044820152606401610a45565b6000831161164a5760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b6064820152608401610a45565b60115461ffff168311156116b05760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b6064820152608401610a45565b6012546116bd8484612edd565b11156117005760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610a45565b60115462010000900461ffff166117178483612edd565b11156117655760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f726500000000000000006044820152606401610a45565b826013546117739190612f09565b3410156117b55760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610a45565b505b60015b828111610c09576117cf336110e48385612edd565b806117d981612fa6565b9150506117ba565b6111d8338383612026565b6117f63383611d09565b6118125760405162461bcd60e51b8152600401610a4590612e5b565b610def848484846120f5565b600a546001600160a01b031633146118485760405162461bcd60e51b8152600401610a4590612e26565b6015805460ff19811660ff90911615179055565b6000818152600260205260409020546060906001600160a01b03166118db5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a45565b601554610100900460ff16611946576000600f80546118f990612f6b565b9050116119155760405180602001604052806000815250610938565b600f61192083612128565b604051602001611931929190612c99565b60405160208183030381529060405292915050565b6000611950612226565b90506000815111611970576040518060200160405280600081525061199b565b8061197a84612128565b60405160200161198b929190612c6a565b6040516020818303038152906040525b9392505050565b919050565b600a546001600160a01b031633146119d15760405162461bcd60e51b8152600401610a4590612e26565b60006119dc60085490565b905060015b828111610def576119f6846110e48385612edd565b611a04600b80546001019055565b80611a0e81612fa6565b9150506119e1565b600a546001600160a01b03163314611a405760405162461bcd60e51b8152600401610a4590612e26565b6011805461ffff909216620100000263ffff000019909216919091179055565b600a546001600160a01b03163314611a8a5760405162461bcd60e51b8152600401610a4590612e26565b601455565b600a546001600160a01b03163314611ab95760405162461bcd60e51b8152600401610a4590612e26565b6011805461ffff191661ffff92909216919091179055565b600a546001600160a01b03163314611afb5760405162461bcd60e51b8152600401610a4590612e26565b601055565b600a546001600160a01b03163314611b2a5760405162461bcd60e51b8152600401610a4590612e26565b80516111d890600f9060208401906127c5565b600a546001600160a01b03163314611b675760405162461bcd60e51b8152600401610a4590612e26565b6001600160a01b038116611bcc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a45565b611bd581611fd4565b50565b600c546001600160a01b03163314611c415760405162461bcd60e51b815260206004820152602660248201527f536f72727920796f7520646f6e742068617665207065726d697373696f6e20746044820152651bc81b5a5b9d60d21b6064820152608401610a45565b6111d88282611fba565b60006001600160e01b031982166380ac58cd60e01b1480611c7c57506001600160e01b03198216635b5e139f60e01b145b8061093857506301ffc9a760e01b6001600160e01b0319831614610938565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611cd08261126c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611d825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a45565b6000611d8d8361126c565b9050806001600160a01b0316846001600160a01b03161480611dc85750836001600160a01b0316611dbd846109d0565b6001600160a01b0316145b80611df857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e138261126c565b6001600160a01b031614611e7b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a45565b6001600160a01b038216611edd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a45565b611ee8838383612235565b611ef3600082611c9b565b6001600160a01b0383166000908152600360205260408120805460019290611f1c908490612f28565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f4a908490612edd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061199b82601054856122ed565b6111d8828260405180602001604052806000815250612303565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120885760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a45565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612100848484611e00565b61210c84848484612336565b610def5760405162461bcd60e51b8152600401610a4590612dd4565b60608161214c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612176578061216081612fa6565b915061216f9050600a83612ef5565b9150612150565b60008167ffffffffffffffff8111156121915761219161302d565b6040519080825280601f01601f1916602001820160405280156121bb576020820181803683370190505b5090505b8415611df8576121d0600183612f28565b91506121dd600a86612fc1565b6121e8906030612edd565b60f81b8183815181106121fd576121fd613017565b60200101906001600160f81b031916908160001a90535061221f600a86612ef5565b94506121bf565b6060600e805461094d90612f6b565b6001600160a01b0383166122905761228b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6122b3565b816001600160a01b0316836001600160a01b0316146122b3576122b38382612443565b6001600160a01b0382166122ca57610c09816124e0565b826001600160a01b0316826001600160a01b031614610c0957610c09828261258f565b6000826122fa85846125d3565b14949350505050565b61230d8383612677565b61231a6000848484612336565b610c095760405162461bcd60e51b8152600401610a4590612dd4565b60006001600160a01b0384163b1561243857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061237a903390899088908890600401612d40565b602060405180830381600087803b15801561239457600080fd5b505af19250505080156123c4575060408051601f3d908101601f191682019092526123c191810190612b98565b60015b61241e573d8080156123f2576040519150601f19603f3d011682016040523d82523d6000602084013e6123f7565b606091505b5080516124165760405162461bcd60e51b8152600401610a4590612dd4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611df8565b506001949350505050565b60006001612450846113d4565b61245a9190612f28565b6000838152600760205260409020549091508082146124ad576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906124f290600190612f28565b6000838152600960205260408120546008805493945090928490811061251a5761251a613017565b90600052602060002001549050806008838154811061253b5761253b613017565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061257357612573613001565b6001900381819060005260206000200160009055905550505050565b600061259a836113d4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600081815b8451811015610eaa5760008582815181106125f5576125f5613017565b60200260200101519050808311612637576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612664565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061266f81612fa6565b9150506125d8565b6001600160a01b0382166126cd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a45565b6000818152600260205260409020546001600160a01b0316156127325760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a45565b61273e60008383612235565b6001600160a01b0382166000908152600360205260408120805460019290612767908490612edd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546127d190612f6b565b90600052602060002090601f0160209004810192826127f35760008555612839565b82601f1061280c57805160ff1916838001178555612839565b82800160010185558215612839579182015b8281111561283957825182559160200191906001019061281e565b50612845929150612849565b5090565b5b80821115612845576000815560010161284a565b600067ffffffffffffffff8311156128785761287861302d565b61288b601f8401601f1916602001612eac565b905082815283838301111561289f57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146119a257600080fd5b6000602082840312156128df57600080fd5b61199b826128b6565b600080604083850312156128fb57600080fd5b612904836128b6565b9150612912602084016128b6565b90509250929050565b60008060006060848603121561293057600080fd5b612939846128b6565b9250612947602085016128b6565b9150604084013590509250925092565b6000806000806080858703121561296d57600080fd5b612976856128b6565b9350612984602086016128b6565b925060408501359150606085013567ffffffffffffffff8111156129a757600080fd5b8501601f810187136129b857600080fd5b6129c78782356020840161285e565b91505092959194509250565b600080604083850312156129e657600080fd5b6129ef836128b6565b915060208301358015158114612a0457600080fd5b809150509250929050565b60008060408385031215612a2257600080fd5b612a2b836128b6565b946020939093013593505050565b60006020808385031215612a4c57600080fd5b823567ffffffffffffffff80821115612a6457600080fd5b818501915085601f830112612a7857600080fd5b813581811115612a8a57612a8a61302d565b8060051b9150612a9b848301612eac565b8181528481019084860184860187018a1015612ab657600080fd5b600095505b83861015612ae057612acc816128b6565b835260019590950194918601918601612abb565b5098975050505050505050565b60008060208385031215612b0057600080fd5b823567ffffffffffffffff80821115612b1857600080fd5b818501915085601f830112612b2c57600080fd5b813581811115612b3b57600080fd5b8660208260051b8501011115612b5057600080fd5b60209290920196919550909350505050565b600060208284031215612b7457600080fd5b5035919050565b600060208284031215612b8d57600080fd5b813561199b81613043565b600060208284031215612baa57600080fd5b815161199b81613043565b600060208284031215612bc757600080fd5b813567ffffffffffffffff811115612bde57600080fd5b8201601f81018413612bef57600080fd5b611df88482356020840161285e565b600060208284031215612c1057600080fd5b813561ffff8116811461199b57600080fd5b60008151808452612c3a816020860160208601612f3f565b601f01601f19169290920160200192915050565b60008151612c60818560208601612f3f565b9290920192915050565b60008351612c7c818460208801612f3f565b835190830190612c90818360208801612f3f565b01949350505050565b600080845481600182811c915080831680612cb557607f831692505b6020808410821415612cd557634e487b7160e01b86526022600452602486fd5b818015612ce95760018114612cfa57612d27565b60ff19861689528489019650612d27565b60008b81526020902060005b86811015612d1f5781548b820152908501908301612d06565b505084890196505b505050505050612d378185612c4e565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d7390830184612c22565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612db557835183529284019291840191600101612d99565b50909695505050505050565b60208152600061199b6020830184612c22565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612ed557612ed561302d565b604052919050565b60008219821115612ef057612ef0612fd5565b500190565b600082612f0457612f04612feb565b500490565b6000816000190483118215151615612f2357612f23612fd5565b500290565b600082821015612f3a57612f3a612fd5565b500390565b60005b83811015612f5a578181015183820152602001612f42565b83811115610def5750506000910152565b600181811c90821680612f7f57607f821691505b60208210811415612fa057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fba57612fba612fd5565b5060010190565b600082612fd057612fd0612feb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611bd557600080fdfea2646970667358221220482679baa6a6e758d5d6b2a29a3cfc038876cf541cfb2c2f92b1dc18cb629a1d64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000003968747470733a2f2f75732d63656e7472616c312d696e756c616e642e636c6f756466756e6374696f6e732e6e65742f6170702f746f6b656e2f00000000000000000000000000000000000000000000000000000000000000000000000000003f68747470733a2f2f75732d63656e7472616c312d696e756c616e642e636c6f756466756e6374696f6e732e6e65742f6170702f6e6f7472657665616c65642f00

-----Decoded View---------------
Arg [0] : _baseUrl (string): https://us-central1-inuland.cloudfunctions.net/app/token/
Arg [1] : _notRevealedUrl (string): https://us-central1-inuland.cloudfunctions.net/app/notrevealed/

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000039
Arg [3] : 68747470733a2f2f75732d63656e7472616c312d696e756c616e642e636c6f75
Arg [4] : 6466756e6374696f6e732e6e65742f6170702f746f6b656e2f00000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000003f
Arg [6] : 68747470733a2f2f75732d63656e7472616c312d696e756c616e642e636c6f75
Arg [7] : 6466756e6374696f6e732e6e65742f6170702f6e6f7472657665616c65642f00


Deployed Bytecode Sourcemap

48118:7473:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41899:224;;;;;;;;;;-1:-1:-1;41899:224:0;;;;;:::i;:::-;;:::i;:::-;;;10173:14:1;;10166:22;10148:41;;10136:2;10121:18;41899:224:0;;;;;;;;29393:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30952:221::-;;;;;;;;;;-1:-1:-1;30952:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8834:32:1;;;8816:51;;8804:2;8789:18;30952:221:0;8670:203:1;48474:28:0;;;;;;;;;;;;;:::i;30475:411::-;;;;;;;;;;-1:-1:-1;30475:411:0;;;;;:::i;:::-;;:::i;:::-;;48718:33;;;;;;;;;;;;;;;;;;;21642:25:1;;;21630:2;21615:18;48718:33:0;21496:177:1;42539:113:0;;;;;;;;;;-1:-1:-1;42627:10:0;:17;42539:113;;31702:339;;;;;;;;;;-1:-1:-1;31702:339:0;;;;;:::i;:::-;;:::i;42207:256::-;;;;;;;;;;-1:-1:-1;42207:256:0;;;;;:::i;:::-;;:::i;55234:354::-;;;;;;;;;;;;;:::i;32112:185::-;;;;;;;;;;-1:-1:-1;32112:185:0;;;;;:::i;:::-;;:::i;53600:390::-;;;;;;;;;;-1:-1:-1;53600:390:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54197:86::-;;;;;;;;;;-1:-1:-1;54197:86:0;;;;;:::i;:::-;;:::i;50204:584::-;;;;;;:::i;:::-;;:::i;42729:233::-;;;;;;;;;;-1:-1:-1;42729:233:0;;;;;:::i;:::-;;:::i;48855:28::-;;;;;;;;;;-1:-1:-1;48855:28:0;;;;;;;;;;;55039:104;;;;;;;;;;-1:-1:-1;55039:104:0;;;;;:::i;:::-;;:::i;54086:103::-;;;;;;;;;;;;;:::i;53998:80::-;;;;;;;;;;;;;:::i;48823:25::-;;;;;;;;;;-1:-1:-1;48823:25:0;;;;;;;;29087:239;;;;;;;;;;-1:-1:-1;29087:239:0;;;;;:::i;:::-;;:::i;49209:119::-;;;;;;;;;;-1:-1:-1;49209:119:0;;;;;:::i;:::-;;:::i;48446:21::-;;;;;;;;;;;;;:::i;52621:116::-;;;;;;;;;;;;;:::i;54803:94::-;;;;;;;;;;-1:-1:-1;54803:94:0;;;;;:::i;:::-;;:::i;54291:124::-;;;;;;;;;;-1:-1:-1;54291:124:0;;;;;:::i;:::-;;:::i;28817:208::-;;;;;;;;;;-1:-1:-1;28817:208:0;;;;;:::i;:::-;;:::i;8363:103::-;;;;;;;;;;;;;:::i;52173:324::-;;;;;;;;;;-1:-1:-1;52173:324:0;;;;;:::i;:::-;;:::i;7712:87::-;;;;;;;;;;-1:-1:-1;7785:6:0;;-1:-1:-1;;;;;7785:6:0;7712:87;;29562:104;;;;;;;;;;;;;:::i;52065:100::-;;;;;;;;;;;;;:::i;50811:982::-;;;;;;:::i;:::-;;:::i;31245:155::-;;;;;;;;;;-1:-1:-1;31245:155:0;;;;;:::i;:::-;;:::i;32368:328::-;;;;;;;;;;-1:-1:-1;32368:328:0;;;;;:::i;:::-;;:::i;48564:45::-;;;;;;;;;;-1:-1:-1;48564:45:0;;;;;;;;;;;21477:6:1;21465:19;;;21447:38;;21435:2;21420:18;48564:45:0;21303:188:1;48616:40:0;;;;;;;;;;-1:-1:-1;48616:40:0;;;;;;;;;;;55151:75;;;;;;;;;;;;;:::i;52745:847::-;;;;;;;;;;-1:-1:-1;52745:847:0;;;;;:::i;:::-;;:::i;51801:256::-;;;;;;;;;;-1:-1:-1;51801:256:0;;;;;:::i;:::-;;:::i;54676:119::-;;;;;;;;;;-1:-1:-1;54676:119:0;;;;;:::i;:::-;;:::i;48663:32::-;;;;;;;;;;;;;;;;54423:108;;;;;;;;;;-1:-1:-1;54423:108:0;;;;;:::i;:::-;;:::i;48890:35::-;;;;;;;;;;-1:-1:-1;48890:35:0;;;;;;;;;;;48758:41;;;;;;;;;;;;;;;;54539:129;;;;;;;;;;-1:-1:-1;54539:129:0;;;;;:::i;:::-;;:::i;31471:164::-;;;;;;;;;;-1:-1:-1;31471:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31592:25:0;;;31568:4;31592:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31471:164;49588:101;;;;;;;;;;-1:-1:-1;49588:101:0;;;;;:::i;:::-;;:::i;54905:126::-;;;;;;;;;;-1:-1:-1;54905:126:0;;;;;:::i;:::-;;:::i;8621:201::-;;;;;;;;;;-1:-1:-1;8621:201:0;;;;;:::i;:::-;;:::i;49336:244::-;;;;;;;;;;-1:-1:-1;49336:244:0;;;;;:::i;:::-;;:::i;41899:224::-;42001:4;-1:-1:-1;;;;;;42025:50:0;;-1:-1:-1;;;42025:50:0;;:90;;;42079:36;42103:11;42079:23;:36::i;:::-;42018:97;41899:224;-1:-1:-1;;41899:224:0:o;29393:100::-;29447:13;29480:5;29473:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29393:100;:::o;30952:221::-;31028:7;34295:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34295:16:0;31048:73;;;;-1:-1:-1;;;31048:73:0;;16860:2:1;31048:73:0;;;16842:21:1;16899:2;16879:18;;;16872:30;16938:34;16918:18;;;16911:62;-1:-1:-1;;;16989:18:1;;;16982:42;17041:19;;31048:73:0;;;;;;;;;-1:-1:-1;31141:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31141:24:0;;30952:221::o;48474:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30475:411::-;30556:13;30572:23;30587:7;30572:14;:23::i;:::-;30556:39;;30620:5;-1:-1:-1;;;;;30614:11:0;:2;-1:-1:-1;;;;;30614:11:0;;;30606:57;;;;-1:-1:-1;;;30606:57:0;;18812:2:1;30606:57:0;;;18794:21:1;18851:2;18831:18;;;18824:30;18890:34;18870:18;;;18863:62;-1:-1:-1;;;18941:18:1;;;18934:31;18982:19;;30606:57:0;18610:397:1;30606:57:0;6516:10;-1:-1:-1;;;;;30698:21:0;;;;:62;;-1:-1:-1;30723:37:0;30740:5;6516:10;31471:164;:::i;30723:37::-;30676:168;;;;-1:-1:-1;;;30676:168:0;;14845:2:1;30676:168:0;;;14827:21:1;14884:2;14864:18;;;14857:30;14923:34;14903:18;;;14896:62;14994:26;14974:18;;;14967:54;15038:19;;30676:168:0;14643:420:1;30676:168:0;30857:21;30866:2;30870:7;30857:8;:21::i;:::-;30545:341;30475:411;;:::o;31702:339::-;31897:41;6516:10;31930:7;31897:18;:41::i;:::-;31889:103;;;;-1:-1:-1;;;31889:103:0;;;;;;;:::i;:::-;32005:28;32015:4;32021:2;32025:7;32005:9;:28::i;42207:256::-;42304:7;42340:23;42357:5;42340:16;:23::i;:::-;42332:5;:31;42324:87;;;;-1:-1:-1;;;42324:87:0;;10973:2:1;42324:87:0;;;10955:21:1;11012:2;10992:18;;;10985:30;11051:34;11031:18;;;11024:62;-1:-1:-1;;;11102:18:1;;;11095:41;11153:19;;42324:87:0;10771:407:1;42324:87:0;-1:-1:-1;;;;;;42429:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42207:256::o;55234:354::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;55302:21:::1;55284:15;55368:3;55352:12;55302:21:::0;55362:2:::1;55352:12;:::i;:::-;55351:20;;;;:::i;:::-;55408:12;::::0;:36:::1;::::0;55334:37;;-1:-1:-1;55385:17:0::1;::::0;-1:-1:-1;;;;;55408:12:0;;::::1;::::0;55334:37;;55385:17;55408:36;55385:17;55408:36;55334:37;55408:12;:36:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55384:60;;;55463:12;55455:21;;;::::0;::::1;;55490:7;55511;7785:6:::0;;-1:-1:-1;;;;;7785:6:0;;7712:87;55511:7:::1;-1:-1:-1::0;;;;;55503:21:0::1;55532;55503:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55489:69;;;55577:2;55569:11;;;::::0;::::1;;55273:315;;;;55234:354::o:0;32112:185::-;32250:39;32267:4;32273:2;32277:7;32250:39;;;;;;;;;;;;:16;:39::i;53600:390::-;53687:16;53721:23;53747:17;53757:6;53747:9;:17::i;:::-;53721:43;;53775:25;53817:15;53803:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53803:30:0;;53775:58;;53849:9;53844:113;53864:15;53860:1;:19;53844:113;;;53915:30;53935:6;53943:1;53915:19;:30::i;:::-;53901:8;53910:1;53901:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;53881:3;;;;:::i;:::-;;;;53844:113;;;-1:-1:-1;53974:8:0;53600:390;-1:-1:-1;;;53600:390:0:o;54197:86::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;54260:4:::1;:15:::0;54197:86::o;50204:584::-;50279:14;50296:13;42627:10;:17;;42539:113;50296:13;50279:30;;50338:7;7785:6;;-1:-1:-1;;;;;7785:6:0;;7712:87;50338:7;-1:-1:-1;;;;;50324:21:0;:10;-1:-1:-1;;;;;50324:21:0;;50320:369;;50371:6;;;;50370:7;50362:16;;;;;;50401;;;;;;;50393:60;;;;-1:-1:-1;;;50393:60:0;;20792:2:1;50393:60:0;;;20774:21:1;20831:2;20811:18;;;20804:30;20870:33;20850:18;;;20843:61;20921:18;;50393:60:0;20590:355:1;50393:60:0;50140:25;;;50490:10;6469:2:1;6465:15;-1:-1:-1;;6461:53:1;50140:25:0;;;;6449:66:1;;;;50140:25:0;;;;;;;;;6531:12:1;;;;50140:25:0;;;50130:36;;;;;50476:33;;50503:5;;50476:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50476:7:0;;-1:-1:-1;;;50476:33:0:i;:::-;50468:59;;;;-1:-1:-1;;;50468:59:0;;20450:2:1;50468:59:0;;;20432:21:1;20489:2;20469:18;;;20462:30;-1:-1:-1;;;20508:18:1;;;20501:43;20561:18;;50468:59:0;20248:337:1;50468:59:0;50568:10;50551:28;;;;:16;:28;;;;;;;;50550:29;50542:65;;;;-1:-1:-1;;;50542:65:0;;17634:2:1;50542:65:0;;;17616:21:1;17673:2;17653:18;;;17646:30;17712:25;17692:18;;;17685:53;17755:18;;50542:65:0;17432:347:1;50542:65:0;50643:13;;50630:9;:26;;50622:55;;;;-1:-1:-1;;;50622:55:0;;14087:2:1;50622:55:0;;;14069:21:1;14126:2;14106:18;;;14099:30;-1:-1:-1;;;14145:18:1;;;14138:46;14201:18;;50622:55:0;13885:340:1;50622:55:0;50701:33;50711:10;50723;:6;50732:1;50723:10;:::i;:::-;50701:9;:33::i;:::-;-1:-1:-1;;50762:10:0;50745:28;;;;:16;:28;;;;;:35;;-1:-1:-1;;50745:35:0;50776:4;50745:35;;;-1:-1:-1;50204:584:0:o;42729:233::-;42804:7;42840:30;42627:10;:17;;42539:113;42840:30;42832:5;:38;42824:95;;;;-1:-1:-1;;;42824:95:0;;19632:2:1;42824:95:0;;;19614:21:1;19671:2;19651:18;;;19644:30;19710:34;19690:18;;;19683:62;-1:-1:-1;;;19761:18:1;;;19754:42;19813:19;;42824:95:0;19430:408:1;42824:95:0;42937:10;42948:5;42937:17;;;;;;;;:::i;:::-;;;;;;;;;42930:24;;42729:233;;;:::o;55039:104::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;55114:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;55039:104:::0;:::o;54086:103::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;54165:16:::1;::::0;;-1:-1:-1;;54145:36:0;::::1;54165:16:::0;;;;::::1;;;54164:17;54145:36:::0;;::::1;;::::0;;54086:103::o;53998:80::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;54062:8:::1;::::0;;-1:-1:-1;;54050:20:0;::::1;54062:8;::::0;;;::::1;;;54061:9;54050:20:::0;;::::1;;::::0;;53998:80::o;29087:239::-;29159:7;29195:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29195:16:0;29230:19;29222:73;;;;-1:-1:-1;;;29222:73:0;;15681:2:1;29222:73:0;;;15663:21:1;15720:2;15700:18;;;15693:30;15759:34;15739:18;;;15732:62;-1:-1:-1;;;15810:18:1;;;15803:39;15859:19;;29222:73:0;15479:405:1;49209:119:0;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;49292:16:::1;:28:::0;;-1:-1:-1;;;;;;49292:28:0::1;-1:-1:-1::0;;;;;49292:28:0;;;::::1;::::0;;;::::1;::::0;;49209:119::o;48446:21::-;;;;;;;:::i;52621:116::-;52667:7;52710:19;:9;964:14;;872:114;52710:19;42627:10;:17;52694:35;;;;:::i;:::-;52687:42;;52621:116;:::o;54803:94::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;54870:9:::1;:19:::0;54803:94::o;54291:124::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;54369:12:::1;:38:::0;;-1:-1:-1;;;;;;54369:38:0::1;-1:-1:-1::0;;;;;54369:38:0;;;::::1;::::0;;;::::1;::::0;;54291:124::o;28817:208::-;28889:7;-1:-1:-1;;;;;28917:19:0;;28909:74;;;;-1:-1:-1;;;28909:74:0;;15270:2:1;28909:74:0;;;15252:21:1;15309:2;15289:18;;;15282:30;15348:34;15328:18;;;15321:62;-1:-1:-1;;;15399:18:1;;;15392:40;15449:19;;28909:74:0;15068:406:1;28909:74:0;-1:-1:-1;;;;;;29001:16:0;;;;;:9;:16;;;;;;;28817:208::o;8363:103::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;8428:30:::1;8455:1;8428:18;:30::i;:::-;8363:103::o:0;52173:324::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;52259:9:::1;52254:236;52278:17;:24;52274:1;:28;52254:236;;;52324:14;52341:13;42627:10:::0;:17;;42539:113;52341:13:::1;52324:30;;52369:10;52382:17;52400:1;52382:20;;;;;;;;:::i;:::-;;;;;;;52369:33;;52417:25;52427:2;52431:6;52440:1;52431:10;;;;:::i;52417:25::-;52457:21;:9;1083:19:::0;;1101:1;1083:19;;;994:127;52457:21:::1;52309:181;;52304:3;;;;;:::i;:::-;;;;52254:236;;29562:104:::0;29618:13;29651:7;29644:14;;;;;:::i;52065:100::-;52111:7;52138:19;:9;964:14;;872:114;50811:982;50872:14;50889:13;42627:10;:17;;42539:113;50889:13;50872:30;;50933:7;7785:6;;-1:-1:-1;;;;;7785:6:0;;7712:87;50933:7;-1:-1:-1;;;;;50919:21:0;:10;-1:-1:-1;;;;;50919:21:0;;50915:756;;50957:23;50983:21;50993:10;50983:9;:21::i;:::-;51030:6;;50957:47;;-1:-1:-1;51030:6:0;;51029:7;51021:16;;;;;;51061;;;;;;;51060:17;51052:54;;;;-1:-1:-1;;;51052:54:0;;12568:2:1;51052:54:0;;;12550:21:1;12607:2;12587:18;;;12580:30;12646:26;12626:18;;;12619:54;12690:18;;51052:54:0;12366:348:1;51052:54:0;51145:1;51131:11;:15;51123:64;;;;-1:-1:-1;;;51123:64:0;;20045:2:1;51123:64:0;;;20027:21:1;20084:2;20064:18;;;20057:30;20123:34;20103:18;;;20096:62;-1:-1:-1;;;20174:18:1;;;20167:34;20218:19;;51123:64:0;19843:400:1;51123:64:0;51243:27;;;;51228:42;;;51202:143;;;;-1:-1:-1;;;51202:143:0;;16091:2:1;51202:143:0;;;16073:21:1;16130:2;16110:18;;;16103:30;16169:34;16149:18;;;16142:62;-1:-1:-1;;;16220:18:1;;;16213:37;16267:19;;51202:143:0;15889:403:1;51202:143:0;51392:9;;51368:20;51377:11;51368:6;:20;:::i;:::-;:33;;51360:64;;;;-1:-1:-1;;;51360:64:0;;10626:2:1;51360:64:0;;;10608:21:1;10665:2;10645:18;;;10638:30;-1:-1:-1;;;10684:18:1;;;10677:48;10742:18;;51360:64:0;10424:342:1;51360:64:0;51500:22;;;;;;;51466:29;51484:11;51466:15;:29;:::i;:::-;51465:57;;51439:143;;;;-1:-1:-1;;;51439:143:0;;21152:2:1;51439:143:0;;;21134:21:1;21191:2;21171:18;;;21164:30;21230:26;21210:18;;;21203:54;21274:18;;51439:143:0;20950:348:1;51439:143:0;51627:11;51620:4;;:18;;;;:::i;:::-;51607:9;:31;;51599:60;;;;-1:-1:-1;;;51599:60:0;;14087:2:1;51599:60:0;;;14069:21:1;14126:2;14106:18;;;14099:30;-1:-1:-1;;;14145:18:1;;;14138:46;14201:18;;51599:60:0;13885:340:1;51599:60:0;50942:729;50915:756;51700:1;51683:103;51708:11;51703:1;:16;51683:103;;51741:33;51751:10;51763;51772:1;51763:6;:10;:::i;51741:33::-;51721:3;;;;:::i;:::-;;;;51683:103;;31245:155;31340:52;6516:10;31373:8;31383;31340:18;:52::i;32368:328::-;32543:41;6516:10;32576:7;32543:18;:41::i;:::-;32535:103;;;;-1:-1:-1;;;32535:103:0;;;;;;;:::i;:::-;32649:39;32663:4;32669:2;32673:7;32682:5;32649:13;:39::i;55151:75::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;55212:6:::1;::::0;;-1:-1:-1;;55202:16:0;::::1;55212:6;::::0;;::::1;55211:7;55202:16;::::0;;55151:75::o;52745:847::-;34271:4;34295:16;;;:7;:16;;;;;;52863:13;;-1:-1:-1;;;;;34295:16:0;52894:113;;;;-1:-1:-1;;;52894:113:0;;18396:2:1;52894:113:0;;;18378:21:1;18435:2;18415:18;;;18408:30;18474:34;18454:18;;;18447:62;-1:-1:-1;;;18525:18:1;;;18518:45;18580:19;;52894:113:0;18194:411:1;52894:113:0;53022:8;;;;;;;53018:567;;53111:1;53086:14;53080:28;;;;;:::i;:::-;;;:32;:190;;;;;;;;;;;;;;;;;53186:14;53202:18;:7;:16;:18::i;:::-;53169:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53056:214;52745:847;-1:-1:-1;;52745:847:0:o;53018:567::-;53303:28;53334:10;:8;:10::i;:::-;53303:41;;53414:1;53389:14;53383:28;:32;:190;;;;;;;;;;;;;;;;;53489:14;53505:18;:7;:16;:18::i;:::-;53472:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53383:190;53359:214;52745:847;-1:-1:-1;;;52745:847:0:o;53018:567::-;52745:847;;;:::o;51801:256::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;51877:14:::1;51894:13;42627:10:::0;:17;;42539:113;51894:13:::1;51877:30:::0;-1:-1:-1;51935:1:0::1;51918:132;51943:11;51938:1;:16;51918:132;;51976:26;51986:3:::0;51991:10:::1;52000:1:::0;51991:6;:10:::1;:::i;51976:26::-;52017:21;:9;1083:19:::0;;1101:1;1083:19;;;994:127;52017:21:::1;51956:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51918:132;;54676:119:::0;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;54755:22:::1;:32:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;54755:32:0;;::::1;::::0;;;::::1;::::0;;54676:119::o;54423:108::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;54499:13:::1;:24:::0;54423:108::o;54539:129::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;54623:27:::1;:37:::0;;-1:-1:-1;;54623:37:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;54539:129::o;49588:101::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;49660:13:::1;:21:::0;49588:101::o;54905:126::-;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;54991:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;8621:201::-:0;7785:6;;-1:-1:-1;;;;;7785:6:0;6516:10;7932:23;7924:68;;;;-1:-1:-1;;;7924:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8710:22:0;::::1;8702:73;;;::::0;-1:-1:-1;;;8702:73:0;;11804:2:1;8702:73:0::1;::::0;::::1;11786:21:1::0;11843:2;11823:18;;;11816:30;11882:34;11862:18;;;11855:62;-1:-1:-1;;;11933:18:1;;;11926:36;11979:19;;8702:73:0::1;11602:402:1::0;8702:73:0::1;8786:28;8805:8;8786:18;:28::i;:::-;8621:201:::0;:::o;49336:244::-;49450:16;;-1:-1:-1;;;;;49450:16:0;49436:10;:30;49414:118;;;;-1:-1:-1;;;49414:118:0;;12921:2:1;49414:118:0;;;12903:21:1;12960:2;12940:18;;;12933:30;12999:34;12979:18;;;12972:62;-1:-1:-1;;;13050:18:1;;;13043:36;13096:19;;49414:118:0;12719:402:1;49414:118:0;49543:29;49553:8;49563;49543:9;:29::i;28448:305::-;28550:4;-1:-1:-1;;;;;;28587:40:0;;-1:-1:-1;;;28587:40:0;;:105;;-1:-1:-1;;;;;;;28644:48:0;;-1:-1:-1;;;28644:48:0;28587:105;:158;;;-1:-1:-1;;;;;;;;;;20253:40:0;;;28709:36;20144:157;38188:174;38263:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38263:29:0;-1:-1:-1;;;;;38263:29:0;;;;;;;;:24;;38317:23;38263:24;38317:14;:23::i;:::-;-1:-1:-1;;;;;38308:46:0;;;;;;;;;;;38188:174;;:::o;34500:348::-;34593:4;34295:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34295:16:0;34610:73;;;;-1:-1:-1;;;34610:73:0;;14432:2:1;34610:73:0;;;14414:21:1;14471:2;14451:18;;;14444:30;14510:34;14490:18;;;14483:62;-1:-1:-1;;;14561:18:1;;;14554:42;14613:19;;34610:73:0;14230:408:1;34610:73:0;34694:13;34710:23;34725:7;34710:14;:23::i;:::-;34694:39;;34763:5;-1:-1:-1;;;;;34752:16:0;:7;-1:-1:-1;;;;;34752:16:0;;:51;;;;34796:7;-1:-1:-1;;;;;34772:31:0;:20;34784:7;34772:11;:20::i;:::-;-1:-1:-1;;;;;34772:31:0;;34752:51;:87;;;-1:-1:-1;;;;;;31592:25:0;;;31568:4;31592:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34807:32;34744:96;34500:348;-1:-1:-1;;;;34500:348:0:o;37492:578::-;37651:4;-1:-1:-1;;;;;37624:31:0;:23;37639:7;37624:14;:23::i;:::-;-1:-1:-1;;;;;37624:31:0;;37616:85;;;;-1:-1:-1;;;37616:85:0;;17986:2:1;37616:85:0;;;17968:21:1;18025:2;18005:18;;;17998:30;18064:34;18044:18;;;18037:62;-1:-1:-1;;;18115:18:1;;;18108:39;18164:19;;37616:85:0;17784:405:1;37616:85:0;-1:-1:-1;;;;;37720:16:0;;37712:65;;;;-1:-1:-1;;;37712:65:0;;13328:2:1;37712:65:0;;;13310:21:1;13367:2;13347:18;;;13340:30;13406:34;13386:18;;;13379:62;-1:-1:-1;;;13457:18:1;;;13450:34;13501:19;;37712:65:0;13126:400:1;37712:65:0;37790:39;37811:4;37817:2;37821:7;37790:20;:39::i;:::-;37894:29;37911:1;37915:7;37894:8;:29::i;:::-;-1:-1:-1;;;;;37936:15:0;;;;;;:9;:15;;;;;:20;;37955:1;;37936:15;:20;;37955:1;;37936:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37967:13:0;;;;;;:9;:13;;;;;:18;;37984:1;;37967:13;:18;;37984:1;;37967:18;:::i;:::-;;;;-1:-1:-1;;37996:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37996:21:0;-1:-1:-1;;;;;37996:21:0;;;;;;;;;38035:27;;37996:16;;38035:27;;;;;;;37492:578;;;:::o;49746:198::-;49856:4;49885:51;49904:5;49911:13;;49926:9;49885:18;:51::i;35190:110::-;35266:26;35276:2;35280:7;35266:26;;;;;;;;;;;;:9;:26::i;8982:191::-;9075:6;;;-1:-1:-1;;;;;9092:17:0;;;-1:-1:-1;;;;;;9092:17:0;;;;;;;9125:40;;9075:6;;;9092:17;9075:6;;9125:40;;9056:16;;9125:40;9045:128;8982:191;:::o;38504:315::-;38659:8;-1:-1:-1;;;;;38650:17:0;:5;-1:-1:-1;;;;;38650:17:0;;;38642:55;;;;-1:-1:-1;;;38642:55:0;;13733:2:1;38642:55:0;;;13715:21:1;13772:2;13752:18;;;13745:30;13811:27;13791:18;;;13784:55;13856:18;;38642:55:0;13531:349:1;38642:55:0;-1:-1:-1;;;;;38708:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;38708:46:0;;;;;;;;;;38770:41;;10148::1;;;38770::0;;10121:18:1;38770:41:0;;;;;;;38504:315;;;:::o;33578:::-;33735:28;33745:4;33751:2;33755:7;33735:9;:28::i;:::-;33782:48;33805:4;33811:2;33815:7;33824:5;33782:22;:48::i;:::-;33774:111;;;;-1:-1:-1;;;33774:111:0;;;;;;;:::i;3998:723::-;4054:13;4275:10;4271:53;;-1:-1:-1;;4302:10:0;;;;;;;;;;;;-1:-1:-1;;;4302:10:0;;;;;3998:723::o;4271:53::-;4349:5;4334:12;4390:78;4397:9;;4390:78;;4423:8;;;;:::i;:::-;;-1:-1:-1;4446:10:0;;-1:-1:-1;4454:2:0;4446:10;;:::i;:::-;;;4390:78;;;4478:19;4510:6;4500:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4500:17:0;;4478:39;;4528:154;4535:10;;4528:154;;4562:11;4572:1;4562:11;;:::i;:::-;;-1:-1:-1;4631:10:0;4639:2;4631:5;:10;:::i;:::-;4618:24;;:2;:24;:::i;:::-;4605:39;;4588:6;4595;4588:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4588:56:0;;;;;;;;-1:-1:-1;4659:11:0;4668:2;4659:11;;:::i;:::-;;;4528:154;;52505:108;52565:13;52598:7;52591:14;;;;;:::i;43575:589::-;-1:-1:-1;;;;;43781:18:0;;43777:187;;43816:40;43848:7;44991:10;:17;;44964:24;;;;:15;:24;;;;;:44;;;45019:24;;;;;;;;;;;;44887:164;43816:40;43777:187;;;43886:2;-1:-1:-1;;;;;43878:10:0;:4;-1:-1:-1;;;;;43878:10:0;;43874:90;;43905:47;43938:4;43944:7;43905:32;:47::i;:::-;-1:-1:-1;;;;;43978:16:0;;43974:183;;44011:45;44048:7;44011:36;:45::i;43974:183::-;44084:4;-1:-1:-1;;;;;44078:10:0;:2;-1:-1:-1;;;;;44078:10:0;;44074:83;;44105:40;44133:2;44137:7;44105:27;:40::i;2373:190::-;2498:4;2551;2522:25;2535:5;2542:4;2522:12;:25::i;:::-;:33;;2373:190;-1:-1:-1;;;;2373:190:0:o;35527:321::-;35657:18;35663:2;35667:7;35657:5;:18::i;:::-;35708:54;35739:1;35743:2;35747:7;35756:5;35708:22;:54::i;:::-;35686:154;;;;-1:-1:-1;;;35686:154:0;;;;;;;:::i;39384:799::-;39539:4;-1:-1:-1;;;;;39560:13:0;;10323:20;10371:8;39556:620;;39596:72;;-1:-1:-1;;;39596:72:0;;-1:-1:-1;;;;;39596:36:0;;;;;:72;;6516:10;;39647:4;;39653:7;;39662:5;;39596:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39596:72:0;;;;;;;;-1:-1:-1;;39596:72:0;;;;;;;;;;;;:::i;:::-;;;39592:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39838:13:0;;39834:272;;39881:60;;-1:-1:-1;;;39881:60:0;;;;;;;:::i;39834:272::-;40056:6;40050:13;40041:6;40037:2;40033:15;40026:38;39592:529;-1:-1:-1;;;;;;39719:51:0;-1:-1:-1;;;39719:51:0;;-1:-1:-1;39712:58:0;;39556:620;-1:-1:-1;40160:4:0;39384:799;;;;;;:::o;45678:988::-;45944:22;45994:1;45969:22;45986:4;45969:16;:22::i;:::-;:26;;;;:::i;:::-;46006:18;46027:26;;;:17;:26;;;;;;45944:51;;-1:-1:-1;46160:28:0;;;46156:328;;-1:-1:-1;;;;;46227:18:0;;46205:19;46227:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46278:30;;;;;;:44;;;46395:30;;:17;:30;;;;;:43;;;46156:328;-1:-1:-1;46580:26:0;;;;:17;:26;;;;;;;;46573:33;;;-1:-1:-1;;;;;46624:18:0;;;;;:12;:18;;;;;:34;;;;;;;46617:41;45678:988::o;46961:1079::-;47239:10;:17;47214:22;;47239:21;;47259:1;;47239:21;:::i;:::-;47271:18;47292:24;;;:15;:24;;;;;;47665:10;:26;;47214:46;;-1:-1:-1;47292:24:0;;47214:46;;47665:26;;;;;;:::i;:::-;;;;;;;;;47643:48;;47729:11;47704:10;47715;47704:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;47809:28;;;:15;:28;;;;;;;:41;;;47981:24;;;;;47974:31;48016:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47032:1008;;;46961:1079;:::o;44465:221::-;44550:14;44567:20;44584:2;44567:16;:20::i;:::-;-1:-1:-1;;;;;44598:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44643:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44465:221:0:o;2925:701::-;3008:7;3051:4;3008:7;3066:523;3090:5;:12;3086:1;:16;3066:523;;;3124:20;3147:5;3153:1;3147:8;;;;;;;;:::i;:::-;;;;;;;3124:31;;3190:12;3174;:28;3170:408;;3327:44;;;;;;6711:19:1;;;6746:12;;;6739:28;;;6783:12;;3327:44:0;;;;;;;;;;;;3317:55;;;;;;3302:70;;3170:408;;;3517:44;;;;;;6711:19:1;;;6746:12;;;6739:28;;;6783:12;;3517:44:0;;;;;;;;;;;;3507:55;;;;;;3492:70;;3170:408;-1:-1:-1;3104:3:0;;;;:::i;:::-;;;;3066:523;;36184:382;-1:-1:-1;;;;;36264:16:0;;36256:61;;;;-1:-1:-1;;;36256:61:0;;16499:2:1;36256:61:0;;;16481:21:1;;;16518:18;;;16511:30;16577:34;16557:18;;;16550:62;16629:18;;36256:61:0;16297:356:1;36256:61:0;34271:4;34295:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34295:16:0;:30;36328:58;;;;-1:-1:-1;;;36328:58:0;;12211:2:1;36328:58:0;;;12193:21:1;12250:2;12230:18;;;12223:30;12289;12269:18;;;12262:58;12337:18;;36328:58:0;12009:352:1;36328:58:0;36399:45;36428:1;36432:2;36436:7;36399:20;:45::i;:::-;-1:-1:-1;;;;;36457:13:0;;;;;;:9;:13;;;;;:18;;36474:1;;36457:13;:18;;36474:1;;36457:18;:::i;:::-;;;;-1:-1:-1;;36486:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36486:21:0;-1:-1:-1;;;;;36486:21:0;;;;;;;;36525:33;;36486:16;;;36525:33;;36486:16;;36525:33;36184:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;603:186;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:963::-;2758:6;2789:2;2832;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;2888:9;2875:23;2917:18;2958:2;2950:6;2947:14;2944:34;;;2974:1;2971;2964:12;2944:34;3012:6;3001:9;2997:22;2987:32;;3057:7;3050:4;3046:2;3042:13;3038:27;3028:55;;3079:1;3076;3069:12;3028:55;3115:2;3102:16;3137:2;3133;3130:10;3127:36;;;3143:18;;:::i;:::-;3189:2;3186:1;3182:10;3172:20;;3212:28;3236:2;3232;3228:11;3212:28;:::i;:::-;3274:15;;;3305:12;;;;3337:11;;;3367;;;3363:20;;3360:33;-1:-1:-1;3357:53:1;;;3406:1;3403;3396:12;3357:53;3428:1;3419:10;;3438:169;3452:2;3449:1;3446:9;3438:169;;;3509:23;3528:3;3509:23;:::i;:::-;3497:36;;3470:1;3463:9;;;;;3553:12;;;;3585;;3438:169;;;-1:-1:-1;3626:5:1;2674:963;-1:-1:-1;;;;;;;;2674:963:1:o;3642:615::-;3728:6;3736;3789:2;3777:9;3768:7;3764:23;3760:32;3757:52;;;3805:1;3802;3795:12;3757:52;3845:9;3832:23;3874:18;3915:2;3907:6;3904:14;3901:34;;;3931:1;3928;3921:12;3901:34;3969:6;3958:9;3954:22;3944:32;;4014:7;4007:4;4003:2;3999:13;3995:27;3985:55;;4036:1;4033;4026:12;3985:55;4076:2;4063:16;4102:2;4094:6;4091:14;4088:34;;;4118:1;4115;4108:12;4088:34;4171:7;4166:2;4156:6;4153:1;4149:14;4145:2;4141:23;4137:32;4134:45;4131:65;;;4192:1;4189;4182:12;4131:65;4223:2;4215:11;;;;;4245:6;;-1:-1:-1;3642:615:1;;-1:-1:-1;;;;3642:615:1:o;4262:180::-;4321:6;4374:2;4362:9;4353:7;4349:23;4345:32;4342:52;;;4390:1;4387;4380:12;4342:52;-1:-1:-1;4413:23:1;;4262:180;-1:-1:-1;4262:180:1:o;4447:245::-;4505:6;4558:2;4546:9;4537:7;4533:23;4529:32;4526:52;;;4574:1;4571;4564:12;4526:52;4613:9;4600:23;4632:30;4656:5;4632:30;:::i;4697:249::-;4766:6;4819:2;4807:9;4798:7;4794:23;4790:32;4787:52;;;4835:1;4832;4825:12;4787:52;4867:9;4861:16;4886:30;4910:5;4886:30;:::i;4951:450::-;5020:6;5073:2;5061:9;5052:7;5048:23;5044:32;5041:52;;;5089:1;5086;5079:12;5041:52;5129:9;5116:23;5162:18;5154:6;5151:30;5148:50;;;5194:1;5191;5184:12;5148:50;5217:22;;5270:4;5262:13;;5258:27;-1:-1:-1;5248:55:1;;5299:1;5296;5289:12;5248:55;5322:73;5387:7;5382:2;5369:16;5364:2;5360;5356:11;5322:73;:::i;5406:272::-;5464:6;5517:2;5505:9;5496:7;5492:23;5488:32;5485:52;;;5533:1;5530;5523:12;5485:52;5572:9;5559:23;5622:6;5615:5;5611:18;5604:5;5601:29;5591:57;;5644:1;5641;5634:12;5868:257;5909:3;5947:5;5941:12;5974:6;5969:3;5962:19;5990:63;6046:6;6039:4;6034:3;6030:14;6023:4;6016:5;6012:16;5990:63;:::i;:::-;6107:2;6086:15;-1:-1:-1;;6082:29:1;6073:39;;;;6114:4;6069:50;;5868:257;-1:-1:-1;;5868:257:1:o;6130:185::-;6172:3;6210:5;6204:12;6225:52;6270:6;6265:3;6258:4;6251:5;6247:16;6225:52;:::i;:::-;6293:16;;;;;6130:185;-1:-1:-1;;6130:185:1:o;6806:470::-;6985:3;7023:6;7017:13;7039:53;7085:6;7080:3;7073:4;7065:6;7061:17;7039:53;:::i;:::-;7155:13;;7114:16;;;;7177:57;7155:13;7114:16;7211:4;7199:17;;7177:57;:::i;:::-;7250:20;;6806:470;-1:-1:-1;;;;6806:470:1:o;7281:1174::-;7457:3;7486:1;7519:6;7513:13;7549:3;7571:1;7599:9;7595:2;7591:18;7581:28;;7659:2;7648:9;7644:18;7681;7671:61;;7725:4;7717:6;7713:17;7703:27;;7671:61;7751:2;7799;7791:6;7788:14;7768:18;7765:38;7762:165;;;-1:-1:-1;;;7826:33:1;;7882:4;7879:1;7872:15;7912:4;7833:3;7900:17;7762:165;7943:18;7970:104;;;;8088:1;8083:320;;;;7936:467;;7970:104;-1:-1:-1;;8003:24:1;;7991:37;;8048:16;;;;-1:-1:-1;7970:104:1;;8083:320;22031:1;22024:14;;;22068:4;22055:18;;8178:1;8192:165;8206:6;8203:1;8200:13;8192:165;;;8284:14;;8271:11;;;8264:35;8327:16;;;;8221:10;;8192:165;;;8196:3;;8386:6;8381:3;8377:16;8370:23;;7936:467;;;;;;;8419:30;8445:3;8437:6;8419:30;:::i;:::-;8412:37;7281:1174;-1:-1:-1;;;;;7281:1174:1:o;8878:488::-;-1:-1:-1;;;;;9147:15:1;;;9129:34;;9199:15;;9194:2;9179:18;;9172:43;9246:2;9231:18;;9224:34;;;9294:3;9289:2;9274:18;;9267:31;;;9072:4;;9315:45;;9340:19;;9332:6;9315:45;:::i;:::-;9307:53;8878:488;-1:-1:-1;;;;;;8878:488:1:o;9371:632::-;9542:2;9594:21;;;9664:13;;9567:18;;;9686:22;;;9513:4;;9542:2;9765:15;;;;9739:2;9724:18;;;9513:4;9808:169;9822:6;9819:1;9816:13;9808:169;;;9883:13;;9871:26;;9952:15;;;;9917:12;;;;9844:1;9837:9;9808:169;;;-1:-1:-1;9994:3:1;;9371:632;-1:-1:-1;;;;;;9371:632:1:o;10200:219::-;10349:2;10338:9;10331:21;10312:4;10369:44;10409:2;10398:9;10394:18;10386:6;10369:44;:::i;11183:414::-;11385:2;11367:21;;;11424:2;11404:18;;;11397:30;11463:34;11458:2;11443:18;;11436:62;-1:-1:-1;;;11529:2:1;11514:18;;11507:48;11587:3;11572:19;;11183:414::o;17071:356::-;17273:2;17255:21;;;17292:18;;;17285:30;17351:34;17346:2;17331:18;;17324:62;17418:2;17403:18;;17071:356::o;19012:413::-;19214:2;19196:21;;;19253:2;19233:18;;;19226:30;19292:34;19287:2;19272:18;;19265:62;-1:-1:-1;;;19358:2:1;19343:18;;19336:47;19415:3;19400:19;;19012:413::o;21678:275::-;21749:2;21743:9;21814:2;21795:13;;-1:-1:-1;;21791:27:1;21779:40;;21849:18;21834:34;;21870:22;;;21831:62;21828:88;;;21896:18;;:::i;:::-;21932:2;21925:22;21678:275;;-1:-1:-1;21678:275:1:o;22084:128::-;22124:3;22155:1;22151:6;22148:1;22145:13;22142:39;;;22161:18;;:::i;:::-;-1:-1:-1;22197:9:1;;22084:128::o;22217:120::-;22257:1;22283;22273:35;;22288:18;;:::i;:::-;-1:-1:-1;22322:9:1;;22217:120::o;22342:168::-;22382:7;22448:1;22444;22440:6;22436:14;22433:1;22430:21;22425:1;22418:9;22411:17;22407:45;22404:71;;;22455:18;;:::i;:::-;-1:-1:-1;22495:9:1;;22342:168::o;22515:125::-;22555:4;22583:1;22580;22577:8;22574:34;;;22588:18;;:::i;:::-;-1:-1:-1;22625:9:1;;22515:125::o;22645:258::-;22717:1;22727:113;22741:6;22738:1;22735:13;22727:113;;;22817:11;;;22811:18;22798:11;;;22791:39;22763:2;22756:10;22727:113;;;22858:6;22855:1;22852:13;22849:48;;;-1:-1:-1;;22893:1:1;22875:16;;22868:27;22645:258::o;22908:380::-;22987:1;22983:12;;;;23030;;;23051:61;;23105:4;23097:6;23093:17;23083:27;;23051:61;23158:2;23150:6;23147:14;23127:18;23124:38;23121:161;;;23204:10;23199:3;23195:20;23192:1;23185:31;23239:4;23236:1;23229:15;23267:4;23264:1;23257:15;23121:161;;22908:380;;;:::o;23293:135::-;23332:3;-1:-1:-1;;23353:17:1;;23350:43;;;23373:18;;:::i;:::-;-1:-1:-1;23420:1:1;23409:13;;23293:135::o;23433:112::-;23465:1;23491;23481:35;;23496:18;;:::i;:::-;-1:-1:-1;23530:9:1;;23433:112::o;23550:127::-;23611:10;23606:3;23602:20;23599:1;23592:31;23642:4;23639:1;23632:15;23666:4;23663:1;23656:15;23682:127;23743:10;23738:3;23734:20;23731:1;23724:31;23774:4;23771:1;23764:15;23798:4;23795:1;23788:15;23814:127;23875:10;23870:3;23866:20;23863:1;23856:31;23906:4;23903:1;23896:15;23930:4;23927:1;23920:15;23946:127;24007:10;24002:3;23998:20;23995:1;23988:31;24038:4;24035:1;24028:15;24062:4;24059:1;24052:15;24078:127;24139:10;24134:3;24130:20;24127:1;24120:31;24170:4;24167:1;24160:15;24194:4;24191:1;24184:15;24210:131;-1:-1:-1;;;;;;24284:32:1;;24274:43;;24264:71;;24331:1;24328;24321:12

Swarm Source

ipfs://482679baa6a6e758d5d6b2a29a3cfc038876cf541cfb2c2f92b1dc18cb629a1d
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.