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:
BfireGenesisRewardPool
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2022-03-23 */ // Sources flattened with hardhat v2.6.8 https://hardhat.org // File @openzeppelin/contracts/token/ERC20/[email protected] // 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/BfireGenesisRewardPool.sol pragma solidity 0.6.12; // Note that this pool has no minter key of BFIRE (rewards). // Instead, the governance will call BFIRE distributeReward method and send reward to this pool at the beginning. contract BfireGenesisRewardPool { 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. BFIRE to distribute. uint256 lastRewardTime; // Last time that BFIRE distribution occurs. uint16 depositFeeBP; //depositfee uint256 accBfirePerShare; // Accumulated BFIRE per share, times 1e18. See below. bool isStarted; // if lastRewardBlock has passed } IERC20 public bfire; address public cake; // 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 BFIRE mining starts. uint256 public poolStartTime; // The time when BFIRE mining ends. uint256 public poolEndTime; // TESTNET // uint256 public bfirePerSecond = 3.0555555 ether; // 11000 BFIRE / (1h * 60min * 60s) // uint256 public runningTime = 24 hours; // 1 hours // uint256 public constant TOTAL_REWARDS = 11000 ether; // END TESTNET // MAINNET uint256 public bfirePerSecond = 0.322425 ether; // 65000 BFIRE / (24h * 2.3333* 60min * 60s) uint256 public runningTime = 2.33 days; // 2.33 days 56hours uint256 public constant TOTAL_REWARDS = 65000 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 _bfire, address _cake, address _feeAddress, uint256 _poolStartTime ) public { require(block.timestamp < _poolStartTime, "late"); if (_bfire != address(0)) bfire = IERC20(_bfire); if (_cake != address(0)) cake = _cake; poolStartTime = _poolStartTime; poolEndTime = poolStartTime + runningTime; operator = msg.sender; feeAddress = _feeAddress; } modifier onlyOperator() { require(operator == msg.sender, "BfireGenesisPool: 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, "BfireGenesisPool: 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, accBfirePerShare: 0, isStarted: _isStarted, depositFeeBP: _depositFeeBP})); if (_isStarted) { totalAllocPoint = totalAllocPoint.add(_allocPoint); } } // Update the given pool's BFIRE 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(bfirePerSecond); return poolEndTime.sub(_fromTime).mul(bfirePerSecond); } else { if (_toTime <= poolStartTime) return 0; if (_fromTime <= poolStartTime) return _toTime.sub(poolStartTime).mul(bfirePerSecond); return _toTime.sub(_fromTime).mul(bfirePerSecond); } } // View function to see pending BFIRE on frontend. function pendingBFIRE(uint256 _pid, address _user) external view returns (uint256) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accBfirePerShare = pool.accBfirePerShare; uint256 tokenSupply = pool.token.balanceOf(address(this)); if (block.timestamp > pool.lastRewardTime && tokenSupply != 0) { uint256 _generatedReward = getGeneratedReward(pool.lastRewardTime, block.timestamp); uint256 _bfireReward = _generatedReward.mul(pool.allocPoint).div(totalAllocPoint); accBfirePerShare = accBfirePerShare.add(_bfireReward.mul(1e18).div(tokenSupply)); } return user.amount.mul(accBfirePerShare).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 _bfireReward = _generatedReward.mul(pool.allocPoint).div(totalAllocPoint); pool.accBfirePerShare = pool.accBfirePerShare.add(_bfireReward.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.accBfirePerShare).div(1e18).sub(user.rewardDebt); if (_pending > 0) { safeBfireTransfer(_sender, _pending); emit RewardPaid(_sender, _pending); } } if (_amount > 0) { pool.token.safeTransferFrom(_sender, address(this), _amount); if (address(pool.token) == cake) { 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.accBfirePerShare).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.accBfirePerShare).div(1e18).sub(user.rewardDebt); if (_pending > 0) { safeBfireTransfer(_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.accBfirePerShare).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 BFIRE transfer function, just in case if rounding error causes pool to not have enough BFIREs. function safeBfireTransfer(address _to, uint256 _amount) internal { uint256 _bfireBalance = bfire.balanceOf(address(this)); if (_bfireBalance > 0) { if (_amount > _bfireBalance) { bfire.safeTransfer(_to, _bfireBalance); } else { bfire.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 (BFIRE or lps) if less than 90 days after pool ends require(_token != bfire, "bfire"); 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":"_bfire","type":"address"},{"internalType":"address","name":"_cake","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":[],"name":"bfire","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bfirePerSecond","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cake","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":[{"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":"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":"pendingBFIRE","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":"accBfirePerShare","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":[{"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
608060405260006006556704797bd447b4900060095562031260600a5534801561002857600080fd5b5060405162002c8938038062002c898339818101604052608081101561004d57600080fd5b81019080805190602001909291908051906020019092919080519060200190929190805190602001909291905050508042106100f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260048152602001807f6c6174650000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146101675783600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146101dd5782600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b80600781905550600a5460075401600881905550336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050612a0380620002866000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c8063570ca735116100c357806393f1a40b1161007c57806393f1a40b14610592578063943f013d146105fb578063b3ab15fb14610619578063dce174841461065d578063e2bbb15814610691578063f77942b5146106c957610158565b8063570ca735146104b65780635f96dc11146104ea578063630b5ba114610508578063694331a1146105125780636e271dd5146105305780638705fcd41461054e57610158565b80634127535811610115578063412753581461030e578063441a3e7014610342578063466e7acc1461037a57806351eb05a6146103ec5780635312ea8e1461041a57806354575af41461044857610158565b806309cf60911461015d5780631526fe271461017b57806317caf6f1146101fc578063231f0c6a1461021a57806324bcb38c146102665780632b9ad4e5146102ac575b600080fd5b6101656106fd565b6040518082815260200191505060405180910390f35b6101a76004803603602081101561019157600080fd5b810190808035906020019092919050505061070b565b604051808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018461ffff1681526020018381526020018215158152602001965050505050505060405180910390f35b61020461078f565b6040518082815260200191505060405180910390f35b6102506004803603604081101561023057600080fd5b810190808035906020019092919080359060200190929190505050610795565b6040518082815260200191505060405180910390f35b6102aa6004803603606081101561027c57600080fd5b810190808035906020019092919080359060200190929190803561ffff1690602001909291905050506108a8565b005b6102f8600480360360408110156102c257600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a62565b6040518082815260200191505060405180910390f35b610316610c9a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103786004803603604081101561035857600080fd5b810190808035906020019092919080359060200190929190505050610cc0565b005b6103ea600480360360a081101561039057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919080359060200190929190803561ffff169060200190929190505050610f78565b005b6104186004803603602081101561040257600080fd5b810190808035906020019092919050505061123b565b005b6104466004803603602081101561043057600080fd5b810190808035906020019092919050505061144a565b005b6104b46004803603606081101561045e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061157e565b005b6104be61182e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104f2611852565b6040518082815260200191505060405180910390f35b610510611858565b005b61051a611885565b6040518082815260200191505060405180910390f35b61053861188b565b6040518082815260200191505060405180910390f35b6105906004803603602081101561056457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611891565b005b6105de600480360360408110156105a857600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119d3565b604051808381526020018281526020019250505060405180910390f35b610603611a04565b6040518082815260200191505060405180910390f35b61065b6004803603602081101561062f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a0a565b005b610665611af1565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106c7600480360360408110156106a757600080fd5b810190808035906020019092919080359060200190929190505050611b17565b005b6106d1611f30565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b690dc3a8351f3d86a0000081565b6004818154811061071857fe5b90600052602060002090600602016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030160009054906101000a900461ffff16908060040154908060050160009054906101000a900460ff16905086565b60065481565b60008183106107a757600090506108a2565b600854821061082d5760085483106107c257600090506108a2565b60075483116107fd576107f66009546107e8600754600854611f5690919063ffffffff16565b611fd990919063ffffffff16565b90506108a2565b61082660095461081885600854611f5690919063ffffffff16565b611fd990919063ffffffff16565b90506108a2565b600754821161083f57600090506108a2565b60075483116108785761087160095461086360075485611f5690919063ffffffff16565b611fd990919063ffffffff16565b90506108a2565b61089f6009546108918585611f5690919063ffffffff16565b611fd990919063ffffffff16565b90505b92915050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461094c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061290c602c913960400191505060405180910390fd5b60648161ffff1611156109aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061297f6025913960400191505060405180910390fd5b6109b2611858565b6000600484815481106109c157fe5b906000526020600020906006020190508060050160009054906101000a900460ff1615610a1a57610a1383610a058360010154600654611f5690919063ffffffff16565b61205f90919063ffffffff16565b6006819055505b8281600101819055508160048581548110610a3157fe5b906000526020600020906006020160030160006101000a81548161ffff021916908361ffff16021790555050505050565b60008060048481548110610a7257fe5b9060005260206000209060060201905060006005600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008260040154905060008360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610b6c57600080fd5b505afa158015610b80573d6000803e3d6000fd5b505050506040513d6020811015610b9657600080fd5b81019080805190602001909291905050509050836002015442118015610bbd575060008114155b15610c47576000610bd2856002015442610795565b90506000610c01600654610bf3886001015485611fd990919063ffffffff16565b6120e790919063ffffffff16565b9050610c42610c3384610c25670de0b6b3a764000085611fd990919063ffffffff16565b6120e790919063ffffffff16565b8561205f90919063ffffffff16565b935050505b610c8e8360010154610c80670de0b6b3a7640000610c72868860000154611fd990919063ffffffff16565b6120e790919063ffffffff16565b611f5690919063ffffffff16565b94505050505092915050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000339050600060048481548110610cd457fe5b9060005260206000209060060201905060006005600086815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508381600001541015610db2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f77697468647261773a206e6f7420676f6f64000000000000000000000000000081525060200191505060405180910390fd5b610dbb8561123b565b6000610e088260010154610dfa670de0b6b3a7640000610dec87600401548760000154611fd990919063ffffffff16565b6120e790919063ffffffff16565b611f5690919063ffffffff16565b90506000811115610e6c57610e1d8482612170565b8373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a25b6000851115610ee457610e8c858360000154611f5690919063ffffffff16565b8260000181905550610ee384868560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122ef9092919063ffffffff16565b5b610f19670de0b6b3a7640000610f0b85600401548560000154611fd990919063ffffffff16565b6120e790919063ffffffff16565b8260010181905550858473ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568876040518082815260200191505060405180910390a3505050505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061290c602c913960400191505060405180910390fd5b60648161ffff16111561107a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806128e76025913960400191505060405180910390fd5b61108384612391565b821561109257611091611858565b5b6007544210156110c55760008214156110af5760075491506110c0565b6007548210156110bf5760075491505b5b6110dd565b60008214806110d357504282105b156110dc574291505b5b6000600754831115806110f05750428311155b905060046040518060c001604052808773ffffffffffffffffffffffffffffffffffffffff1681526020018881526020018581526020018461ffff16815260200160008152602001831515815250908060018154018082558091505060019003906000526020600020906006020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101556040820151816002015560608201518160030160006101000a81548161ffff021916908361ffff1602179055506080820151816004015560a08201518160050160006101000a81548160ff021916908315150217905550505080156112335761122c8660065461205f90919063ffffffff16565b6006819055505b505050505050565b60006004828154811061124a57fe5b906000526020600020906006020190508060020154421161126b5750611447565b60008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156112f857600080fd5b505afa15801561130c573d6000803e3d6000fd5b505050506040513d602081101561132257600080fd5b81019080805190602001909291905050509050600081141561134e574282600201819055505050611447565b8160050160009054906101000a900460ff166113a15760018260050160006101000a81548160ff02191690831515021790555061139a826001015460065461205f90919063ffffffff16565b6006819055505b6000600654111561143b5760006113bc836002015442610795565b905060006113eb6006546113dd866001015485611fd990919063ffffffff16565b6120e790919063ffffffff16565b905061143061141d8461140f670de0b6b3a764000085611fd990919063ffffffff16565b6120e790919063ffffffff16565b856004015461205f90919063ffffffff16565b846004018190555050505b42826002018190555050505b50565b60006004828154811061145957fe5b9060005260206000209060060201905060006005600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600081600001549050600082600001819055506000826001018190555061152933828560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122ef9092919063ffffffff16565b833373ffffffffffffffffffffffffffffffffffffffff167fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae0595836040518082815260200191505060405180910390a350505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061290c602c913960400191505060405180910390fd5b6276a700600854014210156117fe57600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260058152602001807f626669726500000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600480549050905060005b818110156117fb5760006004828154811061171957fe5b906000526020600020906006020190508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156117ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f706f6f6c2e746f6b656e0000000000000000000000000000000000000000000081525060200191505060405180910390fd5b50806001019050611702565b50505b61182981838573ffffffffffffffffffffffffffffffffffffffff166122ef9092919063ffffffff16565b505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b6000600480549050905060005b81811015611881576118768161123b565b806001019050611865565b5050565b60095481565b60085481565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061290c602c913960400191505060405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fd44190acf9d04bdb5d3a1aafff7e6dee8b40b93dfb8c5d3f0eea4b9f4539c3f760405160405180910390a350565b6005602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b600a5481565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611aae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061290c602c913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000339050600060048481548110611b2b57fe5b9060005260206000209060060201905060006005600086815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611b988561123b565b600081600001541115611c58576000611bf28260010154611be4670de0b6b3a7640000611bd687600401548760000154611fd990919063ffffffff16565b6120e790919063ffffffff16565b611f5690919063ffffffff16565b90506000811115611c5657611c078482612170565b8373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a25b505b6000841115611e9d57611cb28330868560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612496909392919063ffffffff16565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d7457611d6b611d58612710611d4a6126ac88611fd990919063ffffffff16565b6120e790919063ffffffff16565b826000015461205f90919063ffffffff16565b81600001819055505b60008260030160009054906101000a900461ffff1661ffff161115611e7c576000611dd2612710611dc48560030160009054906101000a900461ffff1661ffff1688611fd990919063ffffffff16565b6120e790919063ffffffff16565b9050611e45600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122ef9092919063ffffffff16565b611e6e81611e6087856000015461205f90919063ffffffff16565b611f5690919063ffffffff16565b826000018190555050611e9c565b611e9384826000015461205f90919063ffffffff16565b81600001819055505b5b611ed2670de0b6b3a7640000611ec484600401548460000154611fd990919063ffffffff16565b6120e790919063ffffffff16565b8160010181905550848373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15866040518082815260200191505060405180910390a35050505050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600082821115611fce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b600080831415611fec5760009050612059565b6000828402905082848281611ffd57fe5b0414612054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061295e6021913960400191505060405180910390fd5b809150505b92915050565b6000808284019050838110156120dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080821161215e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b81838161216757fe5b04905092915050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156121fb57600080fd5b505afa15801561220f573d6000803e3d6000fd5b505050506040513d602081101561222557600080fd5b8101908080519060200190929190505050905060008111156122ea578082111561229b576122968382600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122ef9092919063ffffffff16565b6122e9565b6122e88383600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122ef9092919063ffffffff16565b5b5b505050565b61238c8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612557565b505050565b6000600480549050905060005b81811015612491578273ffffffffffffffffffffffffffffffffffffffff16600482815481106123ca57fe5b906000526020600020906006020160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612486576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f426669726547656e65736973506f6f6c3a206578697374696e6720706f6f6c3f81525060200191505060405180910390fd5b80600101905061239e565b505050565b612551846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612557565b50505050565b60606125b9826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166126469092919063ffffffff16565b9050600081511115612641578080602001905160208110156125da57600080fd5b8101908080519060200190929190505050612640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806129a4602a913960400191505060405180910390fd5b5b505050565b6060612655848460008561265e565b90509392505050565b6060824710156126b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806129386026913960400191505060405180910390fd5b6126c285612807565b612734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106127845780518252602082019150602081019050602083039250612761565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146127e6576040519150601f19603f3d011682016040523d82523d6000602084013e6127eb565b606091505b50915091506127fb82828661281a565b92505050949350505050565b600080823b905060008111915050919050565b6060831561282a578290506128df565b60008351111561283d5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156128a4578082015181840152602081019050612889565b50505050905090810190601f1680156128d15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b939250505056fe6164643a20696e76616c6964206465706f7369742066656520626173697320706f696e7473426669726547656e65736973506f6f6c3a2063616c6c6572206973206e6f7420746865206f70657261746f72416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f777365743a20696e76616c6964206465706f7369742066656520626173697320706f696e74735361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212201e34d7e29f051248c8e3e12c26fb2b3b357e1bcc0a6c8f0a3b3ae2d1304bdc7b64736f6c634300060c0033000000000000000000000000601f79d65929a6ac2831ef90f662a2248a7867560000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ce7ef82a984a030fda1b17aa459f94cf049d27d800000000000000000000000000000000000000000000000000000000623dd8f0
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000601f79d65929a6ac2831ef90f662a2248a7867560000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ce7ef82a984a030fda1b17aa459f94cf049d27d800000000000000000000000000000000000000000000000000000000623dd8f0
-----Decoded View---------------
Arg [0] : _bfire (address): 0x601f79d65929a6ac2831ef90f662a2248a786756
Arg [1] : _cake (address): 0x0000000000000000000000000000000000000000
Arg [2] : _feeAddress (address): 0xce7ef82a984a030fda1b17aa459f94cf049d27d8
Arg [3] : _poolStartTime (uint256): 1648220400
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000601f79d65929a6ac2831ef90f662a2248a786756
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 000000000000000000000000ce7ef82a984a030fda1b17aa459f94cf049d27d8
Arg [3] : 00000000000000000000000000000000000000000000000000000000623dd8f0
Deployed ByteCode Sourcemap
22431:12078:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24258:51;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23384:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23629:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27663:657;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27107:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28384:779;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22587:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31832:813;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25690:1320;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29502:912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32716:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33865:641;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22557:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23715:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29246:180;;;:::i;:::-;;24094:46;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23793:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33587:163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23468:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;24192:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33756:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23329:19;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30449:1347;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23303:19;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24258:51;24298:11;24258:51;:::o;23384:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23629:34::-;;;;:::o;27663:657::-;27748:7;27785;27772:9;:20;27768:34;;27801:1;27794:8;;;;27768:34;27828:11;;27817:7;:22;27813:500;;27873:11;;27860:9;:24;27856:38;;27893:1;27886:8;;;;27856:38;27926:13;;27913:9;:26;27909:89;;27948:50;27983:14;;27948:30;27964:13;;27948:11;;:15;;:30;;;;:::i;:::-;:34;;:50;;;;:::i;:::-;27941:57;;;;27909:89;28020:46;28051:14;;28020:26;28036:9;28020:11;;:15;;:26;;;;:::i;:::-;:30;;:46;;;;:::i;:::-;28013:53;;;;27813:500;28114:13;;28103:7;:24;28099:38;;28136:1;28129:8;;;;28099:38;28169:13;;28156:9;:26;28152:85;;28191:46;28222:14;;28191:26;28203:13;;28191:7;:11;;:26;;;;:::i;:::-;:30;;:46;;;;:::i;:::-;28184:53;;;;28152:85;28259:42;28286:14;;28259:22;28271:9;28259:7;:11;;:22;;;;:::i;:::-;:26;;:42;;;;:::i;:::-;28252:49;;27663:657;;;;;:::o;27107:479::-;25263:10;25251:22;;:8;;;;;;;;;;:22;;;25243:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27234:3:::1;27217:13;:20;;;;27209:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27290:17;:15;:17::i;:::-;27318:21;27342:8;27351:4;27342:14;;;;;;;;;;;;;;;;;;27318:38;;27371:4;:14;;;;;;;;;;;;27367:118;;;27420:53;27461:11;27420:36;27440:4;:15;;;27420;;:19;;:36;;;;:::i;:::-;:40;;:53;;;;:::i;:::-;27402:15;:71;;;;27367:118;27513:11;27495:4;:15;;:29;;;;27565:13;27535:8;27544:4;27535:14;;;;;;;;;;;;;;;;;;:27;;;:43;;;;;;;;;;;;;;;;;;25333:1;27107:479:::0;;;:::o;28384:779::-;28458:7;28478:21;28502:8;28511:4;28502:14;;;;;;;;;;;;;;;;;;28478:38;;28527:21;28551:8;:14;28560:4;28551:14;;;;;;;;;;;:21;28566:5;28551:21;;;;;;;;;;;;;;;28527:45;;28583:24;28610:4;:21;;;28583:48;;28642:19;28664:4;:10;;;;;;;;;;;;:20;;;28693:4;28664:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28642:57;;28732:4;:19;;;28714:15;:37;:57;;;;;28770:1;28755:11;:16;;28714:57;28710:364;;;28788:24;28815:56;28834:4;:19;;;28855:15;28815:18;:56::i;:::-;28788:83;;28886:20;28909:58;28951:15;;28909:37;28930:4;:15;;;28909:16;:20;;:37;;;;:::i;:::-;:41;;:58;;;;:::i;:::-;28886:81;;29001:61;29022:39;29049:11;29022:22;29039:4;29022:12;:16;;:22;;;;:::i;:::-;:26;;:39;;;;:::i;:::-;29001:16;:20;;:61;;;;:::i;:::-;28982:80;;28710:364;;;29091:64;29139:4;:15;;;29091:43;29129:4;29091:33;29107:16;29091:4;:11;;;:15;;:33;;;;:::i;:::-;:37;;:43;;;;:::i;:::-;:47;;:64;;;;:::i;:::-;29084:71;;;;;;28384:779;;;;:::o;22587:25::-;;;;;;;;;;;;;:::o;31832:813::-;31899:15;31917:10;31899:28;;31938:21;31962:8;31971:4;31962:14;;;;;;;;;;;;;;;;;;31938:38;;31987:21;32011:8;:14;32020:4;32011:14;;;;;;;;;;;:23;32026:7;32011:23;;;;;;;;;;;;;;;31987:47;;32068:7;32053:4;:11;;;:22;;32045:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32109:16;32120:4;32109:10;:16::i;:::-;32136;32155:69;32208:4;:15;;;32155:48;32198:4;32155:38;32171:4;:21;;;32155:4;:11;;;:15;;:38;;;;:::i;:::-;:42;;:48;;;;:::i;:::-;:52;;:69;;;;:::i;:::-;32136:88;;32250:1;32239:8;:12;32235:130;;;32268:36;32286:7;32295:8;32268:17;:36::i;:::-;32335:7;32324:29;;;32344:8;32324:29;;;;;;;;;;;;;;;;;;32235:130;32389:1;32379:7;:11;32375:138;;;32421:24;32437:7;32421:4;:11;;;:15;;:24;;;;:::i;:::-;32407:4;:11;;:38;;;;32460:41;32484:7;32493;32460:4;:10;;;;;;;;;;;;:23;;;;:41;;;;;:::i;:::-;32375:138;32541:48;32584:4;32541:38;32557:4;:21;;;32541:4;:11;;;:15;;:38;;;;:::i;:::-;:42;;:48;;;;:::i;:::-;32523:4;:15;;:66;;;;32623:4;32614:7;32605:32;;;32629:7;32605:32;;;;;;;;;;;;;;;;;;31832:813;;;;;;:::o;25690:1320::-;25263:10;25251:22;;:8;;;;;;;;;;:22;;;25243:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25915:3:::1;25898:13;:20;;;;25890:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25973:26;25992:6;25973:18;:26::i;:::-;26014:11;26010:61;;;26042:17;:15;:17::i;:::-;26010:61;26103:13;;26085:15;:31;26081:534;;;26189:1;26170:15;:20;26166:243;;;26229:13;;26211:31;;26166:243;;;26305:13;;26287:15;:31;26283:111;;;26361:13;;26343:31;;26283:111;26166:243;26081:534;;;26496:1;26477:15;:20;:57;;;;26519:15;26501;:33;26477:57;26473:131;;;26573:15;26555:33;;26473:131;26081:534;26625:15;26663:13;;26644:15;:32;;26643:74;;;;26701:15;26682;:34;;26643:74;26625:92;;26728:8;26742:156;;;;;;;;26759:6;26742:156;;;;;;26779:11;26742:156;;;;26808:15;26742:156;;;;26883:13;26742:156;;;;;;26843:1;26742:156;;;;26857:10;26742:156;;;;::::0;26728:171:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26914:10;26910:93;;;26959:32;26979:11;26959:15;;:19;;:32;;;;:::i;:::-;26941:15;:50;;;;26910:93;25333:1;25690:1320:::0;;;;;:::o;29502:912::-;29554:21;29578:8;29587:4;29578:14;;;;;;;;;;;;;;;;;;29554:38;;29626:4;:19;;;29607:15;:38;29603:77;;29662:7;;;29603:77;29690:19;29712:4;:10;;;;;;;;;;;;:20;;;29741:4;29712:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29690:57;;29777:1;29762:11;:16;29758:107;;;29817:15;29795:4;:19;;:37;;;;29847:7;;;;29758:107;29880:4;:14;;;;;;;;;;;;29875:138;;29928:4;29911;:14;;;:21;;;;;;;;;;;;;;;;;;29965:36;29985:4;:15;;;29965;;:19;;:36;;;;:::i;:::-;29947:15;:54;;;;29875:138;30045:1;30027:15;;:19;30023:336;;;30063:24;30090:56;30109:4;:19;;;30130:15;30090:18;:56::i;:::-;30063:83;;30161:20;30184:58;30226:15;;30184:37;30205:4;:15;;;30184:16;:20;;:37;;;;:::i;:::-;:41;;:58;;;;:::i;:::-;30161:81;;30281:66;30307:39;30334:11;30307:22;30324:4;30307:12;:16;;:22;;;;:::i;:::-;:26;;:39;;;;:::i;:::-;30281:4;:21;;;:25;;:66;;;;:::i;:::-;30257:4;:21;;:90;;;;30023:336;;;30391:15;30369:4;:19;;:37;;;;29502:912;;;;:::o;32716:377::-;32775:21;32799:8;32808:4;32799:14;;;;;;;;;;;;;;;;;;32775:38;;32824:21;32848:8;:14;32857:4;32848:14;;;;;;;;;;;:26;32863:10;32848:26;;;;;;;;;;;;;;;32824:50;;32885:15;32903:4;:11;;;32885:29;;32939:1;32925:4;:11;;:15;;;;32969:1;32951:4;:15;;:19;;;;32981:44;33005:10;33017:7;32981:4;:10;;;;;;;;;;;;:23;;;;:44;;;;;:::i;:::-;33071:4;33059:10;33041:44;;;33077:7;33041:44;;;;;;;;;;;;;;;;;;32716:377;;;;:::o;33865:641::-;25263:10;25251:22;;:8;;;;;;;;;;:22;;;25243:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34049:7:::1;34035:11;;:21;34017:15;:39;34013:444;;;34192:5;;;;;;;;;;;34182:15;;:6;:15;;;;34174:33;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;34222:14;34239:8;:15;;;;34222:32;;34274:11;34269:177;34297:6;34291:3;:12;34269:177;;;34331:21;34355:8;34364:3;34355:13;;;;;;;;;;;;;;;;;;34331:37;;34405:4;:10;;;;;;;;;;;;34395:20;;:6;:20;;;;34387:43;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;34269:177;34305:5;;;;;34269:177;;;;34013:444;;34467:31;34487:2;34491:6;34467;:19;;;;:31;;;;;:::i;:::-;33865:641:::0;;;:::o;22557:23::-;;;;;;;;;;;;:::o;23715:28::-;;;;:::o;29246:180::-;29291:14;29308:8;:15;;;;29291:32;;29339:11;29334:85;29362:6;29356:3;:12;29334:85;;;29392:15;29403:3;29392:10;:15::i;:::-;29370:5;;;;;29334:85;;;;29246:180;:::o;24094:46::-;;;;:::o;23793:26::-;;;;:::o;33587:163::-;25263:10;25251:22;;:8;;;;;;;;;;:22;;;25243:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33677:11:::1;33664:10;;:24;;;;;;;;;;;;;;;;;;33730:11;33704:38;;33718:10;33704:38;;;;;;;;;;;;33587:163:::0;:::o;23468:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24192:38::-;;;;:::o;33756:101::-;25263:10;25251:22;;:8;;;;;;;;;;:22;;;25243:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33840:9:::1;33829:8;::::0;:20:::1;;;;;;;;;;;;;;;;;;33756:101:::0;:::o;23329:19::-;;;;;;;;;;;;;:::o;30449:1347::-;30515:15;30533:10;30515:28;;30554:21;30578:8;30587:4;30578:14;;;;;;;;;;;;;;;;;;30554:38;;30603:21;30627:8;:14;30636:4;30627:14;;;;;;;;;;;:23;30642:7;30627:23;;;;;;;;;;;;;;;30603:47;;30661:16;30672:4;30661:10;:16::i;:::-;30706:1;30692:4;:11;;;:15;30688:292;;;30724:16;30743:69;30796:4;:15;;;30743:48;30786:4;30743:38;30759:4;:21;;;30743:4;:11;;;:15;;:38;;;;:::i;:::-;:42;;:48;;;;:::i;:::-;:52;;:69;;;;:::i;:::-;30724:88;;30842:1;30831:8;:12;30827:142;;;30864:36;30882:7;30891:8;30864:17;:36::i;:::-;30935:7;30924:29;;;30944:8;30924:29;;;;;;;;;;;;;;;;;;30827:142;30688:292;;31004:1;30994:7;:11;30990:675;;;31022:60;31050:7;31067:4;31074:7;31022:4;:10;;;;;;;;;;;;:27;;;;:60;;;;;;:::i;:::-;31124:4;;;;;;;;;;;31101:27;;31109:4;:10;;;;;;;;;;;;31101:27;;;31097:127;;;31163:45;31179:28;31201:5;31179:17;31191:4;31179:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;31163:4;:11;;;:15;;:45;;;;:::i;:::-;31149:4;:11;;:59;;;;31097:127;31264:1;31244:4;:17;;;;;;;;;;;;:21;;;31240:414;;;31286:18;31307:41;31342:5;31307:30;31319:4;:17;;;;;;;;;;;;31307:30;;:7;:11;;:30;;;;:::i;:::-;:34;;:41;;;;:::i;:::-;31286:62;;31367:47;31391:10;;;;;;;;;;;31403;31367:4;:10;;;;;;;;;;;;:23;;;;:47;;;;;:::i;:::-;31520:40;31549:10;31520:24;31536:7;31520:4;:11;;;:15;;:24;;;;:::i;:::-;:28;;:40;;;;:::i;:::-;31506:4;:11;;:54;;;;31240:414;;;;31614:24;31630:7;31614:4;:11;;;:15;;:24;;;;:::i;:::-;31600:4;:11;;:38;;;;31240:414;30990:675;31693:48;31736:4;31693:38;31709:4;:21;;;31693:4;:11;;;:15;;:38;;;;:::i;:::-;:42;;:48;;;;:::i;:::-;31675:4;:15;;:66;;;;31774:4;31765:7;31757:31;;;31780:7;31757:31;;;;;;;;;;;;;;;;;;30449:1347;;;;;:::o;23303:19::-;;;;;;;;;;;;;:::o;6177:158::-;6235:7;6268:1;6263;:6;;6255:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6326:1;6322;:5;6315:12;;6177:158;;;;:::o;6594:220::-;6652:7;6681:1;6676;:6;6672:20;;;6691:1;6684:8;;;;6672:20;6703:9;6719:1;6715;:5;6703:17;;6748:1;6743;6739;:5;;;;;;:10;6731:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6805:1;6798:8;;;6594:220;;;;;:::o;5715:179::-;5773:7;5793:9;5809:1;5805;:5;5793:17;;5834:1;5829;:6;;5821:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5885:1;5878:8;;;5715:179;;;;:::o;7292:153::-;7350:7;7382:1;7378;:5;7370:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7436:1;7432;:5;;;;;;7425:12;;7292:153;;;;:::o;33209:373::-;33286:21;33310:5;;;;;;;;;;;:15;;;33334:4;33310:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33286:54;;33371:1;33355:13;:17;33351:224;;;33403:13;33393:7;:23;33389:175;;;33437:38;33456:3;33461:13;33437:5;;;;;;;;;;;:18;;;;:38;;;;;:::i;:::-;33389:175;;;33516:32;33535:3;33540:7;33516:5;;;;;;;;;;;:18;;;;:32;;;;;:::i;:::-;33389:175;33351:224;33209:373;;;:::o;19091:177::-;19174:86;19194:5;19224:23;;;19249:2;19253:5;19201:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19174:19;:86::i;:::-;19091:177;;;:::o;25350:262::-;25418:14;25435:8;:15;;;;25418:32;;25466:11;25461:144;25489:6;25483:3;:12;25461:144;;;25550:6;25527:29;;:8;25536:3;25527:13;;;;;;;;;;;;;;;;;;:19;;;;;;;;;;;;:29;;;;25519:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25497:5;;;;;25461:144;;;;25350:262;;:::o;19276:205::-;19377:96;19397:5;19427:27;;;19456:4;19462:2;19466:5;19404:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19377:19;:96::i;:::-;19276:205;;;;:::o;21396:761::-;21820:23;21846:69;21874:4;21846:69;;;;;;;;;;;;;;;;;21854:5;21846:27;;;;:69;;;;;:::i;:::-;21820:95;;21950:1;21930:10;:17;:21;21926:224;;;22072:10;22061:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22053:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21926:224;21396:761;;;:::o;14080:195::-;14183:12;14215:52;14237:6;14245:4;14251:1;14254:12;14215:21;:52::i;:::-;14208:59;;14080:195;;;;;:::o;15132:530::-;15259:12;15317:5;15292:21;:30;;15284:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15384:18;15395:6;15384:10;:18::i;:::-;15376:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15510:12;15524:23;15551:6;:11;;15571:5;15579:4;15551:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15509:75;;;;15602:52;15620:7;15629:10;15641:12;15602:17;:52::i;:::-;15595:59;;;;15132:530;;;;;;:::o;11162:422::-;11222:4;11430:12;11541:7;11529:20;11521:28;;11575:1;11568:4;:8;11561:15;;;11162:422;;;:::o;17672:742::-;17787:12;17816:7;17812:595;;;17847:10;17840:17;;;;17812:595;17981:1;17961:10;:17;:21;17957:439;;;18224:10;18218:17;18285:15;18272:10;18268:2;18264:19;18257:44;18172:148;18367:12;18360:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17672:742;;;;;;:::o
Swarm Source
ipfs://1e34d7e29f051248c8e3e12c26fb2b3b357e1bcc0a6c8f0a3b3ae2d1304bdc7b
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.