Contract Overview
My Name Tag:
Not Available
[ Download CSV Export ]
Latest 25 internal transaction
[ 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:
TurtGenesisRewardPool
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Arbiscan on 2023-03-12 */ // 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); } // File @openzeppelin/contracts/math/[email protected] 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; } } // File @openzeppelin/contracts/utils/[email protected] 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); } } } } // File @openzeppelin/contracts/token/ERC20/[email protected] 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"); } } } // File contracts/distribution/TurtGenesisRewardPool.sol pragma solidity 0.6.12; // Note that this pool has no minter key of TURT (rewards). // Instead, the governance will call TURT distributeReward method and send reward to this pool at the beginning. contract TurtGenesisRewardPool { using SafeMath for uint256; using SafeERC20 for IERC20; // governance address public operator; address public feeAddress; // 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. TURT to distribute. uint256 lastRewardTime; // Last time that TURT distribution occurs. uint16 depositFeeBP; //depositfee uint256 accTurtPerShare; // Accumulated TURT per share, times 1e18. See below. bool isStarted; // if lastRewardBlock has passed } IERC20 public turt; address public mim; // 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 TURT mining starts. uint256 public poolStartTime; // The time when TURT mining ends. uint256 public poolEndTime; // MAINNET uint256 public turtPerSecond = 0.04629629 ether; // 6000 TURT / (36h * 60min * 60s) uint256 public runningTime = 1.5 days; // 1.5 days uint256 public constant TOTAL_REWARDS = 6000 ether; // END MAINNET event Deposit(address indexed user, uint256 indexed pid, uint256 amount); event SetFeeAddress(address indexed user, address indexed newAddress); 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 _turt, address _mim, address _feeAddress, uint256 _poolStartTime ) public { require(block.timestamp < _poolStartTime, "late"); if (_turt != address(0)) turt = IERC20(_turt); if (_mim != address(0)) mim = _mim; poolStartTime = _poolStartTime; poolEndTime = poolStartTime + runningTime; operator = msg.sender; feeAddress = _feeAddress; } modifier onlyOperator() { require(operator == msg.sender, "TurtGenesisPool: 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, "TurtGenesisPool: 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, uint16 _depositFeeBP ) public onlyOperator { require(_depositFeeBP <= 100, "add: invalid deposit fee basis points"); 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, accTurtPerShare: 0, isStarted: _isStarted, depositFeeBP: _depositFeeBP})); if (_isStarted) { totalAllocPoint = totalAllocPoint.add(_allocPoint); } } // Update the given pool's TURT allocation point. Can only be called by the owner. function set(uint256 _pid, uint256 _allocPoint, uint16 _depositFeeBP) public onlyOperator { require(_depositFeeBP <= 100, "set: invalid deposit fee basis points"); massUpdatePools(); PoolInfo storage pool = poolInfo[_pid]; if (pool.isStarted) { totalAllocPoint = totalAllocPoint.sub(pool.allocPoint).add(_allocPoint); } pool.allocPoint = _allocPoint; poolInfo[_pid].depositFeeBP = _depositFeeBP; } // 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(turtPerSecond); return poolEndTime.sub(_fromTime).mul(turtPerSecond); } else { if (_toTime <= poolStartTime) return 0; if (_fromTime <= poolStartTime) return _toTime.sub(poolStartTime).mul(turtPerSecond); return _toTime.sub(_fromTime).mul(turtPerSecond); } } // View function to see pending TURT on frontend. function pendingTURT(uint256 _pid, address _user) external view returns (uint256) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accTurtPerShare = pool.accTurtPerShare; uint256 tokenSupply = pool.token.balanceOf(address(this)); if (block.timestamp > pool.lastRewardTime && tokenSupply != 0) { uint256 _generatedReward = getGeneratedReward(pool.lastRewardTime, block.timestamp); uint256 _turtReward = _generatedReward.mul(pool.allocPoint).div(totalAllocPoint); accTurtPerShare = accTurtPerShare.add(_turtReward.mul(1e18).div(tokenSupply)); } return user.amount.mul(accTurtPerShare).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 _turtReward = _generatedReward.mul(pool.allocPoint).div(totalAllocPoint); pool.accTurtPerShare = pool.accTurtPerShare.add(_turtReward.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.accTurtPerShare).div(1e18).sub(user.rewardDebt); if (_pending > 0) { safeTurtTransfer(_sender, _pending); emit RewardPaid(_sender, _pending); } } if (_amount > 0) { pool.token.safeTransferFrom(_sender, address(this), _amount); if (address(pool.token) == mim) { user.amount = user.amount.add(_amount.mul(9900).div(10000)); } if (pool.depositFeeBP > 0) { uint256 depositFee = _amount.mul(pool.depositFeeBP).div(10000); pool.token.safeTransfer(feeAddress, depositFee); // pool.lpToken.safeTransfer(vaultAddress, depositFee); user.amount = user.amount.add(_amount).sub(depositFee); } else { user.amount = user.amount.add(_amount); } } user.rewardDebt = user.amount.mul(pool.accTurtPerShare).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.accTurtPerShare).div(1e18).sub(user.rewardDebt); if (_pending > 0) { safeTurtTransfer(_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.accTurtPerShare).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 TURT transfer function, just in case a rounding error causes pool to not have enough TURTs. function safeTurtTransfer(address _to, uint256 _amount) internal { uint256 _turtBalance = turt.balanceOf(address(this)); if (_turtBalance > 0) { if (_amount > _turtBalance) { turt.safeTransfer(_to, _turtBalance); } else { turt.safeTransfer(_to, _amount); } } } function setFeeAddress(address _feeAddress) external onlyOperator { feeAddress = _feeAddress; emit SetFeeAddress(msg.sender, _feeAddress); } function setOperator(address _operator) external onlyOperator { operator = _operator; } function governanceRecoverUnsupported( IERC20 _token, uint256 amount, address to ) external onlyOperator { if (block.timestamp < poolEndTime + 90 days) { // do not allow to drain core token (TURT or lps) if less than 90 days after pool ends require(_token != turt, "turt"); 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":"_turt","type":"address"},{"internalType":"address","name":"_mim","type":"address"},{"internalType":"address","name":"_feeAddress","type":"address"},{"internalType":"uint256","name":"_poolStartTime","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":"address","name":"newAddress","type":"address"}],"name":"SetFeeAddress","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"},{"internalType":"uint16","name":"_depositFeeBP","type":"uint16"}],"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":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"mim","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"pendingTURT","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":"uint16","name":"depositFeeBP","type":"uint16"},{"internalType":"uint256","name":"accTurtPerShare","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"},{"internalType":"uint16","name":"_depositFeeBP","type":"uint16"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeAddress","type":"address"}],"name":"setFeeAddress","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":[],"name":"turt","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"turtPerSecond","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
6080604052600060065566a47a3affde54006009556201fa40600a5534801561002757600080fd5b5060405162002c8738038062002c878339818101604052608081101561004c57600080fd5b81019080805190602001909291908051906020019092919080519060200190929190805190602001909291905050508042106100f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260048152602001807f6c6174650000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146101665783600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146101dc5782600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b80600781905550600a5460075401600881905550336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050612a0280620002856000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80635f96dc11116100c3578063943f013d1161007c578063943f013d1461059957806397ac144c146105b75780639cbbe46a146106195780639f67679e1461064d578063b3ab15fb14610681578063e2bbb158146106c557610158565b80635f96dc1114610488578063630b5ba1146104a65780636e271dd5146104b05780637a003e31146104ce5780638705fcd4146104ec57806393f1a40b1461053057610158565b8063441a3e7011610115578063441a3e70146102e0578063466e7acc1461031857806351eb05a61461038a5780635312ea8e146103b857806354575af4146103e6578063570ca7351461045457610158565b806309cf60911461015d5780631526fe271461017b57806317caf6f1146101fc578063231f0c6a1461021a57806324bcb38c1461026657806341275358146102ac575b600080fd5b6101656106fd565b6040518082815260200191505060405180910390f35b6101a76004803603602081101561019157600080fd5b810190808035906020019092919050505061070b565b604051808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018461ffff1681526020018381526020018215158152602001965050505050505060405180910390f35b61020461078f565b6040518082815260200191505060405180910390f35b6102506004803603604081101561023057600080fd5b810190808035906020019092919080359060200190929190505050610795565b6040518082815260200191505060405180910390f35b6102aa6004803603606081101561027c57600080fd5b810190808035906020019092919080359060200190929190803561ffff1690602001909291905050506108a8565b005b6102b4610a62565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610316600480360360408110156102f657600080fd5b810190808035906020019092919080359060200190929190505050610a88565b005b610388600480360360a081101561032e57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919080359060200190929190803561ffff169060200190929190505050610d40565b005b6103b6600480360360208110156103a057600080fd5b8101908080359060200190929190505050611003565b005b6103e4600480360360208110156103ce57600080fd5b8101908080359060200190929190505050611212565b005b610452600480360360608110156103fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611346565b005b61045c6115f6565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61049061161a565b6040518082815260200191505060405180910390f35b6104ae611620565b005b6104b861164d565b6040518082815260200191505060405180910390f35b6104d6611653565b6040518082815260200191505060405180910390f35b61052e6004803603602081101561050257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611659565b005b61057c6004803603604081101561054657600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061179b565b604051808381526020018281526020019250505060405180910390f35b6105a16117cc565b6040518082815260200191505060405180910390f35b610603600480360360408110156105cd57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117d2565b6040518082815260200191505060405180910390f35b610621611a0a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610655611a30565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106c36004803603602081101561069757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a56565b005b6106fb600480360360408110156106db57600080fd5b810190808035906020019092919080359060200190929190505050611b3d565b005b69014542ba12a337c0000081565b6004818154811061071857fe5b90600052602060002090600602016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030160009054906101000a900461ffff16908060040154908060050160009054906101000a900460ff16905086565b60065481565b60008183106107a757600090506108a2565b600854821061082d5760085483106107c257600090506108a2565b60075483116107fd576107f66009546107e8600754600854611f5690919063ffffffff16565b611fd990919063ffffffff16565b90506108a2565b61082660095461081885600854611f5690919063ffffffff16565b611fd990919063ffffffff16565b90506108a2565b600754821161083f57600090506108a2565b60075483116108785761087160095461086360075485611f5690919063ffffffff16565b611fd990919063ffffffff16565b90506108a2565b61089f6009546108918585611f5690919063ffffffff16565b611fd990919063ffffffff16565b90505b92915050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461094c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180612978602b913960400191505060405180910390fd5b60648161ffff1611156109aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806129536025913960400191505060405180910390fd5b6109b2611620565b6000600484815481106109c157fe5b906000526020600020906006020190508060050160009054906101000a900460ff1615610a1a57610a1383610a058360010154600654611f5690919063ffffffff16565b61205f90919063ffffffff16565b6006819055505b8281600101819055508160048581548110610a3157fe5b906000526020600020906006020160030160006101000a81548161ffff021916908361ffff16021790555050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000339050600060048481548110610a9c57fe5b9060005260206000209060060201905060006005600086815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508381600001541015610b7a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f77697468647261773a206e6f7420676f6f64000000000000000000000000000081525060200191505060405180910390fd5b610b8385611003565b6000610bd08260010154610bc2670de0b6b3a7640000610bb487600401548760000154611fd990919063ffffffff16565b6120e790919063ffffffff16565b611f5690919063ffffffff16565b90506000811115610c3457610be58482612170565b8373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a25b6000851115610cac57610c54858360000154611f5690919063ffffffff16565b8260000181905550610cab84868560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122ef9092919063ffffffff16565b5b610ce1670de0b6b3a7640000610cd385600401548560000154611fd990919063ffffffff16565b6120e790919063ffffffff16565b8260010181905550858473ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568876040518082815260200191505060405180910390a3505050505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610de4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180612978602b913960400191505060405180910390fd5b60648161ffff161115610e42576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806128e76025913960400191505060405180910390fd5b610e4b84612391565b8215610e5a57610e59611620565b5b600754421015610e8d576000821415610e77576007549150610e88565b600754821015610e875760075491505b5b610ea5565b6000821480610e9b57504282105b15610ea4574291505b5b600060075483111580610eb85750428311155b905060046040518060c001604052808773ffffffffffffffffffffffffffffffffffffffff1681526020018881526020018581526020018461ffff16815260200160008152602001831515815250908060018154018082558091505060019003906000526020600020906006020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101556040820151816002015560608201518160030160006101000a81548161ffff021916908361ffff1602179055506080820151816004015560a08201518160050160006101000a81548160ff02191690831515021790555050508015610ffb57610ff48660065461205f90919063ffffffff16565b6006819055505b505050505050565b60006004828154811061101257fe5b9060005260206000209060060201905080600201544211611033575061120f565b60008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156110c057600080fd5b505afa1580156110d4573d6000803e3d6000fd5b505050506040513d60208110156110ea57600080fd5b81019080805190602001909291905050509050600081141561111657428260020181905550505061120f565b8160050160009054906101000a900460ff166111695760018260050160006101000a81548160ff021916908315150217905550611162826001015460065461205f90919063ffffffff16565b6006819055505b60006006541115611203576000611184836002015442610795565b905060006111b36006546111a5866001015485611fd990919063ffffffff16565b6120e790919063ffffffff16565b90506111f86111e5846111d7670de0b6b3a764000085611fd990919063ffffffff16565b6120e790919063ffffffff16565b856004015461205f90919063ffffffff16565b846004018190555050505b42826002018190555050505b50565b60006004828154811061122157fe5b9060005260206000209060060201905060006005600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160000154905060008260000181905550600082600101819055506112f133828560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122ef9092919063ffffffff16565b833373ffffffffffffffffffffffffffffffffffffffff167fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae0595836040518082815260200191505060405180910390a350505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113ea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180612978602b913960400191505060405180910390fd5b6276a700600854014210156115c657600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260048152602001807f747572740000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600480549050905060005b818110156115c3576000600482815481106114e157fe5b906000526020600020906006020190508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156115b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f706f6f6c2e746f6b656e0000000000000000000000000000000000000000000081525060200191505060405180910390fd5b508060010190506114ca565b50505b6115f181838573ffffffffffffffffffffffffffffffffffffffff166122ef9092919063ffffffff16565b505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b6000600480549050905060005b818110156116495761163e81611003565b80600101905061162d565b5050565b60085481565b60095481565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180612978602b913960400191505060405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fd44190acf9d04bdb5d3a1aafff7e6dee8b40b93dfb8c5d3f0eea4b9f4539c3f760405160405180910390a350565b6005602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b600a5481565b600080600484815481106117e257fe5b9060005260206000209060060201905060006005600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008260040154905060008360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156118dc57600080fd5b505afa1580156118f0573d6000803e3d6000fd5b505050506040513d602081101561190657600080fd5b8101908080519060200190929190505050905083600201544211801561192d575060008114155b156119b7576000611942856002015442610795565b90506000611971600654611963886001015485611fd990919063ffffffff16565b6120e790919063ffffffff16565b90506119b26119a384611995670de0b6b3a764000085611fd990919063ffffffff16565b6120e790919063ffffffff16565b8561205f90919063ffffffff16565b935050505b6119fe83600101546119f0670de0b6b3a76400006119e2868860000154611fd990919063ffffffff16565b6120e790919063ffffffff16565b611f5690919063ffffffff16565b94505050505092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611afa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180612978602b913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000339050600060048481548110611b5157fe5b9060005260206000209060060201905060006005600086815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611bbe85611003565b600081600001541115611c7e576000611c188260010154611c0a670de0b6b3a7640000611bfc87600401548760000154611fd990919063ffffffff16565b6120e790919063ffffffff16565b611f5690919063ffffffff16565b90506000811115611c7c57611c2d8482612170565b8373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a25b505b6000841115611ec357611cd88330868560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612496909392919063ffffffff16565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d9a57611d91611d7e612710611d706126ac88611fd990919063ffffffff16565b6120e790919063ffffffff16565b826000015461205f90919063ffffffff16565b81600001819055505b60008260030160009054906101000a900461ffff1661ffff161115611ea2576000611df8612710611dea8560030160009054906101000a900461ffff1661ffff1688611fd990919063ffffffff16565b6120e790919063ffffffff16565b9050611e6b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122ef9092919063ffffffff16565b611e9481611e8687856000015461205f90919063ffffffff16565b611f5690919063ffffffff16565b826000018190555050611ec2565b611eb984826000015461205f90919063ffffffff16565b81600001819055505b5b611ef8670de0b6b3a7640000611eea84600401548460000154611fd990919063ffffffff16565b6120e790919063ffffffff16565b8160010181905550848373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15866040518082815260200191505060405180910390a35050505050565b600082821115611fce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b600080831415611fec5760009050612059565b6000828402905082848281611ffd57fe5b0414612054576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806129326021913960400191505060405180910390fd5b809150505b92915050565b6000808284019050838110156120dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080821161215e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b81838161216757fe5b04905092915050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156121fb57600080fd5b505afa15801561220f573d6000803e3d6000fd5b505050506040513d602081101561222557600080fd5b8101908080519060200190929190505050905060008111156122ea578082111561229b576122968382600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122ef9092919063ffffffff16565b6122e9565b6122e88383600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122ef9092919063ffffffff16565b5b5b505050565b61238c8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612557565b505050565b6000600480549050905060005b81811015612491578273ffffffffffffffffffffffffffffffffffffffff16600482815481106123ca57fe5b906000526020600020906006020160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5475727447656e65736973506f6f6c3a206578697374696e6720706f6f6c3f0081525060200191505060405180910390fd5b80600101905061239e565b505050565b612551846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612557565b50505050565b60606125b9826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166126469092919063ffffffff16565b9050600081511115612641578080602001905160208110156125da57600080fd5b8101908080519060200190929190505050612640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806129a3602a913960400191505060405180910390fd5b5b505050565b6060612655848460008561265e565b90509392505050565b6060824710156126b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061290c6026913960400191505060405180910390fd5b6126c285612807565b612734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106127845780518252602082019150602081019050602083039250612761565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146127e6576040519150601f19603f3d011682016040523d82523d6000602084013e6127eb565b606091505b50915091506127fb82828661281a565b92505050949350505050565b600080823b905060008111915050919050565b6060831561282a578290506128df565b60008351111561283d5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156128a4578082015181840152602081019050612889565b50505050905090810190601f1680156128d15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b939250505056fe6164643a20696e76616c6964206465706f7369742066656520626173697320706f696e7473416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f777365743a20696e76616c6964206465706f7369742066656520626173697320706f696e74735475727447656e65736973506f6f6c3a2063616c6c6572206973206e6f7420746865206f70657261746f725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212201b602b0cf302caa3b98b175fabf34b3794ecfa161bca8653ecc201055e823bda64736f6c634300060c0033000000000000000000000000fc0fd99a9a7557237d9a22127ac77a27e4c61df9000000000000000000000000000000000000000000000000000000000000dead0000000000000000000000009ee976cf6edb36653745d95f51768bebce5a2bb9000000000000000000000000000000000000000000000000000000006413f3d0
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000fc0fd99a9a7557237d9a22127ac77a27e4c61df9000000000000000000000000000000000000000000000000000000000000dead0000000000000000000000009ee976cf6edb36653745d95f51768bebce5a2bb9000000000000000000000000000000000000000000000000000000006413f3d0
-----Decoded View---------------
Arg [0] : _turt (address): 0xfc0fd99a9a7557237d9a22127ac77a27e4c61df9
Arg [1] : _mim (address): 0x000000000000000000000000000000000000dead
Arg [2] : _feeAddress (address): 0x9ee976cf6edb36653745d95f51768bebce5a2bb9
Arg [3] : _poolStartTime (uint256): 1679029200
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000fc0fd99a9a7557237d9a22127ac77a27e4c61df9
Arg [1] : 000000000000000000000000000000000000000000000000000000000000dead
Arg [2] : 0000000000000000000000009ee976cf6edb36653745d95f51768bebce5a2bb9
Arg [3] : 000000000000000000000000000000000000000000000000000000006413f3d0
Deployed ByteCode Sourcemap
22315:11772:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23864:50;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23261:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23506:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27264:653;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26702:485;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22470:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31426:810;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25283:1323;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29090:908;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32307:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33446:638;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22440:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23591:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28834:180;;;:::i;:::-;;23668:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23719:47;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33168:163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23345:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;23808:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27980:771;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23182:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23207;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33337:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30033:1357;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23864:50;23904:10;23864:50;:::o;23261:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23506:34::-;;;;:::o;27264:653::-;27349:7;27386;27373:9;:20;27369:34;;27402:1;27395:8;;;;27369:34;27429:11;;27418:7;:22;27414:496;;27474:11;;27461:9;:24;27457:38;;27494:1;27487:8;;;;27457:38;27527:13;;27514:9;:26;27510:88;;27549:49;27584:13;;27549:30;27565:13;;27549:11;;:15;;:30;;;;:::i;:::-;:34;;:49;;;;:::i;:::-;27542:56;;;;27510:88;27620:45;27651:13;;27620:26;27636:9;27620:11;;:15;;:26;;;;:::i;:::-;:30;;:45;;;;:::i;:::-;27613:52;;;;27414:496;27713:13;;27702:7;:24;27698:38;;27735:1;27728:8;;;;27698:38;27768:13;;27755:9;:26;27751:84;;27790:45;27821:13;;27790:26;27802:13;;27790:7;:11;;:26;;;;:::i;:::-;:30;;:45;;;;:::i;:::-;27783:52;;;;27751:84;27857:41;27884:13;;27857:22;27869:9;27857:7;:11;;:22;;;;:::i;:::-;:26;;:41;;;;:::i;:::-;27850:48;;27264:653;;;;;:::o;26702:485::-;24858:10;24846:22;;:8;;;;;;;;;;:22;;;24838:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26833:3:::1;26816:13;:20;;;;26808:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26889:17;:15;:17::i;:::-;26917:21;26941:8;26950:4;26941:14;;;;;;;;;;;;;;;;;;26917:38;;26970:4;:14;;;;;;;;;;;;26966:118;;;27019:53;27060:11;27019:36;27039:4;:15;;;27019;;:19;;:36;;;;:::i;:::-;:40;;:53;;;;:::i;:::-;27001:15;:71;;;;26966:118;27112:11;27094:4;:15;;:29;;;;27164:13;27134:8;27143:4;27134:14;;;;;;;;;;;;;;;;;;:27;;;:43;;;;;;;;;;;;;;;;;;24927:1;26702:485:::0;;;:::o;22470:25::-;;;;;;;;;;;;;:::o;31426:810::-;31493:15;31511:10;31493:28;;31532:21;31556:8;31565:4;31556:14;;;;;;;;;;;;;;;;;;31532:38;;31581:21;31605:8;:14;31614:4;31605:14;;;;;;;;;;;:23;31620:7;31605:23;;;;;;;;;;;;;;;31581:47;;31662:7;31647:4;:11;;;:22;;31639:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31703:16;31714:4;31703:10;:16::i;:::-;31730;31749:68;31801:4;:15;;;31749:47;31791:4;31749:37;31765:4;:20;;;31749:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;:51;;:68;;;;:::i;:::-;31730:87;;31843:1;31832:8;:12;31828:129;;;31861:35;31878:7;31887:8;31861:16;:35::i;:::-;31927:7;31916:29;;;31936:8;31916:29;;;;;;;;;;;;;;;;;;31828:129;31981:1;31971:7;:11;31967:138;;;32013:24;32029:7;32013:4;:11;;;:15;;:24;;;;:::i;:::-;31999:4;:11;;:38;;;;32052:41;32076:7;32085;32052:4;:10;;;;;;;;;;;;:23;;;;:41;;;;;:::i;:::-;31967:138;32133:47;32175:4;32133:37;32149:4;:20;;;32133:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;32115:4;:15;;:65;;;;32214:4;32205:7;32196:32;;;32220:7;32196:32;;;;;;;;;;;;;;;;;;31426:810;;;;;;:::o;25283:1323::-;24858:10;24846:22;;:8;;;;;;;;;;:22;;;24838:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25512:3:::1;25495:13;:20;;;;25487:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25570:26;25589:6;25570:18;:26::i;:::-;25611:11;25607:61;;;25639:17;:15;:17::i;:::-;25607:61;25700:13;;25682:15;:31;25678:534;;;25786:1;25767:15;:20;25763:243;;;25826:13;;25808:31;;25763:243;;;25902:13;;25884:15;:31;25880:111;;;25958:13;;25940:31;;25880:111;25763:243;25678:534;;;26093:1;26074:15;:20;:57;;;;26116:15;26098;:33;26074:57;26070:131;;;26170:15;26152:33;;26070:131;25678:534;26222:15;26260:13;;26241:15;:32;;26240:74;;;;26298:15;26279;:34;;26240:74;26222:92;;26325:8;26339:155;;;;;;;;26356:6;26339:155;;;;;;26376:11;26339:155;;;;26405:15;26339:155;;;;26479:13;26339:155;;;;;;26439:1;26339:155;;;;26453:10;26339:155;;;;::::0;26325:170:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26510:10;26506:93;;;26555:32;26575:11;26555:15;;:19;;:32;;;;:::i;:::-;26537:15;:50;;;;26506:93;24927:1;25283:1323:::0;;;;;:::o;29090:908::-;29142:21;29166:8;29175:4;29166:14;;;;;;;;;;;;;;;;;;29142:38;;29214:4;:19;;;29195:15;:38;29191:77;;29250:7;;;29191:77;29278:19;29300:4;:10;;;;;;;;;;;;:20;;;29329:4;29300:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29278:57;;29365:1;29350:11;:16;29346:107;;;29405:15;29383:4;:19;;:37;;;;29435:7;;;;29346:107;29468:4;:14;;;;;;;;;;;;29463:138;;29516:4;29499;:14;;;:21;;;;;;;;;;;;;;;;;;29553:36;29573:4;:15;;;29553;;:19;;:36;;;;:::i;:::-;29535:15;:54;;;;29463:138;29633:1;29615:15;;:19;29611:332;;;29651:24;29678:56;29697:4;:19;;;29718:15;29678:18;:56::i;:::-;29651:83;;29749:19;29771:58;29813:15;;29771:37;29792:4;:15;;;29771:16;:20;;:37;;;;:::i;:::-;:41;;:58;;;;:::i;:::-;29749:80;;29867:64;29892:38;29918:11;29892:21;29908:4;29892:11;:15;;:21;;;;:::i;:::-;:25;;:38;;;;:::i;:::-;29867:4;:20;;;:24;;:64;;;;:::i;:::-;29844:4;:20;;:87;;;;29611:332;;;29975:15;29953:4;:19;;:37;;;;29090:908;;;;:::o;32307:377::-;32366:21;32390:8;32399:4;32390:14;;;;;;;;;;;;;;;;;;32366:38;;32415:21;32439:8;:14;32448:4;32439:14;;;;;;;;;;;:26;32454:10;32439:26;;;;;;;;;;;;;;;32415:50;;32476:15;32494:4;:11;;;32476:29;;32530:1;32516:4;:11;;:15;;;;32560:1;32542:4;:15;;:19;;;;32572:44;32596:10;32608:7;32572:4;:10;;;;;;;;;;;;:23;;;;:44;;;;;:::i;:::-;32662:4;32650:10;32632:44;;;32668:7;32632:44;;;;;;;;;;;;;;;;;;32307:377;;;;:::o;33446:638::-;24858:10;24846:22;;:8;;;;;;;;;;:22;;;24838:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33630:7:::1;33616:11;;:21;33598:15;:39;33594:441;;;33772:4;;;;;;;;;;;33762:14;;:6;:14;;;;33754:31;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33800:14;33817:8;:15;;;;33800:32;;33852:11;33847:177;33875:6;33869:3;:12;33847:177;;;33909:21;33933:8;33942:3;33933:13;;;;;;;;;;;;;;;;;;33909:37;;33983:4;:10;;;;;;;;;;;;33973:20;;:6;:20;;;;33965:43;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33847:177;33883:5;;;;;33847:177;;;;33594:441;;34045:31;34065:2;34069:6;34045;:19;;;;:31;;;;;:::i;:::-;33446:638:::0;;;:::o;22440:23::-;;;;;;;;;;;;:::o;23591:28::-;;;;:::o;28834:180::-;28879:14;28896:8;:15;;;;28879:32;;28927:11;28922:85;28950:6;28944:3;:12;28922:85;;;28980:15;28991:3;28980:10;:15::i;:::-;28958:5;;;;;28922:85;;;;28834:180;:::o;23668:26::-;;;;:::o;23719:47::-;;;;:::o;33168:163::-;24858:10;24846:22;;:8;;;;;;;;;;:22;;;24838:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33258:11:::1;33245:10;;:24;;;;;;;;;;;;;;;;;;33311:11;33285:38;;33299:10;33285:38;;;;;;;;;;;;33168:163:::0;:::o;23345:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23808:37::-;;;;:::o;27980:771::-;28053:7;28073:21;28097:8;28106:4;28097:14;;;;;;;;;;;;;;;;;;28073:38;;28122:21;28146:8;:14;28155:4;28146:14;;;;;;;;;;;:21;28161:5;28146:21;;;;;;;;;;;;;;;28122:45;;28178:23;28204:4;:20;;;28178:46;;28235:19;28257:4;:10;;;;;;;;;;;;:20;;;28286:4;28257:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28235:57;;28325:4;:19;;;28307:15;:37;:57;;;;;28363:1;28348:11;:16;;28307:57;28303:360;;;28381:24;28408:56;28427:4;:19;;;28448:15;28408:18;:56::i;:::-;28381:83;;28479:19;28501:58;28543:15;;28501:37;28522:4;:15;;;28501:16;:20;;:37;;;;:::i;:::-;:41;;:58;;;;:::i;:::-;28479:80;;28592:59;28612:38;28638:11;28612:21;28628:4;28612:11;:15;;:21;;;;:::i;:::-;:25;;:38;;;;:::i;:::-;28592:15;:19;;:59;;;;:::i;:::-;28574:77;;28303:360;;;28680:63;28727:4;:15;;;28680:42;28717:4;28680:32;28696:15;28680:4;:11;;;:15;;:32;;;;:::i;:::-;:36;;:42;;;;:::i;:::-;:46;;:63;;;;:::i;:::-;28673:70;;;;;;27980:771;;;;:::o;23182:18::-;;;;;;;;;;;;;:::o;23207:::-;;;;;;;;;;;;;:::o;33337:101::-;24858:10;24846:22;;:8;;;;;;;;;;:22;;;24838:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33421:9:::1;33410:8;::::0;:20:::1;;;;;;;;;;;;;;;;;;33337:101:::0;:::o;30033:1357::-;30099:15;30117:10;30099:28;;30138:21;30162:8;30171:4;30162:14;;;;;;;;;;;;;;;;;;30138:38;;30187:21;30211:8;:14;30220:4;30211:14;;;;;;;;;;;:23;30226:7;30211:23;;;;;;;;;;;;;;;30187:47;;30245:16;30256:4;30245:10;:16::i;:::-;30290:1;30276:4;:11;;;:15;30272:290;;;30308:16;30327:68;30379:4;:15;;;30327:47;30369:4;30327:37;30343:4;:20;;;30327:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;:51;;:68;;;;:::i;:::-;30308:87;;30425:1;30414:8;:12;30410:141;;;30447:35;30464:7;30473:8;30447:16;:35::i;:::-;30517:7;30506:29;;;30526:8;30506:29;;;;;;;;;;;;;;;;;;30410:141;30272:290;;30586:1;30576:7;:11;30572:688;;;30604:60;30632:7;30649:4;30656:7;30604:4;:10;;;;;;;;;;;;:27;;;;:60;;;;;;:::i;:::-;30706:3;;;;;;;;;;;30683:26;;30691:4;:10;;;;;;;;;;;;30683:26;;;30679:125;;;30744:45;30760:28;30782:5;30760:17;30772:4;30760:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;30744:4;:11;;;:15;;:45;;;;:::i;:::-;30730:4;:11;;:59;;;;30679:125;30843:1;30823:4;:17;;;;;;;;;;;;:21;;;30819:430;;;30865:18;30886:41;30921:5;30886:30;30898:4;:17;;;;;;;;;;;;30886:30;;:7;:11;;:30;;;;:::i;:::-;:34;;:41;;;;:::i;:::-;30865:62;;30946:47;30970:10;;;;;;;;;;;30982;30946:4;:10;;;;;;;;;;;;:23;;;;:47;;;;;:::i;:::-;31099:40;31128:10;31099:24;31115:7;31099:4;:11;;;:15;;:24;;;;:::i;:::-;:28;;:40;;;;:::i;:::-;31085:4;:11;;:54;;;;30819:430;;;;31209:24;31225:7;31209:4;:11;;;:15;;:24;;;;:::i;:::-;31195:4;:11;;:38;;;;30819:430;30572:688;31288:47;31330:4;31288:37;31304:4;:20;;;31288:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;31270:4;:15;;:65;;;;31368:4;31359:7;31351:31;;;31374:7;31351:31;;;;;;;;;;;;;;;;;;30033:1357;;;;;:::o;6052:158::-;6110:7;6143:1;6138;:6;;6130:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6201:1;6197;:5;6190:12;;6052:158;;;;:::o;6469:220::-;6527:7;6556:1;6551;:6;6547:20;;;6566:1;6559:8;;;;6547:20;6578:9;6594:1;6590;:5;6578:17;;6623:1;6618;6614;:5;;;;;;:10;6606:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6680:1;6673:8;;;6469:220;;;;;:::o;5590:179::-;5648:7;5668:9;5684:1;5680;:5;5668:17;;5709:1;5704;:6;;5696:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5760:1;5753:8;;;5590:179;;;;:::o;7167:153::-;7225:7;7257:1;7253;:5;7245:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7311:1;7307;:5;;;;;;7300:12;;7167:153;;;;:::o;32797:365::-;32873:20;32896:4;;;;;;;;;;;:14;;;32919:4;32896:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32873:52;;32955:1;32940:12;:16;32936:219;;;32987:12;32977:7;:22;32973:171;;;33020:36;33038:3;33043:12;33020:4;;;;;;;;;;;:17;;;;:36;;;;;:::i;:::-;32973:171;;;33097:31;33115:3;33120:7;33097:4;;;;;;;;;;;:17;;;;:31;;;;;:::i;:::-;32973:171;32936:219;32797:365;;;:::o;18970:177::-;19053:86;19073:5;19103:23;;;19128:2;19132:5;19080:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19053:19;:86::i;:::-;18970:177;;;:::o;24944:261::-;25012:14;25029:8;:15;;;;25012:32;;25060:11;25055:143;25083:6;25077:3;:12;25055:143;;;25144:6;25121:29;;:8;25130:3;25121:13;;;;;;;;;;;;;;;;;;:19;;;;;;;;;;;;:29;;;;25113:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25091:5;;;;;25055:143;;;;24944:261;;:::o;19155:205::-;19256:96;19276:5;19306:27;;;19335:4;19341:2;19345:5;19283:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19256:19;:96::i;:::-;19155:205;;;;:::o;21275:761::-;21699:23;21725:69;21753:4;21725:69;;;;;;;;;;;;;;;;;21733:5;21725:27;;;;:69;;;;;:::i;:::-;21699:95;;21829:1;21809:10;:17;:21;21805:224;;;21951:10;21940:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21932:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21805:224;21275:761;;;:::o;13957:195::-;14060:12;14092:52;14114:6;14122:4;14128:1;14131:12;14092:21;:52::i;:::-;14085:59;;13957:195;;;;;:::o;15009:530::-;15136:12;15194:5;15169:21;:30;;15161:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15261:18;15272:6;15261:10;:18::i;:::-;15253:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15387:12;15401:23;15428:6;:11;;15448:5;15456:4;15428:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15386:75;;;;15479:52;15497:7;15506:10;15518:12;15479:17;:52::i;:::-;15472:59;;;;15009:530;;;;;;:::o;11039:422::-;11099:4;11307:12;11418:7;11406:20;11398:28;;11452:1;11445:4;:8;11438:15;;;11039:422;;;:::o;17549:742::-;17664:12;17693:7;17689:595;;;17724:10;17717:17;;;;17689:595;17858:1;17838:10;:17;:21;17834:439;;;18101:10;18095:17;18162:15;18149:10;18145:2;18141:19;18134:44;18049:148;18244:12;18237:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17549:742;;;;;;:::o
Metadata Hash
1b602b0cf302caa3b98b175fabf34b3794ecfa161bca8653ecc201055e823bda
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.