More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 334 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 20407133 | 251 days ago | IN | 0 ETH | 0.00061454 | ||||
Grant Role | 18798187 | 476 days ago | IN | 0 ETH | 0.00183783 | ||||
Grant Role | 16630517 | 780 days ago | IN | 0 ETH | 0.00205692 | ||||
Withdraw | 15169237 | 992 days ago | IN | 0 ETH | 0.00362322 | ||||
Withdraw | 14761406 | 1059 days ago | IN | 0 ETH | 0.02482863 | ||||
Grant Role | 14312515 | 1129 days ago | IN | 0 ETH | 0.00205692 | ||||
Withdraw | 14207089 | 1145 days ago | IN | 0 ETH | 0.00509462 | ||||
Grant Role | 14002596 | 1177 days ago | IN | 0 ETH | 0.00642393 | ||||
Withdraw | 13816806 | 1206 days ago | IN | 0 ETH | 0.00826786 | ||||
Withdraw | 13655225 | 1231 days ago | IN | 0 ETH | 0.00903579 | ||||
Burn | 13638795 | 1234 days ago | IN | 0 ETH | 0.00578189 | ||||
Grant Role | 13637011 | 1234 days ago | IN | 0 ETH | 0.00586295 | ||||
Burn | 13631070 | 1235 days ago | IN | 0 ETH | 0.00631127 | ||||
Burn | 13631024 | 1235 days ago | IN | 0 ETH | 0.00617523 | ||||
Burn | 13631009 | 1235 days ago | IN | 0 ETH | 0.00712378 | ||||
Grant Role | 13626989 | 1236 days ago | IN | 0 ETH | 0.00721986 | ||||
Grant Role | 13626967 | 1236 days ago | IN | 0 ETH | 0.00869425 | ||||
Grant Role | 13626942 | 1236 days ago | IN | 0 ETH | 0.00685301 | ||||
Withdraw | 13529867 | 1251 days ago | IN | 0 ETH | 0.01324807 | ||||
Withdraw | 13344474 | 1280 days ago | IN | 0 ETH | 0.00366021 | ||||
Withdraw | 13267288 | 1292 days ago | IN | 0 ETH | 0.00496411 | ||||
Mint | 13262203 | 1293 days ago | IN | 0 ETH | 0.00157254 | ||||
Grant Role | 13256488 | 1294 days ago | IN | 0 ETH | 0.00186701 | ||||
Mint | 13255870 | 1294 days ago | IN | 0 ETH | 0.00181948 | ||||
Mint | 13255825 | 1294 days ago | IN | 0 ETH | 0.0022452 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
RainiLpStakingPool
Compiler Version
v0.8.3+commit.8d00100c
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-04-20 */ // File: @openzeppelin/contracts/utils/math/Math.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @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, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } } // File: @openzeppelin/contracts/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 no longer needed starting with Solidity 0.8. 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 substraction 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. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * 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; } } } // File: @openzeppelin/contracts/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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/access/AccessControl.sol pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { function hasRole(bytes32 role, address account) external view returns (bool); function getRoleAdmin(bytes32 role) external view returns (bytes32); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; } /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping (address => bool) members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override { require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to grant"); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override { require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to revoke"); _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, getRoleAdmin(role), adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File: @openzeppelin/contracts/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 make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: contracts/pools/RainiLPStakingPool.sol pragma solidity ^0.8.3; contract RainiLpStakingPool is AccessControl, ReentrancyGuard { bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE"); bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); using SafeMath for uint256; using SafeERC20 for IERC20; uint256 public rewardRate; uint256 public minRewardStake; uint256 public rewardDecimals = 1000000; uint256 public maxBonus; uint256 public bonusDuration; uint256 public bonusRate; uint256 public bonusDecimals = 1000000000; uint256 public unicornToEth; uint256 public totalSupply; IERC20 public rainiLpToken; mapping(address => uint256) internal staked; mapping(address => uint256) internal balances; mapping(address => uint256) internal lastBonus; mapping(address => uint256) internal lastUpdated; event EthWithdrawn(uint256 amount); event RewardSet(uint256 rewardRate, uint256 minRewardStake); event BonusesSet(uint256 maxBonus, uint256 bonusDuration); event RainiLpTokenSet(address token); event UnicornToEthSet(uint256 unicornToEth); event TokensStaked(address payer, uint256 amount, uint256 timestamp); event TokensWithdrawn(address owner, uint256 amount, uint256 timestamp); event UnicornPointsBurned(address owner, uint256 amount); event UnicornPointsMinted(address owner, uint256 amount); event UnicornPointsBought(address owner, uint256 amount); constructor(address _rainiLpToken) { require(_rainiLpToken != address(0), "RainiLpStakingPool: _rainiLpToken is zero address"); _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); rainiLpToken = IERC20(_rainiLpToken); } modifier onlyOwner() { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "RainiLpStakingPool: caller is not an owner"); _; } modifier onlyBurner() { require(hasRole(BURNER_ROLE, _msgSender()), "RainiLpStakingPool: caller is not a burner"); _; } modifier onlyMinter() { require(hasRole(MINTER_ROLE, _msgSender()), "RainiLpStakingPool: caller is not a minter"); _; } modifier balanceUpdate(address _owner) { uint256 duration = block.timestamp.sub(lastUpdated[_owner]); uint256 reward = calculateReward(_owner, staked[_owner], duration); balances[_owner] = balances[_owner].add(reward); lastUpdated[_owner] = block.timestamp; lastBonus[_owner] = Math.min(maxBonus, lastBonus[_owner].add(bonusRate.mul(duration))); _; } function getRewardByDuration(address _owner, uint256 _amount, uint256 _duration) public view returns(uint256) { return calculateReward(_owner, _amount, _duration); } function getStaked(address _owner) public view returns(uint256) { return staked[_owner]; } function balanceOf(address _owner) public view returns(uint256) { uint256 reward = calculateReward(_owner, staked[_owner], block.timestamp.sub(lastUpdated[_owner])); return balances[_owner].add(reward); } function getCurrentBonus(address _owner) public view returns(uint256) { if(staked[_owner] == 0) { return 0; } uint256 duration = block.timestamp.sub(lastUpdated[_owner]); return Math.min(maxBonus, lastBonus[_owner].add(bonusRate.mul(duration))); } function getCurrentAvgBonus(address _owner, uint256 _duration) public view returns(uint256) { if(staked[_owner] == 0) { return 0; } uint256 avgBonus; if(lastBonus[_owner] < maxBonus) { uint256 durationTillMax = maxBonus.sub(lastBonus[_owner]).div(bonusRate); if(_duration > durationTillMax) { uint256 avgWeightedBonusTillMax = lastBonus[_owner].add(maxBonus).div(2).mul(durationTillMax); uint256 weightedMaxBonus = maxBonus.mul(_duration.sub(durationTillMax)); avgBonus = avgWeightedBonusTillMax.add(weightedMaxBonus).div(_duration); } else { avgBonus = lastBonus[_owner].add(bonusRate.mul(_duration)).add(lastBonus[_owner]).div(2); } } else { avgBonus = maxBonus; } return avgBonus; } function setReward(uint256 _rewardRate, uint256 _minRewardStake) external onlyOwner { rewardRate = _rewardRate; minRewardStake = _minRewardStake; emit RewardSet(rewardRate, minRewardStake); } function setUnicornToEth(uint256 _unicornToEth) external onlyOwner { unicornToEth = _unicornToEth; emit UnicornToEthSet(_unicornToEth); } function setBonus(uint256 _maxBonus, uint256 _bonusDuration) external onlyOwner { maxBonus = _maxBonus.mul(bonusDecimals); bonusDuration = _bonusDuration; bonusRate = maxBonus.div(_bonusDuration); emit BonusesSet(_maxBonus, _bonusDuration); } function stake(uint256 _amount) external nonReentrant balanceUpdate(_msgSender()) { require(_amount > 0, "RainiLpStakingPool: _amount is 0"); rainiLpToken.safeTransferFrom(_msgSender(), address(this), _amount); totalSupply = totalSupply.add(_amount); uint256 currentStake = staked[_msgSender()]; staked[_msgSender()] = staked[_msgSender()].add(_amount); lastBonus[_msgSender()] = lastBonus[_msgSender()].mul(currentStake).div(staked[_msgSender()]); emit TokensStaked(_msgSender(), _amount, block.timestamp); } function withdraw(uint256 _amount) external nonReentrant balanceUpdate(_msgSender()) { staked[_msgSender()] = staked[_msgSender()].sub(_amount); totalSupply = totalSupply.sub(_amount); rainiLpToken.safeTransfer(_msgSender(), _amount); emit TokensWithdrawn(_msgSender(), _amount, block.timestamp); } function withdrawEth(uint256 _amount) external onlyOwner { require(_amount <= address(this).balance, "RainiLpStakingPool: not enough balance"); (bool success, ) = _msgSender().call{ value: _amount }(""); require(success, "RainiLpStakingPool: transfer failed"); emit EthWithdrawn(_amount); } function mint(address[] calldata _addresses, uint256[] calldata _points) external onlyMinter { require(_addresses.length == _points.length, "RainiLpStakingPool: Arrays not equal"); for (uint256 i = 0; i < _addresses.length; i++) { balances[_addresses[i]] = balances[_addresses[i]].add(_points[i]); emit UnicornPointsMinted(_addresses[i], _points[i]); } } function buyUnicorn(uint256 _amount) external payable { require(_amount > 0, "RainiLpStakingPool: _amount is zero"); require(msg.value.mul(unicornToEth) >= _amount, "RainiLpStakingPool: not enougth eth"); balances[_msgSender()] = balances[_msgSender()].add(_amount); uint256 refund = msg.value.sub(_amount.div(unicornToEth)); if(refund > 0) { (bool success, ) = _msgSender().call{ value: refund }(""); require(success, "RainiLpStakingPool: transfer failed"); } emit UnicornPointsBought(_msgSender(), _amount); } function burn(address _owner, uint256 _amount) external nonReentrant onlyBurner balanceUpdate(_owner) { balances[_owner] = balances[_owner].sub(_amount); emit UnicornPointsBurned(_owner, _amount); } function calculateReward(address _owner, uint256 _amount, uint256 _duration) private view returns(uint256) { uint256 reward = _duration.mul(rewardRate) .mul(_amount) .div(rewardDecimals) .div(minRewardStake); return calculateBonus(_owner, reward, _duration); } function calculateBonus(address _owner, uint256 _amount, uint256 _duration) private view returns(uint256) { uint256 avgBonus = getCurrentAvgBonus(_owner, _duration); return _amount.add(_amount.mul(avgBonus).div(bonusDecimals).div(100)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_rainiLpToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxBonus","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bonusDuration","type":"uint256"}],"name":"BonusesSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EthWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"}],"name":"RainiLpTokenSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rewardRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"minRewardStake","type":"uint256"}],"name":"RewardSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"payer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TokensStaked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TokensWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UnicornPointsBought","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UnicornPointsBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UnicornPointsMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"unicornToEth","type":"uint256"}],"name":"UnicornToEthSet","type":"event"},{"inputs":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bonusDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bonusDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bonusRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"buyUnicorn","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"getCurrentAvgBonus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getCurrentBonus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"getRewardByDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getStaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBonus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minRewardStake","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_points","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rainiLpToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBonus","type":"uint256"},{"internalType":"uint256","name":"_bonusDuration","type":"uint256"}],"name":"setBonus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardRate","type":"uint256"},{"internalType":"uint256","name":"_minRewardStake","type":"uint256"}],"name":"setReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_unicornToEth","type":"uint256"}],"name":"setUnicornToEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unicornToEth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052620f4240600455633b9aca006008553480156200002057600080fd5b50604051620020b5380380620020b583398101604081905262000043916200019f565b600180556001600160a01b038116620000bc5760405162461bcd60e51b815260206004820152603160248201527f5261696e694c705374616b696e67506f6f6c3a205f7261696e694c70546f6b656044820152706e206973207a65726f206164647265737360781b606482015260840160405180910390fd5b620000c9600033620000ef565b600b80546001600160a01b0319166001600160a01b0392909216919091179055620001cf565b620000fb8282620000ff565b5050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16620000fb576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556200015b3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600060208284031215620001b1578081fd5b81516001600160a01b0381168114620001c8578182fd5b9392505050565b611ed680620001df6000396000f3fe6080604052600436106101ee5760003560e01c80635af123f41161010d578063a47bd496116100a0578063c311d0491161006f578063c311d04914610582578063d5391393146105a2578063d547741f146105d6578063e467f7e0146105f6578063e48b6e3514610616576101ee565b8063a47bd49614610519578063a694fc3a14610539578063b09b1a5114610559578063b60f75d81461056c576101ee565b806391d14854116100dc57806391d14854146104a45780639dc29fac146104c4578063a217fddf146104e4578063a24c2562146104f9576101ee565b80635af123f41461043857806370a082311461044e5780637b0a47ee1461046e5780638812e89714610484576101ee565b80632e1a7d4d11610185578063399080ec11610154578063399080ec146103b65780633e1d0ae5146103ec578063503ea2881461040257806354c5b69614610422576101ee565b80632e1a7d4d146103365780632f2ff15d14610356578063308cd81a1461037657806336568abe14610396576101ee565b806318160ddd116101c157806318160ddd146102a657806319979932146102bc578063248a9ca3146102d2578063282c51f314610302576101ee565b806301ffc9a7146101f357806302fc492314610228578063037c99b01461026057806315d21e1114610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611c79565b61062c565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50600b54610248906001600160a01b031681565b6040516001600160a01b03909116815260200161021f565b34801561026c57600080fd5b5061028061027b366004611ca1565b610665565b005b34801561028e57600080fd5b5061029860095481565b60405190815260200161021f565b3480156102b257600080fd5b50610298600a5481565b3480156102c857600080fd5b5061029860065481565b3480156102de57600080fd5b506102986102ed366004611c36565b60009081526020819052604090206001015490565b34801561030e57600080fd5b506102987f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b34801561034257600080fd5b50610280610351366004611c36565b6106f8565b34801561036257600080fd5b50610280610371366004611c4e565b6108a0565b34801561038257600080fd5b50610298610391366004611b52565b61092f565b3480156103a257600080fd5b506102806103b1366004611c4e565b610a99565b3480156103c257600080fd5b506102986103d1366004611b38565b6001600160a01b03166000908152600c602052604090205490565b3480156103f857600080fd5b5061029860085481565b34801561040e57600080fd5b5061028061041d366004611c36565b610b13565b34801561042e57600080fd5b5061029860055481565b34801561044457600080fd5b5061029860075481565b34801561045a57600080fd5b50610298610469366004611b38565b610b75565b34801561047a57600080fd5b5061029860025481565b34801561049057600080fd5b5061029861049f366004611b38565b610bdf565b3480156104b057600080fd5b506102136104bf366004611c4e565b610c48565b3480156104d057600080fd5b506102806104df366004611b52565b610c71565b3480156104f057600080fd5b50610298600081565b34801561050557600080fd5b50610298610514366004611b7b565b610e70565b34801561052557600080fd5b50610280610534366004611ca1565b610e85565b34801561054557600080fd5b50610280610554366004611c36565b610eec565b610280610567366004611c36565b611107565b34801561057857600080fd5b5061029860045481565b34801561058e57600080fd5b5061028061059d366004611c36565b6112b5565b3480156105ae57600080fd5b506102987f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b3480156105e257600080fd5b506102806105f1366004611c4e565b6113d3565b34801561060257600080fd5b50610280610611366004611bad565b611453565b34801561062257600080fd5b5061029860035481565b60006001600160e01b03198216637965db0b60e01b148061065d57506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b6106706000336104bf565b6106955760405162461bcd60e51b815260040161068c90611d11565b60405180910390fd5b6008546106a39083906116b0565b600581905560068290556106b790826116bc565b60075560408051838152602081018390527f91748b9e70aede6f70ab0899def21be673bd7a3d850e142963dd688b53ecd5d391015b60405180910390a15050565b6002600154141561071b5760405162461bcd60e51b815260040161068c90611d9e565b6002600155336000818152600f602052604081205461073b9042906116c8565b6001600160a01b0383166000908152600c602052604081205491925090610764908490846116d4565b6001600160a01b0384166000908152600d602052604090205490915061078a9082611712565b6001600160a01b0384166000908152600d6020908152604080832093909355600f9052204290556005546007546107ee91906107e9906107ca90866116b0565b6001600160a01b0387166000908152600e602052604090205490611712565b61171e565b6001600160a01b0384166000908152600e6020908152604080832093909355338252600c9052205461082090856116c8565b336000908152600c6020526040902055600a5461083d90856116c8565b600a5561085733600b546001600160a01b03169086611734565b6040805133815260208101869052428183015290517fffe903c0abe6b2dbb2f3474ef43d7a3c1fca49e5a774453423ca8e1952aabffa9181900360600190a15050600180555050565b6000828152602081905260409020600101546108bd905b336104bf565b6109215760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526e0818591b5a5b881d1bc819dc985b9d608a1b606482015260840161068c565b61092b828261179c565b5050565b6001600160a01b0382166000908152600c602052604081205461095457506000610a93565b6005546001600160a01b0384166000908152600e602052604081205490911115610a8b576007546001600160a01b0385166000908152600e602052604081205460055491926109af9290916109a991906116c8565b906116bc565b905080841115610a27576005546001600160a01b0386166000908152600e602052604081205490916109f49184916109ee916002916109a99190611712565b906116b0565b90506000610a0e610a0587856116c8565b600554906116b0565b9050610a1e866109a98484611712565b93505050610a85565b6001600160a01b0385166000908152600e6020526040902054600754610a82916002916109a99190610a7c90610a5d908a6116b0565b6001600160a01b038b166000908152600e602052604090205490611712565b90611712565b91505b50610a90565b506005545b90505b92915050565b6001600160a01b0381163314610b095760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161068c565b61092b8282611820565b610b1e6000336104bf565b610b3a5760405162461bcd60e51b815260040161068c90611d11565b60098190556040518181527fb7cf93fdd1a223f775d0ba0c876449f55dba0345d09446d623a0415546cf3aac9060200160405180910390a150565b6001600160a01b0381166000908152600c6020908152604080832054600f9092528220548291610bb291859190610bad9042906116c8565b6116d4565b6001600160a01b0384166000908152600d6020526040902054909150610bd89082611712565b9392505050565b6001600160a01b0381166000908152600c6020526040812054610c0457506000610660565b6001600160a01b0382166000908152600f6020526040812054610c289042906116c8565b9050610bd86005546107e96107ca846007546116b090919063ffffffff16565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60026001541415610c945760405162461bcd60e51b815260040161068c90611d9e565b6002600155610cc37f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848336104bf565b610d225760405162461bcd60e51b815260206004820152602a60248201527f5261696e694c705374616b696e67506f6f6c3a2063616c6c6572206973206e6f6044820152693a103090313ab93732b960b11b606482015260840161068c565b6001600160a01b0382166000908152600f6020526040812054839190610d499042906116c8565b6001600160a01b0383166000908152600c602052604081205491925090610d72908490846116d4565b6001600160a01b0384166000908152600d6020526040902054909150610d989082611712565b6001600160a01b0384166000908152600d6020908152604080832093909355600f905220429055600554600754610dd891906107e9906107ca90866116b0565b6001600160a01b038085166000908152600e60209081526040808320949094559188168152600d9091522054610e0e90856116c8565b6001600160a01b0386166000818152600d60209081526040918290209390935580519182529181018690527f2dcfcb8dd7f92a1441a21ffa64ff110b029b8c14727dc57c22d5e3a7dad20b7291015b60405180910390a1505060018055505050565b6000610e7d8484846116d4565b949350505050565b610e906000336104bf565b610eac5760405162461bcd60e51b815260040161068c90611d11565b6002829055600381905560408051838152602081018390527fb1364803920b7aa08b58c240c989062d8ebd96ab4bd352792350afbab26c823991016106ec565b60026001541415610f0f5760405162461bcd60e51b815260040161068c90611d9e565b6002600155336000818152600f6020526040812054610f2f9042906116c8565b6001600160a01b0383166000908152600c602052604081205491925090610f58908490846116d4565b6001600160a01b0384166000908152600d6020526040902054909150610f7e9082611712565b6001600160a01b0384166000908152600d6020908152604080832093909355600f905220429055600554600754610fbe91906107e9906107ca90866116b0565b6001600160a01b0384166000908152600e6020526040902055836110245760405162461bcd60e51b815260206004820181905260248201527f5261696e694c705374616b696e67506f6f6c3a205f616d6f756e742069732030604482015260640161068c565b61103c33600b546001600160a01b0316903087611885565b600a546110499085611712565b600a55336000818152600c6020819052604082205492611087928892915b6001600160a01b0316815260208101919091526040016000205490611712565b336000908152600c60209081526040808320849055600e9091529020546110b391906109a990846116b0565b336000818152600e602090815260409182902093909355805191825291810187905242918101919091527fdd2a19c3bdd089cbe77c04f5655f83de0504d6140d12c8667646f55d0557c4dc90606001610e5d565b600081116111635760405162461bcd60e51b815260206004820152602360248201527f5261696e694c705374616b696e67506f6f6c3a205f616d6f756e74206973207a60448201526265726f60e81b606482015260840161068c565b80611179600954346116b090919063ffffffff16565b10156111d35760405162461bcd60e51b815260206004820152602360248201527f5261696e694c705374616b696e67506f6f6c3a206e6f7420656e6f75677468206044820152620cae8d60eb1b606482015260840161068c565b6111e181600d600033611067565b336000908152600d602052604081209190915560095461120d906112069084906116bc565b34906116c8565b9050801561127f57604051600090339083908381818185875af1925050503d8060008114611257576040519150601f19603f3d011682016040523d82523d6000602084013e61125c565b606091505b505090508061127d5760405162461bcd60e51b815260040161068c90611d5b565b505b60408051338152602081018490527ff69bff6f82b14616cf3bdf5d36a1504928849f54e2a949024c97f722523641ca91016106ec565b6112c06000336104bf565b6112dc5760405162461bcd60e51b815260040161068c90611d11565b4781111561133b5760405162461bcd60e51b815260206004820152602660248201527f5261696e694c705374616b696e67506f6f6c3a206e6f7420656e6f7567682062604482015265616c616e636560d01b606482015260840161068c565b604051600090339083908381818185875af1925050503d806000811461137d576040519150601f19603f3d011682016040523d82523d6000602084013e611382565b606091505b50509050806113a35760405162461bcd60e51b815260040161068c90611d5b565b6040518281527f7909752b76037727fecfc6c1abb7264306fd284ff7be21e2aa09bf2fdc00579d906020016106ec565b6000828152602081905260409020600101546113ee906108b7565b610b095760405162461bcd60e51b815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526f2061646d696e20746f207265766f6b6560801b606482015260840161068c565b61147d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336104bf565b6114dc5760405162461bcd60e51b815260206004820152602a60248201527f5261696e694c705374616b696e67506f6f6c3a2063616c6c6572206973206e6f6044820152693a10309036b4b73a32b960b11b606482015260840161068c565b8281146115375760405162461bcd60e51b8152602060048201526024808201527f5261696e694c705374616b696e67506f6f6c3a20417272617973206e6f7420656044820152631c5d585b60e21b606482015260840161068c565b60005b838110156116a9576115a583838381811061156557634e487b7160e01b600052603260045260246000fd5b90506020020135600d600088888681811061159057634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110679190611b38565b600d60008787858181106115c957634e487b7160e01b600052603260045260246000fd5b90506020020160208101906115de9190611b38565b6001600160a01b031681526020810191909152604001600020557fccf7b2bbc1b9e2aff9848ffc047297bfc64f47a18d250b12da287200b15920f185858381811061163957634e487b7160e01b600052603260045260246000fd5b905060200201602081019061164e9190611b38565b84848481811061166e57634e487b7160e01b600052603260045260246000fd5b604080516001600160a01b0390951685526020918202939093013590840152500160405180910390a1806116a181611e6f565b91505061153a565b5050505050565b6000610a908284611e0d565b6000610a908284611ded565b6000610a908284611e2c565b6000806116fc6003546109a96004546109a9886109ee6002548a6116b090919063ffffffff16565b90506117098582856118c3565b95945050505050565b6000610a908284611dd5565b600081831061172d5781610a90565b5090919050565b6040516001600160a01b03831660248201526044810182905261179790849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526118fa565b505050565b6117a68282610c48565b61092b576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556117dc3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b61182a8282610c48565b1561092b576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6040516001600160a01b03808516602483015283166044820152606481018290526118bd9085906323b872dd60e01b90608401611760565b50505050565b6000806118d0858461092f565b90506117096118f360646109a96008546109a9868a6116b090919063ffffffff16565b8590611712565b600061194f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166119cc9092919063ffffffff16565b805190915015611797578080602001905181019061196d9190611c16565b6117975760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161068c565b6060610e7d848460008585843b611a255760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161068c565b600080866001600160a01b03168587604051611a419190611cc2565b60006040518083038185875af1925050503d8060008114611a7e576040519150601f19603f3d011682016040523d82523d6000602084013e611a83565b606091505b5091509150611a93828286611a9e565b979650505050505050565b60608315611aad575081610bd8565b825115611abd5782518084602001fd5b8160405162461bcd60e51b815260040161068c9190611cde565b80356001600160a01b038116811461066057600080fd5b60008083601f840112611aff578182fd5b50813567ffffffffffffffff811115611b16578182fd5b6020830191508360208260051b8501011115611b3157600080fd5b9250929050565b600060208284031215611b49578081fd5b610a9082611ad7565b60008060408385031215611b64578081fd5b611b6d83611ad7565b946020939093013593505050565b600080600060608486031215611b8f578081fd5b611b9884611ad7565b95602085013595506040909401359392505050565b60008060008060408587031215611bc2578081fd5b843567ffffffffffffffff80821115611bd9578283fd5b611be588838901611aee565b90965094506020870135915080821115611bfd578283fd5b50611c0a87828801611aee565b95989497509550505050565b600060208284031215611c27578081fd5b81518015158114610a90578182fd5b600060208284031215611c47578081fd5b5035919050565b60008060408385031215611c60578182fd5b82359150611c7060208401611ad7565b90509250929050565b600060208284031215611c8a578081fd5b81356001600160e01b031981168114610a90578182fd5b60008060408385031215611cb3578182fd5b50508035926020909101359150565b60008251611cd4818460208701611e43565b9190910192915050565b6000602082528251806020840152611cfd816040850160208701611e43565b601f01601f19169190910160400192915050565b6020808252602a908201527f5261696e694c705374616b696e67506f6f6c3a2063616c6c6572206973206e6f6040820152693a1030b71037bbb732b960b11b606082015260800190565b60208082526023908201527f5261696e694c705374616b696e67506f6f6c3a207472616e73666572206661696040820152621b195960ea1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60008219821115611de857611de8611e8a565b500190565b600082611e0857634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611e2757611e27611e8a565b500290565b600082821015611e3e57611e3e611e8a565b500390565b60005b83811015611e5e578181015183820152602001611e46565b838111156118bd5750506000910152565b6000600019821415611e8357611e83611e8a565b5060010190565b634e487b7160e01b600052601160045260246000fdfea26469706673582212206181514ad67c318f8290373ac39d319c8a7fcc7ed5f34f0cf34a805562467a9164736f6c63430008030033000000000000000000000000895324433d8026fad0531428ccfbac7a6b32fbf8
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c80635af123f41161010d578063a47bd496116100a0578063c311d0491161006f578063c311d04914610582578063d5391393146105a2578063d547741f146105d6578063e467f7e0146105f6578063e48b6e3514610616576101ee565b8063a47bd49614610519578063a694fc3a14610539578063b09b1a5114610559578063b60f75d81461056c576101ee565b806391d14854116100dc57806391d14854146104a45780639dc29fac146104c4578063a217fddf146104e4578063a24c2562146104f9576101ee565b80635af123f41461043857806370a082311461044e5780637b0a47ee1461046e5780638812e89714610484576101ee565b80632e1a7d4d11610185578063399080ec11610154578063399080ec146103b65780633e1d0ae5146103ec578063503ea2881461040257806354c5b69614610422576101ee565b80632e1a7d4d146103365780632f2ff15d14610356578063308cd81a1461037657806336568abe14610396576101ee565b806318160ddd116101c157806318160ddd146102a657806319979932146102bc578063248a9ca3146102d2578063282c51f314610302576101ee565b806301ffc9a7146101f357806302fc492314610228578063037c99b01461026057806315d21e1114610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611c79565b61062c565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50600b54610248906001600160a01b031681565b6040516001600160a01b03909116815260200161021f565b34801561026c57600080fd5b5061028061027b366004611ca1565b610665565b005b34801561028e57600080fd5b5061029860095481565b60405190815260200161021f565b3480156102b257600080fd5b50610298600a5481565b3480156102c857600080fd5b5061029860065481565b3480156102de57600080fd5b506102986102ed366004611c36565b60009081526020819052604090206001015490565b34801561030e57600080fd5b506102987f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b34801561034257600080fd5b50610280610351366004611c36565b6106f8565b34801561036257600080fd5b50610280610371366004611c4e565b6108a0565b34801561038257600080fd5b50610298610391366004611b52565b61092f565b3480156103a257600080fd5b506102806103b1366004611c4e565b610a99565b3480156103c257600080fd5b506102986103d1366004611b38565b6001600160a01b03166000908152600c602052604090205490565b3480156103f857600080fd5b5061029860085481565b34801561040e57600080fd5b5061028061041d366004611c36565b610b13565b34801561042e57600080fd5b5061029860055481565b34801561044457600080fd5b5061029860075481565b34801561045a57600080fd5b50610298610469366004611b38565b610b75565b34801561047a57600080fd5b5061029860025481565b34801561049057600080fd5b5061029861049f366004611b38565b610bdf565b3480156104b057600080fd5b506102136104bf366004611c4e565b610c48565b3480156104d057600080fd5b506102806104df366004611b52565b610c71565b3480156104f057600080fd5b50610298600081565b34801561050557600080fd5b50610298610514366004611b7b565b610e70565b34801561052557600080fd5b50610280610534366004611ca1565b610e85565b34801561054557600080fd5b50610280610554366004611c36565b610eec565b610280610567366004611c36565b611107565b34801561057857600080fd5b5061029860045481565b34801561058e57600080fd5b5061028061059d366004611c36565b6112b5565b3480156105ae57600080fd5b506102987f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b3480156105e257600080fd5b506102806105f1366004611c4e565b6113d3565b34801561060257600080fd5b50610280610611366004611bad565b611453565b34801561062257600080fd5b5061029860035481565b60006001600160e01b03198216637965db0b60e01b148061065d57506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b6106706000336104bf565b6106955760405162461bcd60e51b815260040161068c90611d11565b60405180910390fd5b6008546106a39083906116b0565b600581905560068290556106b790826116bc565b60075560408051838152602081018390527f91748b9e70aede6f70ab0899def21be673bd7a3d850e142963dd688b53ecd5d391015b60405180910390a15050565b6002600154141561071b5760405162461bcd60e51b815260040161068c90611d9e565b6002600155336000818152600f602052604081205461073b9042906116c8565b6001600160a01b0383166000908152600c602052604081205491925090610764908490846116d4565b6001600160a01b0384166000908152600d602052604090205490915061078a9082611712565b6001600160a01b0384166000908152600d6020908152604080832093909355600f9052204290556005546007546107ee91906107e9906107ca90866116b0565b6001600160a01b0387166000908152600e602052604090205490611712565b61171e565b6001600160a01b0384166000908152600e6020908152604080832093909355338252600c9052205461082090856116c8565b336000908152600c6020526040902055600a5461083d90856116c8565b600a5561085733600b546001600160a01b03169086611734565b6040805133815260208101869052428183015290517fffe903c0abe6b2dbb2f3474ef43d7a3c1fca49e5a774453423ca8e1952aabffa9181900360600190a15050600180555050565b6000828152602081905260409020600101546108bd905b336104bf565b6109215760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526e0818591b5a5b881d1bc819dc985b9d608a1b606482015260840161068c565b61092b828261179c565b5050565b6001600160a01b0382166000908152600c602052604081205461095457506000610a93565b6005546001600160a01b0384166000908152600e602052604081205490911115610a8b576007546001600160a01b0385166000908152600e602052604081205460055491926109af9290916109a991906116c8565b906116bc565b905080841115610a27576005546001600160a01b0386166000908152600e602052604081205490916109f49184916109ee916002916109a99190611712565b906116b0565b90506000610a0e610a0587856116c8565b600554906116b0565b9050610a1e866109a98484611712565b93505050610a85565b6001600160a01b0385166000908152600e6020526040902054600754610a82916002916109a99190610a7c90610a5d908a6116b0565b6001600160a01b038b166000908152600e602052604090205490611712565b90611712565b91505b50610a90565b506005545b90505b92915050565b6001600160a01b0381163314610b095760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161068c565b61092b8282611820565b610b1e6000336104bf565b610b3a5760405162461bcd60e51b815260040161068c90611d11565b60098190556040518181527fb7cf93fdd1a223f775d0ba0c876449f55dba0345d09446d623a0415546cf3aac9060200160405180910390a150565b6001600160a01b0381166000908152600c6020908152604080832054600f9092528220548291610bb291859190610bad9042906116c8565b6116d4565b6001600160a01b0384166000908152600d6020526040902054909150610bd89082611712565b9392505050565b6001600160a01b0381166000908152600c6020526040812054610c0457506000610660565b6001600160a01b0382166000908152600f6020526040812054610c289042906116c8565b9050610bd86005546107e96107ca846007546116b090919063ffffffff16565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60026001541415610c945760405162461bcd60e51b815260040161068c90611d9e565b6002600155610cc37f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848336104bf565b610d225760405162461bcd60e51b815260206004820152602a60248201527f5261696e694c705374616b696e67506f6f6c3a2063616c6c6572206973206e6f6044820152693a103090313ab93732b960b11b606482015260840161068c565b6001600160a01b0382166000908152600f6020526040812054839190610d499042906116c8565b6001600160a01b0383166000908152600c602052604081205491925090610d72908490846116d4565b6001600160a01b0384166000908152600d6020526040902054909150610d989082611712565b6001600160a01b0384166000908152600d6020908152604080832093909355600f905220429055600554600754610dd891906107e9906107ca90866116b0565b6001600160a01b038085166000908152600e60209081526040808320949094559188168152600d9091522054610e0e90856116c8565b6001600160a01b0386166000818152600d60209081526040918290209390935580519182529181018690527f2dcfcb8dd7f92a1441a21ffa64ff110b029b8c14727dc57c22d5e3a7dad20b7291015b60405180910390a1505060018055505050565b6000610e7d8484846116d4565b949350505050565b610e906000336104bf565b610eac5760405162461bcd60e51b815260040161068c90611d11565b6002829055600381905560408051838152602081018390527fb1364803920b7aa08b58c240c989062d8ebd96ab4bd352792350afbab26c823991016106ec565b60026001541415610f0f5760405162461bcd60e51b815260040161068c90611d9e565b6002600155336000818152600f6020526040812054610f2f9042906116c8565b6001600160a01b0383166000908152600c602052604081205491925090610f58908490846116d4565b6001600160a01b0384166000908152600d6020526040902054909150610f7e9082611712565b6001600160a01b0384166000908152600d6020908152604080832093909355600f905220429055600554600754610fbe91906107e9906107ca90866116b0565b6001600160a01b0384166000908152600e6020526040902055836110245760405162461bcd60e51b815260206004820181905260248201527f5261696e694c705374616b696e67506f6f6c3a205f616d6f756e742069732030604482015260640161068c565b61103c33600b546001600160a01b0316903087611885565b600a546110499085611712565b600a55336000818152600c6020819052604082205492611087928892915b6001600160a01b0316815260208101919091526040016000205490611712565b336000908152600c60209081526040808320849055600e9091529020546110b391906109a990846116b0565b336000818152600e602090815260409182902093909355805191825291810187905242918101919091527fdd2a19c3bdd089cbe77c04f5655f83de0504d6140d12c8667646f55d0557c4dc90606001610e5d565b600081116111635760405162461bcd60e51b815260206004820152602360248201527f5261696e694c705374616b696e67506f6f6c3a205f616d6f756e74206973207a60448201526265726f60e81b606482015260840161068c565b80611179600954346116b090919063ffffffff16565b10156111d35760405162461bcd60e51b815260206004820152602360248201527f5261696e694c705374616b696e67506f6f6c3a206e6f7420656e6f75677468206044820152620cae8d60eb1b606482015260840161068c565b6111e181600d600033611067565b336000908152600d602052604081209190915560095461120d906112069084906116bc565b34906116c8565b9050801561127f57604051600090339083908381818185875af1925050503d8060008114611257576040519150601f19603f3d011682016040523d82523d6000602084013e61125c565b606091505b505090508061127d5760405162461bcd60e51b815260040161068c90611d5b565b505b60408051338152602081018490527ff69bff6f82b14616cf3bdf5d36a1504928849f54e2a949024c97f722523641ca91016106ec565b6112c06000336104bf565b6112dc5760405162461bcd60e51b815260040161068c90611d11565b4781111561133b5760405162461bcd60e51b815260206004820152602660248201527f5261696e694c705374616b696e67506f6f6c3a206e6f7420656e6f7567682062604482015265616c616e636560d01b606482015260840161068c565b604051600090339083908381818185875af1925050503d806000811461137d576040519150601f19603f3d011682016040523d82523d6000602084013e611382565b606091505b50509050806113a35760405162461bcd60e51b815260040161068c90611d5b565b6040518281527f7909752b76037727fecfc6c1abb7264306fd284ff7be21e2aa09bf2fdc00579d906020016106ec565b6000828152602081905260409020600101546113ee906108b7565b610b095760405162461bcd60e51b815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526f2061646d696e20746f207265766f6b6560801b606482015260840161068c565b61147d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336104bf565b6114dc5760405162461bcd60e51b815260206004820152602a60248201527f5261696e694c705374616b696e67506f6f6c3a2063616c6c6572206973206e6f6044820152693a10309036b4b73a32b960b11b606482015260840161068c565b8281146115375760405162461bcd60e51b8152602060048201526024808201527f5261696e694c705374616b696e67506f6f6c3a20417272617973206e6f7420656044820152631c5d585b60e21b606482015260840161068c565b60005b838110156116a9576115a583838381811061156557634e487b7160e01b600052603260045260246000fd5b90506020020135600d600088888681811061159057634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110679190611b38565b600d60008787858181106115c957634e487b7160e01b600052603260045260246000fd5b90506020020160208101906115de9190611b38565b6001600160a01b031681526020810191909152604001600020557fccf7b2bbc1b9e2aff9848ffc047297bfc64f47a18d250b12da287200b15920f185858381811061163957634e487b7160e01b600052603260045260246000fd5b905060200201602081019061164e9190611b38565b84848481811061166e57634e487b7160e01b600052603260045260246000fd5b604080516001600160a01b0390951685526020918202939093013590840152500160405180910390a1806116a181611e6f565b91505061153a565b5050505050565b6000610a908284611e0d565b6000610a908284611ded565b6000610a908284611e2c565b6000806116fc6003546109a96004546109a9886109ee6002548a6116b090919063ffffffff16565b90506117098582856118c3565b95945050505050565b6000610a908284611dd5565b600081831061172d5781610a90565b5090919050565b6040516001600160a01b03831660248201526044810182905261179790849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526118fa565b505050565b6117a68282610c48565b61092b576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556117dc3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b61182a8282610c48565b1561092b576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6040516001600160a01b03808516602483015283166044820152606481018290526118bd9085906323b872dd60e01b90608401611760565b50505050565b6000806118d0858461092f565b90506117096118f360646109a96008546109a9868a6116b090919063ffffffff16565b8590611712565b600061194f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166119cc9092919063ffffffff16565b805190915015611797578080602001905181019061196d9190611c16565b6117975760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161068c565b6060610e7d848460008585843b611a255760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161068c565b600080866001600160a01b03168587604051611a419190611cc2565b60006040518083038185875af1925050503d8060008114611a7e576040519150601f19603f3d011682016040523d82523d6000602084013e611a83565b606091505b5091509150611a93828286611a9e565b979650505050505050565b60608315611aad575081610bd8565b825115611abd5782518084602001fd5b8160405162461bcd60e51b815260040161068c9190611cde565b80356001600160a01b038116811461066057600080fd5b60008083601f840112611aff578182fd5b50813567ffffffffffffffff811115611b16578182fd5b6020830191508360208260051b8501011115611b3157600080fd5b9250929050565b600060208284031215611b49578081fd5b610a9082611ad7565b60008060408385031215611b64578081fd5b611b6d83611ad7565b946020939093013593505050565b600080600060608486031215611b8f578081fd5b611b9884611ad7565b95602085013595506040909401359392505050565b60008060008060408587031215611bc2578081fd5b843567ffffffffffffffff80821115611bd9578283fd5b611be588838901611aee565b90965094506020870135915080821115611bfd578283fd5b50611c0a87828801611aee565b95989497509550505050565b600060208284031215611c27578081fd5b81518015158114610a90578182fd5b600060208284031215611c47578081fd5b5035919050565b60008060408385031215611c60578182fd5b82359150611c7060208401611ad7565b90509250929050565b600060208284031215611c8a578081fd5b81356001600160e01b031981168114610a90578182fd5b60008060408385031215611cb3578182fd5b50508035926020909101359150565b60008251611cd4818460208701611e43565b9190910192915050565b6000602082528251806020840152611cfd816040850160208701611e43565b601f01601f19169190910160400192915050565b6020808252602a908201527f5261696e694c705374616b696e67506f6f6c3a2063616c6c6572206973206e6f6040820152693a1030b71037bbb732b960b11b606082015260800190565b60208082526023908201527f5261696e694c705374616b696e67506f6f6c3a207472616e73666572206661696040820152621b195960ea1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60008219821115611de857611de8611e8a565b500190565b600082611e0857634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611e2757611e27611e8a565b500290565b600082821015611e3e57611e3e611e8a565b500390565b60005b83811015611e5e578181015183820152602001611e46565b838111156118bd5750506000910152565b6000600019821415611e8357611e83611e8a565b5060010190565b634e487b7160e01b600052601160045260246000fdfea26469706673582212206181514ad67c318f8290373ac39d319c8a7fcc7ed5f34f0cf34a805562467a9164736f6c63430008030033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000895324433d8026fad0531428ccfbac7a6b32fbf8
-----Decoded View---------------
Arg [0] : _rainiLpToken (address): 0x895324433D8026FAd0531428ccFbaC7a6b32FbF8
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000895324433d8026fad0531428ccfbac7a6b32fbf8
Deployed Bytecode Sourcemap
35733:7960:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14352:217;;;;;;;;;;-1:-1:-1;14352:217:0;;;;;:::i;:::-;;:::i;:::-;;;5405:14:1;;5398:22;5380:41;;5368:2;5353:18;14352:217:0;;;;;;;;36314:26;;;;;;;;;;-1:-1:-1;36314:26:0;;;;-1:-1:-1;;;;;36314:26:0;;;;;;-1:-1:-1;;;;;5792:32:1;;;5774:51;;5762:2;5747:18;36314:26:0;5729:102:1;40282:280:0;;;;;;;;;;-1:-1:-1;40282:280:0;;;;;:::i;:::-;;:::i;:::-;;36249:27;;;;;;;;;;;;;;;;;;;5578:25:1;;;5566:2;5551:18;36249:27:0;5533:76:1;36281:26:0;;;;;;;;;;;;;;;;36139:28;;;;;;;;;;;;;;;;14989:123;;;;;;;;;;-1:-1:-1;14989:123:0;;;;;:::i;:::-;15055:7;15082:12;;;;;;;;;;:22;;;;14989:123;35800:62;;;;;;;;;;;;35838:24;35800:62;;41156:344;;;;;;;;;;-1:-1:-1;41156:344:0;;;;;:::i;:::-;;:::i;15374:232::-;;;;;;;;;;-1:-1:-1;15374:232:0;;;;;:::i;:::-;;:::i;39032:843::-;;;;;;;;;;-1:-1:-1;39032:843:0;;;;;:::i;:::-;;:::i;16593:218::-;;;;;;;;;;-1:-1:-1;16593:218:0;;;;;:::i;:::-;;:::i;38386:106::-;;;;;;;;;;-1:-1:-1;38386:106:0;;;;;:::i;:::-;-1:-1:-1;;;;;38472:14:0;38447:7;38472:14;;;:6;:14;;;;;;;38386:106;36201:41;;;;;;;;;;;;;;;;40109:167;;;;;;;;;;-1:-1:-1;40109:167:0;;;;;:::i;:::-;;:::i;36111:23::-;;;;;;;;;;;;;;;;36172:24;;;;;;;;;;;;;;;;38500:226;;;;;;;;;;-1:-1:-1;38500:226:0;;;;;:::i;:::-;;:::i;36001:25::-;;;;;;;;;;;;;;;;38732:294;;;;;;;;;;-1:-1:-1;38732:294:0;;;;;:::i;:::-;;:::i;14661:139::-;;;;;;;;;;-1:-1:-1;14661:139:0;;;;;:::i;:::-;;:::i;42875:229::-;;;;;;;;;;-1:-1:-1;42875:229:0;;;;;:::i;:::-;;:::i;13117:49::-;;;;;;;;;;-1:-1:-1;13117:49:0;13162:4;13117:49;;38199:181;;;;;;;;;;-1:-1:-1;38199:181:0;;;;;:::i;:::-;;:::i;39881:222::-;;;;;;;;;;-1:-1:-1;39881:222:0;;;;;:::i;:::-;;:::i;40570:578::-;;;;;;;;;;-1:-1:-1;40570:578:0;;;;;:::i;:::-;;:::i;42268:599::-;;;;;;:::i;:::-;;:::i;36065:39::-;;;;;;;;;;;;;;;;41506:326;;;;;;;;;;-1:-1:-1;41506:326:0;;;;;:::i;:::-;;:::i;35867:62::-;;;;;;;;;;;;35905:24;35867:62;;15851:235;;;;;;;;;;-1:-1:-1;15851:235:0;;;;;:::i;:::-;;:::i;41840:420::-;;;;;;;;;;-1:-1:-1;41840:420:0;;;;;:::i;:::-;;:::i;36031:29::-;;;;;;;;;;;;;;;;14352:217;14437:4;-1:-1:-1;;;;;;14461:47:0;;-1:-1:-1;;;14461:47:0;;:100;;-1:-1:-1;;;;;;;;;;10684:40:0;;;14525:36;14454:107;;14352:217;;;;:::o;40282:280::-;37418:41;13162:4;8668:10;37446:12;8588:98;37418:41;37410:96;;;;-1:-1:-1;;;37410:96:0;;;;;;;:::i;:::-;;;;;;;;;40401:13:::1;::::0;40387:28:::1;::::0;:9;;:13:::1;:28::i;:::-;40376:8;:39:::0;;;40424:13:::1;:30:::0;;;40475:28:::1;::::0;40440:14;40475:12:::1;:28::i;:::-;40463:9;:40:::0;40519:37:::1;::::0;;12983:25:1;;;13039:2;13024:18;;13017:34;;;40519:37:0::1;::::0;12956:18:1;40519:37:0::1;;;;;;;;40282:280:::0;;:::o;41156:344::-;20058:1;20655:7;;:19;;20647:63;;;;-1:-1:-1;;;20647:63:0;;;;;;;:::i;:::-;20058:1;20788:7;:18;8668:10;37850:16:::1;37889:19:::0;;;:11:::1;:19;::::0;;;;;37869:40:::1;::::0;:15:::1;::::0;:19:::1;:40::i;:::-;-1:-1:-1::0;;;;;37957:14:0;::::1;37916;37957::::0;;;:6:::1;:14;::::0;;;;;37850:59;;-1:-1:-1;37916:14:0;37933:49:::1;::::0;37949:6;;37850:59;37933:15:::1;:49::i;:::-;-1:-1:-1::0;;;;;38014:16:0;::::1;;::::0;;;:8:::1;:16;::::0;;;;;37916:66;;-1:-1:-1;38014:28:0::1;::::0;37916:66;38014:20:::1;:28::i;:::-;-1:-1:-1::0;;;;;37995:16:0;::::1;;::::0;;;:8:::1;:16;::::0;;;;;;;:47;;;;38049:11:::1;:19:::0;;;38071:15:::1;38049:37:::0;;38122:8:::1;::::0;38154:9:::1;::::0;38113:66:::1;::::0;38122:8;38132:46:::1;::::0;38154:23:::1;::::0;38168:8;38154:13:::1;:23::i;:::-;-1:-1:-1::0;;;;;38132:17:0;::::1;;::::0;;;:9:::1;:17;::::0;;;;;;:21:::1;:46::i;:::-;38113:8;:66::i;:::-;-1:-1:-1::0;;;;;38093:17:0;::::1;;::::0;;;:9:::1;:17;::::0;;;;;;;:86;;;;8668:10;41278:20;;:6:::2;:20:::0;;;;:33:::2;::::0;41303:7;41278:24:::2;:33::i;:::-;8668:10:::0;41255:20:::2;::::0;;;:6:::2;:20;::::0;;;;:56;41334:11:::2;::::0;:24:::2;::::0;41350:7;41334:15:::2;:24::i;:::-;41320:11;:38:::0;41369:48:::2;8668:10:::0;41369:12:::2;::::0;-1:-1:-1;;;;;41369:12:0::2;::::0;41409:7;41369:25:::2;:48::i;:::-;41439:55;::::0;;8668:10;5092:51:1;;5174:2;5159:18;;5152:34;;;41478:15:0::2;5202:18:1::0;;;5195:34;41439:55:0;;::::2;::::0;;;;5080:2:1;41439:55:0;;::::2;-1:-1:-1::0;;20014:1:0;20967:22;;-1:-1:-1;;41156:344:0:o;15374:232::-;15055:7;15082:12;;;;;;;;;;:22;;;15467:41;;15475:18;8668:10;15495:12;8588:98;15467:41;15459:101;;;;-1:-1:-1;;;15459:101:0;;6426:2:1;15459:101:0;;;6408:21:1;6465:2;6445:18;;;6438:30;6504:34;6484:18;;;6477:62;-1:-1:-1;;;6555:18:1;;;6548:45;6610:19;;15459:101:0;6398:237:1;15459:101:0;15573:25;15584:4;15590:7;15573:10;:25::i;:::-;15374:232;;:::o;39032:843::-;-1:-1:-1;;;;;39141:14:0;;39120:7;39141:14;;;:6;:14;;;;;;39138:53;;-1:-1:-1;39180:1:0;39173:8;;39138:53;39248:8;;-1:-1:-1;;;;;39228:17:0;;39200:16;39228:17;;;:9;:17;;;;;;39200:16;;-1:-1:-1;39225:621:0;;;39331:9;;-1:-1:-1;;;;;39308:17:0;;39269:23;39308:17;;;:9;:17;;;;;;39295:8;;39269:23;;39295:46;;39331:9;;39295:31;;:8;:12;:31::i;:::-;:35;;:46::i;:::-;39269:72;;39367:15;39355:9;:27;39352:439;;;39453:8;;-1:-1:-1;;;;;39431:17:0;;39397:31;39431:17;;;:9;:17;;;;;;39397:31;;39431:59;;39474:15;;39431:38;;39467:1;;39431:31;;:17;:21;:31::i;:38::-;:42;;:59::i;:::-;39397:93;-1:-1:-1;39503:24:0;39530:44;39543:30;:9;39557:15;39543:13;:30::i;:::-;39530:8;;;:12;:44::i;:::-;39503:71;-1:-1:-1;39600:60:0;39650:9;39600:45;:23;39503:71;39600:27;:45::i;:60::-;39589:71;;39352:439;;;;;-1:-1:-1;;;;;39754:17:0;;;;;;:9;:17;;;;;;39724:9;;39702:77;;39777:1;;39702:70;;39754:17;39702:47;;39724:24;;39738:9;39724:13;:24::i;:::-;-1:-1:-1;;;;;39702:17:0;;;;;;:9;:17;;;;;;;:21;:47::i;:::-;:51;;:70::i;:77::-;39691:88;;39352:439;39225:621;;;;-1:-1:-1;39828:8:0;;39225:621;39861:8;-1:-1:-1;39032:843:0;;;;;:::o;16593:218::-;-1:-1:-1;;;;;16689:23:0;;8668:10;16689:23;16681:83;;;;-1:-1:-1;;;16681:83:0;;12413:2:1;16681:83:0;;;12395:21:1;12452:2;12432:18;;;12425:30;12491:34;12471:18;;;12464:62;-1:-1:-1;;;12542:18:1;;;12535:45;12597:19;;16681:83:0;12385:237:1;16681:83:0;16777:26;16789:4;16795:7;16777:11;:26::i;40109:167::-;37418:41;13162:4;8668:10;37446:12;8588:98;37418:41;37410:96;;;;-1:-1:-1;;;37410:96:0;;;;;;;:::i;:::-;40190:12:::1;:28:::0;;;40240:30:::1;::::0;5578:25:1;;;40240:30:0::1;::::0;5566:2:1;5551:18;40240:30:0::1;;;;;;;40109:167:::0;:::o;38500:226::-;-1:-1:-1;;;;;38619:14:0;;38560:7;38619:14;;;:6;:14;;;;;;;;;38655:11;:19;;;;;;38560:7;;38595:81;;38611:6;;38619:14;38635:40;;:15;;:19;:40::i;:::-;38595:15;:81::i;:::-;-1:-1:-1;;;;;38692:16:0;;;;;;:8;:16;;;;;;38578:98;;-1:-1:-1;38692:28:0;;38578:98;38692:20;:28::i;:::-;38685:35;38500:226;-1:-1:-1;;;38500:226:0:o;38732:294::-;-1:-1:-1;;;;;38820:14:0;;38799:7;38820:14;;;:6;:14;;;;;;38817:53;;-1:-1:-1;38859:1:0;38852:8;;38817:53;-1:-1:-1;;;;;38918:19:0;;38879:16;38918:19;;;:11;:19;;;;;;38898:40;;:15;;:19;:40::i;:::-;38879:59;;38954:66;38963:8;;38973:46;38995:23;39009:8;38995:9;;:13;;:23;;;;:::i;14661:139::-;14739:4;14763:12;;;;;;;;;;;-1:-1:-1;;;;;14763:29:0;;;;;;;;;;;;;;;14661:139::o;42875:229::-;20058:1;20655:7;;:19;;20647:63;;;;-1:-1:-1;;;20647:63:0;;;;;;;:::i;:::-;20058:1;20788:7;:18;37563:34:::1;35838:24;8668:10:::0;37584:12:::1;8588:98:::0;37563:34:::1;37555:89;;;::::0;-1:-1:-1;;;37555:89:0;;8830:2:1;37555:89:0::1;::::0;::::1;8812:21:1::0;8869:2;8849:18;;;8842:30;8908:34;8888:18;;;8881:62;-1:-1:-1;;;8959:18:1;;;8952:40;9009:19;;37555:89:0::1;8802:232:1::0;37555:89:0::1;-1:-1:-1::0;;;;;37889:19:0;::::2;37850:16;37889:19:::0;;;:11:::2;:19;::::0;;;;;42975:6;;37850:16;37869:40:::2;::::0;:15:::2;::::0;:19:::2;:40::i;:::-;-1:-1:-1::0;;;;;37957:14:0;::::2;37916;37957::::0;;;:6:::2;:14;::::0;;;;;37850:59;;-1:-1:-1;37916:14:0;37933:49:::2;::::0;37949:6;;37850:59;37933:15:::2;:49::i;:::-;-1:-1:-1::0;;;;;38014:16:0;::::2;;::::0;;;:8:::2;:16;::::0;;;;;37916:66;;-1:-1:-1;38014:28:0::2;::::0;37916:66;38014:20:::2;:28::i;:::-;-1:-1:-1::0;;;;;37995:16:0;::::2;;::::0;;;:8:::2;:16;::::0;;;;;;;:47;;;;38049:11:::2;:19:::0;;;38071:15:::2;38049:37:::0;;38122:8:::2;::::0;38154:9:::2;::::0;38113:66:::2;::::0;38122:8;38132:46:::2;::::0;38154:23:::2;::::0;38168:8;38154:13:::2;:23::i;38113:66::-;-1:-1:-1::0;;;;;38093:17:0;;::::2;;::::0;;;:9:::2;:17;::::0;;;;;;;:86;;;;43011:16;;::::3;::::0;;:8:::3;:16:::0;;;;;:29:::3;::::0;43032:7;43011:20:::3;:29::i;:::-;-1:-1:-1::0;;;;;42992:16:0;::::3;;::::0;;;:8:::3;:16;::::0;;;;;;;;:48;;;;43062:36;;4785:51:1;;;4852:18;;;4845:34;;;43062:36:0::3;::::0;4758:18:1;43062:36:0::3;;;;;;;;-1:-1:-1::0;;20014:1:0;20967:22;;-1:-1:-1;;;42875:229:0:o;38199:181::-;38306:7;38331:43;38347:6;38355:7;38364:9;38331:15;:43::i;:::-;38324:50;38199:181;-1:-1:-1;;;;38199:181:0:o;39881:222::-;37418:41;13162:4;8668:10;37446:12;8588:98;37418:41;37410:96;;;;-1:-1:-1;;;37410:96:0;;;;;;;:::i;:::-;39979:10:::1;:24:::0;;;40012:14:::1;:32:::0;;;40060:37:::1;::::0;;12983:25:1;;;13039:2;13024:18;;13017:34;;;40060:37:0::1;::::0;12956:18:1;40060:37:0::1;12938:119:1::0;40570:578:0;20058:1;20655:7;;:19;;20647:63;;;;-1:-1:-1;;;20647:63:0;;;;;;;:::i;:::-;20058:1;20788:7;:18;8668:10;37850:16:::1;37889:19:::0;;;:11:::1;:19;::::0;;;;;37869:40:::1;::::0;:15:::1;::::0;:19:::1;:40::i;:::-;-1:-1:-1::0;;;;;37957:14:0;::::1;37916;37957::::0;;;:6:::1;:14;::::0;;;;;37850:59;;-1:-1:-1;37916:14:0;37933:49:::1;::::0;37949:6;;37850:59;37933:15:::1;:49::i;:::-;-1:-1:-1::0;;;;;38014:16:0;::::1;;::::0;;;:8:::1;:16;::::0;;;;;37916:66;;-1:-1:-1;38014:28:0::1;::::0;37916:66;38014:20:::1;:28::i;:::-;-1:-1:-1::0;;;;;37995:16:0;::::1;;::::0;;;:8:::1;:16;::::0;;;;;;;:47;;;;38049:11:::1;:19:::0;;;38071:15:::1;38049:37:::0;;38122:8:::1;::::0;38154:9:::1;::::0;38113:66:::1;::::0;38122:8;38132:46:::1;::::0;38154:23:::1;::::0;38168:8;38154:13:::1;:23::i;38113:66::-;-1:-1:-1::0;;;;;38093:17:0;::::1;;::::0;;;:9:::1;:17;::::0;;;;:86;40674:11;40666:56:::2;;;::::0;-1:-1:-1;;;40666:56:0;;7253:2:1;40666:56:0::2;::::0;::::2;7235:21:1::0;;;7272:18;;;7265:30;7331:34;7311:18;;;7304:62;7383:18;;40666:56:0::2;7225:182:1::0;40666:56:0::2;40733:67;8668:10:::0;40733:12:::2;::::0;-1:-1:-1;;;;;40733:12:0::2;::::0;40785:4:::2;40792:7:::0;40733:29:::2;:67::i;:::-;40825:11;::::0;:24:::2;::::0;40841:7;40825:15:::2;:24::i;:::-;40811:11;:38:::0;8668:10;40864:20:::2;40887::::0;;;:6:::2;:20;::::0;;;;;;;;40939:33:::2;::::0;40964:7;;40887:6;40946:12:::2;-1:-1:-1::0;;;;;40939:20:0::2;::::0;;::::2;::::0;::::2;::::0;;;;;;-1:-1:-1;40939:20:0;;;:24:::2;:33::i;:::-;8668:10:::0;40916:20:::2;::::0;;;:6:::2;:20;::::0;;;;;;;:56;;;41007:9:::2;:23:::0;;;;;;:67:::2;::::0;40916:56;41007:41:::2;::::0;41035:12;41007:27:::2;:41::i;:67::-;8668:10:::0;40981:23:::2;::::0;;;:9:::2;:23;::::0;;;;;;;;:93;;;;41090:52;;5092:51:1;;;5159:18;;;5152:34;;;41126:15:0::2;5202:18:1::0;;;5195:34;;;;41090:52:0::2;::::0;5080:2:1;5065:18;41090:52:0::2;5047:188:1::0;42268:599:0;42355:1;42345:7;:11;42337:59;;;;-1:-1:-1;;;42337:59:0;;9241:2:1;42337:59:0;;;9223:21:1;9280:2;9260:18;;;9253:30;9319:34;9299:18;;;9292:62;-1:-1:-1;;;9370:18:1;;;9363:33;9413:19;;42337:59:0;9213:225:1;42337:59:0;42444:7;42413:27;42427:12;;42413:9;:13;;:27;;;;:::i;:::-;:38;;42405:86;;;;-1:-1:-1;;;42405:86:0;;7614:2:1;42405:86:0;;;7596:21:1;7653:2;7633:18;;;7626:30;7692:34;7672:18;;;7665:62;-1:-1:-1;;;7743:18:1;;;7736:33;7786:19;;42405:86:0;7586:225:1;42405:86:0;42527:35;42554:7;42527:8;:22;8668:10;42536:12;8588:98;42527:35;8668:10;42502:22;;;;:8;:22;;;;;:60;;;;42616:12;;42590:40;;42604:25;;:7;;:11;:25::i;:::-;42590:9;;:13;:40::i;:::-;42573:57;-1:-1:-1;42642:10:0;;42639:159;;42684:38;;42666:12;;8668:10;;42710:6;;42666:12;42684:38;42666:12;42684:38;42710:6;8668:10;42684:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42665:57;;;42741:7;42733:55;;;;-1:-1:-1;;;42733:55:0;;;;;;;:::i;:::-;42639:159;;42819:42;;;8668:10;4785:51:1;;4867:2;4852:18;;4845:34;;;42819:42:0;;4758:18:1;42819:42:0;4740:145:1;41506:326:0;37418:41;13162:4;8668:10;37446:12;8588:98;37418:41;37410:96;;;;-1:-1:-1;;;37410:96:0;;;;;;;:::i;:::-;41596:21:::1;41585:7;:32;;41577:83;;;::::0;-1:-1:-1;;;41577:83:0;;10062:2:1;41577:83:0::1;::::0;::::1;10044:21:1::0;10101:2;10081:18;;;10074:30;10140:34;10120:18;;;10113:62;-1:-1:-1;;;10191:18:1;;;10184:36;10237:19;;41577:83:0::1;10034:228:1::0;41577:83:0::1;41688:39;::::0;41670:12:::1;::::0;8668:10;;41714:7;;41670:12;41688:39;41670:12;41688:39;41714:7;8668:10;41688:39:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41669:58;;;41744:7;41736:55;;;;-1:-1:-1::0;;;41736:55:0::1;;;;;;;:::i;:::-;41805:21;::::0;5578:25:1;;;41805:21:0::1;::::0;5566:2:1;5551:18;41805:21:0::1;5533:76:1::0;15851:235:0;15055:7;15082:12;;;;;;;;;;:22;;;15945:41;;15953:18;14989:123;15945:41;15937:102;;;;-1:-1:-1;;;15937:102:0;;9645:2:1;15937:102:0;;;9627:21:1;9684:2;9664:18;;;9657:30;9723:34;9703:18;;;9696:62;-1:-1:-1;;;9774:18:1;;;9767:46;9830:19;;15937:102:0;9617:238:1;41840:420:0;37701:34;35905:24;8668:10;37722:12;8588:98;37701:34;37693:89;;;;-1:-1:-1;;;37693:89:0;;10873:2:1;37693:89:0;;;10855:21:1;10912:2;10892:18;;;10885:30;10951:34;10931:18;;;10924:62;-1:-1:-1;;;11002:18:1;;;10995:40;11052:19;;37693:89:0;10845:232:1;37693:89:0;41956:35;;::::1;41948:84;;;::::0;-1:-1:-1;;;41948:84:0;;8018:2:1;41948:84:0::1;::::0;::::1;8000:21:1::0;8057:2;8037:18;;;8030:30;8096:34;8076:18;;;8069:62;-1:-1:-1;;;8147:18:1;;;8140:34;8191:19;;41948:84:0::1;7990:226:1::0;41948:84:0::1;42054:9;42049:206;42069:21:::0;;::::1;42049:206;;;42134:39;42162:7;;42170:1;42162:10;;;;;-1:-1:-1::0;;;42162:10:0::1;;;;;;;;;;;;;;;42134:8;:23;42143:10;;42154:1;42143:13;;;;;-1:-1:-1::0;;;42143:13:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;42134:39::-;42108:8;:23;42117:10;;42128:1;42117:13;;;;;-1:-1:-1::0;;;42117:13:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42108:23:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;42108:23:0;:65;42199:46:::1;42219:10:::0;;42230:1;42219:13;;::::1;;;-1:-1:-1::0;;;42219:13:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42234:7;;42242:1;42234:10;;;;;-1:-1:-1::0;;;42234:10:0::1;;;;;;;;;42199:46;::::0;;-1:-1:-1;;;;;4803:32:1;;;4785:51;;42234:10:0::1;::::0;;::::1;::::0;;;::::1;;4852:18:1::0;;;4845:34;-1:-1:-1;4758:18:1;42199:46:0::1;;;;;;;42092:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42049:206;;;;41840:420:::0;;;;:::o;4416:98::-;4474:7;4501:5;4505:1;4501;:5;:::i;4815:98::-;4873:7;4900:5;4904:1;4900;:5;:::i;4059:98::-;4117:7;4144:5;4148:1;4144;:5;:::i;43112:312::-;43216:7;43234:14;43251:108;43344:14;;43251:78;43314:14;;43251:48;43291:7;43251:25;43265:10;;43251:9;:13;;:25;;;;:::i;:108::-;43234:125;;43377:41;43392:6;43400;43408:9;43377:14;:41::i;:::-;43370:48;43112:312;-1:-1:-1;;;;;43112:312:0:o;3678:98::-;3736:7;3763:5;3767:1;3763;:5;:::i;465:106::-;523:7;554:1;550;:5;:13;;562:1;550:13;;;-1:-1:-1;558:1:0;;465:106;-1:-1:-1;465:106:0:o;32449:177::-;32559:58;;-1:-1:-1;;;;;4803:32:1;;32559:58:0;;;4785:51:1;4852:18;;;4845:34;;;32532:86:0;;32552:5;;-1:-1:-1;;;32582:23:0;4758:18:1;;32559:58:0;;;;-1:-1:-1;;32559:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;32559:58:0;-1:-1:-1;;;;;;32559:58:0;;;;;;;;;;32532:19;:86::i;:::-;32449:177;;;:::o;17841:229::-;17916:22;17924:4;17930:7;17916;:22::i;:::-;17911:152;;17955:6;:12;;;;;;;;;;;-1:-1:-1;;;;;17955:29:0;;;;;;;;;:36;;-1:-1:-1;;17955:36:0;17987:4;17955:36;;;18038:12;8668:10;8588:98;;18038:12;-1:-1:-1;;;;;18011:40:0;18029:7;-1:-1:-1;;;;;18011:40:0;18023:4;18011:40;;;;;;;;;;17841:229;;:::o;18078:230::-;18153:22;18161:4;18167:7;18153;:22::i;:::-;18149:152;;;18224:5;18192:12;;;;;;;;;;;-1:-1:-1;;;;;18192:29:0;;;;;;;;;;:37;;-1:-1:-1;;18192:37:0;;;18249:40;8668:10;;18192:12;;18249:40;;18224:5;18249:40;18078:230;;:::o;32634:205::-;32762:68;;-1:-1:-1;;;;;4489:15:1;;;32762:68:0;;;4471:34:1;4541:15;;4521:18;;;4514:43;4573:18;;;4566:34;;;32735:96:0;;32755:5;;-1:-1:-1;;;32785:27:0;4406:18:1;;32762:68:0;4388:218:1;32735:96:0;32634:205;;;;:::o;43430:260::-;43532:7;43550:16;43569:37;43588:6;43596:9;43569:18;:37::i;:::-;43550:56;;43622:62;43634:49;43679:3;43634:40;43660:13;;43634:21;43646:8;43634:7;:11;;:21;;;;:::i;:49::-;43622:7;;:11;:62::i;34883:761::-;35307:23;35333:69;35361:4;35333:69;;;;;;;;;;;;;;;;;35341:5;-1:-1:-1;;;;;35333:27:0;;;:69;;;;;:::i;:::-;35417:17;;35307:95;;-1:-1:-1;35417:21:0;35413:224;;35559:10;35548:30;;;;;;;;;;;;:::i;:::-;35540:85;;;;-1:-1:-1;;;35540:85:0;;11642:2:1;35540:85:0;;;11624:21:1;11681:2;11661:18;;;11654:30;11720:34;11700:18;;;11693:62;-1:-1:-1;;;11771:18:1;;;11764:40;11821:19;;35540:85:0;11614:232:1;27483:195:0;27586:12;27618:52;27640:6;27648:4;27654:1;27657:12;27586;24932:20;;28779:60;;;;-1:-1:-1;;;28779:60:0;;11284:2:1;28779:60:0;;;11266:21:1;11323:2;11303:18;;;11296:30;11362:31;11342:18;;;11335:59;11411:18;;28779:60:0;11256:179:1;28779:60:0;28913:12;28927:23;28954:6;-1:-1:-1;;;;;28954:11:0;28974:5;28982:4;28954:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28912:75;;;;29005:52;29023:7;29032:10;29044:12;29005:17;:52::i;:::-;28998:59;28535:530;-1:-1:-1;;;;;;;28535:530:0:o;31075:742::-;31190:12;31219:7;31215:595;;;-1:-1:-1;31250:10:0;31243:17;;31215:595;31364:17;;:21;31360:439;;31627:10;31621:17;31688:15;31675:10;31671:2;31667:19;31660:44;31575:148;31770:12;31763:20;;-1:-1:-1;;;31763:20:0;;;;;;;;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;192:395;;;319:3;312:4;304:6;300:17;296:27;286:2;;344:8;334;327:26;286:2;-1:-1:-1;374:20:1;;417:18;406:30;;403:2;;;456:8;446;439:26;403:2;500:4;492:6;488:17;476:29;;560:3;553:4;543:6;540:1;536:14;528:6;524:27;520:38;517:47;514:2;;;577:1;574;567:12;514:2;276:311;;;;;:::o;592:196::-;;704:2;692:9;683:7;679:23;675:32;672:2;;;725:6;717;710:22;672:2;753:29;772:9;753:29;:::i;793:264::-;;;922:2;910:9;901:7;897:23;893:32;890:2;;;943:6;935;928:22;890:2;971:29;990:9;971:29;:::i;:::-;961:39;1047:2;1032:18;;;;1019:32;;-1:-1:-1;;;880:177:1:o;1062:332::-;;;;1208:2;1196:9;1187:7;1183:23;1179:32;1176:2;;;1229:6;1221;1214:22;1176:2;1257:29;1276:9;1257:29;:::i;:::-;1247:39;1333:2;1318:18;;1305:32;;-1:-1:-1;1384:2:1;1369:18;;;1356:32;;1166:228;-1:-1:-1;;;1166:228:1:o;1399:803::-;;;;;1598:2;1586:9;1577:7;1573:23;1569:32;1566:2;;;1619:6;1611;1604:22;1566:2;1664:9;1651:23;1693:18;1734:2;1726:6;1723:14;1720:2;;;1755:6;1747;1740:22;1720:2;1799:70;1861:7;1852:6;1841:9;1837:22;1799:70;:::i;:::-;1888:8;;-1:-1:-1;1773:96:1;-1:-1:-1;1976:2:1;1961:18;;1948:32;;-1:-1:-1;1992:16:1;;;1989:2;;;2026:6;2018;2011:22;1989:2;;2070:72;2134:7;2123:8;2112:9;2108:24;2070:72;:::i;:::-;1556:646;;;;-1:-1:-1;2161:8:1;-1:-1:-1;;;;1556:646:1:o;2207:297::-;;2327:2;2315:9;2306:7;2302:23;2298:32;2295:2;;;2348:6;2340;2333:22;2295:2;2385:9;2379:16;2438:5;2431:13;2424:21;2417:5;2414:32;2404:2;;2465:6;2457;2450:22;2509:190;;2621:2;2609:9;2600:7;2596:23;2592:32;2589:2;;;2642:6;2634;2627:22;2589:2;-1:-1:-1;2670:23:1;;2579:120;-1:-1:-1;2579:120:1:o;2704:264::-;;;2833:2;2821:9;2812:7;2808:23;2804:32;2801:2;;;2854:6;2846;2839:22;2801:2;2895:9;2882:23;2872:33;;2924:38;2958:2;2947:9;2943:18;2924:38;:::i;:::-;2914:48;;2791:177;;;;;:::o;2973:306::-;;3084:2;3072:9;3063:7;3059:23;3055:32;3052:2;;;3105:6;3097;3090:22;3052:2;3136:23;;-1:-1:-1;;;;;;3188:32:1;;3178:43;;3168:2;;3240:6;3232;3225:22;3479:258;;;3608:2;3596:9;3587:7;3583:23;3579:32;3576:2;;;3629:6;3621;3614:22;3576:2;-1:-1:-1;;3657:23:1;;;3727:2;3712:18;;;3699:32;;-1:-1:-1;3566:171:1:o;3742:274::-;;3909:6;3903:13;3925:53;3971:6;3966:3;3959:4;3951:6;3947:17;3925:53;:::i;:::-;3994:16;;;;;3879:137;-1:-1:-1;;3879:137:1:o;5836:383::-;;5985:2;5974:9;5967:21;6017:6;6011:13;6060:6;6055:2;6044:9;6040:18;6033:34;6076:66;6135:6;6130:2;6119:9;6115:18;6110:2;6102:6;6098:15;6076:66;:::i;:::-;6203:2;6182:15;-1:-1:-1;;6178:29:1;6163:45;;;;6210:2;6159:54;;5957:262;-1:-1:-1;;5957:262:1:o;6640:406::-;6842:2;6824:21;;;6881:2;6861:18;;;6854:30;6920:34;6915:2;6900:18;;6893:62;-1:-1:-1;;;6986:2:1;6971:18;;6964:40;7036:3;7021:19;;6814:232::o;10267:399::-;10469:2;10451:21;;;10508:2;10488:18;;;10481:30;10547:34;10542:2;10527:18;;10520:62;-1:-1:-1;;;10613:2:1;10598:18;;10591:33;10656:3;10641:19;;10441:225::o;11851:355::-;12053:2;12035:21;;;12092:2;12072:18;;;12065:30;12131:33;12126:2;12111:18;;12104:61;12197:2;12182:18;;12025:181::o;13062:128::-;;13133:1;13129:6;13126:1;13123:13;13120:2;;;13139:18;;:::i;:::-;-1:-1:-1;13175:9:1;;13110:80::o;13195:217::-;;13261:1;13251:2;;-1:-1:-1;;;13286:31:1;;13340:4;13337:1;13330:15;13368:4;13293:1;13358:15;13251:2;-1:-1:-1;13397:9:1;;13241:171::o;13417:168::-;;13523:1;13519;13515:6;13511:14;13508:1;13505:21;13500:1;13493:9;13486:17;13482:45;13479:2;;;13530:18;;:::i;:::-;-1:-1:-1;13570:9:1;;13469:116::o;13590:125::-;;13658:1;13655;13652:8;13649:2;;;13663:18;;:::i;:::-;-1:-1:-1;13700:9:1;;13639:76::o;13720:258::-;13792:1;13802:113;13816:6;13813:1;13810:13;13802:113;;;13892:11;;;13886:18;13873:11;;;13866:39;13838:2;13831:10;13802:113;;;13933:6;13930:1;13927:13;13924:2;;;-1:-1:-1;;13968:1:1;13950:16;;13943:27;13773:205::o;13983:135::-;;-1:-1:-1;;14043:17:1;;14040:2;;;14063:18;;:::i;:::-;-1:-1:-1;14110:1:1;14099:13;;14030:88::o;14123:127::-;14184:10;14179:3;14175:20;14172:1;14165:31;14215:4;14212:1;14205:15;14239:4;14236:1;14229:15
Swarm Source
ipfs://6181514ad67c318f8290373ac39d319c8a7fcc7ed5f34f0cf34a805562467a91
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.