Contract Overview
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
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:
UsdtCircleGenesisRewardPool
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at snowtrace.io on 2022-11-29 */ // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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); } pragma solidity >=0.6.0 <0.8.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, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { 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) { 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) { // 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) { 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) { 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) { 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) { require(b <= a, "SafeMath: subtraction overflow"); 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) { 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, reverting 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) { require(b > 0, "SafeMath: division by zero"); 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) { require(b > 0, "SafeMath: modulo by zero"); 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) { 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. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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); 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) { require(b > 0, errorMessage); return a % b; } } pragma solidity >=0.6.2 <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); } } } } pragma solidity >=0.6.0 <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 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"); } } } pragma solidity 0.6.12; // Note that this pool has no minter key of CIRCLE (rewards). // Instead, the governance will call CIRCLE distributeReward method and send reward to this pool at the beginning. contract UsdtCircleGenesisRewardPool { using SafeMath for uint256; using SafeERC20 for IERC20; // governance address public operator; address public daoFund; uint256 public depositFee; // 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. CIRCLE to distribute. uint256 lastRewardTime; // Last time that CIRCLE distribution occurs. uint256 accCirclePerShare; // Accumulated CIRCLE per share, times 1e18. See below. bool isStarted; // if lastRewardBlock has passed } IERC20 public circle; IERC20 public depositToken = IERC20(0xc7198437980c041c805A1EDcbA50c1Ce5db95118); // USDT // 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 CIRCLE mining starts. uint256 public poolStartTime; // The time when CIRCLE mining ends. uint256 public poolEndTime; uint256 public circlePerSecond; uint256 public runningTime = 48 hours; uint256 public constant TOTAL_REWARDS = 3333 ether; uint256 constant MAX_DEPOSIT_FEE = 100; // 1% 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 _circle, uint256 _poolStartTime, address _daoFund, uint256 _depositFee ) public { require(block.timestamp < _poolStartTime, "late"); if (_circle != address(0)) circle = IERC20(_circle); circlePerSecond = TOTAL_REWARDS.div(runningTime); poolStartTime = _poolStartTime; poolEndTime = poolStartTime + runningTime; daoFund = _daoFund; depositFee = _depositFee; operator = msg.sender; add(1, depositToken, false, 0); } modifier onlyOperator() { require(operator == msg.sender, "CircleGenesisPool: 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, "CircleGenesisPool: 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 ) public onlyOperator { checkPoolDuplicate(_token); 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, accCirclePerShare: 0, isStarted: _isStarted})); if (_isStarted) { totalAllocPoint = totalAllocPoint.add(_allocPoint); } } // Update the given pool's CIRCLE allocation point. Can only be called by the owner. function set(uint256 _pid, uint256 _allocPoint) public onlyOperator { massUpdatePools(); PoolInfo storage pool = poolInfo[_pid]; if (pool.isStarted) { totalAllocPoint = totalAllocPoint.sub(pool.allocPoint).add(_allocPoint); } pool.allocPoint = _allocPoint; } // 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(circlePerSecond); return poolEndTime.sub(_fromTime).mul(circlePerSecond); } else { if (_toTime <= poolStartTime) return 0; if (_fromTime <= poolStartTime) return _toTime.sub(poolStartTime).mul(circlePerSecond); return _toTime.sub(_fromTime).mul(circlePerSecond); } } // View function to see pending CIRCLE on frontend. function pendingCIRCLE(uint256 _pid, address _user) external view returns (uint256) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accCirclePerShare = pool.accCirclePerShare; uint256 tokenSupply = pool.token.balanceOf(address(this)); if (block.timestamp > pool.lastRewardTime && tokenSupply != 0) { uint256 _generatedReward = getGeneratedReward(pool.lastRewardTime, block.timestamp); uint256 _circleReward = _generatedReward.mul(pool.allocPoint).div(totalAllocPoint); accCirclePerShare = accCirclePerShare.add(_circleReward.mul(1e18).div(tokenSupply)); } return user.amount.mul(accCirclePerShare).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 _circleReward = _generatedReward.mul(pool.allocPoint).div(totalAllocPoint); pool.accCirclePerShare = pool.accCirclePerShare.add(_circleReward.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.accCirclePerShare).div(1e18).sub(user.rewardDebt); if (_pending > 0) { safeCircleTransfer(_sender, _pending); emit RewardPaid(_sender, _pending); } } if (_amount > 0) { if (daoFund != address(0) && depositFee != 0) { uint256 feeAmount = _amount.mul(depositFee).div(10000); pool.token.safeTransferFrom(_sender, daoFund, feeAmount); pool.token.safeTransferFrom(_sender, address(this), _amount.sub(feeAmount)); user.amount = user.amount.add(_amount.sub(feeAmount)); } else { pool.token.safeTransferFrom(_sender, address(this), _amount); user.amount = user.amount.add(_amount); } } user.rewardDebt = user.amount.mul(pool.accCirclePerShare).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.accCirclePerShare).div(1e18).sub(user.rewardDebt); if (_pending > 0) { safeCircleTransfer(_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.accCirclePerShare).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 CIRCLE transfer function, just in case if rounding error causes pool to not have enough CIRCLEs. function safeCircleTransfer(address _to, uint256 _amount) internal { uint256 _circleBalance = circle.balanceOf(address(this)); if (_circleBalance > 0) { if (_amount > _circleBalance) { circle.safeTransfer(_to, _circleBalance); } else { circle.safeTransfer(_to, _amount); } } } function setOperator(address _operator) external onlyOperator { operator = _operator; } function governanceRecoverUnsupported( IERC20 _token, uint256 amount, address to ) external onlyOperator { if (block.timestamp < poolEndTime + 30 days) { // do not allow to drain core token (CIRCLE or lps) if less than 30 days after pool ends require(_token != circle, "circle"); 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); } }
[{"inputs":[{"internalType":"address","name":"_circle","type":"address"},{"internalType":"uint256","name":"_poolStartTime","type":"uint256"},{"internalType":"address","name":"_daoFund","type":"address"},{"internalType":"uint256","name":"_depositFee","type":"uint256"}],"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":"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"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"circle","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"circlePerSecond","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"daoFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"depositToken","outputs":[{"internalType":"contract IERC20","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":"pendingCIRCLE","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":"accCirclePerShare","type":"uint256"},{"internalType":"bool","name":"isStarted","type":"bool"}],"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"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","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
6080604052600480546001600160a01b03191673c7198437980c041c805a1edcba50c1ce5db9511817905560006007556202a300600b553480156200004357600080fd5b506040516200217938038062002179833981810160405260808110156200006957600080fd5b5080516020820151604083015160609093015191929091428311620000be576040805162461bcd60e51b815260206004808301919091526024820152636c61746560e01b604482015290519081900360640190fd5b6001600160a01b03841615620000ea57600380546001600160a01b0319166001600160a01b0386161790555b6200010f600b5468b4aeaab10258f400006200016a60201b620011561790919060201c565b600a556008839055600b548301600955600180546001600160a01b038085166001600160a01b03199283161783556002849055600080549092163317825560045462000160939291169080620001d5565b5050505062000882565b6000808211620001c1576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b818381620001cb57fe5b0490505b92915050565b6000546001600160a01b03163314620002205760405162461bcd60e51b815260040180806020018281038252602d8152602001806200210a602d913960400191505060405180910390fd5b6200022b83620003f5565b81156200023c576200023c62000483565b6008544210156200026d578062000257575060085462000267565b6008548110156200026757506008545b62000283565b8015806200027a57504281105b15620002835750425b600060085482111580620002975750428211155b6040805160a0810182526001600160a01b038781168252602082018981529282018681526000606084018181528615801560808701908152600580546001810182559481905296517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db09490970293840180546001600160a01b031916979096169690961790945594517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db182015590517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db282015592517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db384015590517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db4909201805460ff191692151592909217909155909150620003ee57620003ea85600754620004aa60201b620011bd1790919060201c565b6007555b5050505050565b60055460005b818110156200047e57826001600160a01b0316600582815481106200041c57fe5b60009182526020909120600590910201546001600160a01b03161415620004755760405162461bcd60e51b8152600401808060200182810382526021815260200180620021586021913960400191505060405180910390fd5b600101620003fb565b505050565b60055460005b81811015620004a6576200049d816200050c565b60010162000489565b5050565b60008282018381101562000505576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000600582815481106200051c57fe5b90600052602060002090600502019050806002015442116200053f5750620006c4565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156200058a57600080fd5b505afa1580156200059f573d6000803e3d6000fd5b505050506040513d6020811015620005b657600080fd5b5051905080620005ce575042600290910155620006c4565b600482015460ff166200060f57600482018054600160ff1990911681179091558201546007546200060b91620004aa602090811b620011bd17901c565b6007555b60075415620006bb57600062000630836002015442620006c760201b60201c565b905060006200066d60075462000659866001015485620007c660201b6200121e1790919060201c565b6200016a60201b620011561790919060201c565b9050620006b36200069a8462000659670de0b6b3a764000085620007c660201b6200121e1790919060201c565b8560030154620004aa60201b620011bd1790919060201c565b600385015550505b50426002909101555b50565b6000818310620006da57506000620001cf565b600954821062000765576009548310620006f757506000620001cf565b600854831162000742576200073a600a54620007266008546009546200082460201b620012771790919060201c565b620007c660201b6200121e1790919060201c565b9050620001cf565b6200073a600a5462000726856009546200082460201b620012771790919060201c565b60085482116200077857506000620001cf565b6008548311620007a5576200073a600a5462000726600854856200082460201b620012771790919060201c565b6200073a600a546200072685856200082460201b620012771790919060201c565b600082620007d757506000620001cf565b82820282848281620007e557fe5b0414620005055760405162461bcd60e51b8152600401808060200182810382526021815260200180620021376021913960400191505060405180910390fd5b6000828211156200087c576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b61187880620008926000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c8063630b5ba1116100c3578063943f013d1161007c578063943f013d1461034f57806396805e5414610357578063b3ab15fb14610391578063c89039c5146103b7578063e2bbb158146103bf578063e60e32ae146103e257610158565b8063630b5ba1146102e2578063670bdd64146102ea57806367a52793146102f25780636e271dd5146102fa5780638d934f741461030257806393f1a40b1461030a57610158565b8063441a3e7011610115578063441a3e701461023f57806351eb05a6146102625780635312ea8e1461027f57806354575af41461029c578063570ca735146102d25780635f96dc11146102da57610158565b806309cf60911461015d5780631526fe271461017757806316b8cddd146101cb57806317caf6f1146101ef5780631ab06ee5146101f7578063231f0c6a1461021c575b600080fd5b61016561040e565b60408051918252519081900360200190f35b6101946004803603602081101561018d57600080fd5b503561041b565b604080516001600160a01b039096168652602086019490945284840192909252606084015215156080830152519081900360a00190f35b6101d3610466565b604080516001600160a01b039092168252519081900360200190f35b610165610475565b61021a6004803603604081101561020d57600080fd5b508035906020013561047b565b005b6101656004803603604081101561023257600080fd5b5080359060200135610529565b61021a6004803603604081101561025557600080fd5b50803590602001356105ee565b61021a6004803603602081101561027857600080fd5b50356107ab565b61021a6004803603602081101561029557600080fd5b5035610909565b61021a600480360360608110156102b257600080fd5b506001600160a01b038135811691602081013591604090910135166109a5565b6101d3610aed565b610165610afc565b61021a610b02565b610165610b25565b610165610b2b565b610165610b31565b6101d3610b37565b6103366004803603604081101561032057600080fd5b50803590602001356001600160a01b0316610b46565b6040805192835260208301919091528051918290030190f35b610165610b6a565b61021a6004803603608081101561036d57600080fd5b508035906001600160a01b0360208201351690604081013515159060600135610b70565b61021a600480360360208110156103a757600080fd5b50356001600160a01b0316610d71565b6101d3610ddc565b61021a600480360360408110156103d557600080fd5b5080359060200135610deb565b610165600480360360408110156103f857600080fd5b50803590602001356001600160a01b0316610ff8565b68b4aeaab10258f4000081565b6005818154811061042857fe5b6000918252602090912060059091020180546001820154600283015460038401546004909401546001600160a01b0390931694509092909160ff1685565b6003546001600160a01b031681565b60075481565b6000546001600160a01b031633146104c45760405162461bcd60e51b815260040180806020018281038252602d8152602001806117aa602d913960400191505060405180910390fd5b6104cc610b02565b6000600583815481106104db57fe5b60009182526020909120600590910201600481015490915060ff16156105225761051e82610518836001015460075461127790919063ffffffff16565b906111bd565b6007555b6001015550565b600081831061053a575060006105e8565b60095482106105a2576009548310610554575060006105e8565b600854831161058757610580600a5461057a60085460095461127790919063ffffffff16565b9061121e565b90506105e8565b610580600a5461057a8560095461127790919063ffffffff16565b60085482116105b3575060006105e8565b60085483116105d757610580600a5461057a6008548561127790919063ffffffff16565b600a546105809061057a8486611277565b92915050565b600033905060006005848154811061060257fe5b600091825260208083208784526006825260408085206001600160a01b0388168652909252922080546005909202909201925084111561067e576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b610687856107ab565b60006106c482600101546106be670de0b6b3a76400006106b88760030154876000015461121e90919063ffffffff16565b90611156565b90611277565b90508015610716576106d684826112d4565b6040805182815290516001600160a01b038616917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b84156107405781546107289086611277565b82558254610740906001600160a01b0316858761138a565b6003830154825461075e91670de0b6b3a7640000916106b89161121e565b600183015560408051868152905187916001600160a01b038716917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a3505050505050565b6000600582815481106107ba57fe5b90600052602060002090600502019050806002015442116107db5750610906565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561082557600080fd5b505afa158015610839573d6000803e3d6000fd5b505050506040513d602081101561084f57600080fd5b5051905080610865575042600290910155610906565b600482015460ff166108965760048201805460ff19166001908117909155820154600754610892916111bd565b6007555b600754156108fd5760006108ae836002015442610529565b905060006108cf6007546106b886600101548561121e90919063ffffffff16565b90506108f56108ea846106b884670de0b6b3a764000061121e565b6003860154906111bd565b600385015550505b50426002909101555b50565b60006005828154811061091857fe5b600091825260208083208584526006825260408085203380875293528420805485825560018201959095556005909302018054909450919291610968916001600160a01b0391909116908361138a565b604080518281529051859133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a350505050565b6000546001600160a01b031633146109ee5760405162461bcd60e51b815260040180806020018281038252602d8152602001806117aa602d913960400191505060405180910390fd5b60095462278d0001421015610ad4576003546001600160a01b0384811691161415610a49576040805162461bcd60e51b8152602060048201526006602482015265636972636c6560d01b604482015290519081900360640190fd5b60055460005b81811015610ad157600060058281548110610a6657fe5b6000918252602090912060059091020180549091506001600160a01b0387811691161415610ac8576040805162461bcd60e51b815260206004820152600a6024820152693837b7b6173a37b5b2b760b11b604482015290519081900360640190fd5b50600101610a4f565b50505b610ae86001600160a01b038416828461138a565b505050565b6000546001600160a01b031681565b60085481565b60055460005b81811015610b2157610b19816107ab565b600101610b08565b5050565b600a5481565b60025481565b60095481565b6001546001600160a01b031681565b60066020908152600092835260408084209091529082529020805460019091015482565b600b5481565b6000546001600160a01b03163314610bb95760405162461bcd60e51b815260040180806020018281038252602d8152602001806117aa602d913960400191505060405180910390fd5b610bc2836113dc565b8115610bd057610bd0610b02565b600854421015610bfc5780610be85750600854610bf7565b600854811015610bf757506008545b610c10565b801580610c0857504281105b15610c105750425b600060085482111580610c235750428211155b6040805160a0810182526001600160a01b038781168252602082018981529282018681526000606084018181528615801560808701908152600580546001810182559481905296517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db09490970293840180546001600160a01b031916979096169690961790945594517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db182015590517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db282015592517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db384015590517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db4909201805460ff191692151592909217909155909150610d6a57600754610d6690866111bd565b6007555b5050505050565b6000546001600160a01b03163314610dba5760405162461bcd60e51b815260040180806020018281038252602d8152602001806117aa602d913960400191505060405180910390fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b031681565b6000339050600060058481548110610dff57fe5b600091825260208083208784526006825260408085206001600160a01b0388168652909252922060059091029091019150610e39856107ab565b805415610ec5576000610e7182600101546106be670de0b6b3a76400006106b88760030154876000015461121e90919063ffffffff16565b90508015610ec357610e8384826112d4565b6040805182815290516001600160a01b038616917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b505b8315610f8e576001546001600160a01b031615801590610ee6575060025415155b15610f68576000610f086127106106b86002548861121e90919063ffffffff16565b6001548454919250610f29916001600160a01b039081169187911684611460565b610f4b8430610f388885611277565b86546001600160a01b0316929190611460565b610f60610f588683611277565b8354906111bd565b825550610f8e565b8154610f7f906001600160a01b0316843087611460565b8054610f8b90856111bd565b81555b60038201548154610fac91670de0b6b3a7640000916106b89161121e565b600182015560408051858152905186916001600160a01b038616917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a35050505050565b6000806005848154811061100857fe5b600091825260208083208784526006825260408085206001600160a01b0389811687529084528186206005959095029092016003810154815483516370a0823160e01b815230600482015293519298509596909590949316926370a082319260248082019391829003018186803b15801561108257600080fd5b505afa158015611096573d6000803e3d6000fd5b505050506040513d60208110156110ac57600080fd5b50516002850154909150421180156110c357508015155b156111205760006110d8856002015442610529565b905060006110f96007546106b888600101548561121e90919063ffffffff16565b905061111b611114846106b884670de0b6b3a764000061121e565b85906111bd565b935050505b61114b83600101546106be670de0b6b3a76400006106b886886000015461121e90919063ffffffff16565b979650505050505050565b60008082116111ac576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816111b557fe5b049392505050565b600082820183811015611217576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60008261122d575060006105e8565b8282028284828161123a57fe5b04146112175760405162461bcd60e51b81526004018080602001828103825260218152602001806117d76021913960400191505060405180910390fd5b6000828211156112ce576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600354604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561131f57600080fd5b505afa158015611333573d6000803e3d6000fd5b505050506040513d602081101561134957600080fd5b505190508015610ae8578082111561137757600354611372906001600160a01b0316848361138a565b610ae8565b600354610ae8906001600160a01b031684845b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610ae89084906114c0565b60055460005b81811015610ae857826001600160a01b03166005828154811061140157fe5b60009182526020909120600590910201546001600160a01b031614156114585760405162461bcd60e51b81526004018080602001828103825260218152602001806117f86021913960400191505060405180910390fd5b6001016113e2565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526114ba9085906114c0565b50505050565b6060611515826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166115719092919063ffffffff16565b805190915015610ae85780806020019051602081101561153457600080fd5b5051610ae85760405162461bcd60e51b815260040180806020018281038252602a815260200180611819602a913960400191505060405180910390fd5b60606115808484600085611588565b949350505050565b6060824710156115c95760405162461bcd60e51b81526004018080602001828103825260268152602001806117846026913960400191505060405180910390fd5b6115d2856116d9565b611623576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106116625780518252601f199092019160209182019101611643565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146116c4576040519150601f19603f3d011682016040523d82523d6000602084013e6116c9565b606091505b509150915061114b8282866116df565b3b151590565b606083156116ee575081611217565b8251156116fe5782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611748578181015183820152602001611730565b50505050905090810190601f1680156117755780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c436972636c6547656e65736973506f6f6c3a2063616c6c6572206973206e6f7420746865206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77436972636c6547656e65736973506f6f6c3a206578697374696e6720706f6f6c3f5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220e822226e006b67435068f5d47fba8933e2771d5b7013986e8457550f483edc9564736f6c634300060c0033436972636c6547656e65736973506f6f6c3a2063616c6c6572206973206e6f7420746865206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77436972636c6547656e65736973506f6f6c3a206578697374696e6720706f6f6c3f000000000000000000000000a4cee7a8bf66a9fa0e1447950792e603bdda9cab00000000000000000000000000000000000000000000000000000000638a5940000000000000000000000000a5711b2ba04a84482a776b3a3f94be281c72d98a0000000000000000000000000000000000000000000000000000000000000064
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a4cee7a8bf66a9fa0e1447950792e603bdda9cab00000000000000000000000000000000000000000000000000000000638a5940000000000000000000000000a5711b2ba04a84482a776b3a3f94be281c72d98a0000000000000000000000000000000000000000000000000000000000000064
-----Decoded View---------------
Arg [0] : _circle (address): 0xa4cee7a8bf66a9fa0e1447950792e603bdda9cab
Arg [1] : _poolStartTime (uint256): 1670011200
Arg [2] : _daoFund (address): 0xa5711b2ba04a84482a776b3a3f94be281c72d98a
Arg [3] : _depositFee (uint256): 100
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000a4cee7a8bf66a9fa0e1447950792e603bdda9cab
Arg [1] : 00000000000000000000000000000000000000000000000000000000638a5940
Arg [2] : 000000000000000000000000a5711b2ba04a84482a776b3a3f94be281c72d98a
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000064
Deployed ByteCode Sourcemap
22039:11318:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23585:50;;;:::i;:::-;;;;;;;;;;;;;;;;23058:26;;;;;;;;;;;;;;;;-1:-1:-1;23058:26:0;;:::i;:::-;;;;-1:-1:-1;;;;;23058:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22905:20;;;:::i;:::-;;;;-1:-1:-1;;;;;22905:20:0;;;;;;;;;;;;;;23303:34;;;:::i;26329:321::-;;;;;;;;;;;;;;;;-1:-1:-1;26329:321:0;;;;;;;:::i;:::-;;26727:661;;;;;;;;;;;;;;;;-1:-1:-1;26727:661:0;;;;;;;:::i;30830:816::-;;;;;;;;;;;;;;;;-1:-1:-1;30830:816:0;;;;;;;:::i;28579:916::-;;;;;;;;;;;;;;;;-1:-1:-1;28579:916:0;;:::i;31717:377::-;;;;;;;;;;;;;;;;-1:-1:-1;31717:377:0;;:::i;32710:644::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32710:644:0;;;;;;;;;;;;;;;;;:::i;22170:23::-;;;:::i;23390:28::-;;;:::i;28323:180::-;;;:::i;23504:30::-;;;:::i;22229:25::-;;;:::i;23469:26::-;;;:::i;22200:22::-;;;:::i;23142:64::-;;;;;;;;;;;;;;;;-1:-1:-1;23142:64:0;;;;;;-1:-1:-1;;;;;23142:64:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23541:37;;;:::i;25056:1175::-;;;;;;;;;;;;;;;;-1:-1:-1;25056:1175:0;;;-1:-1:-1;;;;;25056:1175:0;;;;;;;;;;;;;;;;;:::i;32601:101::-;;;;;;;;;;;;;;;;-1:-1:-1;32601:101:0;-1:-1:-1;;;;;32601:101:0;;:::i;22932:79::-;;;:::i;29530:1264::-;;;;;;;;;;;;;;;;-1:-1:-1;29530:1264:0;;;;;;;:::i;27453:787::-;;;;;;;;;;;;;;;;-1:-1:-1;27453:787:0;;;;;;-1:-1:-1;;;;;27453:787:0;;:::i;23585:50::-;23625:10;23585:50;:::o;23058:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23058:26:0;;;;-1:-1:-1;23058:26:0;;;;;;;:::o;22905:20::-;;;-1:-1:-1;;;;;22905:20:0;;:::o;23303:34::-;;;;:::o;26329:321::-;24615:8;;-1:-1:-1;;;;;24615:8:0;24627:10;24615:22;24607:80;;;;-1:-1:-1;;;24607:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26408:17:::1;:15;:17::i;:::-;26436:21;26460:8;26469:4;26460:14;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;26489;::::0;::::1;::::0;26460;;-1:-1:-1;26489:14:0::1;;26485:118;;;26538:53;26579:11;26538:36;26558:4;:15;;;26538;;:19;;:36;;;;:::i;:::-;:40:::0;::::1;:53::i;:::-;26520:15;:71:::0;26485:118:::1;26613:15;;:29:::0;-1:-1:-1;26329:321:0:o;26727:661::-;26812:7;26849;26836:9;:20;26832:34;;-1:-1:-1;26865:1:0;26858:8;;26832:34;26892:11;;26881:7;:22;26877:504;;26937:11;;26924:9;:24;26920:38;;-1:-1:-1;26957:1:0;26950:8;;26920:38;26990:13;;26977:9;:26;26973:90;;27012:51;27047:15;;27012:30;27028:13;;27012:11;;:15;;:30;;;;:::i;:::-;:34;;:51::i;:::-;27005:58;;;;26973:90;27085:47;27116:15;;27085:26;27101:9;27085:11;;:15;;:26;;;;:::i;26877:504::-;27180:13;;27169:7;:24;27165:38;;-1:-1:-1;27202:1:0;27195:8;;27165:38;27235:13;;27222:9;:26;27218:86;;27257:47;27288:15;;27257:26;27269:13;;27257:7;:11;;:26;;;;:::i;27218:86::-;27353:15;;27326:43;;:22;:7;27338:9;27326:11;:22::i;26877:504::-;26727:661;;;;:::o;30830:816::-;30897:15;30915:10;30897:28;;30936:21;30960:8;30969:4;30960:14;;;;;;;;;;;;;;;;31009;;;:8;:14;;;;;;-1:-1:-1;;;;;31009:23:0;;;;;;;;;31051:11;;30960:14;;;;;;;;-1:-1:-1;31051:22:0;-1:-1:-1;31051:22:0;31043:53;;;;;-1:-1:-1;;;31043:53:0;;;;;;;;;;;;-1:-1:-1;;;31043:53:0;;;;;;;;;;;;;;;31107:16;31118:4;31107:10;:16::i;:::-;31134;31153:70;31207:4;:15;;;31153:49;31197:4;31153:39;31169:4;:22;;;31153:4;:11;;;:15;;:39;;;;:::i;:::-;:43;;:49::i;:::-;:53;;:70::i;:::-;31134:89;-1:-1:-1;31238:12:0;;31234:131;;31267:37;31286:7;31295:8;31267:18;:37::i;:::-;31324:29;;;;;;;;-1:-1:-1;;;;;31324:29:0;;;;;;;;;;;;;31234:131;31379:11;;31375:138;;31421:11;;:24;;31437:7;31421:15;:24::i;:::-;31407:38;;31460:10;;:41;;-1:-1:-1;;;;;31460:10:0;31484:7;31493;31460:23;:41::i;:::-;31557:22;;;;31541:11;;:49;;31585:4;;31541:39;;:15;:39::i;:49::-;31523:15;;;:67;31606:32;;;;;;;;31624:4;;-1:-1:-1;;;;;31606:32:0;;;;;;;;;;;;30830:816;;;;;;:::o;28579:916::-;28631:21;28655:8;28664:4;28655:14;;;;;;;;;;;;;;;;;;28631:38;;28703:4;:19;;;28684:15;:38;28680:77;;28739:7;;;28680:77;28789:10;;:35;;;-1:-1:-1;;;28789:35:0;;28818:4;28789:35;;;;;;28767:19;;-1:-1:-1;;;;;28789:10:0;;:20;;:35;;;;;;;;;;;;;;:10;:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28789:35:0;;-1:-1:-1;28839:16:0;28835:107;;-1:-1:-1;28894:15:0;28872:19;;;;:37;28924:7;;28835:107;28957:14;;;;;;28952:138;;28988:14;;;:21;;-1:-1:-1;;28988:21:0;29005:4;28988:21;;;;;;29062:15;;;29042;;:36;;:19;:36::i;:::-;29024:15;:54;28952:138;29104:15;;:19;29100:340;;29140:24;29167:56;29186:4;:19;;;29207:15;29167:18;:56::i;:::-;29140:83;;29238:21;29262:58;29304:15;;29262:37;29283:4;:15;;;29262:16;:20;;:37;;;;:::i;:58::-;29238:82;-1:-1:-1;29360:68:0;29387:40;29415:11;29387:23;29238:82;29405:4;29387:17;:23::i;:40::-;29360:22;;;;;:26;:68::i;:::-;29335:22;;;:93;-1:-1:-1;;29100:340:0;-1:-1:-1;29472:15:0;29450:19;;;;:37;28579:916;;:::o;31717:377::-;31776:21;31800:8;31809:4;31800:14;;;;;;;;;;;;;;;;31849;;;:8;:14;;;;;;31864:10;31849:26;;;;;;;31904:11;;31926:15;;;-1:-1:-1;31952:15:0;;:19;;;;31800:14;;;;;31982:10;;31800:14;;-1:-1:-1;31849:26:0;;31904:11;31982:44;;-1:-1:-1;;;;;31982:10:0;;;;;31904:11;31982:23;:44::i;:::-;32042;;;;;;;;32072:4;;32060:10;;32042:44;;;;;;;;;31717:377;;;;:::o;32710:644::-;24615:8;;-1:-1:-1;;;;;24615:8:0;24627:10;24615:22;24607:80;;;;-1:-1:-1;;;24607:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32880:11:::1;;32894:7;32880:21;32862:15;:39;32858:447;;;33038:6;::::0;-1:-1:-1;;;;;33028:16:0;;::::1;33038:6:::0;::::1;33028:16;;33020:35;;;::::0;;-1:-1:-1;;;33020:35:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;33020:35:0;;;;;;;;;;;;;::::1;;33087:8;:15:::0;33070:14:::1;33117:177;33145:6;33139:3;:12;33117:177;;;33179:21;33203:8;33212:3;33203:13;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;33253:10:::0;;33203:13;;-1:-1:-1;;;;;;33243:20:0;;::::1;33253:10:::0;::::1;33243:20;;33235:43;;;::::0;;-1:-1:-1;;;33235:43:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;33235:43:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;33153:5:0::1;;33117:177;;;;32858:447;;33315:31;-1:-1:-1::0;;;;;33315:19:0;::::1;33335:2:::0;33339:6;33315:19:::1;:31::i;:::-;32710:644:::0;;;:::o;22170:23::-;;;-1:-1:-1;;;;;22170:23:0;;:::o;23390:28::-;;;;:::o;28323:180::-;28385:8;:15;28368:14;28411:85;28439:6;28433:3;:12;28411:85;;;28469:15;28480:3;28469:10;:15::i;:::-;28447:5;;28411:85;;;;28323:180;:::o;23504:30::-;;;;:::o;22229:25::-;;;;:::o;23469:26::-;;;;:::o;22200:22::-;;;-1:-1:-1;;;;;22200:22:0;;:::o;23142:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23541:37::-;;;;:::o;25056:1175::-;24615:8;;-1:-1:-1;;;;;24615:8:0;24627:10;24615:22;24607:80;;;;-1:-1:-1;;;24607:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25222:26:::1;25241:6;25222:18;:26::i;:::-;25263:11;25259:61;;;25291:17;:15;:17::i;:::-;25352:13;;25334:15;:31;25330:534;;;25419:20:::0;25415:243:::1;;-1:-1:-1::0;25478:13:0::1;::::0;25415:243:::1;;;25554:13;;25536:15;:31;25532:111;;;-1:-1:-1::0;25610:13:0::1;::::0;25532:111:::1;25330:534;;;25726:20:::0;;;:57:::1;;;25768:15;25750;:33;25726:57;25722:131;;;-1:-1:-1::0;25822:15:0::1;25722:131;25874:15;25912:13;;25893:15;:32;;25892:74;;;;25950:15;25931;:34;;25892:74;25991:128;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;25991:128:0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;-1:-1:-1;25991:128:0;;;;;;;::::1;::::0;::::1;::::0;;;;;;25977:8:::1;:143:::0;;::::1;::::0;::::1;::::0;;;;;;;;;;;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;;25977:143:0::1;::::0;;;::::1;::::0;;;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25977:143:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;25991:128;;-1:-1:-1;26131:93:0::1;;26180:15;::::0;:32:::1;::::0;26200:11;26180:19:::1;:32::i;:::-;26162:15;:50:::0;26131:93:::1;24698:1;25056:1175:::0;;;;:::o;32601:101::-;24615:8;;-1:-1:-1;;;;;24615:8:0;24627:10;24615:22;24607:80;;;;-1:-1:-1;;;24607:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32674:8:::1;:20:::0;;-1:-1:-1;;;;;;32674:20:0::1;-1:-1:-1::0;;;;;32674:20:0;;;::::1;::::0;;;::::1;::::0;;32601:101::o;22932:79::-;;;-1:-1:-1;;;;;22932:79:0;;:::o;29530:1264::-;29596:15;29614:10;29596:28;;29635:21;29659:8;29668:4;29659:14;;;;;;;;;;;;;;;;29708;;;:8;:14;;;;;;-1:-1:-1;;;;;29708:23:0;;;;;;;;;29659:14;;;;;;;;-1:-1:-1;29742:16:0;29717:4;29742:10;:16::i;:::-;29773:11;;:15;29769:294;;29805:16;29824:70;29878:4;:15;;;29824:49;29868:4;29824:39;29840:4;:22;;;29824:4;:11;;;:15;;:39;;;;:::i;:70::-;29805:89;-1:-1:-1;29913:12:0;;29909:143;;29946:37;29965:7;29974:8;29946:18;:37::i;:::-;30007:29;;;;;;;;-1:-1:-1;;;;;30007:29:0;;;;;;;;;;;;;29909:143;29769:294;;30087:11;;30083:577;;30119:7;;-1:-1:-1;;;;;30119:7:0;:21;;;;:40;;-1:-1:-1;30144:10:0;;:15;;30119:40;30115:534;;;30180:17;30200:34;30228:5;30200:23;30212:10;;30200:7;:11;;:23;;;;:::i;:34::-;30290:7;;30253:10;;30180:54;;-1:-1:-1;30253:56:0;;-1:-1:-1;;;;;30253:10:0;;;;30281:7;;30290;30180:54;30253:27;:56::i;:::-;30328:75;30356:7;30373:4;30380:22;:7;30392:9;30380:11;:22::i;:::-;30328:10;;-1:-1:-1;;;;;30328:10:0;;:75;;:27;:75::i;:::-;30436:39;30452:22;:7;30464:9;30452:11;:22::i;:::-;30436:11;;;:15;:39::i;:::-;30422:53;;-1:-1:-1;30115:534:0;;;30516:10;;:60;;-1:-1:-1;;;;;30516:10:0;30544:7;30561:4;30568:7;30516:27;:60::i;:::-;30609:11;;:24;;30625:7;30609:15;:24::i;:::-;30595:38;;30115:534;30706:22;;;;30690:11;;:49;;30734:4;;30690:39;;:15;:39::i;:49::-;30672:15;;;:67;30755:31;;;;;;;;30772:4;;-1:-1:-1;;;;;30755:31:0;;;;;;;;;;;;29530:1264;;;;;:::o;27453:787::-;27528:7;27548:21;27572:8;27581:4;27572:14;;;;;;;;;;;;;;;;27621;;;:8;:14;;;;;;-1:-1:-1;;;;;27621:21:0;;;;;;;;;;;27572:14;;;;;;;;27681:22;;;;27736:10;;:35;;-1:-1:-1;;;27736:35:0;;27765:4;27736:35;;;;;;27572:14;;-1:-1:-1;27621:21:0;;27681:22;;27572:14;;27736:10;;;:20;;:35;;;;;;;;;;;:10;:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27736:35:0;27804:19;;;;27736:35;;-1:-1:-1;27786:15:0;:37;:57;;;;-1:-1:-1;27827:16:0;;;27786:57;27782:368;;;27860:24;27887:56;27906:4;:19;;;27927:15;27887:18;:56::i;:::-;27860:83;;27958:21;27982:58;28024:15;;27982:37;28003:4;:15;;;27982:16;:20;;:37;;;;:::i;:58::-;27958:82;-1:-1:-1;28075:63:0;28097:40;28125:11;28097:23;27958:82;28115:4;28097:17;:23::i;:40::-;28075:17;;:21;:63::i;:::-;28055:83;;27782:368;;;28167:65;28216:4;:15;;;28167:44;28206:4;28167:34;28183:17;28167:4;:11;;;:15;;:34;;;;:::i;:65::-;28160:72;27453:787;-1:-1:-1;;;;;;;27453:787:0:o;7099:153::-;7157:7;7189:1;7185;:5;7177:44;;;;;-1:-1:-1;;;7177:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7243:1;7239;:5;;;;;;;7099:153;-1:-1:-1;;;7099:153:0:o;5522:179::-;5580:7;5612:5;;;5636:6;;;;5628:46;;;;;-1:-1:-1;;;5628:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5692:1;5522:179;-1:-1:-1;;;5522:179:0:o;6401:220::-;6459:7;6483:6;6479:20;;-1:-1:-1;6498:1:0;6491:8;;6479:20;6522:5;;;6526:1;6522;:5;:1;6546:5;;;;;:10;6538:56;;;;-1:-1:-1;;;6538:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5984:158;6042:7;6075:1;6070;:6;;6062:49;;;;;-1:-1:-1;;;6062:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6129:5:0;;;5984:158::o;32212:381::-;32315:6;;:31;;;-1:-1:-1;;;32315:31:0;;32340:4;32315:31;;;;;;32290:22;;-1:-1:-1;;;;;32315:6:0;;:16;;:31;;;;;;;;;;;;;;:6;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32315:31:0;;-1:-1:-1;32361:18:0;;32357:229;;32410:14;32400:7;:24;32396:179;;;32445:6;;:40;;-1:-1:-1;;;;;32445:6:0;32465:3;32470:14;32445:19;:40::i;:::-;32396:179;;;32526:6;;:33;;-1:-1:-1;;;;;32526:6:0;32546:3;32551:7;18758:177;18868:58;;;-1:-1:-1;;;;;18868:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18868:58:0;-1:-1:-1;;;18868:58:0;;;18841:86;;18861:5;;18841:19;:86::i;24715:263::-;24800:8;:15;24783:14;24826:145;24854:6;24848:3;:12;24826:145;;;24915:6;-1:-1:-1;;;;;24892:29:0;:8;24901:3;24892:13;;;;;;;;;;;;;;;;;;;;;:19;-1:-1:-1;;;;;24892:19:0;:29;;24884:75;;;;-1:-1:-1;;;24884:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24862:5;;24826:145;;18943:205;19071:68;;;-1:-1:-1;;;;;19071:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19071:68:0;-1:-1:-1;;;19071:68:0;;;19044:96;;19064:5;;19044:19;:96::i;:::-;18943:205;;;;:::o;21063:761::-;21487:23;21513:69;21541:4;21513:69;;;;;;;;;;;;;;;;;21521:5;-1:-1:-1;;;;;21513:27:0;;;:69;;;;;:::i;:::-;21597:17;;21487:95;;-1:-1:-1;21597:21:0;21593:224;;21739:10;21728:30;;;;;;;;;;;;;;;-1:-1:-1;21728:30:0;21720:85;;;;-1:-1:-1;;;21720:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13823:195;13926:12;13958:52;13980:6;13988:4;13994:1;13997:12;13958:21;:52::i;:::-;13951:59;13823:195;-1:-1:-1;;;;13823:195:0:o;14875:530::-;15002:12;15060:5;15035:21;:30;;15027:81;;;;-1:-1:-1;;;15027:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15127:18;15138:6;15127:10;:18::i;:::-;15119:60;;;;;-1:-1:-1;;;15119:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15253:12;15267:23;15294:6;-1:-1:-1;;;;;15294:11:0;15314:5;15322:4;15294:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;15294:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15252:75;;;;15345:52;15363:7;15372:10;15384:12;15345:17;:52::i;10905:422::-;11272:20;11311:8;;;10905:422::o;17415:742::-;17530:12;17559:7;17555:595;;;-1:-1:-1;17590:10:0;17583:17;;17555:595;17704:17;;:21;17700:439;;17967:10;17961:17;18028:15;18015:10;18011:2;18007:19;18000:44;17915:148;18110:12;18103:20;;-1:-1:-1;;;18103:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://e822226e006b67435068f5d47fba8933e2771d5b7013986e8457550f483edc95
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.