More Info
Private Name Tags
ContractCreator
Latest 9 from a total of 9 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 5018626 | 80 days ago | IN | 0 S | 0.00578204 | ||||
Deposit | 4996695 | 80 days ago | IN | 0 S | 0.00556275 | ||||
Deposit | 4996437 | 80 days ago | IN | 0 S | 0.00870701 | ||||
Deposit | 4995164 | 80 days ago | IN | 0 S | 0.01294733 | ||||
Withdraw | 4995083 | 80 days ago | IN | 0 S | 0.00222765 | ||||
Deposit | 4994894 | 80 days ago | IN | 0 S | 0.00218534 | ||||
Withdraw | 4993163 | 80 days ago | IN | 0 S | 0.00222765 | ||||
Deposit | 4992841 | 80 days ago | IN | 0 S | 0.00218534 | ||||
Add | 4991152 | 80 days ago | IN | 0 S | 0.00905168 |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
StombGenesisRewardPool
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2025-01-22 */ /** *Submitted for verification at SonicScan.org on 2024-12-31 */ // SPDX-License-Identifier: MIT // File: GenesisPool/StombGenesisRewardPool/lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol pragma solidity ^0.6.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: GenesisPool/StombGenesisRewardPool/lib/openzeppelin-contracts/contracts/math/SafeMath.sol pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: GenesisPool/StombGenesisRewardPool/lib/openzeppelin-contracts/contracts/utils/Address.sol pragma solidity ^0.6.2; /** * @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) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @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"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); 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: GenesisPool/StombGenesisRewardPool/lib/openzeppelin-contracts/contracts/token/ERC20/SafeERC20.sol pragma solidity ^0.6.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 SafeMath for uint256; 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).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _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: GenesisPool/StombGenesisRewardPool/src/distribution/StombGenesisRewardPool.sol pragma solidity 0.6.12; // Note that this pool has no minter key of STOMB (rewards). // Instead, the governance will call STOMB distributeReward method and send reward to this pool at the beginning. contract StombGenesisRewardPool { using SafeMath for uint256; using SafeERC20 for IERC20; // governance address public operator; address public devFund; // Info of each user. struct UserInfo { uint256 amount; // How many tokens the user has provided. uint256 rewardDebt; // Reward debt. See explanation below. } // Info of each pool. struct PoolInfo { IERC20 token; // Address of LP token contract. uint256 allocPoint; // How many allocation points assigned to this pool. STOMB to distribute. uint256 lastRewardTime; // Last time that STOMB distribution occurs. uint256 accStombPerShare; // Accumulated STOMB per share, times 1e18. See below. bool isStarted; // if lastRewardBlock has passed uint256 depositFee; } IERC20 public stomb; // Info of each pool. PoolInfo[] public poolInfo; // Info of each user that stakes LP tokens. mapping(uint256 => mapping(address => UserInfo)) public userInfo; // Total allocation points. Must be the sum of all allocation points in all pools. uint256 public totalAllocPoint = 0; // The time when STOMB mining starts. uint256 public poolStartTime; // The time when STOMB mining ends. uint256 public poolEndTime; uint256 public stombPerSecond = 0.1967 ether; uint256 public runningTime = 24 hours; uint256 public constant TOTAL_REWARDS = 17000 ether; // (tps * 24h * 60min * 60s) uint256 public constant MAX_DEPOSIT_FEE = 50; // 5% max deposit fee event Deposit(address indexed user, uint256 indexed pid, uint256 amount); event Withdraw(address indexed user, uint256 indexed pid, uint256 amount); event EmergencyWithdraw( address indexed user, uint256 indexed pid, uint256 amount ); event RewardPaid(address indexed user, uint256 amount); constructor( address _stomb, uint256 _poolStartTime, address _devFund ) public { require(block.timestamp < _poolStartTime, "late"); require(_devFund != address(0), "devFund must be a non-zero address"); if (_stomb != address(0)) stomb = IERC20(_stomb); poolStartTime = _poolStartTime; poolEndTime = poolStartTime + runningTime; operator = msg.sender; devFund = _devFund; } modifier onlyOperator() { require( operator == msg.sender, "StombGenesisPool: caller is not the operator" ); _; } function checkPoolDuplicate(IERC20 _token) internal view { uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { require( poolInfo[pid].token != _token, "StombGenesisPool: existing pool?" ); } } // Add a new token to the pool. Can only be called by the owner. function add( uint256 _allocPoint, IERC20 _token, bool _withUpdate, uint256 _lastRewardTime, uint256 _depositFee ) public onlyOperator { checkPoolDuplicate(_token); require( _depositFee <= MAX_DEPOSIT_FEE, "StombGenesisPool: max deposit fee" ); if (_withUpdate) { massUpdatePools(); } if (block.timestamp < poolStartTime) { // chef is sleeping if (_lastRewardTime == 0) { _lastRewardTime = poolStartTime; } else { if (_lastRewardTime < poolStartTime) { _lastRewardTime = poolStartTime; } } } else { // chef is cooking if (_lastRewardTime == 0 || _lastRewardTime < block.timestamp) { _lastRewardTime = block.timestamp; } } bool _isStarted = (_lastRewardTime <= poolStartTime) || (_lastRewardTime <= block.timestamp); poolInfo.push( PoolInfo({ token: _token, allocPoint: _allocPoint, lastRewardTime: _lastRewardTime, accStombPerShare: 0, isStarted: _isStarted, depositFee: _depositFee }) ); if (_isStarted) { totalAllocPoint = totalAllocPoint.add(_allocPoint); } } // Update the given pool's STOMB allocation point. Can only be called by the owner. function set( uint256 _pid, uint256 _allocPoint, uint256 _depositFee ) public onlyOperator { require( _depositFee <= MAX_DEPOSIT_FEE, "StombGenesisPool: max deposit fee" ); massUpdatePools(); PoolInfo storage pool = poolInfo[_pid]; if (pool.isStarted) { totalAllocPoint = totalAllocPoint.sub(pool.allocPoint).add( _allocPoint ); } pool.allocPoint = _allocPoint; pool.depositFee = _depositFee; } // Return accumulate rewards over the given _from to _to block. function getGeneratedReward( uint256 _fromTime, uint256 _toTime ) public view returns (uint256) { if (_fromTime >= _toTime) return 0; if (_toTime >= poolEndTime) { if (_fromTime >= poolEndTime) return 0; if (_fromTime <= poolStartTime) return poolEndTime.sub(poolStartTime).mul(stombPerSecond); return poolEndTime.sub(_fromTime).mul(stombPerSecond); } else { if (_toTime <= poolStartTime) return 0; if (_fromTime <= poolStartTime) return _toTime.sub(poolStartTime).mul(stombPerSecond); return _toTime.sub(_fromTime).mul(stombPerSecond); } } // View function to see pending STOMB on frontend. function pendingSTOMB( uint256 _pid, address _user ) external view returns (uint256) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accStombPerShare = pool.accStombPerShare; uint256 tokenSupply = pool.token.balanceOf(address(this)); if (block.timestamp > pool.lastRewardTime && tokenSupply != 0) { uint256 _generatedReward = getGeneratedReward( pool.lastRewardTime, block.timestamp ); uint256 _stombReward = _generatedReward.mul(pool.allocPoint).div( totalAllocPoint ); accStombPerShare = accStombPerShare.add( _stombReward.mul(1e18).div(tokenSupply) ); } return user.amount.mul(accStombPerShare).div(1e18).sub(user.rewardDebt); } // Update reward variables for all pools. Be careful of gas spending! function massUpdatePools() public { uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { updatePool(pid); } } // Update reward variables of the given pool to be up-to-date. function updatePool(uint256 _pid) public { PoolInfo storage pool = poolInfo[_pid]; if (block.timestamp <= pool.lastRewardTime) { return; } uint256 tokenSupply = pool.token.balanceOf(address(this)); if (tokenSupply == 0) { pool.lastRewardTime = block.timestamp; return; } if (!pool.isStarted) { pool.isStarted = true; totalAllocPoint = totalAllocPoint.add(pool.allocPoint); } if (totalAllocPoint > 0) { uint256 _generatedReward = getGeneratedReward( pool.lastRewardTime, block.timestamp ); uint256 _stombReward = _generatedReward.mul(pool.allocPoint).div( totalAllocPoint ); pool.accStombPerShare = pool.accStombPerShare.add( _stombReward.mul(1e18).div(tokenSupply) ); } pool.lastRewardTime = block.timestamp; } // Deposit LP tokens. function deposit(uint256 _pid, uint256 _amount) public { address _sender = msg.sender; PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_sender]; updatePool(_pid); if (user.amount > 0) { uint256 _pending = user .amount .mul(pool.accStombPerShare) .div(1e18) .sub(user.rewardDebt); if (_pending > 0) { safeStombTransfer(_sender, _pending); emit RewardPaid(_sender, _pending); } } if (_amount > 0) { uint256 devFee = _amount.mul(pool.depositFee).div(1000); _amount = _amount.sub(devFee); user.amount = user.amount.add(_amount); pool.token.safeTransferFrom(_sender, address(this), _amount); if (pool.depositFee > 0) { pool.token.safeTransferFrom(_sender, devFund, devFee); } } user.rewardDebt = user.amount.mul(pool.accStombPerShare).div(1e18); emit Deposit(_sender, _pid, _amount); } // Withdraw LP tokens. function withdraw(uint256 _pid, uint256 _amount) public { address _sender = msg.sender; PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_sender]; require(user.amount >= _amount, "withdraw: not good"); updatePool(_pid); uint256 _pending = user .amount .mul(pool.accStombPerShare) .div(1e18) .sub(user.rewardDebt); if (_pending > 0) { safeStombTransfer(_sender, _pending); emit RewardPaid(_sender, _pending); } if (_amount > 0) { user.amount = user.amount.sub(_amount); pool.token.safeTransfer(_sender, _amount); } user.rewardDebt = user.amount.mul(pool.accStombPerShare).div(1e18); emit Withdraw(_sender, _pid, _amount); } // Withdraw without caring about rewards. EMERGENCY ONLY. function emergencyWithdraw(uint256 _pid) public { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; uint256 _amount = user.amount; user.amount = 0; user.rewardDebt = 0; pool.token.safeTransfer(msg.sender, _amount); emit EmergencyWithdraw(msg.sender, _pid, _amount); } // Safe STOMB transfer function, just in case if rounding error causes pool to not have enough TOMBs. function safeStombTransfer(address _to, uint256 _amount) internal { uint256 _stombBalance = stomb.balanceOf(address(this)); if (_stombBalance > 0) { if (_amount > _stombBalance) { stomb.safeTransfer(_to, _stombBalance); } else { stomb.safeTransfer(_to, _amount); } } } function setOperator(address _operator) external onlyOperator { operator = _operator; } function setDevFund(address _devFund) external onlyOperator { devFund = _devFund; } function governanceRecoverUnsupported( IERC20 _token, uint256 amount, address to ) external onlyOperator { if (block.timestamp < poolEndTime + 7 days) { // do not allow to drain core token (STOMB or lps) if less than 90 days after pool ends require(_token != stomb, "stomb"); uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { PoolInfo storage pool = poolInfo[pid]; require(_token != pool.token, "pool.token"); } } _token.safeTransfer(to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_stomb","type":"address"},{"internalType":"uint256","name":"_poolStartTime","type":"uint256"},{"internalType":"address","name":"_devFund","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"MAX_DEPOSIT_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_REWARDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"bool","name":"_withUpdate","type":"bool"},{"internalType":"uint256","name":"_lastRewardTime","type":"uint256"},{"internalType":"uint256","name":"_depositFee","type":"uint256"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fromTime","type":"uint256"},{"internalType":"uint256","name":"_toTime","type":"uint256"}],"name":"getGeneratedReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingSTOMB","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardTime","type":"uint256"},{"internalType":"uint256","name":"accStombPerShare","type":"uint256"},{"internalType":"bool","name":"isStarted","type":"bool"},{"internalType":"uint256","name":"depositFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"runningTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"uint256","name":"_depositFee","type":"uint256"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_devFund","type":"address"}],"name":"setDevFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stomb","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stombPerSecond","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260006005556702bad19b9b51c0006008556201518060095534801561002857600080fd5b50604051611b4e380380611b4e8339818101604052606081101561004b57600080fd5b5080516020820151604090920151909190428211610099576040805162461bcd60e51b815260206004808301919091526024820152636c61746560e01b604482015290519081900360640190fd5b6001600160a01b0381166100de5760405162461bcd60e51b8152600401808060200182810382526022815260200180611b2c6022913960400191505060405180910390fd5b6001600160a01b0383161561010957600280546001600160a01b0319166001600160a01b0385161790555b6006829055600954909101600755600080546001600160a01b03199081163317909155600180546001600160a01b039390931692909116919091179055506119d6806101566000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c8063570ca735116100c3578063943f013d1161007c578063943f013d146103955780639b52e4a01461039d578063ae4db919146103c9578063b3ab15fb146103ef578063c6d87dd514610415578063e2bbb1581461041d57610158565b8063570ca735146102f05780635f96dc11146102f857806362e006c714610300578063630b5ba1146103405780636e271dd51461034857806393f1a40b1461035057610158565b806343b0e8df1161011557806343b0e8df1461022a578063441a3e701461025557806351eb05a61461027857806352510636146102955780635312ea8e1461029d57806354575af4146102ba57610158565b806309cf60911461015d5780631526fe271461017757806317caf6f1146101d3578063231f0c6a146101db5780632cf7521d146101fe5780634390d2a814610222575b600080fd5b610165610440565b60408051918252519081900360200190f35b6101946004803603602081101561018d57600080fd5b503561044e565b604080516001600160a01b03909716875260208701959095528585019390935260608501919091521515608084015260a0830152519081900360c00190f35b6101656104a1565b610165600480360360408110156101f157600080fd5b50803590602001356104a7565b61020661056c565b604080516001600160a01b039092168252519081900360200190f35b61020661057b565b6102536004803603606081101561024057600080fd5b508035906020810135906040013561058a565b005b6102536004803603604081101561026b57600080fd5b5080359060200135610682565b6102536004803603602081101561028e57600080fd5b503561083f565b61016561099d565b610253600480360360208110156102b357600080fd5b50356109a3565b610253600480360360608110156102d057600080fd5b506001600160a01b03813581169160208101359160409091013516610a3f565b610206610b86565b610165610b95565b610253600480360360a081101561031657600080fd5b508035906001600160a01b0360208201351690604081013515159060608101359060800135610b9b565b610253610e08565b610165610e2b565b61037c6004803603604081101561036657600080fd5b50803590602001356001600160a01b0316610e31565b6040805192835260208301919091528051918290030190f35b610165610e55565b610165600480360360408110156103b357600080fd5b50803590602001356001600160a01b0316610e5b565b610253600480360360208110156103df57600080fd5b50356001600160a01b0316610fbc565b6102536004803603602081101561040557600080fd5b50356001600160a01b0316611027565b610165611092565b6102536004803603604081101561043357600080fd5b5080359060200135611097565b69039992648a23c8a0000081565b6003818154811061045b57fe5b60009182526020909120600690910201805460018201546002830154600384015460048501546005909501546001600160a01b0390941695509193909260ff9091169086565b60055481565b60008183106104b857506000610566565b60075482106105205760075483106104d257506000610566565b6006548311610505576104fe6008546104f860065460075461125e90919063ffffffff16565b906112a7565b9050610566565b6104fe6008546104f88560075461125e90919063ffffffff16565b600654821161053157506000610566565b6006548311610555576104fe6008546104f86006548561125e90919063ffffffff16565b6008546104fe906104f8848661125e565b92915050565b6002546001600160a01b031681565b6001546001600160a01b031681565b6000546001600160a01b031633146105d35760405162461bcd60e51b815260040180806020018281038252602c815260200180611909602c913960400191505060405180910390fd5b60328111156106135760405162461bcd60e51b81526004018080602001828103825260218152602001806119806021913960400191505060405180910390fd5b61061b610e08565b60006003848154811061062a57fe5b60009182526020909120600690910201600481015490915060ff16156106715761066d83610667836001015460055461125e90919063ffffffff16565b90611300565b6005555b600181019290925560059091015550565b600033905060006003848154811061069657fe5b600091825260208083208784526004825260408085206001600160a01b03881686529092529220805460069092029092019250841115610712576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b61071b8561083f565b60006107588260010154610752670de0b6b3a764000061074c876003015487600001546112a790919063ffffffff16565b9061135a565b9061125e565b905080156107aa5761076a848261139c565b6040805182815290516001600160a01b038616917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b84156107d45781546107bc908661125e565b825582546107d4906001600160a01b03168587611452565b600383015482546107f291670de0b6b3a76400009161074c916112a7565b600183015560408051868152905187916001600160a01b038716917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a3505050505050565b60006003828154811061084e57fe5b906000526020600020906006020190508060020154421161086f575061099a565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156108b957600080fd5b505afa1580156108cd573d6000803e3d6000fd5b505050506040513d60208110156108e357600080fd5b50519050806108f957504260029091015561099a565b600482015460ff1661092a5760048201805460ff1916600190811790915582015460055461092691611300565b6005555b600554156109915760006109428360020154426104a7565b9050600061096360055461074c8660010154856112a790919063ffffffff16565b905061098961097e8461074c84670de0b6b3a76400006112a7565b600386015490611300565b600385015550505b50426002909101555b50565b60085481565b6000600382815481106109b257fe5b600091825260208083208584526004825260408085203380875293528420805485825560018201959095556006909302018054909450919291610a02916001600160a01b03919091169083611452565b604080518281529051859133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a350505050565b6000546001600160a01b03163314610a885760405162461bcd60e51b815260040180806020018281038252602c815260200180611909602c913960400191505060405180910390fd5b60075462093a8001421015610b6d576002546001600160a01b0384811691161415610ae2576040805162461bcd60e51b815260206004820152600560248201526439ba37b6b160d91b604482015290519081900360640190fd5b60035460005b81811015610b6a57600060038281548110610aff57fe5b6000918252602090912060069091020180549091506001600160a01b0387811691161415610b61576040805162461bcd60e51b815260206004820152600a6024820152693837b7b6173a37b5b2b760b11b604482015290519081900360640190fd5b50600101610ae8565b50505b610b816001600160a01b0384168284611452565b505050565b6000546001600160a01b031681565b60065481565b6000546001600160a01b03163314610be45760405162461bcd60e51b815260040180806020018281038252602c815260200180611909602c913960400191505060405180910390fd5b610bed846114a4565b6032811115610c2d5760405162461bcd60e51b81526004018080602001828103825260218152602001806119806021913960400191505060405180910390fd5b8215610c3b57610c3b610e08565b600654421015610c695781610c54576006549150610c64565b600654821015610c645760065491505b610c7e565b811580610c7557504282105b15610c7e574291505b600060065483111580610c915750428311155b6040805160c0810182526001600160a01b038881168252602082018a8152928201878152600060608401818152861580156080870190815260a087018b815260038054600181018255955296517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b600690950294850180546001600160a01b031916919097161790955595517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c83015591517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d82015590517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e82015590517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f8201805460ff191691151591909117905590517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f86090910155909150610e0057600554610dfc9087611300565b6005555b505050505050565b60035460005b81811015610e2757610e1f8161083f565b600101610e0e565b5050565b60075481565b60046020908152600092835260408084209091529082529020805460019091015482565b60095481565b60008060038481548110610e6b57fe5b60009182526020808320878452600480835260408086206001600160a01b038a811688529085528187206006969096029093016003810154815483516370a0823160e01b81523095810195909552925191985095969491909316926370a08231926024808201939291829003018186803b158015610ee857600080fd5b505afa158015610efc573d6000803e3d6000fd5b505050506040513d6020811015610f1257600080fd5b5051600285015490915042118015610f2957508015155b15610f86576000610f3e8560020154426104a7565b90506000610f5f60055461074c8860010154856112a790919063ffffffff16565b9050610f81610f7a8461074c84670de0b6b3a76400006112a7565b8590611300565b935050505b610fb18360010154610752670de0b6b3a764000061074c8688600001546112a790919063ffffffff16565b979650505050505050565b6000546001600160a01b031633146110055760405162461bcd60e51b815260040180806020018281038252602c815260200180611909602c913960400191505060405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146110705760405162461bcd60e51b815260040180806020018281038252602c815260200180611909602c913960400191505060405180910390fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b603281565b60003390506000600384815481106110ab57fe5b600091825260208083208784526004825260408085206001600160a01b03881686529092529220600690910290910191506110e58561083f565b80541561117157600061111d8260010154610752670de0b6b3a764000061074c876003015487600001546112a790919063ffffffff16565b9050801561116f5761112f848261139c565b6040805182815290516001600160a01b038616917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b505b83156111f45760006111966103e861074c8560050154886112a790919063ffffffff16565b90506111a2858261125e565b82549095506111b19086611300565b825582546111ca906001600160a01b031685308861153e565b6005830154156111f25760015483546111f2916001600160a01b03918216918791168461153e565b505b6003820154815461121291670de0b6b3a76400009161074c916112a7565b600182015560408051858152905186916001600160a01b038616917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a35050505050565b60006112a083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061159e565b9392505050565b6000826112b657506000610566565b828202828482816112c357fe5b04146112a05760405162461bcd60e51b81526004018080602001828103825260218152602001806119356021913960400191505060405180910390fd5b6000828201838110156112a0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006112a083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611635565b600254604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156113e757600080fd5b505afa1580156113fb573d6000803e3d6000fd5b505050506040513d602081101561141157600080fd5b505190508015610b81578082111561143f5760025461143a906001600160a01b03168483611452565b610b81565b600254610b81906001600160a01b031684845b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610b8190849061169a565b60035460005b81811015610b8157826001600160a01b0316600382815481106114c957fe5b60009182526020909120600690910201546001600160a01b03161415611536576040805162461bcd60e51b815260206004820181905260248201527f53746f6d6247656e65736973506f6f6c3a206578697374696e6720706f6f6c3f604482015290519081900360640190fd5b6001016114aa565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261159890859061169a565b50505050565b6000818484111561162d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156115f25781810151838201526020016115da565b50505050905090810190601f16801561161f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836116845760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156115f25781810151838201526020016115da565b50600083858161169057fe5b0495945050505050565b60606116ef826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661174b9092919063ffffffff16565b805190915015610b815780806020019051602081101561170e57600080fd5b5051610b815760405162461bcd60e51b815260040180806020018281038252602a815260200180611956602a913960400191505060405180910390fd5b606061175a8484600085611762565b949350505050565b606061176d856118cf565b6117be576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106117fd5780518252601f1990920191602091820191016117de565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461185f576040519150601f19603f3d011682016040523d82523d6000602084013e611864565b606091505b5091509150811561187857915061175a9050565b8051156118885780518082602001fd5b60405162461bcd60e51b81526020600482018181528651602484015286518793919283926044019190850190808383600083156115f25781810151838201526020016115da565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061175a57505015159291505056fe53746f6d6247656e65736973506f6f6c3a2063616c6c6572206973206e6f7420746865206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656453746f6d6247656e65736973506f6f6c3a206d6178206465706f73697420666565a26469706673582212201840a762307e968c075be95660e696793ef8909619484127c277077142db3ed664736f6c634300060c003364657646756e64206d7573742062652061206e6f6e2d7a65726f2061646472657373000000000000000000000000d3a1123f4bef408bbf6b7acf4749fd9a0e6483bb000000000000000000000000000000000000000000000000000000006793aaf0000000000000000000000000670a233003abb96940088de42172c2887a1939de
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c8063570ca735116100c3578063943f013d1161007c578063943f013d146103955780639b52e4a01461039d578063ae4db919146103c9578063b3ab15fb146103ef578063c6d87dd514610415578063e2bbb1581461041d57610158565b8063570ca735146102f05780635f96dc11146102f857806362e006c714610300578063630b5ba1146103405780636e271dd51461034857806393f1a40b1461035057610158565b806343b0e8df1161011557806343b0e8df1461022a578063441a3e701461025557806351eb05a61461027857806352510636146102955780635312ea8e1461029d57806354575af4146102ba57610158565b806309cf60911461015d5780631526fe271461017757806317caf6f1146101d3578063231f0c6a146101db5780632cf7521d146101fe5780634390d2a814610222575b600080fd5b610165610440565b60408051918252519081900360200190f35b6101946004803603602081101561018d57600080fd5b503561044e565b604080516001600160a01b03909716875260208701959095528585019390935260608501919091521515608084015260a0830152519081900360c00190f35b6101656104a1565b610165600480360360408110156101f157600080fd5b50803590602001356104a7565b61020661056c565b604080516001600160a01b039092168252519081900360200190f35b61020661057b565b6102536004803603606081101561024057600080fd5b508035906020810135906040013561058a565b005b6102536004803603604081101561026b57600080fd5b5080359060200135610682565b6102536004803603602081101561028e57600080fd5b503561083f565b61016561099d565b610253600480360360208110156102b357600080fd5b50356109a3565b610253600480360360608110156102d057600080fd5b506001600160a01b03813581169160208101359160409091013516610a3f565b610206610b86565b610165610b95565b610253600480360360a081101561031657600080fd5b508035906001600160a01b0360208201351690604081013515159060608101359060800135610b9b565b610253610e08565b610165610e2b565b61037c6004803603604081101561036657600080fd5b50803590602001356001600160a01b0316610e31565b6040805192835260208301919091528051918290030190f35b610165610e55565b610165600480360360408110156103b357600080fd5b50803590602001356001600160a01b0316610e5b565b610253600480360360208110156103df57600080fd5b50356001600160a01b0316610fbc565b6102536004803603602081101561040557600080fd5b50356001600160a01b0316611027565b610165611092565b6102536004803603604081101561043357600080fd5b5080359060200135611097565b69039992648a23c8a0000081565b6003818154811061045b57fe5b60009182526020909120600690910201805460018201546002830154600384015460048501546005909501546001600160a01b0390941695509193909260ff9091169086565b60055481565b60008183106104b857506000610566565b60075482106105205760075483106104d257506000610566565b6006548311610505576104fe6008546104f860065460075461125e90919063ffffffff16565b906112a7565b9050610566565b6104fe6008546104f88560075461125e90919063ffffffff16565b600654821161053157506000610566565b6006548311610555576104fe6008546104f86006548561125e90919063ffffffff16565b6008546104fe906104f8848661125e565b92915050565b6002546001600160a01b031681565b6001546001600160a01b031681565b6000546001600160a01b031633146105d35760405162461bcd60e51b815260040180806020018281038252602c815260200180611909602c913960400191505060405180910390fd5b60328111156106135760405162461bcd60e51b81526004018080602001828103825260218152602001806119806021913960400191505060405180910390fd5b61061b610e08565b60006003848154811061062a57fe5b60009182526020909120600690910201600481015490915060ff16156106715761066d83610667836001015460055461125e90919063ffffffff16565b90611300565b6005555b600181019290925560059091015550565b600033905060006003848154811061069657fe5b600091825260208083208784526004825260408085206001600160a01b03881686529092529220805460069092029092019250841115610712576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b61071b8561083f565b60006107588260010154610752670de0b6b3a764000061074c876003015487600001546112a790919063ffffffff16565b9061135a565b9061125e565b905080156107aa5761076a848261139c565b6040805182815290516001600160a01b038616917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b84156107d45781546107bc908661125e565b825582546107d4906001600160a01b03168587611452565b600383015482546107f291670de0b6b3a76400009161074c916112a7565b600183015560408051868152905187916001600160a01b038716917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a3505050505050565b60006003828154811061084e57fe5b906000526020600020906006020190508060020154421161086f575061099a565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156108b957600080fd5b505afa1580156108cd573d6000803e3d6000fd5b505050506040513d60208110156108e357600080fd5b50519050806108f957504260029091015561099a565b600482015460ff1661092a5760048201805460ff1916600190811790915582015460055461092691611300565b6005555b600554156109915760006109428360020154426104a7565b9050600061096360055461074c8660010154856112a790919063ffffffff16565b905061098961097e8461074c84670de0b6b3a76400006112a7565b600386015490611300565b600385015550505b50426002909101555b50565b60085481565b6000600382815481106109b257fe5b600091825260208083208584526004825260408085203380875293528420805485825560018201959095556006909302018054909450919291610a02916001600160a01b03919091169083611452565b604080518281529051859133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a350505050565b6000546001600160a01b03163314610a885760405162461bcd60e51b815260040180806020018281038252602c815260200180611909602c913960400191505060405180910390fd5b60075462093a8001421015610b6d576002546001600160a01b0384811691161415610ae2576040805162461bcd60e51b815260206004820152600560248201526439ba37b6b160d91b604482015290519081900360640190fd5b60035460005b81811015610b6a57600060038281548110610aff57fe5b6000918252602090912060069091020180549091506001600160a01b0387811691161415610b61576040805162461bcd60e51b815260206004820152600a6024820152693837b7b6173a37b5b2b760b11b604482015290519081900360640190fd5b50600101610ae8565b50505b610b816001600160a01b0384168284611452565b505050565b6000546001600160a01b031681565b60065481565b6000546001600160a01b03163314610be45760405162461bcd60e51b815260040180806020018281038252602c815260200180611909602c913960400191505060405180910390fd5b610bed846114a4565b6032811115610c2d5760405162461bcd60e51b81526004018080602001828103825260218152602001806119806021913960400191505060405180910390fd5b8215610c3b57610c3b610e08565b600654421015610c695781610c54576006549150610c64565b600654821015610c645760065491505b610c7e565b811580610c7557504282105b15610c7e574291505b600060065483111580610c915750428311155b6040805160c0810182526001600160a01b038881168252602082018a8152928201878152600060608401818152861580156080870190815260a087018b815260038054600181018255955296517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b600690950294850180546001600160a01b031916919097161790955595517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c83015591517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d82015590517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e82015590517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f8201805460ff191691151591909117905590517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f86090910155909150610e0057600554610dfc9087611300565b6005555b505050505050565b60035460005b81811015610e2757610e1f8161083f565b600101610e0e565b5050565b60075481565b60046020908152600092835260408084209091529082529020805460019091015482565b60095481565b60008060038481548110610e6b57fe5b60009182526020808320878452600480835260408086206001600160a01b038a811688529085528187206006969096029093016003810154815483516370a0823160e01b81523095810195909552925191985095969491909316926370a08231926024808201939291829003018186803b158015610ee857600080fd5b505afa158015610efc573d6000803e3d6000fd5b505050506040513d6020811015610f1257600080fd5b5051600285015490915042118015610f2957508015155b15610f86576000610f3e8560020154426104a7565b90506000610f5f60055461074c8860010154856112a790919063ffffffff16565b9050610f81610f7a8461074c84670de0b6b3a76400006112a7565b8590611300565b935050505b610fb18360010154610752670de0b6b3a764000061074c8688600001546112a790919063ffffffff16565b979650505050505050565b6000546001600160a01b031633146110055760405162461bcd60e51b815260040180806020018281038252602c815260200180611909602c913960400191505060405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146110705760405162461bcd60e51b815260040180806020018281038252602c815260200180611909602c913960400191505060405180910390fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b603281565b60003390506000600384815481106110ab57fe5b600091825260208083208784526004825260408085206001600160a01b03881686529092529220600690910290910191506110e58561083f565b80541561117157600061111d8260010154610752670de0b6b3a764000061074c876003015487600001546112a790919063ffffffff16565b9050801561116f5761112f848261139c565b6040805182815290516001600160a01b038616917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b505b83156111f45760006111966103e861074c8560050154886112a790919063ffffffff16565b90506111a2858261125e565b82549095506111b19086611300565b825582546111ca906001600160a01b031685308861153e565b6005830154156111f25760015483546111f2916001600160a01b03918216918791168461153e565b505b6003820154815461121291670de0b6b3a76400009161074c916112a7565b600182015560408051858152905186916001600160a01b038616917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a35050505050565b60006112a083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061159e565b9392505050565b6000826112b657506000610566565b828202828482816112c357fe5b04146112a05760405162461bcd60e51b81526004018080602001828103825260218152602001806119356021913960400191505060405180910390fd5b6000828201838110156112a0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006112a083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611635565b600254604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156113e757600080fd5b505afa1580156113fb573d6000803e3d6000fd5b505050506040513d602081101561141157600080fd5b505190508015610b81578082111561143f5760025461143a906001600160a01b03168483611452565b610b81565b600254610b81906001600160a01b031684845b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610b8190849061169a565b60035460005b81811015610b8157826001600160a01b0316600382815481106114c957fe5b60009182526020909120600690910201546001600160a01b03161415611536576040805162461bcd60e51b815260206004820181905260248201527f53746f6d6247656e65736973506f6f6c3a206578697374696e6720706f6f6c3f604482015290519081900360640190fd5b6001016114aa565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261159890859061169a565b50505050565b6000818484111561162d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156115f25781810151838201526020016115da565b50505050905090810190601f16801561161f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836116845760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156115f25781810151838201526020016115da565b50600083858161169057fe5b0495945050505050565b60606116ef826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661174b9092919063ffffffff16565b805190915015610b815780806020019051602081101561170e57600080fd5b5051610b815760405162461bcd60e51b815260040180806020018281038252602a815260200180611956602a913960400191505060405180910390fd5b606061175a8484600085611762565b949350505050565b606061176d856118cf565b6117be576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106117fd5780518252601f1990920191602091820191016117de565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461185f576040519150601f19603f3d011682016040523d82523d6000602084013e611864565b606091505b5091509150811561187857915061175a9050565b8051156118885780518082602001fd5b60405162461bcd60e51b81526020600482018181528651602484015286518793919283926044019190850190808383600083156115f25781810151838201526020016115da565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061175a57505015159291505056fe53746f6d6247656e65736973506f6f6c3a2063616c6c6572206973206e6f7420746865206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656453746f6d6247656e65736973506f6f6c3a206d6178206465706f73697420666565a26469706673582212201840a762307e968c075be95660e696793ef8909619484127c277077142db3ed664736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d3a1123f4bef408bbf6b7acf4749fd9a0e6483bb000000000000000000000000000000000000000000000000000000006793aaf0000000000000000000000000670a233003abb96940088de42172c2887a1939de
-----Decoded View---------------
Arg [0] : _stomb (address): 0xD3A1123f4BEF408Bbf6b7acf4749fD9A0e6483bb
Arg [1] : _poolStartTime (uint256): 1737730800
Arg [2] : _devFund (address): 0x670A233003aBB96940088DE42172c2887A1939de
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000d3a1123f4bef408bbf6b7acf4749fd9a0e6483bb
Arg [1] : 000000000000000000000000000000000000000000000000000000006793aaf0
Arg [2] : 000000000000000000000000670a233003abb96940088de42172c2887a1939de
Deployed Bytecode Sourcemap
18751:12238:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20200:51;;;:::i;:::-;;;;;;;;;;;;;;;;19660:26;;;;;;;;;;;;;;;;-1:-1:-1;19660:26:0;;:::i;:::-;;;;-1:-1:-1;;;;;19660:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19905:34;;;:::i;24014:716::-;;;;;;;;;;;;;;;;-1:-1:-1;24014:716:0;;;;;;;:::i;19605:19::-;;;:::i;:::-;;;;-1:-1:-1;;;;;19605:19:0;;;;;;;;;;;;;;18907:22;;;:::i;23363:574::-;;;;;;;;;;;;;;;;-1:-1:-1;23363:574:0;;;;;;;;;;;;:::i;:::-;;28319:869;;;;;;;;;;;;;;;;-1:-1:-1;28319:869:0;;;;;;;:::i;26063:1025::-;;;;;;;;;;;;;;;;-1:-1:-1;26063:1025:0;;:::i;20104:44::-;;;:::i;29259:377::-;;;;;;;;;;;;;;;;-1:-1:-1;29259:377:0;;:::i;30346:640::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30346:640:0;;;;;;;;;;;;;;;;;:::i;18877:23::-;;;:::i;19991:28::-;;;:::i;21755:1511::-;;;;;;;;;;;;;;;;-1:-1:-1;21755:1511:0;;;-1:-1:-1;;;;;21755:1511:0;;;;;;;;;;;;;;;;;;;;;;:::i;25807:180::-;;;:::i;20069:26::-;;;:::i;19744:64::-;;;;;;;;;;;;;;;;-1:-1:-1;19744:64:0;;;;;;-1:-1:-1;;;;;19744:64:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20156:37;;;:::i;24794:930::-;;;;;;;;;;;;;;;;-1:-1:-1;24794:930:0;;;;;;-1:-1:-1;;;;;24794:930:0;;:::i;30241:97::-;;;;;;;;;;;;;;;;-1:-1:-1;30241:97:0;-1:-1:-1;;;;;30241:97:0;;:::i;30132:101::-;;;;;;;;;;;;;;;;-1:-1:-1;30132:101:0;-1:-1:-1;;;;;30132:101:0;;:::i;20287:44::-;;;:::i;27123:1160::-;;;;;;;;;;;;;;;;-1:-1:-1;27123:1160:0;;;;;;;:::i;20200:51::-;20240:11;20200:51;:::o;19660:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19660:26:0;;;;-1:-1:-1;19660:26:0;;;;;;;;;;:::o;19905:34::-;;;;:::o;24014:716::-;24124:7;24161;24148:9;:20;24144:34;;-1:-1:-1;24177:1:0;24170:8;;24144:34;24204:11;;24193:7;:22;24189:534;;24249:11;;24236:9;:24;24232:38;;-1:-1:-1;24269:1:0;24262:8;;24232:38;24302:13;;24289:9;:26;24285:106;;24341:50;24376:14;;24341:30;24357:13;;24341:11;;:15;;:30;;;;:::i;:::-;:34;;:50::i;:::-;24334:57;;;;24285:106;24413:46;24444:14;;24413:26;24429:9;24413:11;;:15;;:26;;;;:::i;24189:534::-;24507:13;;24496:7;:24;24492:38;;-1:-1:-1;24529:1:0;24522:8;;24492:38;24562:13;;24549:9;:26;24545:102;;24601:46;24632:14;;24601:26;24613:13;;24601:7;:11;;:26;;;;:::i;24545:102::-;24696:14;;24669:42;;:22;:7;24681:9;24669:11;:22::i;24189:534::-;24014:716;;;;:::o;19605:19::-;;;-1:-1:-1;;;;;19605:19:0;;:::o;18907:22::-;;;-1:-1:-1;;;;;18907:22:0;;:::o;23363:574::-;21244:8;;-1:-1:-1;;;;;21244:8:0;21256:10;21244:22;21222:116;;;;-1:-1:-1;;;21222:116:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20329:2:::1;23519:11;:30;;23497:113;;;;-1:-1:-1::0;;;23497:113:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23623:17;:15;:17::i;:::-;23651:21;23675:8;23684:4;23675:14;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;23704;::::0;::::1;::::0;23675;;-1:-1:-1;23704:14:0::1;;23700:150;;;23753:85;23812:11;23753:36;23773:4;:15;;;23753;;:19;;:36;;;;:::i;:::-;:40:::0;::::1;:85::i;:::-;23735:15;:103:::0;23700:150:::1;23860:15;::::0;::::1;:29:::0;;;;23900:15:::1;::::0;;::::1;:29:::0;-1:-1:-1;23363:574:0:o;28319:869::-;28386:15;28404:10;28386:28;;28425:21;28449:8;28458:4;28449:14;;;;;;;;;;;;;;;;28498;;;:8;:14;;;;;;-1:-1:-1;;;;;28498:23:0;;;;;;;;;28540:11;;28449:14;;;;;;;;-1:-1:-1;28540:22:0;-1:-1:-1;28540:22:0;28532:53;;;;;-1:-1:-1;;;28532:53:0;;;;;;;;;;;;-1:-1:-1;;;28532:53:0;;;;;;;;;;;;;;;28596:16;28607:4;28596:10;:16::i;:::-;28623;28642:125;28751:4;:15;;;28642:90;28727:4;28642:66;28686:4;:21;;;28642:4;:25;;;:43;;:66;;;;:::i;:::-;:84;;:90::i;:::-;:108;;:125::i;:::-;28623:144;-1:-1:-1;28782:12:0;;28778:130;;28811:36;28829:7;28838:8;28811:17;:36::i;:::-;28867:29;;;;;;;;-1:-1:-1;;;;;28867:29:0;;;;;;;;;;;;;28778:130;28922:11;;28918:138;;28964:11;;:24;;28980:7;28964:15;:24::i;:::-;28950:38;;29003:10;;:41;;-1:-1:-1;;;;;29003:10:0;29027:7;29036;29003:23;:41::i;:::-;29100:21;;;;29084:11;;:48;;29127:4;;29084:38;;:15;:38::i;:48::-;29066:15;;;:66;29148:32;;;;;;;;29166:4;;-1:-1:-1;;;;;29148:32:0;;;;;;;;;;;;28319:869;;;;;;:::o;26063:1025::-;26115:21;26139:8;26148:4;26139:14;;;;;;;;;;;;;;;;;;26115:38;;26187:4;:19;;;26168:15;:38;26164:77;;26223:7;;;26164:77;26273:10;;:35;;;-1:-1:-1;;;26273:35:0;;26302:4;26273:35;;;;;;26251:19;;-1:-1:-1;;;;;26273:10:0;;:20;;:35;;;;;;;;;;;;;;:10;:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26273:35:0;;-1:-1:-1;26323:16:0;26319:107;;-1:-1:-1;26378:15:0;26356:19;;;;:37;26408:7;;26319:107;26441:14;;;;;;26436:138;;26472:14;;;:21;;-1:-1:-1;;26472:21:0;26489:4;26472:21;;;;;;26546:15;;;26526;;:36;;:19;:36::i;:::-;26508:15;:54;26436:138;26588:15;;:19;26584:449;;26624:24;26651:105;26688:4;:19;;;26726:15;26651:18;:105::i;:::-;26624:132;;26771:20;26794:90;26854:15;;26794:37;26815:4;:15;;;26794:16;:20;;:37;;;;:::i;:90::-;26771:113;-1:-1:-1;26923:98:0;26967:39;26994:11;26967:22;26771:113;26984:4;26967:16;:22::i;:39::-;26923:21;;;;;:25;:98::i;:::-;26899:21;;;:122;-1:-1:-1;;26584:449:0;-1:-1:-1;27065:15:0;27043:19;;;;:37;26063:1025;;:::o;20104:44::-;;;;:::o;29259:377::-;29318:21;29342:8;29351:4;29342:14;;;;;;;;;;;;;;;;29391;;;:8;:14;;;;;;29406:10;29391:26;;;;;;;29446:11;;29468:15;;;-1:-1:-1;29494:15:0;;:19;;;;29342:14;;;;;29524:10;;29342:14;;-1:-1:-1;29391:26:0;;29446:11;29524:44;;-1:-1:-1;;;;;29524:10:0;;;;;29446:11;29524:23;:44::i;:::-;29584;;;;;;;;29614:4;;29602:10;;29584:44;;;;;;;;;29259:377;;;;:::o;30346:640::-;21244:8;;-1:-1:-1;;;;;21244:8:0;21256:10;21244:22;21222:116;;;;-1:-1:-1;;;21222:116:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30516:11:::1;;30530:6;30516:20;30498:15;:38;30494:443;;;30672:5;::::0;-1:-1:-1;;;;;30662:15:0;;::::1;30672:5:::0;::::1;30662:15;;30654:33;;;::::0;;-1:-1:-1;;;30654:33:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;30654:33:0;;;;;;;;;;;;;::::1;;30719:8;:15:::0;30702:14:::1;30749:177;30777:6;30771:3;:12;30749:177;;;30811:21;30835:8;30844:3;30835:13;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;30885:10:::0;;30835:13;;-1:-1:-1;;;;;;30875:20:0;;::::1;30885:10:::0;::::1;30875:20;;30867:43;;;::::0;;-1:-1:-1;;;30867:43:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;30867:43:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;30785:5:0::1;;30749:177;;;;30494:443;;30947:31;-1:-1:-1::0;;;;;30947:19:0;::::1;30967:2:::0;30971:6;30947:19:::1;:31::i;:::-;30346:640:::0;;;:::o;18877:23::-;;;-1:-1:-1;;;;;18877:23:0;;:::o;19991:28::-;;;;:::o;21755:1511::-;21244:8;;-1:-1:-1;;;;;21244:8:0;21256:10;21244:22;21222:116;;;;-1:-1:-1;;;21222:116:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21951:26:::1;21970:6;21951:18;:26::i;:::-;20329:2;22012:11;:30;;21990:113;;;;-1:-1:-1::0;;;21990:113:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22120:11;22116:61;;;22148:17;:15;:17::i;:::-;22209:13;;22191:15;:31;22187:534;;;22276:20:::0;22272:243:::1;;22335:13;;22317:31;;22272:243;;;22411:13;;22393:15;:31;22389:111;;;22467:13;;22449:31;;22389:111;22187:534;;;22583:20:::0;;;:57:::1;;;22625:15;22607;:33;22583:57;22579:131;;;22679:15;22661:33;;22579:131;22731:15;22769:13;;22750:15;:32;;22749:87;;;;22820:15;22801;:34;;22749:87;22875:269;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;22875:269:0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;-1:-1:-1;22875:269:0;;;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;22847:8:::1;:308:::0;;::::1;::::0;::::1;::::0;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;;22847:308:0::1;::::0;;;::::1;;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;22847:308:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;;;;;;;22875:269;;-1:-1:-1;23166:93:0::1;;23215:15;::::0;:32:::1;::::0;23235:11;23215:19:::1;:32::i;:::-;23197:15;:50:::0;23166:93:::1;21349:1;21755:1511:::0;;;;;:::o;25807:180::-;25869:8;:15;25852:14;25895:85;25923:6;25917:3;:12;25895:85;;;25953:15;25964:3;25953:10;:15::i;:::-;25931:5;;25895:85;;;;25807:180;:::o;20069:26::-;;;;:::o;19744:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20156:37::-;;;;:::o;24794:930::-;24893:7;24913:21;24937:8;24946:4;24937:14;;;;;;;;;;;;;;;;24986;;;:8;:14;;;;;;;-1:-1:-1;;;;;24986:21:0;;;;;;;;;;;24937:14;;;;;;;;25045:21;;;;25099:10;;:35;;-1:-1:-1;;;25099:35:0;;25128:4;25099:35;;;;;;;;;24937:14;;-1:-1:-1;24986:21:0;;24937:14;25099:10;;;;;:20;;:35;;;;;24937:14;25099:35;;;;;;:10;:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25099:35:0;25167:19;;;;25099:35;;-1:-1:-1;25149:15:0;:37;:57;;;;-1:-1:-1;25190:16:0;;;25149:57;25145:477;;;25223:24;25250:105;25287:4;:19;;;25325:15;25250:18;:105::i;:::-;25223:132;;25370:20;25393:90;25453:15;;25393:37;25414:4;:15;;;25393:16;:20;;:37;;;;:::i;:90::-;25370:113;-1:-1:-1;25517:93:0;25556:39;25583:11;25556:22;25370:113;25573:4;25556:16;:22::i;:39::-;25517:16;;:20;:93::i;:::-;25498:112;;25145:477;;;25652:64;25700:4;:15;;;25652:43;25690:4;25652:33;25668:16;25652:4;:11;;;:15;;:33;;;;:::i;:64::-;25632:84;24794:930;-1:-1:-1;;;;;;;24794:930:0:o;30241:97::-;21244:8;;-1:-1:-1;;;;;21244:8:0;21256:10;21244:22;21222:116;;;;-1:-1:-1;;;21222:116:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30312:7:::1;:18:::0;;-1:-1:-1;;;;;;30312:18:0::1;-1:-1:-1::0;;;;;30312:18:0;;;::::1;::::0;;;::::1;::::0;;30241:97::o;30132:101::-;21244:8;;-1:-1:-1;;;;;21244:8:0;21256:10;21244:22;21222:116;;;;-1:-1:-1;;;21222:116:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30205:8:::1;:20:::0;;-1:-1:-1;;;;;;30205:20:0::1;-1:-1:-1::0;;;;;30205:20:0;;;::::1;::::0;;;::::1;::::0;;30132:101::o;20287:44::-;20329:2;20287:44;:::o;27123:1160::-;27189:15;27207:10;27189:28;;27228:21;27252:8;27261:4;27252:14;;;;;;;;;;;;;;;;27301;;;:8;:14;;;;;;-1:-1:-1;;;;;27301:23:0;;;;;;;;;27252:14;;;;;;;;-1:-1:-1;27335:16:0;27310:4;27335:10;:16::i;:::-;27366:11;;:15;27362:364;;27398:16;27417:141;27542:4;:15;;;27417:102;27514:4;27417:74;27469:4;:21;;;27417:4;:29;;;:51;;:74;;;;:::i;:141::-;27398:160;-1:-1:-1;27577:12:0;;27573:142;;27610:36;27628:7;27637:8;27610:17;:36::i;:::-;27670:29;;;;;;;;-1:-1:-1;;;;;27670:29:0;;;;;;;;;;;;;27573:142;27362:364;;27740:11;;27736:416;;27768:14;27785:38;27818:4;27785:28;27797:4;:15;;;27785:7;:11;;:28;;;;:::i;:38::-;27768:55;-1:-1:-1;27848:19:0;:7;27768:55;27848:11;:19::i;:::-;27896:11;;27838:29;;-1:-1:-1;27896:24:0;;27838:29;27896:15;:24::i;:::-;27882:38;;27937:10;;:60;;-1:-1:-1;;;;;27937:10:0;27965:7;27982:4;27989:7;27937:27;:60::i;:::-;28018:15;;;;:19;28014:113;;28095:7;;28058:10;;:53;;-1:-1:-1;;;;;28058:10:0;;;;28086:7;;28095;28104:6;28058:27;:53::i;:::-;27736:416;;28196:21;;;;28180:11;;:48;;28223:4;;28180:38;;:15;:38::i;:48::-;28162:15;;;:66;28244:31;;;;;;;;28261:4;;-1:-1:-1;;;;;28244:31:0;;;;;;;;;;;;27123:1160;;;;;:::o;4389:136::-;4447:7;4474:43;4478:1;4481;4474:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4467:50;4389:136;-1:-1:-1;;;4389:136:0:o;5279:471::-;5337:7;5582:6;5578:47;;-1:-1:-1;5612:1:0;5605:8;;5578:47;5649:5;;;5653:1;5649;:5;:1;5673:5;;;;;:10;5665:56;;;;-1:-1:-1;;;5665:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3925:181;3983:7;4015:5;;;4039:6;;;;4031:46;;;;;-1:-1:-1;;;4031:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;6226:132;6284:7;6311:39;6315:1;6318;6311:39;;;;;;;;;;;;;;;;;:3;:39::i;29751:373::-;29852:5;;:30;;;-1:-1:-1;;;29852:30:0;;29876:4;29852:30;;;;;;29828:21;;-1:-1:-1;;;;;29852:5:0;;:15;;:30;;;;;;;;;;;;;;:5;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29852:30:0;;-1:-1:-1;29897:17:0;;29893:224;;29945:13;29935:7;:23;29931:175;;;29979:5;;:38;;-1:-1:-1;;;;;29979:5:0;29998:3;30003:13;29979:18;:38::i;:::-;29931:175;;;30058:5;;:32;;-1:-1:-1;;;;;30058:5:0;30077:3;30082:7;15383:177;15493:58;;;-1:-1:-1;;;;;15493:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15493:58:0;-1:-1:-1;;;15493:58:0;;;15466:86;;15486:5;;15466:19;:86::i;21366:311::-;21451:8;:15;21434:14;21477:193;21505:6;21499:3;:12;21477:193;;;21584:6;-1:-1:-1;;;;;21561:29:0;:8;21570:3;21561:13;;;;;;;;;;;;;;;;;;;;;:19;-1:-1:-1;;;;;21561:19:0;:29;;21535:123;;;;;-1:-1:-1;;;21535:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21513:5;;21477:193;;15568:205;15696:68;;;-1:-1:-1;;;;;15696:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15696:68:0;-1:-1:-1;;;15696:68:0;;;15669:96;;15689:5;;15669:19;:96::i;:::-;15568:205;;;;:::o;4828:192::-;4914:7;4950:12;4942:6;;;;4934:29;;;;-1:-1:-1;;;4934:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4986:5:0;;;4828:192::o;6854:278::-;6940:7;6975:12;6968:5;6960:28;;;;-1:-1:-1;;;6960:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6999:9;7015:1;7011;:5;;;;;;;6854:278;-1:-1:-1;;;;;6854:278:0:o;17688:761::-;18112:23;18138:69;18166:4;18138:69;;;;;;;;;;;;;;;;;18146:5;-1:-1:-1;;;;;18138:27:0;;;:69;;;;;:::i;:::-;18222:17;;18112:95;;-1:-1:-1;18222:21:0;18218:224;;18364:10;18353:30;;;;;;;;;;;;;;;-1:-1:-1;18353:30:0;18345:85;;;;-1:-1:-1;;;18345:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12314:196;12417:12;12449:53;12472:6;12480:4;12486:1;12489:12;12449:22;:53::i;:::-;12442:60;12314:196;-1:-1:-1;;;;12314:196:0:o;13691:979::-;13821:12;13854:18;13865:6;13854:10;:18::i;:::-;13846:60;;;;;-1:-1:-1;;;13846:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;13980:12;13994:23;14021:6;-1:-1:-1;;;;;14021:11:0;14041:8;14052:4;14021:36;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;14021:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13979:78;;;;14072:7;14068:595;;;14103:10;-1:-1:-1;14096:17:0;;-1:-1:-1;14096:17:0;14068:595;14217:17;;:21;14213:439;;14480:10;14474:17;14541:15;14528:10;14524:2;14520:19;14513:44;14428:148;14616:20;;-1:-1:-1;;;14616:20:0;;;;;;;;;;;;;;;;;14623:12;;14616:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9199:619;9259:4;9727:20;;9570:66;9767:23;;;;;;:42;;-1:-1:-1;;9794:15:0;;;9759:51;-1:-1:-1;;9199:619:0:o
Swarm Source
ipfs://1840a762307e968c075be95660e696793ef8909619484127c277077142db3ed6
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.