More Info
Private Name Tags
ContractCreator
Latest 11 from a total of 11 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 6022537 | 119 days ago | IN | 0 APE | 0.00272021 | ||||
Claim Rewards | 6022512 | 119 days ago | IN | 0 APE | 0.00145164 | ||||
Claim Rewards | 4265035 | 137 days ago | IN | 0 APE | 0.00188634 | ||||
Deposit | 4227950 | 138 days ago | IN | 0 APE | 0.0035158 | ||||
Withdraw | 4227334 | 138 days ago | IN | 0 APE | 0.00272019 | ||||
Deposit | 4227308 | 138 days ago | IN | 0 APE | 0.00457338 | ||||
Deposit | 4203941 | 138 days ago | IN | 0 APE | 0.00426317 | ||||
Withdraw | 4129132 | 139 days ago | IN | 0 APE | 0.0025985 | ||||
Deposit | 4011834 | 141 days ago | IN | 0 APE | 0.0042635 | ||||
Unpause | 4011822 | 141 days ago | IN | 0 APE | 0.00064276 | ||||
Deposit | 4011675 | 141 days ago | IN | 0 APE | 0.00062468 |
Loading...
Loading
Contract Name:
CatStax
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at apescan.io on 2024-11-03 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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); } } // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. 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. * * ```solidity * 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. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ 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) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // 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; /// @solidity memory-safe-assembly 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 in 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; /// @solidity memory-safe-assembly assembly { result := store } return result; } } // OpenZeppelin Contracts (last updated v4.9.0) (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() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } } // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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); } pragma solidity ^0.8.0; contract CatStax is Ownable, IERC721Receiver, ReentrancyGuard, Pausable { using EnumerableSet for EnumerableSet.UintSet; //addresses address nullAddress = 0x0000000000000000000000000000000000000000; address public catsAddress; address public fatcatAddress; //uint256's uint256 public expiration; //rate governs how often you receive your token uint256 public rate; // mappings mapping(address => EnumerableSet.UintSet) private _deposits; mapping(address => mapping(uint256 => uint256)) public _depositBlocks; constructor( address _catsAddress, uint256 _rate, uint256 _expiration, address _fatcatAddress ) { catsAddress = _catsAddress; rate = _rate; expiration = block.number + _expiration; fatcatAddress = _fatcatAddress; _pause(); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } /* FATCAT MECHANICS */ // Set a multiplier for how many tokens to earn each time a block passes. function setRate(uint256 _rate) public onlyOwner() { rate = _rate; } // Set this to a block to disable the ability to continue accruing tokens past that block number. function setExpiration(uint256 _expiration) public onlyOwner() { expiration = block.number + _expiration; } //check deposit amount. function depositsOf(address account) external view returns (uint256[] memory) { EnumerableSet.UintSet storage depositSet = _deposits[account]; uint256[] memory tokenIds = new uint256[] (depositSet.length()); for (uint256 i; i < depositSet.length(); i++) { tokenIds[i] = depositSet.at(i); } return tokenIds; } function calculateRewards(address account, uint256[] memory tokenIds) public view returns (uint256[] memory rewards) { rewards = new uint256[](tokenIds.length); for (uint256 i; i < tokenIds.length; i++) { uint256 tokenId = tokenIds[i]; rewards[i] = rate * (_deposits[account].contains(tokenId) ? 1 : 0) * (Math.min(block.number, expiration) - _depositBlocks[account][tokenId]); } return rewards; } //reward amount by address/tokenIds[] function calculateReward(address account, uint256 tokenId) public view returns (uint256) { require(Math.min(block.number, expiration) > _depositBlocks[account][tokenId], "Invalid blocks"); return rate * (_deposits[account].contains(tokenId) ? 1 : 0) * (Math.min(block.number, expiration) - _depositBlocks[account][tokenId]); } //reward claim function function claimRewards(uint256[] calldata tokenIds) public whenNotPaused { uint256 reward; uint256 blockCur = Math.min(block.number, expiration); for (uint256 i; i < tokenIds.length; i++) { reward += calculateReward(msg.sender, tokenIds[i]); _depositBlocks[msg.sender][tokenIds[i]] = blockCur; } if (reward > 0) { IERC20(fatcatAddress).transfer(msg.sender, reward); } } //deposit function. function deposit(uint256[] calldata tokenIds) external whenNotPaused { require(msg.sender != catsAddress, "Invalid address"); claimRewards(tokenIds); for (uint256 i; i < tokenIds.length; i++) { IERC721(catsAddress).safeTransferFrom( msg.sender, address(this), tokenIds[i], "" ); _deposits[msg.sender].add(tokenIds[i]); } } //withdrawal function. function withdraw(uint256[] calldata tokenIds) external whenNotPaused nonReentrant() { claimRewards(tokenIds); for (uint256 i; i < tokenIds.length; i++) { require( _deposits[msg.sender].contains(tokenIds[i]), "Fat Cats token not deposited" ); _deposits[msg.sender].remove(tokenIds[i]); IERC721(catsAddress).safeTransferFrom( address(this), msg.sender, tokenIds[i], "" ); } } //withdrawal function. function withdrawTokens() external onlyOwner { uint256 tokenSupply = IERC20(fatcatAddress).balanceOf(address(this)); IERC20(fatcatAddress).transfer(msg.sender, tokenSupply); } function onERC721Received( address, address, uint256, bytes calldata ) external pure override returns (bytes4) { return IERC721Receiver.onERC721Received.selector; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_catsAddress","type":"address"},{"internalType":"uint256","name":"_rate","type":"uint256"},{"internalType":"uint256","name":"_expiration","type":"uint256"},{"internalType":"address","name":"_fatcatAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"_depositBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"calculateReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"calculateRewards","outputs":[{"internalType":"uint256[]","name":"rewards","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"catsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"depositsOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"expiration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fatcatAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_expiration","type":"uint256"}],"name":"setExpiration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rate","type":"uint256"}],"name":"setRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600260016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200005357600080fd5b50604051620027df380380620027df8339818101604052810190620000799190620003c4565b620000996200008d6200017260201b60201c565b6200017a60201b60201c565b600180819055506000600260006101000a81548160ff02191690831515021790555083600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600681905550814362000111919062000465565b60058190555080600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001686200023e60201b60201c565b5050505062000551565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200024e620002b360201b60201c565b6001600260006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200029a6200017260201b60201c565b604051620002a99190620004b1565b60405180910390a1565b620002c36200030860201b60201c565b1562000306576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002fd906200052f565b60405180910390fd5b565b6000600260009054906101000a900460ff16905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620003518262000324565b9050919050565b620003638162000344565b81146200036f57600080fd5b50565b600081519050620003838162000358565b92915050565b6000819050919050565b6200039e8162000389565b8114620003aa57600080fd5b50565b600081519050620003be8162000393565b92915050565b60008060008060808587031215620003e157620003e06200031f565b5b6000620003f18782880162000372565b94505060206200040487828801620003ad565b93505060406200041787828801620003ad565b92505060606200042a8782880162000372565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620004728262000389565b91506200047f8362000389565b92508282019050808211156200049a576200049962000436565b5b92915050565b620004ab8162000344565b82525050565b6000602082019050620004c86000830184620004a0565b92915050565b600082825260208201905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000517601083620004ce565b91506200052482620004df565b602082019050919050565b600060208201905081810360008301526200054a8162000508565b9050919050565b61227e80620005616000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80635eac6239116100b85780638da5cb5b1161007c5780638da5cb5b146102dc578063983d95ce146102fa578063b343ae1414610316578063c21f95cb14610346578063e3a9db1a14610364578063f2fde38b1461039457610137565b80635eac6239146102845780636dff2f63146102a0578063715018a6146102be5780638456cb59146102c85780638d8f2adb146102d257610137565b80633f4ba83a116100ff5780633f4ba83a146102065780634665096d14610210578063515a20ba1461022e578063598b8e711461024a5780635c975abb1461026657610137565b8063068c526f1461013c578063150b7a021461016c5780631852e8d91461019c5780632c4e722e146101cc57806334fcf437146101ea575b600080fd5b610156600480360381019061015191906117b1565b6103b0565b60405161016391906118cb565b60405180910390f35b61018660048036038101906101819190611948565b610543565b6040516101939190611a0b565b60405180910390f35b6101b660048036038101906101b19190611a26565b610558565b6040516101c39190611a75565b60405180910390f35b6101d46106df565b6040516101e19190611a75565b60405180910390f35b61020460048036038101906101ff9190611a90565b6106e5565b005b61020e6106f7565b005b610218610709565b6040516102259190611a75565b60405180910390f35b61024860048036038101906102439190611a90565b61070f565b005b610264600480360381019061025f9190611b13565b61072c565b005b61026e610909565b60405161027b9190611b7b565b60405180910390f35b61029e60048036038101906102999190611b13565b610920565b005b6102a8610aaa565b6040516102b59190611ba5565b60405180910390f35b6102c6610ad0565b005b6102d0610ae4565b005b6102da610af6565b005b6102e4610c42565b6040516102f19190611ba5565b60405180910390f35b610314600480360381019061030f9190611b13565b610c6b565b005b610330600480360381019061032b9190611a26565b610e71565b60405161033d9190611a75565b60405180910390f35b61034e610e96565b60405161035b9190611ba5565b60405180910390f35b61037e60048036038101906103799190611bc0565b610ebc565b60405161038b91906118cb565b60405180910390f35b6103ae60048036038101906103a99190611bc0565b610fb9565b005b6060815167ffffffffffffffff8111156103cd576103cc611638565b5b6040519080825280602002602001820160405280156103fb5781602001602082028036833780820191505090505b50905060005b825181101561053c57600083828151811061041f5761041e611bed565b5b60200260200101519050600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828152602001908152602001600020546104864360055461103c565b6104909190611c4b565b6104e182600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061105590919063ffffffff16565b6104ec5760006104ef565b60015b60ff166006546104ff9190611c7f565b6105099190611c7f565b83838151811061051c5761051b611bed565b5b60200260200101818152505050808061053490611cc1565b915050610401565b5092915050565b600063150b7a0260e01b905095945050505050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000838152602001908152602001600020546105b74360055461103c565b116105f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ee90611d66565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000838152602001908152602001600020546106544360055461103c565b61065e9190611c4b565b6106af83600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061105590919063ffffffff16565b6106ba5760006106bd565b60015b60ff166006546106cd9190611c7f565b6106d79190611c7f565b905092915050565b60065481565b6106ed61106f565b8060068190555050565b6106ff61106f565b6107076110ed565b565b60055481565b61071761106f565b80436107239190611d86565b60058190555050565b610734611150565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16036107c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bb90611e06565b60405180910390fd5b6107ce8282610920565b60005b8282905081101561090457600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b88d4fde333086868681811061082f5761082e611bed565b5b905060200201356040518463ffffffff1660e01b815260040161085493929190611e5d565b600060405180830381600087803b15801561086e57600080fd5b505af1158015610882573d6000803e3d6000fd5b505050506108f083838381811061089c5761089b611bed565b5b90506020020135600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061119a90919063ffffffff16565b5080806108fc90611cc1565b9150506107d1565b505050565b6000600260009054906101000a900460ff16905090565b610928611150565b6000806109374360055461103c565b905060005b848490508110156109f85761096a3386868481811061095e5761095d611bed565b5b90506020020135610558565b836109759190611d86565b925081600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008787858181106109cc576109cb611bed565b5b9050602002013581526020019081526020016000208190555080806109f090611cc1565b91505061093c565b506000821115610aa457600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401610a5f929190611ea7565b6020604051808303816000875af1158015610a7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa29190611efc565b505b50505050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ad861106f565b610ae260006111b4565b565b610aec61106f565b610af4611278565b565b610afe61106f565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b5b9190611ba5565b602060405180830381865afa158015610b78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9c9190611f3e565b9050600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610bfb929190611ea7565b6020604051808303816000875af1158015610c1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c3e9190611efc565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c73611150565b610c7b6112db565b610c858282610920565b60005b82829050811015610e6457610cfd838383818110610ca957610ca8611bed565b5b90506020020135600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061105590919063ffffffff16565b610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390611fb7565b60405180910390fd5b610da6838383818110610d5257610d51611bed565b5b90506020020135600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061132a90919063ffffffff16565b50600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b88d4fde3033868686818110610dfa57610df9611bed565b5b905060200201356040518463ffffffff1660e01b8152600401610e1f93929190611e5d565b600060405180830381600087803b158015610e3957600080fd5b505af1158015610e4d573d6000803e3d6000fd5b505050508080610e5c90611cc1565b915050610c88565b50610e6d611344565b5050565b6008602052816000526040600020602052806000526040600020600091509150505481565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000610f0c8261134d565b67ffffffffffffffff811115610f2557610f24611638565b5b604051908082528060200260200182016040528015610f535781602001602082028036833780820191505090505b50905060005b610f628361134d565b811015610fae57610f7c818461136290919063ffffffff16565b828281518110610f8f57610f8e611bed565b5b6020026020010181815250508080610fa690611cc1565b915050610f59565b508092505050919050565b610fc161106f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102790612049565b60405180910390fd5b611039816111b4565b50565b600081831061104b578161104d565b825b905092915050565b6000611067836000018360001b61137c565b905092915050565b61107761139f565b73ffffffffffffffffffffffffffffffffffffffff16611095610c42565b73ffffffffffffffffffffffffffffffffffffffff16146110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e2906120b5565b60405180910390fd5b565b6110f56113a7565b6000600260006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61113961139f565b6040516111469190611ba5565b60405180910390a1565b611158610909565b15611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f90612121565b60405180910390fd5b565b60006111ac836000018360001b6113f0565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611280611150565b6001600260006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586112c461139f565b6040516112d19190611ba5565b60405180910390a1565b600260015403611320576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113179061218d565b60405180910390fd5b6002600181905550565b600061133c836000018360001b611460565b905092915050565b60018081905550565b600061135b82600001611574565b9050919050565b60006113718360000183611585565b60001c905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600033905090565b6113af610909565b6113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e5906121f9565b60405180910390fd5b565b60006113fc838361137c565b61145557826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061145a565b600090505b92915050565b600080836001016000848152602001908152602001600020549050600081146115685760006001826114929190611c4b565b90506000600186600001805490506114aa9190611c4b565b90508181146115195760008660000182815481106114cb576114ca611bed565b5b90600052602060002001549050808760000184815481106114ef576114ee611bed565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b8560000180548061152d5761152c612219565b5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061156e565b60009150505b92915050565b600081600001805490509050919050565b600082600001828154811061159d5761159c611bed565b5b9060005260206000200154905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115ef826115c4565b9050919050565b6115ff816115e4565b811461160a57600080fd5b50565b60008135905061161c816115f6565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61167082611627565b810181811067ffffffffffffffff8211171561168f5761168e611638565b5b80604052505050565b60006116a26115b0565b90506116ae8282611667565b919050565b600067ffffffffffffffff8211156116ce576116cd611638565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b6116f7816116e4565b811461170257600080fd5b50565b600081359050611714816116ee565b92915050565b600061172d611728846116b3565b611698565b905080838252602082019050602084028301858111156117505761174f6116df565b5b835b8181101561177957806117658882611705565b845260208401935050602081019050611752565b5050509392505050565b600082601f83011261179857611797611622565b5b81356117a884826020860161171a565b91505092915050565b600080604083850312156117c8576117c76115ba565b5b60006117d68582860161160d565b925050602083013567ffffffffffffffff8111156117f7576117f66115bf565b5b61180385828601611783565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b611842816116e4565b82525050565b60006118548383611839565b60208301905092915050565b6000602082019050919050565b60006118788261180d565b6118828185611818565b935061188d83611829565b8060005b838110156118be5781516118a58882611848565b97506118b083611860565b925050600181019050611891565b5085935050505092915050565b600060208201905081810360008301526118e5818461186d565b905092915050565b600080fd5b60008083601f84011261190857611907611622565b5b8235905067ffffffffffffffff811115611925576119246118ed565b5b602083019150836001820283011115611941576119406116df565b5b9250929050565b600080600080600060808688031215611964576119636115ba565b5b60006119728882890161160d565b95505060206119838882890161160d565b945050604061199488828901611705565b935050606086013567ffffffffffffffff8111156119b5576119b46115bf565b5b6119c1888289016118f2565b92509250509295509295909350565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611a05816119d0565b82525050565b6000602082019050611a2060008301846119fc565b92915050565b60008060408385031215611a3d57611a3c6115ba565b5b6000611a4b8582860161160d565b9250506020611a5c85828601611705565b9150509250929050565b611a6f816116e4565b82525050565b6000602082019050611a8a6000830184611a66565b92915050565b600060208284031215611aa657611aa56115ba565b5b6000611ab484828501611705565b91505092915050565b60008083601f840112611ad357611ad2611622565b5b8235905067ffffffffffffffff811115611af057611aef6118ed565b5b602083019150836020820283011115611b0c57611b0b6116df565b5b9250929050565b60008060208385031215611b2a57611b296115ba565b5b600083013567ffffffffffffffff811115611b4857611b476115bf565b5b611b5485828601611abd565b92509250509250929050565b60008115159050919050565b611b7581611b60565b82525050565b6000602082019050611b906000830184611b6c565b92915050565b611b9f816115e4565b82525050565b6000602082019050611bba6000830184611b96565b92915050565b600060208284031215611bd657611bd56115ba565b5b6000611be48482850161160d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c56826116e4565b9150611c61836116e4565b9250828203905081811115611c7957611c78611c1c565b5b92915050565b6000611c8a826116e4565b9150611c95836116e4565b9250828202611ca3816116e4565b91508282048414831517611cba57611cb9611c1c565b5b5092915050565b6000611ccc826116e4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611cfe57611cfd611c1c565b5b600182019050919050565b600082825260208201905092915050565b7f496e76616c696420626c6f636b73000000000000000000000000000000000000600082015250565b6000611d50600e83611d09565b9150611d5b82611d1a565b602082019050919050565b60006020820190508181036000830152611d7f81611d43565b9050919050565b6000611d91826116e4565b9150611d9c836116e4565b9250828201905080821115611db457611db3611c1c565b5b92915050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611df0600f83611d09565b9150611dfb82611dba565b602082019050919050565b60006020820190508181036000830152611e1f81611de3565b9050919050565b600082825260208201905092915050565b50565b6000611e47600083611e26565b9150611e5282611e37565b600082019050919050565b6000608082019050611e726000830186611b96565b611e7f6020830185611b96565b611e8c6040830184611a66565b8181036060830152611e9d81611e3a565b9050949350505050565b6000604082019050611ebc6000830185611b96565b611ec96020830184611a66565b9392505050565b611ed981611b60565b8114611ee457600080fd5b50565b600081519050611ef681611ed0565b92915050565b600060208284031215611f1257611f116115ba565b5b6000611f2084828501611ee7565b91505092915050565b600081519050611f38816116ee565b92915050565b600060208284031215611f5457611f536115ba565b5b6000611f6284828501611f29565b91505092915050565b7f466174204361747320746f6b656e206e6f74206465706f736974656400000000600082015250565b6000611fa1601c83611d09565b9150611fac82611f6b565b602082019050919050565b60006020820190508181036000830152611fd081611f94565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612033602683611d09565b915061203e82611fd7565b604082019050919050565b6000602082019050818103600083015261206281612026565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061209f602083611d09565b91506120aa82612069565b602082019050919050565b600060208201905081810360008301526120ce81612092565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061210b601083611d09565b9150612116826120d5565b602082019050919050565b6000602082019050818103600083015261213a816120fe565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612177601f83611d09565b915061218282612141565b602082019050919050565b600060208201905081810360008301526121a68161216a565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006121e3601483611d09565b91506121ee826121ad565b602082019050919050565b60006020820190508181036000830152612212816121d6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212203a7fa3842563a0864f5437fc24c9711b207a709104e0e67362c82e6147ccc1e464736f6c63430008120033000000000000000000000000e786dcaa674aaa117f66026f078f268a45519176000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000139c24400000000000000000000000004a46bedfe5f2cde97728a52fea176aced6924886
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c80635eac6239116100b85780638da5cb5b1161007c5780638da5cb5b146102dc578063983d95ce146102fa578063b343ae1414610316578063c21f95cb14610346578063e3a9db1a14610364578063f2fde38b1461039457610137565b80635eac6239146102845780636dff2f63146102a0578063715018a6146102be5780638456cb59146102c85780638d8f2adb146102d257610137565b80633f4ba83a116100ff5780633f4ba83a146102065780634665096d14610210578063515a20ba1461022e578063598b8e711461024a5780635c975abb1461026657610137565b8063068c526f1461013c578063150b7a021461016c5780631852e8d91461019c5780632c4e722e146101cc57806334fcf437146101ea575b600080fd5b610156600480360381019061015191906117b1565b6103b0565b60405161016391906118cb565b60405180910390f35b61018660048036038101906101819190611948565b610543565b6040516101939190611a0b565b60405180910390f35b6101b660048036038101906101b19190611a26565b610558565b6040516101c39190611a75565b60405180910390f35b6101d46106df565b6040516101e19190611a75565b60405180910390f35b61020460048036038101906101ff9190611a90565b6106e5565b005b61020e6106f7565b005b610218610709565b6040516102259190611a75565b60405180910390f35b61024860048036038101906102439190611a90565b61070f565b005b610264600480360381019061025f9190611b13565b61072c565b005b61026e610909565b60405161027b9190611b7b565b60405180910390f35b61029e60048036038101906102999190611b13565b610920565b005b6102a8610aaa565b6040516102b59190611ba5565b60405180910390f35b6102c6610ad0565b005b6102d0610ae4565b005b6102da610af6565b005b6102e4610c42565b6040516102f19190611ba5565b60405180910390f35b610314600480360381019061030f9190611b13565b610c6b565b005b610330600480360381019061032b9190611a26565b610e71565b60405161033d9190611a75565b60405180910390f35b61034e610e96565b60405161035b9190611ba5565b60405180910390f35b61037e60048036038101906103799190611bc0565b610ebc565b60405161038b91906118cb565b60405180910390f35b6103ae60048036038101906103a99190611bc0565b610fb9565b005b6060815167ffffffffffffffff8111156103cd576103cc611638565b5b6040519080825280602002602001820160405280156103fb5781602001602082028036833780820191505090505b50905060005b825181101561053c57600083828151811061041f5761041e611bed565b5b60200260200101519050600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828152602001908152602001600020546104864360055461103c565b6104909190611c4b565b6104e182600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061105590919063ffffffff16565b6104ec5760006104ef565b60015b60ff166006546104ff9190611c7f565b6105099190611c7f565b83838151811061051c5761051b611bed565b5b60200260200101818152505050808061053490611cc1565b915050610401565b5092915050565b600063150b7a0260e01b905095945050505050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000838152602001908152602001600020546105b74360055461103c565b116105f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ee90611d66565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000838152602001908152602001600020546106544360055461103c565b61065e9190611c4b565b6106af83600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061105590919063ffffffff16565b6106ba5760006106bd565b60015b60ff166006546106cd9190611c7f565b6106d79190611c7f565b905092915050565b60065481565b6106ed61106f565b8060068190555050565b6106ff61106f565b6107076110ed565b565b60055481565b61071761106f565b80436107239190611d86565b60058190555050565b610734611150565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16036107c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bb90611e06565b60405180910390fd5b6107ce8282610920565b60005b8282905081101561090457600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b88d4fde333086868681811061082f5761082e611bed565b5b905060200201356040518463ffffffff1660e01b815260040161085493929190611e5d565b600060405180830381600087803b15801561086e57600080fd5b505af1158015610882573d6000803e3d6000fd5b505050506108f083838381811061089c5761089b611bed565b5b90506020020135600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061119a90919063ffffffff16565b5080806108fc90611cc1565b9150506107d1565b505050565b6000600260009054906101000a900460ff16905090565b610928611150565b6000806109374360055461103c565b905060005b848490508110156109f85761096a3386868481811061095e5761095d611bed565b5b90506020020135610558565b836109759190611d86565b925081600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008787858181106109cc576109cb611bed565b5b9050602002013581526020019081526020016000208190555080806109f090611cc1565b91505061093c565b506000821115610aa457600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401610a5f929190611ea7565b6020604051808303816000875af1158015610a7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa29190611efc565b505b50505050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ad861106f565b610ae260006111b4565b565b610aec61106f565b610af4611278565b565b610afe61106f565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b5b9190611ba5565b602060405180830381865afa158015610b78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9c9190611f3e565b9050600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610bfb929190611ea7565b6020604051808303816000875af1158015610c1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c3e9190611efc565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c73611150565b610c7b6112db565b610c858282610920565b60005b82829050811015610e6457610cfd838383818110610ca957610ca8611bed565b5b90506020020135600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061105590919063ffffffff16565b610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390611fb7565b60405180910390fd5b610da6838383818110610d5257610d51611bed565b5b90506020020135600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061132a90919063ffffffff16565b50600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b88d4fde3033868686818110610dfa57610df9611bed565b5b905060200201356040518463ffffffff1660e01b8152600401610e1f93929190611e5d565b600060405180830381600087803b158015610e3957600080fd5b505af1158015610e4d573d6000803e3d6000fd5b505050508080610e5c90611cc1565b915050610c88565b50610e6d611344565b5050565b6008602052816000526040600020602052806000526040600020600091509150505481565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000610f0c8261134d565b67ffffffffffffffff811115610f2557610f24611638565b5b604051908082528060200260200182016040528015610f535781602001602082028036833780820191505090505b50905060005b610f628361134d565b811015610fae57610f7c818461136290919063ffffffff16565b828281518110610f8f57610f8e611bed565b5b6020026020010181815250508080610fa690611cc1565b915050610f59565b508092505050919050565b610fc161106f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102790612049565b60405180910390fd5b611039816111b4565b50565b600081831061104b578161104d565b825b905092915050565b6000611067836000018360001b61137c565b905092915050565b61107761139f565b73ffffffffffffffffffffffffffffffffffffffff16611095610c42565b73ffffffffffffffffffffffffffffffffffffffff16146110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e2906120b5565b60405180910390fd5b565b6110f56113a7565b6000600260006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61113961139f565b6040516111469190611ba5565b60405180910390a1565b611158610909565b15611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f90612121565b60405180910390fd5b565b60006111ac836000018360001b6113f0565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611280611150565b6001600260006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586112c461139f565b6040516112d19190611ba5565b60405180910390a1565b600260015403611320576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113179061218d565b60405180910390fd5b6002600181905550565b600061133c836000018360001b611460565b905092915050565b60018081905550565b600061135b82600001611574565b9050919050565b60006113718360000183611585565b60001c905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600033905090565b6113af610909565b6113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e5906121f9565b60405180910390fd5b565b60006113fc838361137c565b61145557826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061145a565b600090505b92915050565b600080836001016000848152602001908152602001600020549050600081146115685760006001826114929190611c4b565b90506000600186600001805490506114aa9190611c4b565b90508181146115195760008660000182815481106114cb576114ca611bed565b5b90600052602060002001549050808760000184815481106114ef576114ee611bed565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b8560000180548061152d5761152c612219565b5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061156e565b60009150505b92915050565b600081600001805490509050919050565b600082600001828154811061159d5761159c611bed565b5b9060005260206000200154905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115ef826115c4565b9050919050565b6115ff816115e4565b811461160a57600080fd5b50565b60008135905061161c816115f6565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61167082611627565b810181811067ffffffffffffffff8211171561168f5761168e611638565b5b80604052505050565b60006116a26115b0565b90506116ae8282611667565b919050565b600067ffffffffffffffff8211156116ce576116cd611638565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b6116f7816116e4565b811461170257600080fd5b50565b600081359050611714816116ee565b92915050565b600061172d611728846116b3565b611698565b905080838252602082019050602084028301858111156117505761174f6116df565b5b835b8181101561177957806117658882611705565b845260208401935050602081019050611752565b5050509392505050565b600082601f83011261179857611797611622565b5b81356117a884826020860161171a565b91505092915050565b600080604083850312156117c8576117c76115ba565b5b60006117d68582860161160d565b925050602083013567ffffffffffffffff8111156117f7576117f66115bf565b5b61180385828601611783565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b611842816116e4565b82525050565b60006118548383611839565b60208301905092915050565b6000602082019050919050565b60006118788261180d565b6118828185611818565b935061188d83611829565b8060005b838110156118be5781516118a58882611848565b97506118b083611860565b925050600181019050611891565b5085935050505092915050565b600060208201905081810360008301526118e5818461186d565b905092915050565b600080fd5b60008083601f84011261190857611907611622565b5b8235905067ffffffffffffffff811115611925576119246118ed565b5b602083019150836001820283011115611941576119406116df565b5b9250929050565b600080600080600060808688031215611964576119636115ba565b5b60006119728882890161160d565b95505060206119838882890161160d565b945050604061199488828901611705565b935050606086013567ffffffffffffffff8111156119b5576119b46115bf565b5b6119c1888289016118f2565b92509250509295509295909350565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611a05816119d0565b82525050565b6000602082019050611a2060008301846119fc565b92915050565b60008060408385031215611a3d57611a3c6115ba565b5b6000611a4b8582860161160d565b9250506020611a5c85828601611705565b9150509250929050565b611a6f816116e4565b82525050565b6000602082019050611a8a6000830184611a66565b92915050565b600060208284031215611aa657611aa56115ba565b5b6000611ab484828501611705565b91505092915050565b60008083601f840112611ad357611ad2611622565b5b8235905067ffffffffffffffff811115611af057611aef6118ed565b5b602083019150836020820283011115611b0c57611b0b6116df565b5b9250929050565b60008060208385031215611b2a57611b296115ba565b5b600083013567ffffffffffffffff811115611b4857611b476115bf565b5b611b5485828601611abd565b92509250509250929050565b60008115159050919050565b611b7581611b60565b82525050565b6000602082019050611b906000830184611b6c565b92915050565b611b9f816115e4565b82525050565b6000602082019050611bba6000830184611b96565b92915050565b600060208284031215611bd657611bd56115ba565b5b6000611be48482850161160d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c56826116e4565b9150611c61836116e4565b9250828203905081811115611c7957611c78611c1c565b5b92915050565b6000611c8a826116e4565b9150611c95836116e4565b9250828202611ca3816116e4565b91508282048414831517611cba57611cb9611c1c565b5b5092915050565b6000611ccc826116e4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611cfe57611cfd611c1c565b5b600182019050919050565b600082825260208201905092915050565b7f496e76616c696420626c6f636b73000000000000000000000000000000000000600082015250565b6000611d50600e83611d09565b9150611d5b82611d1a565b602082019050919050565b60006020820190508181036000830152611d7f81611d43565b9050919050565b6000611d91826116e4565b9150611d9c836116e4565b9250828201905080821115611db457611db3611c1c565b5b92915050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611df0600f83611d09565b9150611dfb82611dba565b602082019050919050565b60006020820190508181036000830152611e1f81611de3565b9050919050565b600082825260208201905092915050565b50565b6000611e47600083611e26565b9150611e5282611e37565b600082019050919050565b6000608082019050611e726000830186611b96565b611e7f6020830185611b96565b611e8c6040830184611a66565b8181036060830152611e9d81611e3a565b9050949350505050565b6000604082019050611ebc6000830185611b96565b611ec96020830184611a66565b9392505050565b611ed981611b60565b8114611ee457600080fd5b50565b600081519050611ef681611ed0565b92915050565b600060208284031215611f1257611f116115ba565b5b6000611f2084828501611ee7565b91505092915050565b600081519050611f38816116ee565b92915050565b600060208284031215611f5457611f536115ba565b5b6000611f6284828501611f29565b91505092915050565b7f466174204361747320746f6b656e206e6f74206465706f736974656400000000600082015250565b6000611fa1601c83611d09565b9150611fac82611f6b565b602082019050919050565b60006020820190508181036000830152611fd081611f94565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612033602683611d09565b915061203e82611fd7565b604082019050919050565b6000602082019050818103600083015261206281612026565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061209f602083611d09565b91506120aa82612069565b602082019050919050565b600060208201905081810360008301526120ce81612092565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061210b601083611d09565b9150612116826120d5565b602082019050919050565b6000602082019050818103600083015261213a816120fe565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612177601f83611d09565b915061218282612141565b602082019050919050565b600060208201905081810360008301526121a68161216a565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006121e3601483611d09565b91506121ee826121ad565b602082019050919050565b60006020820190508181036000830152612212816121d6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212203a7fa3842563a0864f5437fc24c9711b207a709104e0e67362c82e6147ccc1e464736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000e786dcaa674aaa117f66026f078f268a45519176000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000139c24400000000000000000000000004a46bedfe5f2cde97728a52fea176aced6924886
-----Decoded View---------------
Arg [0] : _catsAddress (address): 0xE786dCAA674AAA117f66026F078f268A45519176
Arg [1] : _rate (uint256): 100
Arg [2] : _expiration (uint256): 329000000
Arg [3] : _fatcatAddress (address): 0x4a46Bedfe5F2cDe97728A52feA176aCED6924886
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000e786dcaa674aaa117f66026f078f268a45519176
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [2] : 00000000000000000000000000000000000000000000000000000000139c2440
Arg [3] : 0000000000000000000000004a46bedfe5f2cde97728a52fea176aced6924886
Deployed Bytecode Sourcemap
53111:4971:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55012:534;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57860:219;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55597:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53512:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54267:80;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54089:65;;;:::i;:::-;;53426:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54458:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56529:474;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49318:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56048:447;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53371:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8463:103;;;:::i;:::-;;54020:61;;;:::i;:::-;;57654:198;;;:::i;:::-;;7822:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57039:579;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53627:69;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53338:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54615:389;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8721:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55012:534;55127:24;55192:8;:15;55178:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55168:40;;55224:9;55219:295;55239:8;:15;55235:1;:19;55219:295;;;55272:15;55290:8;55299:1;55290:11;;;;;;;;:::i;:::-;;;;;;;;55272:29;;55471:14;:23;55486:7;55471:23;;;;;;;;;;;;;;;:32;55495:7;55471:32;;;;;;;;;;;;55420:34;55429:12;55443:10;;55420:8;:34::i;:::-;:83;;;;:::i;:::-;55359:36;55387:7;55359:9;:18;55369:7;55359:18;;;;;;;;;;;;;;;:27;;:36;;;;:::i;:::-;:44;;55402:1;55359:44;;;55398:1;55359:44;55339:65;;:4;;:65;;;;:::i;:::-;:165;;;;:::i;:::-;55314:7;55322:1;55314:10;;;;;;;;:::i;:::-;;;;;;;:190;;;;;55261:253;55256:3;;;;;:::i;:::-;;;;55219:295;;;;55012:534;;;;:::o;57860:219::-;58004:6;58030:41;;;58023:48;;57860:219;;;;;;;:::o;55597:413::-;55701:7;55770:14;:23;55785:7;55770:23;;;;;;;;;;;;;;;:32;55794:7;55770:32;;;;;;;;;;;;55733:34;55742:12;55756:10;;55733:8;:34::i;:::-;:69;55725:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;55969:14;:23;55984:7;55969:23;;;;;;;;;;;;;;;:32;55993:7;55969:32;;;;;;;;;;;;55918:34;55927:12;55941:10;;55918:8;:34::i;:::-;:83;;;;:::i;:::-;55857:36;55885:7;55857:9;:18;55867:7;55857:18;;;;;;;;;;;;;;;:27;;:36;;;;:::i;:::-;:44;;55900:1;55857:44;;;55896:1;55857:44;55837:65;;:4;;:65;;;;:::i;:::-;:165;;;;:::i;:::-;55830:172;;55597:413;;;;:::o;53512:19::-;;;;:::o;54267:80::-;7708:13;:11;:13::i;:::-;54334:5:::1;54327:4;:12;;;;54267:80:::0;:::o;54089:65::-;7708:13;:11;:13::i;:::-;54136:10:::1;:8;:10::i;:::-;54089:65::o:0;53426:25::-;;;;:::o;54458:119::-;7708:13;:11;:13::i;:::-;54558:11:::1;54543:12;:26;;;;:::i;:::-;54530:10;:39;;;;54458:119:::0;:::o;56529:474::-;48923:19;:17;:19::i;:::-;56631:11:::1;;;;;;;;;;;56617:25;;:10;:25;;::::0;56609:53:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;56673:22;56686:8;;56673:12;:22::i;:::-;56713:9;56708:288;56728:8;;:15;;56724:1;:19;56708:288;;;56773:11;;;;;;;;;;;56765:37;;;56821:10;56858:4;56882:8;;56891:1;56882:11;;;;;;;:::i;:::-;;;;;;;;56765:164;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;56946:38;56972:8;;56981:1;56972:11;;;;;;;:::i;:::-;;;;;;;;56946:9;:21;56956:10;56946:21;;;;;;;;;;;;;;;:25;;:38;;;;:::i;:::-;;56745:3;;;;;:::i;:::-;;;;56708:288;;;;56529:474:::0;;:::o;49318:86::-;49365:4;49389:7;;;;;;;;;;;49382:14;;49318:86;:::o;56048:447::-;48923:19;:17;:19::i;:::-;56129:14:::1;56153:16:::0;56172:34:::1;56181:12;56195:10;;56172:8;:34::i;:::-;56153:53;;56222:9;56217:174;56237:8;;:15;;56233:1;:19;56217:174;;;56280:40;56296:10;56308:8;;56317:1;56308:11;;;;;;;:::i;:::-;;;;;;;;56280:15;:40::i;:::-;56270:50;;;;;:::i;:::-;;;56373:8;56331:14;:26;56346:10;56331:26;;;;;;;;;;;;;;;:39;56358:8;;56367:1;56358:11;;;;;;;:::i;:::-;;;;;;;;56331:39;;;;;;;;;;;:50;;;;56254:3;;;;;:::i;:::-;;;;56217:174;;;;56414:1;56405:6;:10;56401:87;;;56435:13;;;;;;;;;;;56428:30;;;56459:10;56471:6;56428:50;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56401:87;56120:375;;56048:447:::0;;:::o;53371:28::-;;;;;;;;;;;;;:::o;8463:103::-;7708:13;:11;:13::i;:::-;8528:30:::1;8555:1;8528:18;:30::i;:::-;8463:103::o:0;54020:61::-;7708:13;:11;:13::i;:::-;54065:8:::1;:6;:8::i;:::-;54020:61::o:0;57654:198::-;7708:13;:11;:13::i;:::-;57710:19:::1;57739:13;;;;;;;;;;;57732:31;;;57772:4;57732:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57710:68;;57796:13;;;;;;;;;;;57789:30;;;57820:10;57832:11;57789:55;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;57699:153;57654:198::o:0;7822:87::-;7868:7;7895:6;;;;;;;;;;;7888:13;;7822:87;:::o;57039:579::-;48923:19;:17;:19::i;:::-;33719:21:::1;:19;:21::i;:::-;57135:22:::2;57148:8;;57135:12;:22::i;:::-;57175:9;57170:441;57190:8;;:15;;57186:1;:19;57170:441;;;57253:43;57284:8;;57293:1;57284:11;;;;;;;:::i;:::-;;;;;;;;57253:9;:21;57263:10;57253:21;;;;;;;;;;;;;;;:30;;:43;;;;:::i;:::-;57227:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;57377:41;57406:8;;57415:1;57406:11;;;;;;;:::i;:::-;;;;;;;;57377:9;:21;57387:10;57377:21;;;;;;;;;;;;;;;:28;;:41;;;;:::i;:::-;;57443:11;;;;;;;;;;;57435:37;;;57499:4;57523:10;57552:8;;57561:1;57552:11;;;;;;;:::i;:::-;;;;;;;;57435:164;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;57207:3;;;;;:::i;:::-;;;;57170:441;;;;33763:20:::1;:18;:20::i;:::-;57039:579:::0;;:::o;53627:69::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53338:26::-;;;;;;;;;;;;;:::o;54615:389::-;54698:16;54730:40;54773:9;:18;54783:7;54773:18;;;;;;;;;;;;;;;54730:61;;54800:25;54843:19;:10;:17;:19::i;:::-;54828:35;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54800:63;;54879:9;54874:97;54894:19;:10;:17;:19::i;:::-;54890:1;:23;54874:97;;;54945:16;54959:1;54945:10;:13;;:16;;;;:::i;:::-;54931:8;54940:1;54931:11;;;;;;;;:::i;:::-;;;;;;;:30;;;;;54915:3;;;;;:::i;:::-;;;;54874:97;;;;54988:8;54981:15;;;;54615:389;;;:::o;8721:201::-;7708:13;:11;:13::i;:::-;8830:1:::1;8810:22;;:8;:22;;::::0;8802:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8886:28;8905:8;8886:18;:28::i;:::-;8721:201:::0;:::o;35194:106::-;35252:7;35283:1;35279;:5;:13;;35291:1;35279:13;;;35287:1;35279:13;35272:20;;35194:106;;;;:::o;29740:146::-;29817:4;29841:37;29851:3;:10;;29871:5;29863:14;;29841:9;:37::i;:::-;29834:44;;29740:146;;;;:::o;7987:132::-;8062:12;:10;:12::i;:::-;8051:23;;:7;:5;:7::i;:::-;:23;;;8043:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7987:132::o;50173:120::-;49182:16;:14;:16::i;:::-;50242:5:::1;50232:7;;:15;;;;;;;;;;;;;;;;;;50263:22;50272:12;:10;:12::i;:::-;50263:22;;;;;;:::i;:::-;;;;;;;;50173:120::o:0;49477:108::-;49548:8;:6;:8::i;:::-;49547:9;49539:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;49477:108::o;29210:131::-;29277:4;29301:32;29306:3;:10;;29326:5;29318:14;;29301:4;:32::i;:::-;29294:39;;29210:131;;;;:::o;9082:191::-;9156:16;9175:6;;;;;;;;;;;9156:25;;9201:8;9192:6;;:17;;;;;;;;;;;;;;;;;;9256:8;9225:40;;9246:8;9225:40;;;;;;;;;;;;9145:128;9082:191;:::o;49914:118::-;48923:19;:17;:19::i;:::-;49984:4:::1;49974:7;;:14;;;;;;;;;;;;;;;;;;50004:20;50011:12;:10;:12::i;:::-;50004:20;;;;;;:::i;:::-;;;;;;;;49914:118::o:0;33799:293::-;33201:1;33933:7;;:19;33925:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;33201:1;34066:7;:18;;;;33799:293::o;29517:137::-;29587:4;29611:35;29619:3;:10;;29639:5;29631:14;;29611:7;:35::i;:::-;29604:42;;29517:137;;;;:::o;34100:213::-;33157:1;34283:7;:22;;;;34100:213::o;29972:114::-;30032:7;30059:19;30067:3;:10;;30059:7;:19::i;:::-;30052:26;;29972:114;;;:::o;30440:137::-;30511:7;30546:22;30550:3;:10;;30562:5;30546:3;:22::i;:::-;30538:31;;30531:38;;30440:137;;;;:::o;22475:129::-;22548:4;22595:1;22572:3;:12;;:19;22585:5;22572:19;;;;;;;;;;;;:24;;22565:31;;22475:129;;;;:::o;1505:98::-;1558:7;1585:10;1578:17;;1505:98;:::o;49662:108::-;49729:8;:6;:8::i;:::-;49721:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;49662:108::o;20379:414::-;20442:4;20464:21;20474:3;20479:5;20464:9;:21::i;:::-;20459:327;;20502:3;:11;;20519:5;20502:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20685:3;:11;;:18;;;;20663:3;:12;;:19;20676:5;20663:19;;;;;;;;;;;:40;;;;20725:4;20718:11;;;;20459:327;20769:5;20762:12;;20379:414;;;;;:::o;20969:1420::-;21035:4;21153:18;21174:3;:12;;:19;21187:5;21174:19;;;;;;;;;;;;21153:40;;21224:1;21210:10;:15;21206:1176;;21585:21;21622:1;21609:10;:14;;;;:::i;:::-;21585:38;;21638:17;21679:1;21658:3;:11;;:18;;;;:22;;;;:::i;:::-;21638:42;;21714:13;21701:9;:26;21697:405;;21748:17;21768:3;:11;;21780:9;21768:22;;;;;;;;:::i;:::-;;;;;;;;;;21748:42;;21922:9;21893:3;:11;;21905:13;21893:26;;;;;;;;:::i;:::-;;;;;;;;;:38;;;;22033:10;22007:3;:12;;:23;22020:9;22007:23;;;;;;;;;;;:36;;;;21729:373;21697:405;22183:3;:11;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22278:3;:12;;:19;22291:5;22278:19;;;;;;;;;;;22271:26;;;22321:4;22314:11;;;;;;;21206:1176;22365:5;22358:12;;;20969:1420;;;;;:::o;22690:109::-;22746:7;22773:3;:11;;:18;;;;22766:25;;22690:109;;;:::o;23153:120::-;23220:7;23247:3;:11;;23259:5;23247:18;;;;;;;;:::i;:::-;;;;;;;;;;23240:25;;23153:120;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:117::-;950:1;947;940:12;964:102;1005:6;1056:2;1052:7;1047:2;1040:5;1036:14;1032:28;1022:38;;964:102;;;:::o;1072:180::-;1120:77;1117:1;1110:88;1217:4;1214:1;1207:15;1241:4;1238:1;1231:15;1258:281;1341:27;1363:4;1341:27;:::i;:::-;1333:6;1329:40;1471:6;1459:10;1456:22;1435:18;1423:10;1420:34;1417:62;1414:88;;;1482:18;;:::i;:::-;1414:88;1522:10;1518:2;1511:22;1301:238;1258:281;;:::o;1545:129::-;1579:6;1606:20;;:::i;:::-;1596:30;;1635:33;1663:4;1655:6;1635:33;:::i;:::-;1545:129;;;:::o;1680:311::-;1757:4;1847:18;1839:6;1836:30;1833:56;;;1869:18;;:::i;:::-;1833:56;1919:4;1911:6;1907:17;1899:25;;1979:4;1973;1969:15;1961:23;;1680:311;;;:::o;1997:117::-;2106:1;2103;2096:12;2120:77;2157:7;2186:5;2175:16;;2120:77;;;:::o;2203:122::-;2276:24;2294:5;2276:24;:::i;:::-;2269:5;2266:35;2256:63;;2315:1;2312;2305:12;2256:63;2203:122;:::o;2331:139::-;2377:5;2415:6;2402:20;2393:29;;2431:33;2458:5;2431:33;:::i;:::-;2331:139;;;;:::o;2493:710::-;2589:5;2614:81;2630:64;2687:6;2630:64;:::i;:::-;2614:81;:::i;:::-;2605:90;;2715:5;2744:6;2737:5;2730:21;2778:4;2771:5;2767:16;2760:23;;2831:4;2823:6;2819:17;2811:6;2807:30;2860:3;2852:6;2849:15;2846:122;;;2879:79;;:::i;:::-;2846:122;2994:6;2977:220;3011:6;3006:3;3003:15;2977:220;;;3086:3;3115:37;3148:3;3136:10;3115:37;:::i;:::-;3110:3;3103:50;3182:4;3177:3;3173:14;3166:21;;3053:144;3037:4;3032:3;3028:14;3021:21;;2977:220;;;2981:21;2595:608;;2493:710;;;;;:::o;3226:370::-;3297:5;3346:3;3339:4;3331:6;3327:17;3323:27;3313:122;;3354:79;;:::i;:::-;3313:122;3471:6;3458:20;3496:94;3586:3;3578:6;3571:4;3563:6;3559:17;3496:94;:::i;:::-;3487:103;;3303:293;3226:370;;;;:::o;3602:684::-;3695:6;3703;3752:2;3740:9;3731:7;3727:23;3723:32;3720:119;;;3758:79;;:::i;:::-;3720:119;3878:1;3903:53;3948:7;3939:6;3928:9;3924:22;3903:53;:::i;:::-;3893:63;;3849:117;4033:2;4022:9;4018:18;4005:32;4064:18;4056:6;4053:30;4050:117;;;4086:79;;:::i;:::-;4050:117;4191:78;4261:7;4252:6;4241:9;4237:22;4191:78;:::i;:::-;4181:88;;3976:303;3602:684;;;;;:::o;4292:114::-;4359:6;4393:5;4387:12;4377:22;;4292:114;;;:::o;4412:184::-;4511:11;4545:6;4540:3;4533:19;4585:4;4580:3;4576:14;4561:29;;4412:184;;;;:::o;4602:132::-;4669:4;4692:3;4684:11;;4722:4;4717:3;4713:14;4705:22;;4602:132;;;:::o;4740:108::-;4817:24;4835:5;4817:24;:::i;:::-;4812:3;4805:37;4740:108;;:::o;4854:179::-;4923:10;4944:46;4986:3;4978:6;4944:46;:::i;:::-;5022:4;5017:3;5013:14;4999:28;;4854:179;;;;:::o;5039:113::-;5109:4;5141;5136:3;5132:14;5124:22;;5039:113;;;:::o;5188:732::-;5307:3;5336:54;5384:5;5336:54;:::i;:::-;5406:86;5485:6;5480:3;5406:86;:::i;:::-;5399:93;;5516:56;5566:5;5516:56;:::i;:::-;5595:7;5626:1;5611:284;5636:6;5633:1;5630:13;5611:284;;;5712:6;5706:13;5739:63;5798:3;5783:13;5739:63;:::i;:::-;5732:70;;5825:60;5878:6;5825:60;:::i;:::-;5815:70;;5671:224;5658:1;5655;5651:9;5646:14;;5611:284;;;5615:14;5911:3;5904:10;;5312:608;;;5188:732;;;;:::o;5926:373::-;6069:4;6107:2;6096:9;6092:18;6084:26;;6156:9;6150:4;6146:20;6142:1;6131:9;6127:17;6120:47;6184:108;6287:4;6278:6;6184:108;:::i;:::-;6176:116;;5926:373;;;;:::o;6305:117::-;6414:1;6411;6404:12;6441:552;6498:8;6508:6;6558:3;6551:4;6543:6;6539:17;6535:27;6525:122;;6566:79;;:::i;:::-;6525:122;6679:6;6666:20;6656:30;;6709:18;6701:6;6698:30;6695:117;;;6731:79;;:::i;:::-;6695:117;6845:4;6837:6;6833:17;6821:29;;6899:3;6891:4;6883:6;6879:17;6869:8;6865:32;6862:41;6859:128;;;6906:79;;:::i;:::-;6859:128;6441:552;;;;;:::o;6999:963::-;7096:6;7104;7112;7120;7128;7177:3;7165:9;7156:7;7152:23;7148:33;7145:120;;;7184:79;;:::i;:::-;7145:120;7304:1;7329:53;7374:7;7365:6;7354:9;7350:22;7329:53;:::i;:::-;7319:63;;7275:117;7431:2;7457:53;7502:7;7493:6;7482:9;7478:22;7457:53;:::i;:::-;7447:63;;7402:118;7559:2;7585:53;7630:7;7621:6;7610:9;7606:22;7585:53;:::i;:::-;7575:63;;7530:118;7715:2;7704:9;7700:18;7687:32;7746:18;7738:6;7735:30;7732:117;;;7768:79;;:::i;:::-;7732:117;7881:64;7937:7;7928:6;7917:9;7913:22;7881:64;:::i;:::-;7863:82;;;;7658:297;6999:963;;;;;;;;:::o;7968:149::-;8004:7;8044:66;8037:5;8033:78;8022:89;;7968:149;;;:::o;8123:115::-;8208:23;8225:5;8208:23;:::i;:::-;8203:3;8196:36;8123:115;;:::o;8244:218::-;8335:4;8373:2;8362:9;8358:18;8350:26;;8386:69;8452:1;8441:9;8437:17;8428:6;8386:69;:::i;:::-;8244:218;;;;:::o;8468:474::-;8536:6;8544;8593:2;8581:9;8572:7;8568:23;8564:32;8561:119;;;8599:79;;:::i;:::-;8561:119;8719:1;8744:53;8789:7;8780:6;8769:9;8765:22;8744:53;:::i;:::-;8734:63;;8690:117;8846:2;8872:53;8917:7;8908:6;8897:9;8893:22;8872:53;:::i;:::-;8862:63;;8817:118;8468:474;;;;;:::o;8948:118::-;9035:24;9053:5;9035:24;:::i;:::-;9030:3;9023:37;8948:118;;:::o;9072:222::-;9165:4;9203:2;9192:9;9188:18;9180:26;;9216:71;9284:1;9273:9;9269:17;9260:6;9216:71;:::i;:::-;9072:222;;;;:::o;9300:329::-;9359:6;9408:2;9396:9;9387:7;9383:23;9379:32;9376:119;;;9414:79;;:::i;:::-;9376:119;9534:1;9559:53;9604:7;9595:6;9584:9;9580:22;9559:53;:::i;:::-;9549:63;;9505:117;9300:329;;;;:::o;9652:568::-;9725:8;9735:6;9785:3;9778:4;9770:6;9766:17;9762:27;9752:122;;9793:79;;:::i;:::-;9752:122;9906:6;9893:20;9883:30;;9936:18;9928:6;9925:30;9922:117;;;9958:79;;:::i;:::-;9922:117;10072:4;10064:6;10060:17;10048:29;;10126:3;10118:4;10110:6;10106:17;10096:8;10092:32;10089:41;10086:128;;;10133:79;;:::i;:::-;10086:128;9652:568;;;;;:::o;10226:559::-;10312:6;10320;10369:2;10357:9;10348:7;10344:23;10340:32;10337:119;;;10375:79;;:::i;:::-;10337:119;10523:1;10512:9;10508:17;10495:31;10553:18;10545:6;10542:30;10539:117;;;10575:79;;:::i;:::-;10539:117;10688:80;10760:7;10751:6;10740:9;10736:22;10688:80;:::i;:::-;10670:98;;;;10466:312;10226:559;;;;;:::o;10791:90::-;10825:7;10868:5;10861:13;10854:21;10843:32;;10791:90;;;:::o;10887:109::-;10968:21;10983:5;10968:21;:::i;:::-;10963:3;10956:34;10887:109;;:::o;11002:210::-;11089:4;11127:2;11116:9;11112:18;11104:26;;11140:65;11202:1;11191:9;11187:17;11178:6;11140:65;:::i;:::-;11002:210;;;;:::o;11218:118::-;11305:24;11323:5;11305:24;:::i;:::-;11300:3;11293:37;11218:118;;:::o;11342:222::-;11435:4;11473:2;11462:9;11458:18;11450:26;;11486:71;11554:1;11543:9;11539:17;11530:6;11486:71;:::i;:::-;11342:222;;;;:::o;11570:329::-;11629:6;11678:2;11666:9;11657:7;11653:23;11649:32;11646:119;;;11684:79;;:::i;:::-;11646:119;11804:1;11829:53;11874:7;11865:6;11854:9;11850:22;11829:53;:::i;:::-;11819:63;;11775:117;11570:329;;;;:::o;11905:180::-;11953:77;11950:1;11943:88;12050:4;12047:1;12040:15;12074:4;12071:1;12064:15;12091:180;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:194;12317:4;12337:20;12355:1;12337:20;:::i;:::-;12332:25;;12371:20;12389:1;12371:20;:::i;:::-;12366:25;;12415:1;12412;12408:9;12400:17;;12439:1;12433:4;12430:11;12427:37;;;12444:18;;:::i;:::-;12427:37;12277:194;;;;:::o;12477:410::-;12517:7;12540:20;12558:1;12540:20;:::i;:::-;12535:25;;12574:20;12592:1;12574:20;:::i;:::-;12569:25;;12629:1;12626;12622:9;12651:30;12669:11;12651:30;:::i;:::-;12640:41;;12830:1;12821:7;12817:15;12814:1;12811:22;12791:1;12784:9;12764:83;12741:139;;12860:18;;:::i;:::-;12741:139;12525:362;12477:410;;;;:::o;12893:233::-;12932:3;12955:24;12973:5;12955:24;:::i;:::-;12946:33;;13001:66;12994:5;12991:77;12988:103;;13071:18;;:::i;:::-;12988:103;13118:1;13111:5;13107:13;13100:20;;12893:233;;;:::o;13132:169::-;13216:11;13250:6;13245:3;13238:19;13290:4;13285:3;13281:14;13266:29;;13132:169;;;;:::o;13307:164::-;13447:16;13443:1;13435:6;13431:14;13424:40;13307:164;:::o;13477:366::-;13619:3;13640:67;13704:2;13699:3;13640:67;:::i;:::-;13633:74;;13716:93;13805:3;13716:93;:::i;:::-;13834:2;13829:3;13825:12;13818:19;;13477:366;;;:::o;13849:419::-;14015:4;14053:2;14042:9;14038:18;14030:26;;14102:9;14096:4;14092:20;14088:1;14077:9;14073:17;14066:47;14130:131;14256:4;14130:131;:::i;:::-;14122:139;;13849:419;;;:::o;14274:191::-;14314:3;14333:20;14351:1;14333:20;:::i;:::-;14328:25;;14367:20;14385:1;14367:20;:::i;:::-;14362:25;;14410:1;14407;14403:9;14396:16;;14431:3;14428:1;14425:10;14422:36;;;14438:18;;:::i;:::-;14422:36;14274:191;;;;:::o;14471:165::-;14611:17;14607:1;14599:6;14595:14;14588:41;14471:165;:::o;14642:366::-;14784:3;14805:67;14869:2;14864:3;14805:67;:::i;:::-;14798:74;;14881:93;14970:3;14881:93;:::i;:::-;14999:2;14994:3;14990:12;14983:19;;14642:366;;;:::o;15014:419::-;15180:4;15218:2;15207:9;15203:18;15195:26;;15267:9;15261:4;15257:20;15253:1;15242:9;15238:17;15231:47;15295:131;15421:4;15295:131;:::i;:::-;15287:139;;15014:419;;;:::o;15439:168::-;15522:11;15556:6;15551:3;15544:19;15596:4;15591:3;15587:14;15572:29;;15439:168;;;;:::o;15613:114::-;;:::o;15733:362::-;15874:3;15895:65;15958:1;15953:3;15895:65;:::i;:::-;15888:72;;15969:93;16058:3;15969:93;:::i;:::-;16087:1;16082:3;16078:11;16071:18;;15733:362;;;:::o;16101:748::-;16350:4;16388:3;16377:9;16373:19;16365:27;;16402:71;16470:1;16459:9;16455:17;16446:6;16402:71;:::i;:::-;16483:72;16551:2;16540:9;16536:18;16527:6;16483:72;:::i;:::-;16565;16633:2;16622:9;16618:18;16609:6;16565:72;:::i;:::-;16684:9;16678:4;16674:20;16669:2;16658:9;16654:18;16647:48;16712:130;16837:4;16712:130;:::i;:::-;16704:138;;16101:748;;;;;;:::o;16855:332::-;16976:4;17014:2;17003:9;16999:18;16991:26;;17027:71;17095:1;17084:9;17080:17;17071:6;17027:71;:::i;:::-;17108:72;17176:2;17165:9;17161:18;17152:6;17108:72;:::i;:::-;16855:332;;;;;:::o;17193:116::-;17263:21;17278:5;17263:21;:::i;:::-;17256:5;17253:32;17243:60;;17299:1;17296;17289:12;17243:60;17193:116;:::o;17315:137::-;17369:5;17400:6;17394:13;17385:22;;17416:30;17440:5;17416:30;:::i;:::-;17315:137;;;;:::o;17458:345::-;17525:6;17574:2;17562:9;17553:7;17549:23;17545:32;17542:119;;;17580:79;;:::i;:::-;17542:119;17700:1;17725:61;17778:7;17769:6;17758:9;17754:22;17725:61;:::i;:::-;17715:71;;17671:125;17458:345;;;;:::o;17809:143::-;17866:5;17897:6;17891:13;17882:22;;17913:33;17940:5;17913:33;:::i;:::-;17809:143;;;;:::o;17958:351::-;18028:6;18077:2;18065:9;18056:7;18052:23;18048:32;18045:119;;;18083:79;;:::i;:::-;18045:119;18203:1;18228:64;18284:7;18275:6;18264:9;18260:22;18228:64;:::i;:::-;18218:74;;18174:128;17958:351;;;;:::o;18315:178::-;18455:30;18451:1;18443:6;18439:14;18432:54;18315:178;:::o;18499:366::-;18641:3;18662:67;18726:2;18721:3;18662:67;:::i;:::-;18655:74;;18738:93;18827:3;18738:93;:::i;:::-;18856:2;18851:3;18847:12;18840:19;;18499:366;;;:::o;18871:419::-;19037:4;19075:2;19064:9;19060:18;19052:26;;19124:9;19118:4;19114:20;19110:1;19099:9;19095:17;19088:47;19152:131;19278:4;19152:131;:::i;:::-;19144:139;;18871:419;;;:::o;19296:225::-;19436:34;19432:1;19424:6;19420:14;19413:58;19505:8;19500:2;19492:6;19488:15;19481:33;19296:225;:::o;19527:366::-;19669:3;19690:67;19754:2;19749:3;19690:67;:::i;:::-;19683:74;;19766:93;19855:3;19766:93;:::i;:::-;19884:2;19879:3;19875:12;19868:19;;19527:366;;;:::o;19899:419::-;20065:4;20103:2;20092:9;20088:18;20080:26;;20152:9;20146:4;20142:20;20138:1;20127:9;20123:17;20116:47;20180:131;20306:4;20180:131;:::i;:::-;20172:139;;19899:419;;;:::o;20324:182::-;20464:34;20460:1;20452:6;20448:14;20441:58;20324:182;:::o;20512:366::-;20654:3;20675:67;20739:2;20734:3;20675:67;:::i;:::-;20668:74;;20751:93;20840:3;20751:93;:::i;:::-;20869:2;20864:3;20860:12;20853:19;;20512:366;;;:::o;20884:419::-;21050:4;21088:2;21077:9;21073:18;21065:26;;21137:9;21131:4;21127:20;21123:1;21112:9;21108:17;21101:47;21165:131;21291:4;21165:131;:::i;:::-;21157:139;;20884:419;;;:::o;21309:166::-;21449:18;21445:1;21437:6;21433:14;21426:42;21309:166;:::o;21481:366::-;21623:3;21644:67;21708:2;21703:3;21644:67;:::i;:::-;21637:74;;21720:93;21809:3;21720:93;:::i;:::-;21838:2;21833:3;21829:12;21822:19;;21481:366;;;:::o;21853:419::-;22019:4;22057:2;22046:9;22042:18;22034:26;;22106:9;22100:4;22096:20;22092:1;22081:9;22077:17;22070:47;22134:131;22260:4;22134:131;:::i;:::-;22126:139;;21853:419;;;:::o;22278:181::-;22418:33;22414:1;22406:6;22402:14;22395:57;22278:181;:::o;22465:366::-;22607:3;22628:67;22692:2;22687:3;22628:67;:::i;:::-;22621:74;;22704:93;22793:3;22704:93;:::i;:::-;22822:2;22817:3;22813:12;22806:19;;22465:366;;;:::o;22837:419::-;23003:4;23041:2;23030:9;23026:18;23018:26;;23090:9;23084:4;23080:20;23076:1;23065:9;23061:17;23054:47;23118:131;23244:4;23118:131;:::i;:::-;23110:139;;22837:419;;;:::o;23262:170::-;23402:22;23398:1;23390:6;23386:14;23379:46;23262:170;:::o;23438:366::-;23580:3;23601:67;23665:2;23660:3;23601:67;:::i;:::-;23594:74;;23677:93;23766:3;23677:93;:::i;:::-;23795:2;23790:3;23786:12;23779:19;;23438:366;;;:::o;23810:419::-;23976:4;24014:2;24003:9;23999:18;23991:26;;24063:9;24057:4;24053:20;24049:1;24038:9;24034:17;24027:47;24091:131;24217:4;24091:131;:::i;:::-;24083:139;;23810:419;;;:::o;24235:180::-;24283:77;24280:1;24273:88;24380:4;24377:1;24370:15;24404:4;24401:1;24394:15
Swarm Source
ipfs://3a7fa3842563a0864f5437fc24c9711b207a709104e0e67362c82e6147ccc1e4
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.