ETH Price: $3,438.16 (+7.71%)
Gas: 14 Gwei

Token

Superlative Staking (SLAPE)
 

Overview

Max Total Supply

987,408 SLAPE

Holders

71

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
officialreis.eth
Balance
2,100 SLAPE

Value
$0.00
0x785717edc0c4a0975ab58be32e2391ede794af7f
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:
SuperlativeApesStaking

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.0;

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens 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 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: staking.sol

pragma solidity 0.8.7;








/// SPDX-License-Identifier: UNLICENSED


contract SuperlativeApesStaking is ERC20("Superlative Staking", "SLAPE"), IERC721Receiver, Ownable, ReentrancyGuard {

    using EnumerableSet for EnumerableSet.UintSet;

    mapping (address => uint256) public totalStakedTokens;
    mapping(uint256 => uint256) public stakedDays;
    mapping(address => EnumerableSet.UintSet) private _deposits;

    mapping(address => EnumerableSet.UintSet) private _depositsMutant;
    mapping (address => uint256) public totalStakedMutantTokens;
    mapping(uint256 => uint256) public stakedMutantDays;

    uint256 public ReservedForLiquidity = 888888 ether;

    uint256 constant public APE_RATE = 10 ether; 
    uint256 constant public GOLD_RATE = 20 ether;


    uint256 constant public MUTANT_RATE = 5 ether;
    uint256 constant public MUTANT_M3_RATE = 20 ether;

    
    uint256[] public GOLD_APES = [1207, 415 , 286 , 2591, 2457, 2131, 2128, 1704, 1605, 1529, 1437, 1378, 3794, 3776, 3730, 3207, 3028, 2663, 4441, 4354, 4325, 3910];
    uint256 [] public M3 = [3499,1046,4407,83,2736];
    

    address[] public stakedWalletSlape;
    address[] public stakedWalletMutant;
    address[] private tempArray;

    IERC721 public superlativeApesContract = IERC721(0x1e87eE9249Cc647Af9EDEecB73D6b76AF14d8C27);
    IERC721 public superlativeMutantContract = IERC721(0x9FB2EEb75754815c5Cc9092Cd53549cEa5dc404f);

    constructor() 
    {
        _mint(msg.sender,ReservedForLiquidity);
    }

    function stakedWalletsLength() public view returns(uint256)
    {
        return stakedWalletSlape.length;
    }

    function teamMint(uint256 totalAmount) public onlyOwner
    {
        _mint(msg.sender, (totalAmount * 10 ** 18));
    }

    function StakeYourSlape(uint256[] calldata tokenID) public 
    {
        require(superlativeApesContract.isApprovedForAll(msg.sender, address(this)), "You are not Approved to stake your NFT!");
        
        for(uint256 i; i<tokenID.length; i++)
        {
            superlativeApesContract.safeTransferFrom(msg.sender, address(this), tokenID[i], "");

            if(!contains(msg.sender))
            {
                stakedWalletSlape.push(msg.sender);
            }
            
            _deposits[msg.sender].add(tokenID[i]);
            totalStakedTokens[msg.sender] = totalStakedTokens[msg.sender] + 1;
            stakedDays[tokenID[i]] = block.timestamp;
        }
    }

    function unStakeYourSlape(uint256[] calldata tokenID) public 
    {
        claimTokens();
        for(uint256 i; i<tokenID.length; i++)
        {
            superlativeApesContract.safeTransferFrom(address(this), msg.sender, tokenID[i], "");
            _deposits[msg.sender].remove(tokenID[i]);
            totalStakedTokens[msg.sender] = totalStakedTokens[msg.sender] + 1;

            if(_deposits[msg.sender].values().length < 1)
            {
                remove(msg.sender);
            }
        }
    }

    function contains(address _incoming) internal view returns(bool)
    {
        bool doesListContainElement = false;
    
        for (uint i=0; i < stakedWalletSlape.length; i++) {
            if (_incoming == stakedWalletSlape[i]) {
                doesListContainElement = true;
            }
        }

        return doesListContainElement;
    }
    
    function remove(address _incoming) internal {

        delete tempArray;
        
        for (uint256 i = 0; i<stakedWalletSlape.length; i++){
            if(stakedWalletSlape[i] != _incoming)
            {
                tempArray.push(stakedWalletSlape[i]);
            }
        }

        delete stakedWalletSlape;

        stakedWalletSlape = tempArray;
        
    }


    function claimTokens() public 
    {
        uint256 payout = 0;
        for(uint256 i = 0; i < _deposits[msg.sender].length(); i++)
        {
            payout += totalRewardsToPay(_deposits[msg.sender].at(i));
            stakedDays[_deposits[msg.sender].at(i)] = block.timestamp;
        }
        _mint(msg.sender, payout);
    }

    function viewRewardTotal() external view returns (uint256)
    {
        uint256 payout = 0;
        
        for(uint256 i = 0; i < _deposits[msg.sender].length(); i++)
        {
            payout = payout + totalRewardsToPay(_deposits[msg.sender].at(i));
        }
        return payout;
    }

    function totalRewardsToPay(uint256 tokenId) internal view returns(uint256)
    {
        uint256 payout = 0;
        
        payout = howManyDaysStaked(tokenId) * APE_RATE;

        for(uint256 i=0; i<GOLD_APES.length; i++)
        {
            if(tokenId == GOLD_APES[i])
            {
                payout = howManyDaysStaked(tokenId) * GOLD_RATE;
            }   
        }
        return payout;
    }

    function howManyDaysStaked(uint256 tokenId) public view returns(uint256)
    {
        
        require(
            _deposits[msg.sender].contains(tokenId),
            'Token not deposited'
        );
        
        uint256 timeCalc = block.timestamp - stakedDays[tokenId];
        uint256 returndays = timeCalc / 86400;
       
        return returndays;
    }

    function returnStakedTokens() public view returns (uint256[] memory)
    {
        return _deposits[msg.sender].values();
    }
    


    //Mutant Functions

    function containsMutate(address _incoming) internal view returns(bool)
    {
        bool doesListContainElement = false;
    
        for (uint i=0; i < stakedWalletMutant.length; i++) {
            if (_incoming == stakedWalletMutant[i]) {
                doesListContainElement = true;
            }
        }

        return doesListContainElement;
    }

    function unStakeYourMutant(uint256[] calldata tokenID) public 
    {
        claimTokensMutants();
        for(uint256 i; i<tokenID.length; i++)
        {
            superlativeMutantContract.safeTransferFrom(address(this), msg.sender, tokenID[i], "");
            _depositsMutant[msg.sender].remove(tokenID[i]);
            totalStakedMutantTokens[msg.sender] = totalStakedMutantTokens[msg.sender] + 1;

            if(_depositsMutant[msg.sender].values().length < 1)
            {
                remove(msg.sender);
            }
        }
    }

    function StakeYourMutant(uint256[] calldata tokenID) public 
    {
        require(superlativeMutantContract.isApprovedForAll(msg.sender, address(this)), "You are not Approved to stake your NFT!");
        
        for(uint256 i; i<tokenID.length; i++)
        {
            superlativeMutantContract.safeTransferFrom(msg.sender, address(this), tokenID[i], "");

            if(!containsMutate(msg.sender))
            {
                stakedWalletMutant.push(msg.sender);
            }
            
            _depositsMutant[msg.sender].add(tokenID[i]);
            totalStakedMutantTokens[msg.sender] = totalStakedMutantTokens[msg.sender] + 1;
            stakedMutantDays[tokenID[i]] = block.timestamp;
        }
    }

    function claimTokensMutants() public 
    {
        uint256 payout = 0;
        for(uint256 i = 0; i < _depositsMutant[msg.sender].length(); i++)
        {
            payout += totalRewardsToPayMutant(_depositsMutant[msg.sender].at(i));   
            stakedMutantDays[_depositsMutant[msg.sender].at(i)] = block.timestamp;
        }

        _mint(msg.sender, payout);
    }

    function viewRewardTotalMutant() external view returns (uint256)
    {
        uint256 payout = 0;
        
        for(uint256 i = 0; i < _depositsMutant[msg.sender].length(); i++)
        {
            payout = payout + totalRewardsToPayMutant(_depositsMutant[msg.sender].at(i));
        }
        return payout;
    }

    function howManyDaysStakedMutant(uint256 tokenId) public view returns(uint256)
    {
        
        require(
            _depositsMutant[msg.sender].contains(tokenId),
            'Token not deposited'
        );
        
        uint256 timeCalc = block.timestamp - stakedMutantDays[tokenId];
        uint256 returndays = timeCalc / 86400;
       
        return returndays;
    }

    function returnStakedTokensMutant() public view returns (uint256[] memory)
    {
        return _depositsMutant[msg.sender].values();
    }

    function totalRewardsToPayMutant(uint256 tokenId) internal view returns(uint256)
    {
        uint256 payout = howManyDaysStakedMutant(tokenId) * MUTANT_RATE;
        
        for(uint256 i=0;i<M3.length;i++)
        {
            if(M3[i] == tokenId)
            {
                payout = howManyDaysStakedMutant(tokenId) * MUTANT_M3_RATE;
            }
        }

        if(tokenId >= 13333)
        {
            payout = howManyDaysStakedMutant(tokenId) * MUTANT_M3_RATE;
        }
        
        
        return payout;
    }


    function onERC721Received(
        address,
        address,
        uint256,
        bytes calldata
    ) external pure override returns (bytes4) {
        return IERC721Receiver.onERC721Received.selector;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"APE_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"GOLD_APES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GOLD_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"M3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MUTANT_M3_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MUTANT_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ReservedForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenID","type":"uint256[]"}],"name":"StakeYourMutant","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenID","type":"uint256[]"}],"name":"StakeYourSlape","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimTokensMutants","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"howManyDaysStaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"howManyDaysStakedMutant","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"returnStakedTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"returnStakedTokensMutant","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakedDays","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakedMutantDays","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakedWalletMutant","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakedWalletSlape","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakedWalletsLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"superlativeApesContract","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"superlativeMutantContract","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalAmount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalStakedMutantTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalStakedTokens","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenID","type":"uint256[]"}],"name":"unStakeYourMutant","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenID","type":"uint256[]"}],"name":"unStakeYourSlape","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"viewRewardTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"viewRewardTotalMutant","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

69bc3ab70c8588dde00000600d556103406040526104b7608090815261019f60a05261011e60c052610a1f60e0526109996101005261085361012052610850610140526106a861016052610645610180526105f96101a05261059d6101c0526105626101e052610ed261020052610ec061022052610e9261024052610c8761026052610bd461028052610a676102a0526111596102c0526111026102e0526110e561030052610f4661032052620000bb90600e90601662000341565b506040805160a081018252610dab815261041660208201526111379181019190915260536060820152610ab06080820152620000fc90600f90600562000341565b50601380546001600160a01b0319908116731e87ee9249cc647af9edeecb73d6b76af14d8c271790915560148054909116739fb2eeb75754815c5cc9092cd53549cea5dc404f1790553480156200015257600080fd5b50604080518082018252601381527f53757065726c6174697665205374616b696e6700000000000000000000000000602080830191825283518085019094526005845264534c41504560d81b908401528151919291620001b59160039162000397565b508051620001cb90600490602084019062000397565b505050620001e8620001e26200020360201b60201c565b62000207565b6001600655600d54620001fd90339062000259565b6200048f565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002b45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620002c891906200042b565b90915550506001600160a01b03821660009081526020819052604081208054839290620002f79084906200042b565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b82805482825590600052602060002090810192821562000385579160200282015b8281111562000385578251829061ffff1690559160200191906001019062000362565b506200039392915062000414565b5090565b828054620003a59062000452565b90600052602060002090601f016020900481019282620003c9576000855562000385565b82601f10620003e457805160ff191683800117855562000385565b8280016001018555821562000385579182015b8281111562000385578251825591602001919060010190620003f7565b5b8082111562000393576000815560010162000415565b600082198211156200044d57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200046757607f821691505b602082108114156200048957634e487b7160e01b600052602260045260246000fd5b50919050565b612165806200049f6000396000f3fe608060405234801561001057600080fd5b50600436106102745760003560e01c80635052fe3811610151578063a457c2d7116100c3578063c999a61b11610087578063c999a61b14610573578063dd62ed3e14610586578063debd71cf14610599578063f2fde38b146105a1578063f6cbe5cc146105b4578063fba96338146105bc57600080fd5b8063a457c2d71461051a578063a9059cbb1461052d578063aa583f3214610540578063be23b21b14610553578063c7e800cb146103d857600080fd5b80638da5cb5b116101155780638da5cb5b146104b9578063920413c7146104ca57806393e62d51146104dd57806395d89b41146104f05780639a82d54c146104f8578063a40387161461050b57600080fd5b80635052fe381461045a57806350aca4f91461046d5780635d9027991461048057806370a0823114610488578063715018a6146104b157600080fd5b80632fbba115116101ea5780633e2b7fe2116101ae5780633e2b7fe2146103fb5780633edd7cfc1461040e5780633f04e06014610421578063481498f11461042957806348c54b9d146104325780634b261e901461043a57600080fd5b80632fbba115146103a55780632fd7431e146103ba578063313ce567146103c957806336ddef54146103d857806339509351146103e857600080fd5b80631843b7151161023c5780631843b7151461032f5780631c2865a01461034457806323b872dd146103575780632a41dca71461036a5780632a4c19a01461037d5780632baf098e1461038557600080fd5b806306fdde0314610279578063095ea7b314610297578063150b7a02146102ba5780631545ca82146102f257806318160ddd1461031d575b600080fd5b6102816105dc565b60405161028e9190611f5c565b60405180910390f35b6102aa6102a5366004611e0b565b61066e565b604051901515815260200161028e565b6102d96102c8366004611d70565b630a85bd0160e11b95945050505050565b6040516001600160e01b0319909116815260200161028e565b601354610305906001600160a01b031681565b6040516001600160a01b03909116815260200161028e565b6002545b60405190815260200161028e565b610337610688565b60405161028e9190611f18565b610321610352366004611ecc565b6106a8565b6102aa610365366004611d34565b61073a565b610305610378366004611ecc565b61075e565b610321610788565b610321610393366004611ce6565b600b6020526000908152604090205481565b6103b86103b3366004611ecc565b6107f2565b005b610321678ac7230489e8000081565b6040516012815260200161028e565b6103216801158e460913d0000081565b6102aa6103f6366004611e0b565b61083a565b610321610409366004611ecc565b61085c565b61032161041c366004611ecc565b61087d565b601054610321565b610321600d5481565b6103b861088d565b610321610448366004611ecc565b60086020526000908152604090205481565b610305610468366004611ecc565b610927565b61032161047b366004611ecc565b610937565b6103216109ab565b610321610496366004611ce6565b6001600160a01b031660009081526020819052604090205490565b6103b8610a0f565b6005546001600160a01b0316610305565b6103b86104d8366004611e35565b610a45565b6103b86104eb366004611e35565b610b71565b610281610c98565b601454610305906001600160a01b031681565b610321674563918244f4000081565b6102aa610528366004611e0b565b610ca7565b6102aa61053b366004611e0b565b610d22565b6103b861054e366004611e35565b610d30565b610321610561366004611ce6565b60076020526000908152604090205481565b6103b8610581366004611e35565b610f49565b610321610594366004611d01565b611162565b6103b861118d565b6103b86105af366004611ce6565b61121c565b6103376112b4565b6103216105ca366004611ecc565b600c6020526000908152604090205481565b6060600380546105eb9061209d565b80601f01602080910402602001604051908101604052809291908181526020018280546106179061209d565b80156106645780601f1061063957610100808354040283529160200191610664565b820191906000526020600020905b81548152906001019060200180831161064757829003601f168201915b5050505050905090565b60003361067c8185856112cf565b60019150505b92915050565b336000908152600a602052604090206060906106a3906113f3565b905090565b3360009081526009602052604081206106c19083611407565b6107085760405162461bcd60e51b8152602060048201526013602482015272151bdad95b881b9bdd0819195c1bdcda5d1959606a1b60448201526064015b60405180910390fd5b6000828152600860205260408120546107219042612086565b905060006107326201518083612045565b949350505050565b60003361074885828561141f565b610753858585611499565b506001949350505050565b6011818154811061076e57600080fd5b6000918252602090912001546001600160a01b0316905081565b600080805b3360009081526009602052604090206107a590611667565b8110156107ec573360009081526009602052604090206107ce906107c99083611671565b61167d565b6107d8908361202d565b9150806107e4816120d2565b91505061078d565b50919050565b6005546001600160a01b0316331461081c5760405162461bcd60e51b81526004016106ff90611ff8565b6108373361083283670de0b6b3a7640000612067565b611709565b50565b60003361067c81858561084d8383611162565b610857919061202d565b6112cf565b600e818154811061086c57600080fd5b600091825260209091200154905081565b600f818154811061086c57600080fd5b6000805b3360009081526009602052604090206108a990611667565b81101561091c573360009081526009602052604090206108cd906107c99083611671565b6108d7908361202d565b3360009081526009602052604081209193504291600891906108f99085611671565b815260208101919091526040016000205580610914816120d2565b915050610891565b506108373382611709565b6010818154811061076e57600080fd5b336000908152600a602052604081206109509083611407565b6109925760405162461bcd60e51b8152602060048201526013602482015272151bdad95b881b9bdd0819195c1bdcda5d1959606a1b60448201526064016106ff565b6000828152600c60205260408120546107219042612086565b600080805b336000908152600a602052604090206109c890611667565b8110156107ec57336000908152600a602052604090206109f1906109ec9083611671565b6117e9565b6109fb908361202d565b915080610a07816120d2565b9150506109b0565b6005546001600160a01b03163314610a395760405162461bcd60e51b81526004016106ff90611ff8565b610a436000611895565b565b610a4d61088d565b60005b81811015610b6c576013546001600160a01b031663b88d4fde3033868686818110610a7d57610a7d612119565b905060200201356040518463ffffffff1660e01b8152600401610aa293929190611ee5565b600060405180830381600087803b158015610abc57600080fd5b505af1158015610ad0573d6000803e3d6000fd5b50505050610b07838383818110610ae957610ae9612119565b336000908152600960209081526040909120939102013590506118e7565b5033600090815260076020526040902054610b2390600161202d565b336000908152600760209081526040808320939093556009905220600190610b4a906113f3565b511015610b5a57610b5a336118f3565b80610b64816120d2565b915050610a50565b505050565b610b7961118d565b60005b81811015610b6c576014546001600160a01b031663b88d4fde3033868686818110610ba957610ba9612119565b905060200201356040518463ffffffff1660e01b8152600401610bce93929190611ee5565b600060405180830381600087803b158015610be857600080fd5b505af1158015610bfc573d6000803e3d6000fd5b50505050610c33838383818110610c1557610c15612119565b336000908152600a60209081526040909120939102013590506118e7565b50336000908152600b6020526040902054610c4f90600161202d565b336000908152600b6020908152604080832093909355600a905220600190610c76906113f3565b511015610c8657610c86336118f3565b80610c90816120d2565b915050610b7c565b6060600480546105eb9061209d565b60003381610cb58286611162565b905083811015610d155760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106ff565b61075382868684036112cf565b60003361067c818585611499565b60135460405163e985e9c560e01b81523360048201523060248201526001600160a01b039091169063e985e9c59060440160206040518083038186803b158015610d7957600080fd5b505afa158015610d8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db19190611eaa565b610dcd5760405162461bcd60e51b81526004016106ff90611fb1565b60005b81811015610b6c576013546001600160a01b031663b88d4fde3330868686818110610dfd57610dfd612119565b905060200201356040518463ffffffff1660e01b8152600401610e2293929190611ee5565b600060405180830381600087803b158015610e3c57600080fd5b505af1158015610e50573d6000803e3d6000fd5b50505050610e5d336119c3565b610ea457601080546001810182556000919091527f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae6720180546001600160a01b031916331790555b610ed7838383818110610eb957610eb9612119565b33600090815260096020908152604090912093910201359050611a1b565b5033600090815260076020526040902054610ef390600161202d565b336000908152600760205260408120919091554290600890858585818110610f1d57610f1d612119565b905060200201358152602001908152602001600020819055508080610f41906120d2565b915050610dd0565b60145460405163e985e9c560e01b81523360048201523060248201526001600160a01b039091169063e985e9c59060440160206040518083038186803b158015610f9257600080fd5b505afa158015610fa6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fca9190611eaa565b610fe65760405162461bcd60e51b81526004016106ff90611fb1565b60005b81811015610b6c576014546001600160a01b031663b88d4fde333086868681811061101657611016612119565b905060200201356040518463ffffffff1660e01b815260040161103b93929190611ee5565b600060405180830381600087803b15801561105557600080fd5b505af1158015611069573d6000803e3d6000fd5b5050505061107633611a27565b6110bd57601180546001810182556000919091527f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c680180546001600160a01b031916331790555b6110f08383838181106110d2576110d2612119565b336000908152600a6020908152604090912093910201359050611a1b565b50336000908152600b602052604090205461110c90600161202d565b336000908152600b60205260408120919091554290600c9085858581811061113657611136612119565b90506020020135815260200190815260200160002081905550808061115a906120d2565b915050610fe9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000805b336000908152600a602052604090206111a990611667565b81101561091c57336000908152600a602052604090206111cd906109ec9083611671565b6111d7908361202d565b336000908152600a602052604081209193504291600c91906111f99085611671565b815260208101919091526040016000205580611214816120d2565b915050611191565b6005546001600160a01b031633146112465760405162461bcd60e51b81526004016106ff90611ff8565b6001600160a01b0381166112ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ff565b61083781611895565b3360009081526009602052604090206060906106a3906113f3565b6001600160a01b0383166113315760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106ff565b6001600160a01b0382166113925760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106ff565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6060600061140083611a7f565b9392505050565b60008181526001830160205260408120541515611400565b600061142b8484611162565b9050600019811461149357818110156114865760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106ff565b61149384848484036112cf565b50505050565b6001600160a01b0383166114fd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106ff565b6001600160a01b03821661155f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106ff565b6001600160a01b038316600090815260208190526040902054818110156115d75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106ff565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061160e90849061202d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161165a91815260200190565b60405180910390a3611493565b6000610682825490565b60006114008383611adb565b600080678ac7230489e80000611692846106a8565b61169c9190612067565b905060005b600e5481101561170257600e81815481106116be576116be612119565b90600052602060002001548414156116f0576801158e460913d000006116e3856106a8565b6116ed9190612067565b91505b806116fa816120d2565b9150506116a1565b5092915050565b6001600160a01b03821661175f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106ff565b8060026000828254611771919061202d565b90915550506001600160a01b0382166000908152602081905260408120805483929061179e90849061202d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b5050565b600080674563918244f400006117fe84610937565b6118089190612067565b905060005b600f5481101561186e5783600f828154811061182b5761182b612119565b9060005260206000200154141561185c576801158e460913d0000061184f85610937565b6118599190612067565b91505b80611866816120d2565b91505061180d565b506134158310610682576801158e460913d0000061188b84610937565b6114009190612067565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006114008383611b05565b6118ff60126000611c47565b60005b6010548110156119a657816001600160a01b03166010828154811061192957611929612119565b6000918252602090912001546001600160a01b0316146119945760126010828154811061195857611958612119565b60009182526020808320909101548354600181018555938352912090910180546001600160a01b0319166001600160a01b039092169190911790555b8061199e816120d2565b915050611902565b506119b360106000611c47565b601280546117e591601091611c65565b600080805b60105481101561170257601081815481106119e5576119e5612119565b6000918252602090912001546001600160a01b0385811691161415611a0957600191505b80611a13816120d2565b9150506119c8565b60006114008383611bf8565b600080805b6011548110156117025760118181548110611a4957611a49612119565b6000918252602090912001546001600160a01b0385811691161415611a6d57600191505b80611a77816120d2565b915050611a2c565b606081600001805480602002602001604051908101604052809291908181526020018280548015611acf57602002820191906000526020600020905b815481526020019060010190808311611abb575b50505050509050919050565b6000826000018281548110611af257611af2612119565b9060005260206000200154905092915050565b60008181526001830160205260408120548015611bee576000611b29600183612086565b8554909150600090611b3d90600190612086565b9050818114611ba2576000866000018281548110611b5d57611b5d612119565b9060005260206000200154905080876000018481548110611b8057611b80612119565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611bb357611bb3612103565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610682565b6000915050610682565b6000818152600183016020526040812054611c3f57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610682565b506000610682565b50805460008255906000526020600020908101906108379190611cb5565b828054828255906000526020600020908101928215611ca55760005260206000209182015b82811115611ca5578254825591600101919060010190611c8a565b50611cb1929150611cb5565b5090565b5b80821115611cb15760008155600101611cb6565b80356001600160a01b0381168114611ce157600080fd5b919050565b600060208284031215611cf857600080fd5b61140082611cca565b60008060408385031215611d1457600080fd5b611d1d83611cca565b9150611d2b60208401611cca565b90509250929050565b600080600060608486031215611d4957600080fd5b611d5284611cca565b9250611d6060208501611cca565b9150604084013590509250925092565b600080600080600060808688031215611d8857600080fd5b611d9186611cca565b9450611d9f60208701611cca565b935060408601359250606086013567ffffffffffffffff80821115611dc357600080fd5b818801915088601f830112611dd757600080fd5b813581811115611de657600080fd5b896020828501011115611df857600080fd5b9699959850939650602001949392505050565b60008060408385031215611e1e57600080fd5b611e2783611cca565b946020939093013593505050565b60008060208385031215611e4857600080fd5b823567ffffffffffffffff80821115611e6057600080fd5b818501915085601f830112611e7457600080fd5b813581811115611e8357600080fd5b8660208260051b8501011115611e9857600080fd5b60209290920196919550909350505050565b600060208284031215611ebc57600080fd5b8151801515811461140057600080fd5b600060208284031215611ede57600080fd5b5035919050565b6001600160a01b039384168152919092166020820152604081019190915260806060820181905260009082015260a00190565b6020808252825182820181905260009190848201906040850190845b81811015611f5057835183529284019291840191600101611f34565b50909695505050505050565b600060208083528351808285015260005b81811015611f8957858101830151858201604001528201611f6d565b81811115611f9b576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526027908201527f596f7520617265206e6f7420417070726f76656420746f207374616b6520796f6040820152667572204e46542160c81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115612040576120406120ed565b500190565b60008261206257634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612081576120816120ed565b500290565b600082821015612098576120986120ed565b500390565b600181811c908216806120b157607f821691505b602082108114156107ec57634e487b7160e01b600052602260045260246000fd5b60006000198214156120e6576120e66120ed565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fdfea2646970667358221220187e2847d80582857c992895d2b1037596c6a48eaeaca3c7e0db817ba09a13ba64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102745760003560e01c80635052fe3811610151578063a457c2d7116100c3578063c999a61b11610087578063c999a61b14610573578063dd62ed3e14610586578063debd71cf14610599578063f2fde38b146105a1578063f6cbe5cc146105b4578063fba96338146105bc57600080fd5b8063a457c2d71461051a578063a9059cbb1461052d578063aa583f3214610540578063be23b21b14610553578063c7e800cb146103d857600080fd5b80638da5cb5b116101155780638da5cb5b146104b9578063920413c7146104ca57806393e62d51146104dd57806395d89b41146104f05780639a82d54c146104f8578063a40387161461050b57600080fd5b80635052fe381461045a57806350aca4f91461046d5780635d9027991461048057806370a0823114610488578063715018a6146104b157600080fd5b80632fbba115116101ea5780633e2b7fe2116101ae5780633e2b7fe2146103fb5780633edd7cfc1461040e5780633f04e06014610421578063481498f11461042957806348c54b9d146104325780634b261e901461043a57600080fd5b80632fbba115146103a55780632fd7431e146103ba578063313ce567146103c957806336ddef54146103d857806339509351146103e857600080fd5b80631843b7151161023c5780631843b7151461032f5780631c2865a01461034457806323b872dd146103575780632a41dca71461036a5780632a4c19a01461037d5780632baf098e1461038557600080fd5b806306fdde0314610279578063095ea7b314610297578063150b7a02146102ba5780631545ca82146102f257806318160ddd1461031d575b600080fd5b6102816105dc565b60405161028e9190611f5c565b60405180910390f35b6102aa6102a5366004611e0b565b61066e565b604051901515815260200161028e565b6102d96102c8366004611d70565b630a85bd0160e11b95945050505050565b6040516001600160e01b0319909116815260200161028e565b601354610305906001600160a01b031681565b6040516001600160a01b03909116815260200161028e565b6002545b60405190815260200161028e565b610337610688565b60405161028e9190611f18565b610321610352366004611ecc565b6106a8565b6102aa610365366004611d34565b61073a565b610305610378366004611ecc565b61075e565b610321610788565b610321610393366004611ce6565b600b6020526000908152604090205481565b6103b86103b3366004611ecc565b6107f2565b005b610321678ac7230489e8000081565b6040516012815260200161028e565b6103216801158e460913d0000081565b6102aa6103f6366004611e0b565b61083a565b610321610409366004611ecc565b61085c565b61032161041c366004611ecc565b61087d565b601054610321565b610321600d5481565b6103b861088d565b610321610448366004611ecc565b60086020526000908152604090205481565b610305610468366004611ecc565b610927565b61032161047b366004611ecc565b610937565b6103216109ab565b610321610496366004611ce6565b6001600160a01b031660009081526020819052604090205490565b6103b8610a0f565b6005546001600160a01b0316610305565b6103b86104d8366004611e35565b610a45565b6103b86104eb366004611e35565b610b71565b610281610c98565b601454610305906001600160a01b031681565b610321674563918244f4000081565b6102aa610528366004611e0b565b610ca7565b6102aa61053b366004611e0b565b610d22565b6103b861054e366004611e35565b610d30565b610321610561366004611ce6565b60076020526000908152604090205481565b6103b8610581366004611e35565b610f49565b610321610594366004611d01565b611162565b6103b861118d565b6103b86105af366004611ce6565b61121c565b6103376112b4565b6103216105ca366004611ecc565b600c6020526000908152604090205481565b6060600380546105eb9061209d565b80601f01602080910402602001604051908101604052809291908181526020018280546106179061209d565b80156106645780601f1061063957610100808354040283529160200191610664565b820191906000526020600020905b81548152906001019060200180831161064757829003601f168201915b5050505050905090565b60003361067c8185856112cf565b60019150505b92915050565b336000908152600a602052604090206060906106a3906113f3565b905090565b3360009081526009602052604081206106c19083611407565b6107085760405162461bcd60e51b8152602060048201526013602482015272151bdad95b881b9bdd0819195c1bdcda5d1959606a1b60448201526064015b60405180910390fd5b6000828152600860205260408120546107219042612086565b905060006107326201518083612045565b949350505050565b60003361074885828561141f565b610753858585611499565b506001949350505050565b6011818154811061076e57600080fd5b6000918252602090912001546001600160a01b0316905081565b600080805b3360009081526009602052604090206107a590611667565b8110156107ec573360009081526009602052604090206107ce906107c99083611671565b61167d565b6107d8908361202d565b9150806107e4816120d2565b91505061078d565b50919050565b6005546001600160a01b0316331461081c5760405162461bcd60e51b81526004016106ff90611ff8565b6108373361083283670de0b6b3a7640000612067565b611709565b50565b60003361067c81858561084d8383611162565b610857919061202d565b6112cf565b600e818154811061086c57600080fd5b600091825260209091200154905081565b600f818154811061086c57600080fd5b6000805b3360009081526009602052604090206108a990611667565b81101561091c573360009081526009602052604090206108cd906107c99083611671565b6108d7908361202d565b3360009081526009602052604081209193504291600891906108f99085611671565b815260208101919091526040016000205580610914816120d2565b915050610891565b506108373382611709565b6010818154811061076e57600080fd5b336000908152600a602052604081206109509083611407565b6109925760405162461bcd60e51b8152602060048201526013602482015272151bdad95b881b9bdd0819195c1bdcda5d1959606a1b60448201526064016106ff565b6000828152600c60205260408120546107219042612086565b600080805b336000908152600a602052604090206109c890611667565b8110156107ec57336000908152600a602052604090206109f1906109ec9083611671565b6117e9565b6109fb908361202d565b915080610a07816120d2565b9150506109b0565b6005546001600160a01b03163314610a395760405162461bcd60e51b81526004016106ff90611ff8565b610a436000611895565b565b610a4d61088d565b60005b81811015610b6c576013546001600160a01b031663b88d4fde3033868686818110610a7d57610a7d612119565b905060200201356040518463ffffffff1660e01b8152600401610aa293929190611ee5565b600060405180830381600087803b158015610abc57600080fd5b505af1158015610ad0573d6000803e3d6000fd5b50505050610b07838383818110610ae957610ae9612119565b336000908152600960209081526040909120939102013590506118e7565b5033600090815260076020526040902054610b2390600161202d565b336000908152600760209081526040808320939093556009905220600190610b4a906113f3565b511015610b5a57610b5a336118f3565b80610b64816120d2565b915050610a50565b505050565b610b7961118d565b60005b81811015610b6c576014546001600160a01b031663b88d4fde3033868686818110610ba957610ba9612119565b905060200201356040518463ffffffff1660e01b8152600401610bce93929190611ee5565b600060405180830381600087803b158015610be857600080fd5b505af1158015610bfc573d6000803e3d6000fd5b50505050610c33838383818110610c1557610c15612119565b336000908152600a60209081526040909120939102013590506118e7565b50336000908152600b6020526040902054610c4f90600161202d565b336000908152600b6020908152604080832093909355600a905220600190610c76906113f3565b511015610c8657610c86336118f3565b80610c90816120d2565b915050610b7c565b6060600480546105eb9061209d565b60003381610cb58286611162565b905083811015610d155760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106ff565b61075382868684036112cf565b60003361067c818585611499565b60135460405163e985e9c560e01b81523360048201523060248201526001600160a01b039091169063e985e9c59060440160206040518083038186803b158015610d7957600080fd5b505afa158015610d8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db19190611eaa565b610dcd5760405162461bcd60e51b81526004016106ff90611fb1565b60005b81811015610b6c576013546001600160a01b031663b88d4fde3330868686818110610dfd57610dfd612119565b905060200201356040518463ffffffff1660e01b8152600401610e2293929190611ee5565b600060405180830381600087803b158015610e3c57600080fd5b505af1158015610e50573d6000803e3d6000fd5b50505050610e5d336119c3565b610ea457601080546001810182556000919091527f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae6720180546001600160a01b031916331790555b610ed7838383818110610eb957610eb9612119565b33600090815260096020908152604090912093910201359050611a1b565b5033600090815260076020526040902054610ef390600161202d565b336000908152600760205260408120919091554290600890858585818110610f1d57610f1d612119565b905060200201358152602001908152602001600020819055508080610f41906120d2565b915050610dd0565b60145460405163e985e9c560e01b81523360048201523060248201526001600160a01b039091169063e985e9c59060440160206040518083038186803b158015610f9257600080fd5b505afa158015610fa6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fca9190611eaa565b610fe65760405162461bcd60e51b81526004016106ff90611fb1565b60005b81811015610b6c576014546001600160a01b031663b88d4fde333086868681811061101657611016612119565b905060200201356040518463ffffffff1660e01b815260040161103b93929190611ee5565b600060405180830381600087803b15801561105557600080fd5b505af1158015611069573d6000803e3d6000fd5b5050505061107633611a27565b6110bd57601180546001810182556000919091527f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c680180546001600160a01b031916331790555b6110f08383838181106110d2576110d2612119565b336000908152600a6020908152604090912093910201359050611a1b565b50336000908152600b602052604090205461110c90600161202d565b336000908152600b60205260408120919091554290600c9085858581811061113657611136612119565b90506020020135815260200190815260200160002081905550808061115a906120d2565b915050610fe9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000805b336000908152600a602052604090206111a990611667565b81101561091c57336000908152600a602052604090206111cd906109ec9083611671565b6111d7908361202d565b336000908152600a602052604081209193504291600c91906111f99085611671565b815260208101919091526040016000205580611214816120d2565b915050611191565b6005546001600160a01b031633146112465760405162461bcd60e51b81526004016106ff90611ff8565b6001600160a01b0381166112ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ff565b61083781611895565b3360009081526009602052604090206060906106a3906113f3565b6001600160a01b0383166113315760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106ff565b6001600160a01b0382166113925760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106ff565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6060600061140083611a7f565b9392505050565b60008181526001830160205260408120541515611400565b600061142b8484611162565b9050600019811461149357818110156114865760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106ff565b61149384848484036112cf565b50505050565b6001600160a01b0383166114fd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106ff565b6001600160a01b03821661155f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106ff565b6001600160a01b038316600090815260208190526040902054818110156115d75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106ff565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061160e90849061202d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161165a91815260200190565b60405180910390a3611493565b6000610682825490565b60006114008383611adb565b600080678ac7230489e80000611692846106a8565b61169c9190612067565b905060005b600e5481101561170257600e81815481106116be576116be612119565b90600052602060002001548414156116f0576801158e460913d000006116e3856106a8565b6116ed9190612067565b91505b806116fa816120d2565b9150506116a1565b5092915050565b6001600160a01b03821661175f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106ff565b8060026000828254611771919061202d565b90915550506001600160a01b0382166000908152602081905260408120805483929061179e90849061202d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b5050565b600080674563918244f400006117fe84610937565b6118089190612067565b905060005b600f5481101561186e5783600f828154811061182b5761182b612119565b9060005260206000200154141561185c576801158e460913d0000061184f85610937565b6118599190612067565b91505b80611866816120d2565b91505061180d565b506134158310610682576801158e460913d0000061188b84610937565b6114009190612067565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006114008383611b05565b6118ff60126000611c47565b60005b6010548110156119a657816001600160a01b03166010828154811061192957611929612119565b6000918252602090912001546001600160a01b0316146119945760126010828154811061195857611958612119565b60009182526020808320909101548354600181018555938352912090910180546001600160a01b0319166001600160a01b039092169190911790555b8061199e816120d2565b915050611902565b506119b360106000611c47565b601280546117e591601091611c65565b600080805b60105481101561170257601081815481106119e5576119e5612119565b6000918252602090912001546001600160a01b0385811691161415611a0957600191505b80611a13816120d2565b9150506119c8565b60006114008383611bf8565b600080805b6011548110156117025760118181548110611a4957611a49612119565b6000918252602090912001546001600160a01b0385811691161415611a6d57600191505b80611a77816120d2565b915050611a2c565b606081600001805480602002602001604051908101604052809291908181526020018280548015611acf57602002820191906000526020600020905b815481526020019060010190808311611abb575b50505050509050919050565b6000826000018281548110611af257611af2612119565b9060005260206000200154905092915050565b60008181526001830160205260408120548015611bee576000611b29600183612086565b8554909150600090611b3d90600190612086565b9050818114611ba2576000866000018281548110611b5d57611b5d612119565b9060005260206000200154905080876000018481548110611b8057611b80612119565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611bb357611bb3612103565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610682565b6000915050610682565b6000818152600183016020526040812054611c3f57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610682565b506000610682565b50805460008255906000526020600020908101906108379190611cb5565b828054828255906000526020600020908101928215611ca55760005260206000209182015b82811115611ca5578254825591600101919060010190611c8a565b50611cb1929150611cb5565b5090565b5b80821115611cb15760008155600101611cb6565b80356001600160a01b0381168114611ce157600080fd5b919050565b600060208284031215611cf857600080fd5b61140082611cca565b60008060408385031215611d1457600080fd5b611d1d83611cca565b9150611d2b60208401611cca565b90509250929050565b600080600060608486031215611d4957600080fd5b611d5284611cca565b9250611d6060208501611cca565b9150604084013590509250925092565b600080600080600060808688031215611d8857600080fd5b611d9186611cca565b9450611d9f60208701611cca565b935060408601359250606086013567ffffffffffffffff80821115611dc357600080fd5b818801915088601f830112611dd757600080fd5b813581811115611de657600080fd5b896020828501011115611df857600080fd5b9699959850939650602001949392505050565b60008060408385031215611e1e57600080fd5b611e2783611cca565b946020939093013593505050565b60008060208385031215611e4857600080fd5b823567ffffffffffffffff80821115611e6057600080fd5b818501915085601f830112611e7457600080fd5b813581811115611e8357600080fd5b8660208260051b8501011115611e9857600080fd5b60209290920196919550909350505050565b600060208284031215611ebc57600080fd5b8151801515811461140057600080fd5b600060208284031215611ede57600080fd5b5035919050565b6001600160a01b039384168152919092166020820152604081019190915260806060820181905260009082015260a00190565b6020808252825182820181905260009190848201906040850190845b81811015611f5057835183529284019291840191600101611f34565b50909695505050505050565b600060208083528351808285015260005b81811015611f8957858101830151858201604001528201611f6d565b81811115611f9b576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526027908201527f596f7520617265206e6f7420417070726f76656420746f207374616b6520796f6040820152667572204e46542160c81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115612040576120406120ed565b500190565b60008261206257634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612081576120816120ed565b500290565b600082821015612098576120986120ed565b500390565b600181811c908216806120b157607f821691505b602082108114156107ec57634e487b7160e01b600052602260045260246000fd5b60006000198214156120e6576120e66120ed565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fdfea2646970667358221220187e2847d80582857c992895d2b1037596c6a48eaeaca3c7e0db817ba09a13ba64736f6c63430008070033

Deployed Bytecode Sourcemap

44289:9169:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33385:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35736:201;;;;;;:::i;:::-;;:::i;:::-;;;5019:14:1;;5012:22;4994:41;;4982:2;4967:18;35736:201:0;4854:187:1;53236:219:0;;;;;;:::i;:::-;-1:-1:-1;;;53236:219:0;;;;;;;;;;;-1:-1:-1;;;;;;5208:33:1;;;5190:52;;5178:2;5163:18;53236:219:0;5046:202:1;45476:92:0;;;;;-1:-1:-1;;;;;45476:92:0;;;;;;-1:-1:-1;;;;;3304:32:1;;;3286:51;;3274:2;3259:18;45476:92:0;3140:203:1;34505:108:0;34593:12;;34505:108;;;10897:25:1;;;10885:2;10870:18;34505:108:0;10751:177:1;52522:142:0;;;:::i;:::-;;;;;;;:::i;49135:377::-;;;;;;:::i;:::-;;:::i;36517:295::-;;;;;;:::i;:::-;;:::i;45398:35::-;;;;;;:::i;:::-;;:::i;48391:305::-;;;:::i;44720:59::-;;;;;;:::i;:::-;;;;;;;;;;;;;;45886:123;;;;;;:::i;:::-;;:::i;:::-;;44905:43;;44940:8;44905:43;;34347:93;;;34430:2;11075:36:1;;11063:2;11048:18;34347:93:0;10933:184:1;44956:44:0;;44992:8;44956:44;;37221:238;;;;;;:::i;:::-;;:::i;45127:161::-;;;;;;:::i;:::-;;:::i;45295:47::-;;;;;;:::i;:::-;;:::i;45763:115::-;45846:17;:24;45763:115;;44846:50;;;;;;48040:343;;;:::i;44528:45::-;;;;;;:::i;:::-;;;;;;;;;;;;;;45357:34;;;;;;:::i;:::-;;:::i;52119:395::-;;;;;;:::i;:::-;;:::i;51782:329::-;;;:::i;34676:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;34777:18:0;34750:7;34777:18;;;;;;;;;;;;34676:127;26649:103;;;:::i;25998:87::-;26071:6;;-1:-1:-1;;;;;26071:6:0;25998:87;;46730:529;;;;;;:::i;:::-;;:::i;50069:563::-;;;;;;:::i;:::-;;:::i;33604:104::-;;;:::i;45575:94::-;;;;;-1:-1:-1;;;;;45575:94:0;;;45011:45;;45049:7;45011:45;;37962:436;;;;;;:::i;:::-;;:::i;35009:193::-;;;;;;:::i;:::-;;:::i;46017:705::-;;;;;;:::i;:::-;;:::i;44468:53::-;;;;;;:::i;:::-;;;;;;;;;;;;;;50640:741;;;;;;:::i;:::-;;:::i;35265:151::-;;;;;;:::i;:::-;;:::i;51389:385::-;;;:::i;26907:201::-;;;;;;:::i;:::-;;:::i;49520:130::-;;;:::i;44786:51::-;;;;;;:::i;:::-;;;;;;;;;;;;;;33385:100;33439:13;33472:5;33465:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33385:100;:::o;35736:201::-;35819:4;24749:10;35875:32;24749:10;35891:7;35900:6;35875:8;:32::i;:::-;35925:4;35918:11;;;35736:201;;;;;:::o;52522:142::-;52636:10;52620:27;;;;:15;:27;;;;;52579:16;;52620:36;;:34;:36::i;:::-;52613:43;;52522:142;:::o;49135:377::-;49266:10;49199:7;49256:21;;;:9;:21;;;;;:39;;49287:7;49256:30;:39::i;:::-;49234:108;;;;-1:-1:-1;;;49234:108:0;;8259:2:1;49234:108:0;;;8241:21:1;8298:2;8278:18;;;8271:30;-1:-1:-1;;;8317:18:1;;;8310:49;8376:18;;49234:108:0;;;;;;;;;49363:16;49400:19;;;:10;:19;;;;;;49382:37;;:15;:37;:::i;:::-;49363:56;-1:-1:-1;49430:18:0;49451:16;49462:5;49363:56;49451:16;:::i;:::-;49430:37;49135:377;-1:-1:-1;;;;49135:377:0:o;36517:295::-;36648:4;24749:10;36706:38;36722:4;24749:10;36737:6;36706:15;:38::i;:::-;36755:27;36765:4;36771:2;36775:6;36755:9;:27::i;:::-;-1:-1:-1;36800:4:0;;36517:295;-1:-1:-1;;;;36517:295:0:o;45398:35::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45398:35:0;;-1:-1:-1;45398:35:0;:::o;48391:305::-;48441:7;;;48505:160;48538:10;48528:21;;;;:9;:21;;;;;:30;;:28;:30::i;:::-;48524:1;:34;48505:160;;;48635:10;48625:21;;;;:9;:21;;;;;48607:46;;48625:27;;48650:1;48625:24;:27::i;:::-;48607:17;:46::i;:::-;48598:55;;:6;:55;:::i;:::-;48589:64;-1:-1:-1;48560:3:0;;;;:::i;:::-;;;;48505:160;;;-1:-1:-1;48682:6:0;48391:305;-1:-1:-1;48391:305:0:o;45886:123::-;26071:6;;-1:-1:-1;;;;;26071:6:0;24749:10;26218:23;26210:68;;;;-1:-1:-1;;;26210:68:0;;;;;;;:::i;:::-;45958:43:::1;45964:10;45977:22;:11:::0;45991:8:::1;45977:22;:::i;:::-;45958:5;:43::i;:::-;45886:123:::0;:::o;37221:238::-;37309:4;24749:10;37365:64;24749:10;37381:7;37418:10;37390:25;24749:10;37381:7;37390:9;:25::i;:::-;:38;;;;:::i;:::-;37365:8;:64::i;45127:161::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45127:161:0;:::o;45295:47::-;;;;;;;;;;;;48040:343;48087:14;48120:9;48116:224;48149:10;48139:21;;;;:9;:21;;;;;:30;;:28;:30::i;:::-;48135:1;:34;48116:224;;;48238:10;48228:21;;;;:9;:21;;;;;48210:46;;48228:27;;48253:1;48228:24;:27::i;48210:46::-;48200:56;;;;:::i;:::-;48292:10;48271:39;48282:21;;;:9;:21;;;;;48200:56;;-1:-1:-1;48313:15:0;;48271:10;;:39;48282:27;;48307:1;48282:24;:27::i;:::-;48271:39;;;;;;;;;;;-1:-1:-1;48271:39:0;:57;48171:3;;;;:::i;:::-;;;;48116:224;;;;48350:25;48356:10;48368:6;48350:5;:25::i;45357:34::-;;;;;;;;;;;;52119:395;52262:10;52189:7;52246:27;;;:15;:27;;;;;:45;;52283:7;52246:36;:45::i;:::-;52224:114;;;;-1:-1:-1;;;52224:114:0;;8259:2:1;52224:114:0;;;8241:21:1;8298:2;8278:18;;;8271:30;-1:-1:-1;;;8317:18:1;;;8310:49;8376:18;;52224:114:0;8057:343:1;52224:114:0;52359:16;52396:25;;;:16;:25;;;;;;52378:43;;:15;:43;:::i;51782:329::-;51838:7;;;51902:178;51941:10;51925:27;;;;:15;:27;;;;;:36;;:34;:36::i;:::-;51921:1;:40;51902:178;;;52050:10;52034:27;;;;:15;:27;;;;;52010:58;;52034:33;;52065:1;52034:30;:33::i;:::-;52010:23;:58::i;:::-;52001:67;;:6;:67;:::i;:::-;51992:76;-1:-1:-1;51963:3:0;;;;:::i;:::-;;;;51902:178;;26649:103;26071:6;;-1:-1:-1;;;;;26071:6:0;24749:10;26218:23;26210:68;;;;-1:-1:-1;;;26210:68:0;;;;;;;:::i;:::-;26714:30:::1;26741:1;26714:18;:30::i;:::-;26649:103::o:0;46730:529::-;46808:13;:11;:13::i;:::-;46836:9;46832:420;46847:16;;;46832:420;;;46894:23;;-1:-1:-1;;;;;46894:23:0;:40;46943:4;46950:10;46962:7;;46970:1;46962:10;;;;;;;:::i;:::-;;;;;;;46894:83;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46992:40;47021:7;;47029:1;47021:10;;;;;;;:::i;:::-;47002;46992:21;;;;:9;47021:10;46992:21;;;;;;;;47021:10;;;;;-1:-1:-1;46992:28:0;:40::i;:::-;-1:-1:-1;47097:10:0;47079:29;;;;:17;:29;;;;;;:33;;47111:1;47079:33;:::i;:::-;47065:10;47047:29;;;;:17;:29;;;;;;;;:65;;;;47132:9;:21;;;47172:1;;47132:30;;:28;:30::i;:::-;:37;:41;47129:112;;;47207:18;47214:10;47207:6;:18::i;:::-;46865:3;;;;:::i;:::-;;;;46832:420;;;;46730:529;;:::o;50069:563::-;50148:20;:18;:20::i;:::-;50183:9;50179:446;50194:16;;;50179:446;;;50241:25;;-1:-1:-1;;;;;50241:25:0;:42;50292:4;50299:10;50311:7;;50319:1;50311:10;;;;;;;:::i;:::-;;;;;;;50241:85;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50341:46;50376:7;;50384:1;50376:10;;;;;;;:::i;:::-;50357;50341:27;;;;:15;50376:10;50341:27;;;;;;;;50376:10;;;;;-1:-1:-1;50341:34:0;:46::i;:::-;-1:-1:-1;50464:10:0;50440:35;;;;:23;:35;;;;;;:39;;50478:1;50440:39;:::i;:::-;50426:10;50402:35;;;;:23;:35;;;;;;;;:77;;;;50499:15;:27;;;50545:1;;50499:36;;:34;:36::i;:::-;:43;:47;50496:118;;;50580:18;50587:10;50580:6;:18::i;:::-;50212:3;;;;:::i;:::-;;;;50179:446;;33604:104;33660:13;33693:7;33686:14;;;;;:::i;37962:436::-;38055:4;24749:10;38055:4;38138:25;24749:10;38155:7;38138:9;:25::i;:::-;38111:52;;38202:15;38182:16;:35;;38174:85;;;;-1:-1:-1;;;38174:85:0;;10187:2:1;38174:85:0;;;10169:21:1;10226:2;10206:18;;;10199:30;10265:34;10245:18;;;10238:62;-1:-1:-1;;;10316:18:1;;;10309:35;10361:19;;38174:85:0;9985:401:1;38174:85:0;38295:60;38304:5;38311:7;38339:15;38320:16;:34;38295:8;:60::i;35009:193::-;35088:4;24749:10;35144:28;24749:10;35161:2;35165:6;35144:9;:28::i;46017:705::-;46101:23;;:67;;-1:-1:-1;;;46101:67:0;;46142:10;46101:67;;;3560:34:1;46162:4:0;3610:18:1;;;3603:43;-1:-1:-1;;;;;46101:23:0;;;;:40;;3495:18:1;;46101:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46093:119;;;;-1:-1:-1;;;46093:119:0;;;;;;;:::i;:::-;46237:9;46233:482;46248:16;;;46233:482;;;46295:23;;-1:-1:-1;;;;;46295:23:0;:40;46336:10;46356:4;46363:7;;46371:1;46363:10;;;;;;;:::i;:::-;;;;;;;46295:83;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46399:20;46408:10;46399:8;:20::i;:::-;46395:108;;46453:17;:34;;;;;;;-1:-1:-1;46453:34:0;;;;;;;;-1:-1:-1;;;;;;46453:34:0;46476:10;46453:34;;;46395:108;46531:37;46557:7;;46565:1;46557:10;;;;;;;:::i;:::-;46541;46531:21;;;;:9;46557:10;46531:21;;;;;;;;46557:10;;;;;-1:-1:-1;46531:25:0;:37::i;:::-;-1:-1:-1;46633:10:0;46615:29;;;;:17;:29;;;;;;:33;;46647:1;46615:33;:::i;:::-;46601:10;46583:29;;;;:17;:29;;;;;:65;;;;46688:15;;46663:10;;46674:7;;46682:1;46674:10;;;;;;;:::i;:::-;;;;;;;46663:22;;;;;;;;;;;:40;;;;46266:3;;;;;:::i;:::-;;;;46233:482;;50640:741;50725:25;;:69;;-1:-1:-1;;;50725:69:0;;50768:10;50725:69;;;3560:34:1;50788:4:0;3610:18:1;;;3603:43;-1:-1:-1;;;;;50725:25:0;;;;:42;;3495:18:1;;50725:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50717:121;;;;-1:-1:-1;;;50717:121:0;;;;;;;:::i;:::-;50863:9;50859:515;50874:16;;;50859:515;;;50921:25;;-1:-1:-1;;;;;50921:25:0;:42;50964:10;50984:4;50991:7;;50999:1;50991:10;;;;;;;:::i;:::-;;;;;;;50921:85;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51027:26;51042:10;51027:14;:26::i;:::-;51023:115;;51087:18;:35;;;;;;;-1:-1:-1;51087:35:0;;;;;;;;-1:-1:-1;;;;;;51087:35:0;51111:10;51087:35;;;51023:115;51166:43;51198:7;;51206:1;51198:10;;;;;;;:::i;:::-;51182;51166:27;;;;:15;51198:10;51166:27;;;;;;;;51198:10;;;;;-1:-1:-1;51166:31:0;:43::i;:::-;-1:-1:-1;51286:10:0;51262:35;;;;:23;:35;;;;;;:39;;51300:1;51262:39;:::i;:::-;51248:10;51224:35;;;;:23;:35;;;;;:77;;;;51347:15;;51316:16;;51333:7;;51341:1;51333:10;;;;;;;:::i;:::-;;;;;;;51316:28;;;;;;;;;;;:46;;;;50892:3;;;;;:::i;:::-;;;;50859:515;;35265:151;-1:-1:-1;;;;;35381:18:0;;;35354:7;35381:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;35265:151::o;51389:385::-;51443:14;51476:9;51472:257;51511:10;51495:27;;;;:15;:27;;;;;:36;;:34;:36::i;:::-;51491:1;:40;51472:257;;;51612:10;51596:27;;;;:15;:27;;;;;51572:58;;51596:33;;51627:1;51596:30;:33::i;51572:58::-;51562:68;;;;:::i;:::-;51681:10;51648:51;51665:27;;;:15;:27;;;;;51562:68;;-1:-1:-1;51702:15:0;;51648:16;;:51;51665:33;;51696:1;51665:30;:33::i;:::-;51648:51;;;;;;;;;;;-1:-1:-1;51648:51:0;:69;51533:3;;;;:::i;:::-;;;;51472:257;;26907:201;26071:6;;-1:-1:-1;;;;;26071:6:0;24749:10;26218:23;26210:68;;;;-1:-1:-1;;;26210:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26996:22:0;::::1;26988:73;;;::::0;-1:-1:-1;;;26988:73:0;;6684:2:1;26988:73:0::1;::::0;::::1;6666:21:1::0;6723:2;6703:18;;;6696:30;6762:34;6742:18;;;6735:62;-1:-1:-1;;;6813:18:1;;;6806:36;6859:19;;26988:73:0::1;6482:402:1::0;26988:73:0::1;27072:28;27091:8;27072:18;:28::i;49520:130::-:0;49622:10;49612:21;;;;:9;:21;;;;;49571:16;;49612:30;;:28;:30::i;41596:380::-;-1:-1:-1;;;;;41732:19:0;;41724:68;;;;-1:-1:-1;;;41724:68:0;;9782:2:1;41724:68:0;;;9764:21:1;9821:2;9801:18;;;9794:30;9860:34;9840:18;;;9833:62;-1:-1:-1;;;9911:18:1;;;9904:34;9955:19;;41724:68:0;9580:400:1;41724:68:0;-1:-1:-1;;;;;41811:21:0;;41803:68;;;;-1:-1:-1;;;41803:68:0;;7091:2:1;41803:68:0;;;7073:21:1;7130:2;7110:18;;;7103:30;7169:34;7149:18;;;7142:62;-1:-1:-1;;;7220:18:1;;;7213:32;7262:19;;41803:68:0;6889:398:1;41803:68:0;-1:-1:-1;;;;;41884:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;41936:32;;10897:25:1;;;41936:32:0;;10870:18:1;41936:32:0;;;;;;;41596:380;;;:::o;18245:263::-;18305:16;18334:22;18359:19;18367:3;18359:7;:19::i;:::-;18334:44;18245:263;-1:-1:-1;;;18245:263:0:o;16858:146::-;16935:4;9918:19;;;:12;;;:19;;;;;;:24;;16959:37;9821:129;42267:453;42402:24;42429:25;42439:5;42446:7;42429:9;:25::i;:::-;42402:52;;-1:-1:-1;;42469:16:0;:37;42465:248;;42551:6;42531:16;:26;;42523:68;;;;-1:-1:-1;;;42523:68:0;;7494:2:1;42523:68:0;;;7476:21:1;7533:2;7513:18;;;7506:30;7572:31;7552:18;;;7545:59;7621:18;;42523:68:0;7292:353:1;42523:68:0;42635:51;42644:5;42651:7;42679:6;42660:16;:25;42635:8;:51::i;:::-;42391:329;42267:453;;;:::o;38877:671::-;-1:-1:-1;;;;;39008:18:0;;39000:68;;;;-1:-1:-1;;;39000:68:0;;9376:2:1;39000:68:0;;;9358:21:1;9415:2;9395:18;;;9388:30;9454:34;9434:18;;;9427:62;-1:-1:-1;;;9505:18:1;;;9498:35;9550:19;;39000:68:0;9174:401:1;39000:68:0;-1:-1:-1;;;;;39087:16:0;;39079:64;;;;-1:-1:-1;;;39079:64:0;;6280:2:1;39079:64:0;;;6262:21:1;6319:2;6299:18;;;6292:30;6358:34;6338:18;;;6331:62;-1:-1:-1;;;6409:18:1;;;6402:33;6452:19;;39079:64:0;6078:399:1;39079:64:0;-1:-1:-1;;;;;39229:15:0;;39207:19;39229:15;;;;;;;;;;;39263:21;;;;39255:72;;;;-1:-1:-1;;;39255:72:0;;7852:2:1;39255:72:0;;;7834:21:1;7891:2;7871:18;;;7864:30;7930:34;7910:18;;;7903:62;-1:-1:-1;;;7981:18:1;;;7974:36;8027:19;;39255:72:0;7650:402:1;39255:72:0;-1:-1:-1;;;;;39363:15:0;;;:9;:15;;;;;;;;;;;39381:20;;;39363:38;;39423:13;;;;;;;;:23;;39395:6;;39363:9;39423:23;;39395:6;;39423:23;:::i;:::-;;;;;;;;39479:2;-1:-1:-1;;;;;39464:26:0;39473:4;-1:-1:-1;;;;;39464:26:0;;39483:6;39464:26;;;;10897:25:1;;10885:2;10870:18;;10751:177;39464:26:0;;;;;;;;39503:37;46730:529;17090:114;17150:7;17177:19;17185:3;10119:18;;10036:109;17558:137;17629:7;17664:22;17668:3;17680:5;17664:3;:22::i;48704:423::-;48770:7;;44940:8;48843:26;48861:7;48843:17;:26::i;:::-;:37;;;;:::i;:::-;48834:46;;48897:9;48893:203;48912:9;:16;48910:18;;48893:203;;;48973:9;48983:1;48973:12;;;;;;;;:::i;:::-;;;;;;;;;48962:7;:23;48959:123;;;44992:8;49028:26;49046:7;49028:17;:26::i;:::-;:38;;;;:::i;:::-;49019:47;;48959:123;48930:3;;;;:::i;:::-;;;;48893:203;;;-1:-1:-1;49113:6:0;48704:423;-1:-1:-1;;48704:423:0:o;39835:399::-;-1:-1:-1;;;;;39919:21:0;;39911:65;;;;-1:-1:-1;;;39911:65:0;;10593:2:1;39911:65:0;;;10575:21:1;10632:2;10612:18;;;10605:30;10671:33;10651:18;;;10644:61;10722:18;;39911:65:0;10391:355:1;39911:65:0;40067:6;40051:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;40084:18:0;;:9;:18;;;;;;;;;;:28;;40106:6;;40084:9;:28;;40106:6;;40084:28;:::i;:::-;;;;-1:-1:-1;;40128:37:0;;10897:25:1;;;-1:-1:-1;;;;;40128:37:0;;;40145:1;;40128:37;;10885:2:1;10870:18;40128:37:0;;;;;;;40178:48;39835:399;;:::o;52672:554::-;52744:7;52769:14;45049:7;52786:32;52810:7;52786:23;:32::i;:::-;:46;;;;:::i;:::-;52769:63;;52857:9;52853:195;52871:2;:9;52869:11;;52853:195;;;52922:7;52913:2;52916:1;52913:5;;;;;;;;:::i;:::-;;;;;;;;;:16;52910:127;;;45104:8;52972:32;52996:7;52972:23;:32::i;:::-;:49;;;;:::i;:::-;52963:58;;52910:127;52881:3;;;;:::i;:::-;;;;52853:195;;;;53074:5;53063:7;:16;53060:115;;45104:8;53114:32;53138:7;53114:23;:32::i;:::-;:49;;;;:::i;27268:191::-;27361:6;;;-1:-1:-1;;;;;27378:17:0;;;-1:-1:-1;;;;;;27378:17:0;;;;;;;27411:40;;27361:6;;;27378:17;27361:6;;27411:40;;27342:16;;27411:40;27331:128;27268:191;:::o;16635:137::-;16705:4;16729:35;16737:3;16757:5;16729:7;:35::i;47640:390::-;47697:16;47704:9;;47697:16;:::i;:::-;47739:9;47734:200;47756:17;:24;47754:26;;47734:200;;;47828:9;-1:-1:-1;;;;;47804:33:0;:17;47822:1;47804:20;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;47804:20:0;:33;47801:122;;47871:9;47886:17;47904:1;47886:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;47871:36;;47886:20;47871:36;;;;;;;;;;;;;;-1:-1:-1;;;;;;47871:36:0;-1:-1:-1;;;;;47886:20:0;;;47871:36;;;;;;47801:122;47782:3;;;;:::i;:::-;;;;47734:200;;;-1:-1:-1;47946:24:0;47953:17;;47946:24;:::i;:::-;48003:9;47983:29;;;;:17;;:29;:::i;47267:361::-;47326:4;;;47400:179;47419:17;:24;47415:28;;47400:179;;;47482:17;47500:1;47482:20;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;47469:33:0;;;47482:20;;47469:33;47465:103;;;47548:4;47523:29;;47465:103;47445:3;;;;:::i;:::-;;;;47400:179;;16328:131;16395:4;16419:32;16424:3;16444:5;16419:4;:32::i;49692:369::-;49757:4;;;49831:181;49850:18;:25;49846:29;;49831:181;;;49914:18;49933:1;49914:21;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;49901:34:0;;;49914:21;;49901:34;49897:104;;;49981:4;49956:29;;49897:104;49877:3;;;;:::i;:::-;;;;49831:181;;11169:111;11225:16;11261:3;:11;;11254:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11169:111;;;:::o;10499:120::-;10566:7;10593:3;:11;;10605:5;10593:18;;;;;;;;:::i;:::-;;;;;;;;;10586:25;;10499:120;;;;:::o;8315:1420::-;8381:4;8520:19;;;:12;;;:19;;;;;;8556:15;;8552:1176;;8931:21;8955:14;8968:1;8955:10;:14;:::i;:::-;9004:18;;8931:38;;-1:-1:-1;8984:17:0;;9004:22;;9025:1;;9004:22;:::i;:::-;8984:42;;9060:13;9047:9;:26;9043:405;;9094:17;9114:3;:11;;9126:9;9114:22;;;;;;;;:::i;:::-;;;;;;;;;9094:42;;9268:9;9239:3;:11;;9251:13;9239:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;9353:23;;;:12;;;:23;;;;;:36;;;9043:405;9529:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;9624:3;:12;;:19;9637:5;9624:19;;;;;;;;;;;9617:26;;;9667:4;9660:11;;;;;;;8552:1176;9711:5;9704:12;;;;;7725:414;7788:4;9918:19;;;:12;;;:19;;;;;;7805:327;;-1:-1:-1;7848:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;8031:18;;8009:19;;;:12;;;:19;;;;;;:40;;;;8064:11;;7805:327;-1:-1:-1;8115:5:0;8108:12;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:808::-;1078:6;1086;1094;1102;1110;1163:3;1151:9;1142:7;1138:23;1134:33;1131:53;;;1180:1;1177;1170:12;1131:53;1203:29;1222:9;1203:29;:::i;:::-;1193:39;;1251:38;1285:2;1274:9;1270:18;1251:38;:::i;:::-;1241:48;;1336:2;1325:9;1321:18;1308:32;1298:42;;1391:2;1380:9;1376:18;1363:32;1414:18;1455:2;1447:6;1444:14;1441:34;;;1471:1;1468;1461:12;1441:34;1509:6;1498:9;1494:22;1484:32;;1554:7;1547:4;1543:2;1539:13;1535:27;1525:55;;1576:1;1573;1566:12;1525:55;1616:2;1603:16;1642:2;1634:6;1631:14;1628:34;;;1658:1;1655;1648:12;1628:34;1703:7;1698:2;1689:6;1685:2;1681:15;1677:24;1674:37;1671:57;;;1724:1;1721;1714:12;1671:57;981:808;;;;-1:-1:-1;981:808:1;;-1:-1:-1;1755:2:1;1747:11;;1777:6;981:808;-1:-1:-1;;;981:808:1:o;1794:254::-;1862:6;1870;1923:2;1911:9;1902:7;1898:23;1894:32;1891:52;;;1939:1;1936;1929:12;1891:52;1962:29;1981:9;1962:29;:::i;:::-;1952:39;2038:2;2023:18;;;;2010:32;;-1:-1:-1;;;1794:254:1:o;2053:615::-;2139:6;2147;2200:2;2188:9;2179:7;2175:23;2171:32;2168:52;;;2216:1;2213;2206:12;2168:52;2256:9;2243:23;2285:18;2326:2;2318:6;2315:14;2312:34;;;2342:1;2339;2332:12;2312:34;2380:6;2369:9;2365:22;2355:32;;2425:7;2418:4;2414:2;2410:13;2406:27;2396:55;;2447:1;2444;2437:12;2396:55;2487:2;2474:16;2513:2;2505:6;2502:14;2499:34;;;2529:1;2526;2519:12;2499:34;2582:7;2577:2;2567:6;2564:1;2560:14;2556:2;2552:23;2548:32;2545:45;2542:65;;;2603:1;2600;2593:12;2542:65;2634:2;2626:11;;;;;2656:6;;-1:-1:-1;2053:615:1;;-1:-1:-1;;;;2053:615:1:o;2673:277::-;2740:6;2793:2;2781:9;2772:7;2768:23;2764:32;2761:52;;;2809:1;2806;2799:12;2761:52;2841:9;2835:16;2894:5;2887:13;2880:21;2873:5;2870:32;2860:60;;2916:1;2913;2906:12;2955:180;3014:6;3067:2;3055:9;3046:7;3042:23;3038:32;3035:52;;;3083:1;3080;3073:12;3035:52;-1:-1:-1;3106:23:1;;2955:180;-1:-1:-1;2955:180:1:o;3657:555::-;-1:-1:-1;;;;;3980:15:1;;;3962:34;;4032:15;;;;4027:2;4012:18;;4005:43;4079:2;4064:18;;4057:34;;;;4127:3;4122:2;4107:18;;4100:31;;;3905:4;4147:19;;;4140:30;3942:3;4187:19;;3657:555::o;4217:632::-;4388:2;4440:21;;;4510:13;;4413:18;;;4532:22;;;4359:4;;4388:2;4611:15;;;;4585:2;4570:18;;;4359:4;4654:169;4668:6;4665:1;4662:13;4654:169;;;4729:13;;4717:26;;4798:15;;;;4763:12;;;;4690:1;4683:9;4654:169;;;-1:-1:-1;4840:3:1;;4217:632;-1:-1:-1;;;;;;4217:632:1:o;5476:597::-;5588:4;5617:2;5646;5635:9;5628:21;5678:6;5672:13;5721:6;5716:2;5705:9;5701:18;5694:34;5746:1;5756:140;5770:6;5767:1;5764:13;5756:140;;;5865:14;;;5861:23;;5855:30;5831:17;;;5850:2;5827:26;5820:66;5785:10;;5756:140;;;5914:6;5911:1;5908:13;5905:91;;;5984:1;5979:2;5970:6;5959:9;5955:22;5951:31;5944:42;5905:91;-1:-1:-1;6057:2:1;6036:15;-1:-1:-1;;6032:29:1;6017:45;;;;6064:2;6013:54;;5476:597;-1:-1:-1;;;5476:597:1:o;8405:403::-;8607:2;8589:21;;;8646:2;8626:18;;;8619:30;8685:34;8680:2;8665:18;;8658:62;-1:-1:-1;;;8751:2:1;8736:18;;8729:37;8798:3;8783:19;;8405:403::o;8813:356::-;9015:2;8997:21;;;9034:18;;;9027:30;9093:34;9088:2;9073:18;;9066:62;9160:2;9145:18;;8813:356::o;11122:128::-;11162:3;11193:1;11189:6;11186:1;11183:13;11180:39;;;11199:18;;:::i;:::-;-1:-1:-1;11235:9:1;;11122:128::o;11255:217::-;11295:1;11321;11311:132;;11365:10;11360:3;11356:20;11353:1;11346:31;11400:4;11397:1;11390:15;11428:4;11425:1;11418:15;11311:132;-1:-1:-1;11457:9:1;;11255:217::o;11477:168::-;11517:7;11583:1;11579;11575:6;11571:14;11568:1;11565:21;11560:1;11553:9;11546:17;11542:45;11539:71;;;11590:18;;:::i;:::-;-1:-1:-1;11630:9:1;;11477:168::o;11650:125::-;11690:4;11718:1;11715;11712:8;11709:34;;;11723:18;;:::i;:::-;-1:-1:-1;11760:9:1;;11650:125::o;11780:380::-;11859:1;11855:12;;;;11902;;;11923:61;;11977:4;11969:6;11965:17;11955:27;;11923:61;12030:2;12022:6;12019:14;11999:18;11996:38;11993:161;;;12076:10;12071:3;12067:20;12064:1;12057:31;12111:4;12108:1;12101:15;12139:4;12136:1;12129:15;12165:135;12204:3;-1:-1:-1;;12225:17:1;;12222:43;;;12245:18;;:::i;:::-;-1:-1:-1;12292:1:1;12281:13;;12165:135::o;12305:127::-;12366:10;12361:3;12357:20;12354:1;12347:31;12397:4;12394:1;12387:15;12421:4;12418:1;12411:15;12437:127;12498:10;12493:3;12489:20;12486:1;12479:31;12529:4;12526:1;12519:15;12553:4;12550:1;12543:15;12569:127;12630:10;12625:3;12621:20;12618:1;12611:31;12661:4;12658:1;12651:15;12685:4;12682:1;12675:15

Swarm Source

ipfs://187e2847d80582857c992895d2b1037596c6a48eaeaca3c7e0db817ba09a13ba
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.