More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 56 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Farm | 13852656 | 1144 days ago | IN | 0 ETH | 0.0102096 | ||||
Withdraw | 13822435 | 1148 days ago | IN | 0 ETH | 0.00377251 | ||||
Get Reward | 13822435 | 1148 days ago | IN | 0 ETH | 0.00471869 | ||||
Withdraw | 13820477 | 1149 days ago | IN | 0 ETH | 0.00440738 | ||||
Farm | 13820197 | 1149 days ago | IN | 0 ETH | 0.01290736 | ||||
Withdraw | 13510955 | 1198 days ago | IN | 0 ETH | 0.01454594 | ||||
Withdraw | 13258783 | 1237 days ago | IN | 0 ETH | 0.0063908 | ||||
Withdraw | 13202618 | 1246 days ago | IN | 0 ETH | 0.00636853 | ||||
Get Reward | 13202597 | 1246 days ago | IN | 0 ETH | 0.00502924 | ||||
Withdraw | 13155905 | 1253 days ago | IN | 0 ETH | 0.02616038 | ||||
Get Reward | 13155902 | 1253 days ago | IN | 0 ETH | 0.02274111 | ||||
Withdraw | 13127616 | 1257 days ago | IN | 0 ETH | 0.00908669 | ||||
Withdraw | 13121778 | 1258 days ago | IN | 0 ETH | 0.00961198 | ||||
Get Reward | 13119291 | 1259 days ago | IN | 0 ETH | 0.00391551 | ||||
Farm | 13015313 | 1275 days ago | IN | 0 ETH | 0.006001 | ||||
Farm | 12991011 | 1278 days ago | IN | 0 ETH | 0.00596347 | ||||
Get Reward | 12982175 | 1280 days ago | IN | 0 ETH | 0.00344381 | ||||
Get Reward | 12979000 | 1280 days ago | IN | 0 ETH | 0.00578976 | ||||
Farm | 12977826 | 1280 days ago | IN | 0 ETH | 0.00731371 | ||||
Get Reward | 12977163 | 1280 days ago | IN | 0 ETH | 0.00514153 | ||||
Farm | 12970393 | 1282 days ago | IN | 0 ETH | 0.00439429 | ||||
Get Reward | 12970333 | 1282 days ago | IN | 0 ETH | 0.00150358 | ||||
Get Reward | 12970333 | 1282 days ago | IN | 0 ETH | 0.0029773 | ||||
Withdraw | 12960180 | 1283 days ago | IN | 0 ETH | 0.00283974 | ||||
Get Reward | 12960168 | 1283 days ago | IN | 0 ETH | 0.00360158 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers. Name tag integration is not available in advanced view.
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
||||
---|---|---|---|---|---|---|---|
13852656 | 1144 days ago | 0 ETH | |||||
13852656 | 1144 days ago | 0 ETH | |||||
13822435 | 1148 days ago | 0 ETH | |||||
13822435 | 1148 days ago | 0 ETH | |||||
13820477 | 1149 days ago | 0 ETH | |||||
13820197 | 1149 days ago | 0 ETH | |||||
13820197 | 1149 days ago | 0 ETH | |||||
13510955 | 1198 days ago | 0 ETH | |||||
13258783 | 1237 days ago | 0 ETH | |||||
13202618 | 1246 days ago | 0 ETH | |||||
13202597 | 1246 days ago | 0 ETH | |||||
13155905 | 1253 days ago | 0 ETH | |||||
13155902 | 1253 days ago | 0 ETH | |||||
13127616 | 1257 days ago | 0 ETH | |||||
13121778 | 1258 days ago | 0 ETH | |||||
13119291 | 1259 days ago | 0 ETH | |||||
13015313 | 1275 days ago | 0 ETH | |||||
13015313 | 1275 days ago | 0 ETH | |||||
12991011 | 1278 days ago | 0 ETH | |||||
12991011 | 1278 days ago | 0 ETH | |||||
12982175 | 1280 days ago | 0 ETH | |||||
12979000 | 1280 days ago | 0 ETH | |||||
12977826 | 1280 days ago | 0 ETH | |||||
12977826 | 1280 days ago | 0 ETH | |||||
12977163 | 1280 days ago | 0 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
GoldFarmFaaS
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-07-26 */ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.4; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers . */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } function ceil(uint a, uint m) internal pure returns (uint r) { return (a + m - 1) / m * m; } } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } 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); } 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"); } } } 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.3._ */ 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.3._ */ 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); } } } } abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } abstract contract IRewardDistributionRecipient is Ownable { address rewardDistribution; modifier onlyRewardDistribution() { require(_msgSender() == rewardDistribution, "Caller is not reward distribution"); _; } function setRewardDistributionAdmin(address _rewardDistribution) internal { require(rewardDistribution == address(0), "Reward distribution Admin already set"); rewardDistribution = _rewardDistribution; } function updateRewardDistributionAdmin(address _rewardDistribution) public onlyOwner { require(rewardDistribution == address(0), "Reward distribution Admin already set"); rewardDistribution = _rewardDistribution; } } contract GoldFarmFaaS is IRewardDistributionRecipient, ReentrancyGuard { using SafeERC20 for IERC20; using SafeMath for uint256; using Address for address; IERC20 public rewardToken;// Ticket2Lambo BSC20 IERC20 public lpToken; // GoldFarm BSC20 address public devAddy = 0xdaC47d05e1aAa9Bd4DA120248E8e0d7480365CFB;//collects pool use fee uint256 public devtxfee = 1; //Fee for pool use, sent to GOLD farming pool uint256 public txfee = 0; //Amount of frictionless rewards of the LP token uint256 public duration = 182 days; bool public perform = true; uint256 public periodFinish = 0; uint256 public rewardRate = 0; uint256 public lastUpdateTime; uint256 public rewardPerTokenStored; mapping(address => uint256) public userRewardPerTokenPaid; mapping(address => uint256) public rewards; mapping(address => uint) public farmTime; bool public farmBreaker = false; // farm can be lock by admin,, default unlocked type=0 bool public rewardBreaker = false; // getreward can be lock by admin,, default unlocked type=1 bool public withdrawBreaker = false; // withdraw can be lock by admin,, default unlocked type=3 uint256 private _totalSupply; mapping(address => uint256) private _balances; mapping(address => uint256) public lpTokenReward; event RewardAdded(uint256 reward); event Farmed(address indexed user, uint256 amount); event Withdrawn(address indexed user, uint256 amount); event RewardPaid(address indexed user, uint256 reward); address[] public farmers; struct USER{ bool initialized; } mapping(address => USER) stakers; constructor(address _lpToken, address _rewardToken) { rewardToken = IERC20(_rewardToken); lpToken = IERC20(_lpToken); setRewardDistributionAdmin(msg.sender); } modifier updateReward(address account) { rewardPerTokenStored = rewardPerToken(); lastUpdateTime = lastTimeRewardApplicable(); if (account != address(0)) { rewards[account] = earned(account); userRewardPerTokenPaid[account] = rewardPerTokenStored; } _; } modifier noContract(address account) { require(Address.isContract(account) == false, "Contracts are not allowed to interact with the farm"); _; } function setdevAddy(address _addy) public onlyOwner { require(_addy != address(0), " Setting 0 as Addy "); devAddy = _addy; } function setBreaker(bool _breaker, uint256 _type) external onlyOwner { if(_type==0){ farmBreaker =_breaker; } else if(_type==1){ rewardBreaker=_breaker; } else if(_type==3){ withdrawBreaker=_breaker; } } function totalSupply() public view returns (uint256) { return _totalSupply; } function balanceOf(address account) public view returns (uint256) { return _balances[account]; } function recoverLostTokensAfterFarmExpired(IERC20 _token, uint256 amount) external onlyOwner { // Recover lost tokens can only be used after farming duration expires require(duration < block.timestamp, "Cannot use if farm is live"); _token.safeTransfer(owner(), amount); } receive() external payable { // Prevent ETH from being sent to the farming contract revert(); } function lastTimeRewardApplicable() public view returns (uint256) { return Math.min(block.timestamp, periodFinish); } function rewardPerToken() public view returns (uint256) { if (totalSupply() == 0) { return rewardPerTokenStored; } return rewardPerTokenStored.add( lastTimeRewardApplicable() .sub(lastUpdateTime) .mul(rewardRate) .mul(1e18) .div(totalSupply()) ); } function earned(address account) public view returns (uint256) { return balanceOf(account) .mul(rewardPerToken().sub(userRewardPerTokenPaid[account])) .div(1e18) .add(rewards[account]); } function isStakeholder(address _address) public view returns(bool) { if(stakers[_address].initialized) return true; else return false; } function addStakeholder(address _stakeholder) internal { (bool _isStakeholder) = isStakeholder(_stakeholder); if(!_isStakeholder) { farmTime[msg.sender] = block.timestamp; stakers[_stakeholder].initialized = true; } } function farm(uint256 amount) external updateReward(msg.sender) noContract(msg.sender) nonReentrant { require(farmBreaker == false, "Admin Restricted function temporarily"); require(amount > 0, "Cannot farm nothing"); lpToken.safeTransferFrom(msg.sender, address(this), amount); uint256 devtax = amount.mul(devtxfee).div(100); uint256 _txfee = amount.mul(txfee).div(100); lpToken.safeTransfer(address(devAddy), devtax); uint256 finalAmount = amount.sub(_txfee).sub(devtax); _totalSupply = _totalSupply.add(finalAmount); _balances[msg.sender] = _balances[msg.sender].add(finalAmount); addStakeholder(msg.sender); emit Farmed(msg.sender,finalAmount); } function withdraw(uint256 amount) public updateReward(msg.sender) noContract(msg.sender) nonReentrant { require(withdrawBreaker == false, "Admin Restricted function temporarily"); require(amount > 0, "Cannot withdraw nothing"); _totalSupply = _totalSupply.sub(amount); _balances[msg.sender] = _balances[msg.sender].sub(amount); lpToken.safeTransfer(msg.sender, amount); if( _balances[msg.sender] == 0) { stakers[msg.sender].initialized = false; } emit Withdrawn(msg.sender, amount); } function exit() external { withdraw(balanceOf(msg.sender)); ClaimLPReward(); getReward(); } function getReward() public updateReward(msg.sender) noContract(msg.sender) { require(rewardBreaker == false, "Admin Restricted function temporarily"); uint256 reward = earned(msg.sender); if (reward > 0) { rewards[msg.sender] = 0; rewardToken.safeTransfer(msg.sender, reward); emit RewardPaid(msg.sender, reward); } } function setFarmRewards(uint256 reward, uint256 _duration) public onlyRewardDistribution nonReentrant updateReward(address(0)) { require(_duration > 0, "Duration must not be 0"); if(rewardRate.mul(duration) <= rewardToken.balanceOf(address(this))){ duration = _duration.mul(1 days); if (block.timestamp >= periodFinish) { rewardRate = reward.div(duration); } else { uint256 remaining = periodFinish.sub(block.timestamp); uint256 leftover = remaining.mul(rewardRate); rewardRate = reward.add(leftover).div(duration); } lastUpdateTime = block.timestamp; periodFinish = block.timestamp.add(duration); require(rewardRate.mul(duration) <= rewardToken.balanceOf(address(this)), "Insufficient reward"); emit RewardAdded(reward); } } uint256 public aclaimed = 0; function DisributeLPTxFunds1() public { // distribute any TX rewards tokens sent to pool for tokens with TX rewards uint256 balanceOfContract = lpToken.balanceOf(address(this)); uint256 transferToAmount = balanceOfContract.sub(_totalSupply.add(aclaimed)); aclaimed = aclaimed.add(transferToAmount); if(transferToAmount > 0 ){ for (uint256 s = 0; s < farmers.length; s++){ address abc = farmers[s]; uint256 blnc = balanceOf(abc); if(blnc > 0) { uint256 userShare = (transferToAmount).mul(blnc).div(_totalSupply); lpTokenReward[abc] = lpTokenReward[abc].add(userShare); emit RewardAdded(userShare); } } } } function ClaimAllRewards() public { ClaimLPReward(); getReward(); if(perform==true){ DisributeLPTxFunds1();} } function onePercent(uint256 _tokens) private pure returns (uint256){ uint256 roundValue = _tokens.ceil(100); uint onePercentofTokens = roundValue.mul(100).div(100 * 10**uint(2)); return onePercentofTokens; } function emergencySaveLostTokens(address _token) external onlyOwner { require(IERC20(_token).transfer(owner(), IERC20(_token).balanceOf(address(this))), "Error in retrieving tokens"); } function ClaimLPReward() public { address _addy = msg.sender; if(lpTokenReward[_addy] > 0 ){ aclaimed = aclaimed.sub(lpTokenReward[_addy]); lpToken.safeTransfer(msg.sender, lpTokenReward[_addy]); lpTokenReward[_addy] = 0; } } function changePerform(bool _bool) external onlyOwner{ perform = _bool; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_lpToken","type":"address"},{"internalType":"address","name":"_rewardToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Farmed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[],"name":"ClaimAllRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ClaimLPReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"DisributeLPTxFunds1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"aclaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_bool","type":"bool"}],"name":"changePerform","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devtxfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"duration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"emergencySaveLostTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"farm","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"farmBreaker","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"farmTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"farmers","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isStakeholder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lpTokenReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"perform","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverLostTokensAfterFarmExpired","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardBreaker","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerTokenStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_breaker","type":"bool"},{"internalType":"uint256","name":"_type","type":"uint256"}],"name":"setBreaker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reward","type":"uint256"},{"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"setFarmRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addy","type":"address"}],"name":"setdevAddy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_rewardDistribution","type":"address"}],"name":"updateRewardDistributionAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userRewardPerTokenPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawBreaker","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600580546001600160a01b03191673dac47d05e1aaa9bd4da120248e8e0d7480365cfb179055600160068190556000600781905562eff1006008556009805460ff1916909217909155600a819055600b8190556011805462ffffff191690556017553480156200007357600080fd5b506040516200240f3803806200240f8339810160408190526200009691620001c8565b600080546001600160a01b0319163390811782556040519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36001600255600380546001600160a01b038084166001600160a01b031992831617909255600480549285169290911691909117905562000115336200011d565b5050620001ff565b6001546001600160a01b031615620001895760405162461bcd60e51b815260206004820152602560248201527f52657761726420646973747269627574696f6e2041646d696e20616c726561646044820152641e481cd95d60da1b606482015260840160405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b80516001600160a01b0381168114620001c357600080fd5b919050565b60008060408385031215620001db578182fd5b620001e683620001ab565b9150620001f660208401620001ab565b90509250929050565b612200806200020f6000396000f3fe60806040526004361061025f5760003560e01c806370a0823111610144578063bf6d63da116100b6578063e89c31691161007a578063e89c3169146106f2578063e9fad8ee14610708578063ebe2b12b1461071d578063ef037b9014610733578063f2fde38b14610753578063f7c618c11461077357600080fd5b8063bf6d63da14610664578063c3f344a814610684578063c8f33c91146106b1578063cd3daf9d146106c7578063df136d65146106dc57600080fd5b80638afdd669116101085780638afdd669146105a55780638b876347146105c55780638da5cb5b146105f25780638f864bb014610610578063a68ca7111461062a578063b147f40c1461064a57600080fd5b806370a082311461050f578063715018a6146105455780637b0a47ee1461055a57806380faa57d146105705780638698c2111461058557600080fd5b806331c2b53d116101dd578063538a85a1116101a1578063538a85a11461045757806354df47ce1461047757806357e885b9146104a45780635fcbd285146104ba5780636426f134146104da578063674d83c2146104ef57600080fd5b806331c2b53d146103d75780633d18b912146103f75780633ed38cc61461040c57806345bde800146104225780634f49e6551461043757600080fd5b80632006813911610224578063200681391461031057806322ff6acd14610330578063295707781461035f5780632e1a7d4d146103975780632f3fadea146103b757600080fd5b80628cc2621461026e5780630700037d146102a15780630fb5a6b4146102ce57806318160ddd146102e4578063196dc32e146102f957600080fd5b3661026957600080fd5b600080fd5b34801561027a57600080fd5b5061028e610289366004611e9c565b610793565b6040519081526020015b60405180910390f35b3480156102ad57600080fd5b5061028e6102bc366004611e9c565b600f6020526000908152604090205481565b3480156102da57600080fd5b5061028e60085481565b3480156102f057600080fd5b5060125461028e565b34801561030557600080fd5b5061030e610812565b005b34801561031c57600080fd5b5061030e61032b366004611e9c565b610896565b34801561033c57600080fd5b5060115461034f90610100900460ff1681565b6040519015158152602001610298565b34801561036b57600080fd5b5060055461037f906001600160a01b031681565b6040516001600160a01b039091168152602001610298565b3480156103a357600080fd5b5061030e6103b2366004611f38565b610a2b565b3480156103c357600080fd5b5061030e6103d2366004611e9c565b610c06565b3480156103e357600080fd5b5061030e6103f2366004611f1b565b610cb9565b34801561040357600080fd5b5061030e610d5e565b34801561041857600080fd5b5061028e60075481565b34801561042e57600080fd5b5061030e610e78565b34801561044357600080fd5b5061030e610452366004611eb8565b611044565b34801561046357600080fd5b5061030e610472366004611f38565b611081565b34801561048357600080fd5b5061028e610492366004611e9c565b60146020526000908152604090205481565b3480156104b057600080fd5b5061028e60065481565b3480156104c657600080fd5b5060045461037f906001600160a01b031681565b3480156104e657600080fd5b5061030e611298565b3480156104fb57600080fd5b5061030e61050a366004611ef0565b6112c2565b34801561051b57600080fd5b5061028e61052a366004611e9c565b6001600160a01b031660009081526013602052604090205490565b34801561055157600080fd5b5061030e61134b565b34801561056657600080fd5b5061028e600b5481565b34801561057c57600080fd5b5061028e6113bf565b34801561059157600080fd5b5060115461034f9062010000900460ff1681565b3480156105b157600080fd5b5061037f6105c0366004611f38565b6113d2565b3480156105d157600080fd5b5061028e6105e0366004611e9c565b600e6020526000908152604090205481565b3480156105fe57600080fd5b506000546001600160a01b031661037f565b34801561061c57600080fd5b5060115461034f9060ff1681565b34801561063657600080fd5b5061030e610645366004611f68565b6113fc565b34801561065657600080fd5b5060095461034f9060ff1681565b34801561067057600080fd5b5061030e61067f366004611e9c565b611757565b34801561069057600080fd5b5061028e61069f366004611e9c565b60106020526000908152604090205481565b3480156106bd57600080fd5b5061028e600c5481565b3480156106d357600080fd5b5061028e6117ef565b3480156106e857600080fd5b5061028e600d5481565b3480156106fe57600080fd5b5061028e60175481565b34801561071457600080fd5b5061030e61183d565b34801561072957600080fd5b5061028e600a5481565b34801561073f57600080fd5b5061034f61074e366004611e9c565b611866565b34801561075f57600080fd5b5061030e61076e366004611e9c565b611897565b34801561077f57600080fd5b5060035461037f906001600160a01b031681565b6001600160a01b0381166000908152600f6020908152604080832054600e90925282205461080c919061080690670de0b6b3a764000090610800906107e0906107da6117ef565b90611981565b6001600160a01b0388166000908152601360205260409020545b906119ca565b90611a49565b90611a8b565b92915050565b3360008181526014602052604090205415610893576001600160a01b03811660009081526014602052604090205460175461084c91611981565b6017556001600160a01b038082166000908152601460205260409020546004546108799216903390611aea565b6001600160a01b0381166000908152601460205260408120555b50565b6000546001600160a01b031633146108c95760405162461bcd60e51b81526004016108c090611fd8565b60405180910390fd5b806001600160a01b031663a9059cbb6108ea6000546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561092957600080fd5b505afa15801561093d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109619190611f50565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b1580156109a757600080fd5b505af11580156109bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109df9190611ed4565b6108935760405162461bcd60e51b815260206004820152601a60248201527f4572726f7220696e2072657472696576696e6720746f6b656e7300000000000060448201526064016108c0565b33610a346117ef565b600d55610a3f6113bf565b600c556001600160a01b03811615610a8657610a5a81610793565b6001600160a01b0382166000908152600f6020908152604080832093909355600d54600e909152919020555b33803b15610aa65760405162461bcd60e51b81526004016108c09061200d565b600280541415610ac85760405162461bcd60e51b81526004016108c0906120a5565b6002805560115462010000900460ff1615610af55760405162461bcd60e51b81526004016108c090612060565b60008311610b455760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74207769746864726177206e6f7468696e6700000000000000000060448201526064016108c0565b601254610b529084611981565b60125533600090815260136020526040902054610b6f9084611981565b33600081815260136020526040902091909155600454610b9b916001600160a01b039091169085611aea565b33600090815260136020526040902054610bc757336000908152601660205260409020805460ff191690555b60405183815233907f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d59060200160405180910390a25050600160025550565b6000546001600160a01b03163314610c305760405162461bcd60e51b81526004016108c090611fd8565b6001546001600160a01b031615610c975760405162461bcd60e51b815260206004820152602560248201527f52657761726420646973747269627574696f6e2041646d696e20616c726561646044820152641e481cd95d60da1b60648201526084016108c0565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610ce35760405162461bcd60e51b81526004016108c090611fd8565b4260085410610d345760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f7420757365206966206661726d206973206c69766500000000000060448201526064016108c0565b610d5a610d496000546001600160a01b031690565b6001600160a01b0384169083611aea565b5050565b33610d676117ef565b600d55610d726113bf565b600c556001600160a01b03811615610db957610d8d81610793565b6001600160a01b0382166000908152600f6020908152604080832093909355600d54600e909152919020555b33803b15610dd95760405162461bcd60e51b81526004016108c09061200d565b601154610100900460ff1615610e015760405162461bcd60e51b81526004016108c090612060565b6000610e0c33610793565b90508015610e7357336000818152600f6020526040812055600354610e3d916001600160a01b039091169083611aea565b60405181815233907fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e04869060200160405180910390a25b505050565b600480546040516370a0823160e01b815230928101929092526000916001600160a01b03909116906370a082319060240160206040518083038186803b158015610ec157600080fd5b505afa158015610ed5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef99190611f50565b90506000610f1e610f17601754601254611a8b90919063ffffffff16565b8390611981565b601754909150610f2e9082611a8b565b6017558015610d5a5760005b601554811015610e7357600060158281548110610f6757634e487b7160e01b600052603260045260246000fd5b60009182526020822001546001600160a01b03169150610f9c826001600160a01b031660009081526013602052604090205490565b9050801561102f57601254600090610fb89061080087856119ca565b6001600160a01b038416600090815260146020526040902054909150610fde9082611a8b565b6001600160a01b03841660009081526014602090815260409182902092909255518281527fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d910160405180910390a1505b5050808061103c90612176565b915050610f3a565b6000546001600160a01b0316331461106e5760405162461bcd60e51b81526004016108c090611fd8565b6009805460ff1916911515919091179055565b3361108a6117ef565b600d556110956113bf565b600c556001600160a01b038116156110dc576110b081610793565b6001600160a01b0382166000908152600f6020908152604080832093909355600d54600e909152919020555b33803b156110fc5760405162461bcd60e51b81526004016108c09061200d565b60028054141561111e5760405162461bcd60e51b81526004016108c0906120a5565b6002805560115460ff16156111455760405162461bcd60e51b81526004016108c090612060565b6000831161118b5760405162461bcd60e51b815260206004820152601360248201527243616e6e6f74206661726d206e6f7468696e6760681b60448201526064016108c0565b6004546111a3906001600160a01b0316333086611b4d565b60006111bf6064610800600654876119ca90919063ffffffff16565b905060006111dd6064610800600754886119ca90919063ffffffff16565b6005546004549192506111fd916001600160a01b03908116911684611aea565b600061120d836107da8885611981565b60125490915061121d9082611a8b565b6012553360009081526013602052604090205461123a9082611a8b565b3360008181526013602052604090209190915561125690611b8b565b60405181815233907f78b5171f3125ee7fa9cda18c8fa6bdfdd147883c0abd8cae698c883b49a192bb9060200160405180910390a25050600160025550505050565b6112a0610812565b6112a8610d5e565b60095460ff161515600114156112c0576112c0610e78565b565b6000546001600160a01b031633146112ec5760405162461bcd60e51b81526004016108c090611fd8565b80611305576011805483151560ff199091161790555050565b806001141561132757601180548315156101000261ff00199091161790555050565b8060031415610d5a5760118054831515620100000262ff0000199091161790555050565b6000546001600160a01b031633146113755760405162461bcd60e51b81526004016108c090611fd8565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60006113cd42600a54611bd4565b905090565b601581815481106113e257600080fd5b6000918252602090912001546001600160a01b0316905081565b6001546001600160a01b0316336001600160a01b0316146114695760405162461bcd60e51b815260206004820152602160248201527f43616c6c6572206973206e6f742072657761726420646973747269627574696f6044820152603760f91b60648201526084016108c0565b60028054141561148b5760405162461bcd60e51b81526004016108c0906120a5565b6002805560006114996117ef565b600d556114a46113bf565b600c556001600160a01b038116156114eb576114bf81610793565b6001600160a01b0382166000908152600f6020908152604080832093909355600d54600e909152919020555b600082116115345760405162461bcd60e51b815260206004820152601660248201527504475726174696f6e206d757374206e6f7420626520360541b60448201526064016108c0565b6003546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561157757600080fd5b505afa15801561158b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115af9190611f50565b600854600b546115be916119ca565b1161174d576115d082620151806119ca565b600855600a5442106115f2576008546115ea908490611a49565b600b55611635565b600a546000906116029042611981565b9050600061161b600b54836119ca90919063ffffffff16565b60085490915061162f906108008784611a8b565b600b5550505b42600c8190556008546116489190611a8b565b600a556003546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561168e57600080fd5b505afa1580156116a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c69190611f50565b600854600b546116d5916119ca565b11156117195760405162461bcd60e51b8152602060048201526013602482015272125b9cdd59999a58da595b9d081c995dd85c99606a1b60448201526064016108c0565b6040518381527fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9060200160405180910390a15b5050600160025550565b6000546001600160a01b031633146117815760405162461bcd60e51b81526004016108c090611fd8565b6001600160a01b0381166117cd5760405162461bcd60e51b815260206004820152601360248201527201029b2ba3a34b73390181030b99020b2323c9606d1b60448201526064016108c0565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b60006117fa60125490565b6118055750600d5490565b6113cd61183461181460125490565b610800670de0b6b3a76400006107fa600b546107fa600c546107da6113bf565b600d5490611a8b565b3360009081526013602052604090205461185690610a2b565b61185e610812565b6112c0610d5e565b6001600160a01b03811660009081526016602052604081205460ff161561188f57506001919050565b506000919050565b6000546001600160a01b031633146118c15760405162461bcd60e51b81526004016108c090611fd8565b6001600160a01b0381166119265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c0565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60006119c383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611bea565b9392505050565b6000826119d95750600061080c565b60006119e58385612114565b9050826119f285836120f4565b146119c35760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108c0565b60006119c383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611c24565b600080611a9883856120dc565b9050838110156119c35760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108c0565b6040516001600160a01b038316602482015260448101829052610e7390849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611c52565b6040516001600160a01b0380851660248301528316604482015260648101829052611b859085906323b872dd60e01b90608401611b16565b50505050565b6000611b9682611866565b905080610d5a573360009081526010602090815260408083204290556001600160a01b038516835260169091529020805460ff191660011790555050565b6000818310611be357816119c3565b5090919050565b60008184841115611c0e5760405162461bcd60e51b81526004016108c09190611fa5565b506000611c1b8486612133565b95945050505050565b60008183611c455760405162461bcd60e51b81526004016108c09190611fa5565b506000611c1b84866120f4565b6000611ca7826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611d249092919063ffffffff16565b805190915015610e735780806020019051810190611cc59190611ed4565b610e735760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016108c0565b6060611d338484600085611d3b565b949350505050565b606082471015611d9c5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016108c0565b843b611dea5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016108c0565b600080866001600160a01b03168587604051611e069190611f89565b60006040518083038185875af1925050503d8060008114611e43576040519150601f19603f3d011682016040523d82523d6000602084013e611e48565b606091505b5091509150611e58828286611e63565b979650505050505050565b60608315611e725750816119c3565b825115611e825782518084602001fd5b8160405162461bcd60e51b81526004016108c09190611fa5565b600060208284031215611ead578081fd5b81356119c3816121a7565b600060208284031215611ec9578081fd5b81356119c3816121bc565b600060208284031215611ee5578081fd5b81516119c3816121bc565b60008060408385031215611f02578081fd5b8235611f0d816121bc565b946020939093013593505050565b60008060408385031215611f2d578182fd5b8235611f0d816121a7565b600060208284031215611f49578081fd5b5035919050565b600060208284031215611f61578081fd5b5051919050565b60008060408385031215611f7a578182fd5b50508035926020909101359150565b60008251611f9b81846020870161214a565b9190910192915050565b6020815260008251806020840152611fc481604085016020870161214a565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f436f6e74726163747320617265206e6f7420616c6c6f77656420746f20696e746040820152726572616374207769746820746865206661726d60681b606082015260800190565b60208082526025908201527f41646d696e20526573747269637465642066756e6374696f6e2074656d706f726040820152646172696c7960d81b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600082198211156120ef576120ef612191565b500190565b60008261210f57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561212e5761212e612191565b500290565b60008282101561214557612145612191565b500390565b60005b8381101561216557818101518382015260200161214d565b83811115611b855750506000910152565b600060001982141561218a5761218a612191565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461089357600080fd5b801515811461089357600080fdfea2646970667358221220dc732beb5eadabc1b181b41fc435d66f2f113c6e82137a92709d976e4b7a948864736f6c63430008040033000000000000000000000000f1b8762a7fa8c244e36f7234edf40cfae24394e3000000000000000000000000be5d345d05dd62828ed61519ef9f7af76f092248
Deployed Bytecode
0x60806040526004361061025f5760003560e01c806370a0823111610144578063bf6d63da116100b6578063e89c31691161007a578063e89c3169146106f2578063e9fad8ee14610708578063ebe2b12b1461071d578063ef037b9014610733578063f2fde38b14610753578063f7c618c11461077357600080fd5b8063bf6d63da14610664578063c3f344a814610684578063c8f33c91146106b1578063cd3daf9d146106c7578063df136d65146106dc57600080fd5b80638afdd669116101085780638afdd669146105a55780638b876347146105c55780638da5cb5b146105f25780638f864bb014610610578063a68ca7111461062a578063b147f40c1461064a57600080fd5b806370a082311461050f578063715018a6146105455780637b0a47ee1461055a57806380faa57d146105705780638698c2111461058557600080fd5b806331c2b53d116101dd578063538a85a1116101a1578063538a85a11461045757806354df47ce1461047757806357e885b9146104a45780635fcbd285146104ba5780636426f134146104da578063674d83c2146104ef57600080fd5b806331c2b53d146103d75780633d18b912146103f75780633ed38cc61461040c57806345bde800146104225780634f49e6551461043757600080fd5b80632006813911610224578063200681391461031057806322ff6acd14610330578063295707781461035f5780632e1a7d4d146103975780632f3fadea146103b757600080fd5b80628cc2621461026e5780630700037d146102a15780630fb5a6b4146102ce57806318160ddd146102e4578063196dc32e146102f957600080fd5b3661026957600080fd5b600080fd5b34801561027a57600080fd5b5061028e610289366004611e9c565b610793565b6040519081526020015b60405180910390f35b3480156102ad57600080fd5b5061028e6102bc366004611e9c565b600f6020526000908152604090205481565b3480156102da57600080fd5b5061028e60085481565b3480156102f057600080fd5b5060125461028e565b34801561030557600080fd5b5061030e610812565b005b34801561031c57600080fd5b5061030e61032b366004611e9c565b610896565b34801561033c57600080fd5b5060115461034f90610100900460ff1681565b6040519015158152602001610298565b34801561036b57600080fd5b5060055461037f906001600160a01b031681565b6040516001600160a01b039091168152602001610298565b3480156103a357600080fd5b5061030e6103b2366004611f38565b610a2b565b3480156103c357600080fd5b5061030e6103d2366004611e9c565b610c06565b3480156103e357600080fd5b5061030e6103f2366004611f1b565b610cb9565b34801561040357600080fd5b5061030e610d5e565b34801561041857600080fd5b5061028e60075481565b34801561042e57600080fd5b5061030e610e78565b34801561044357600080fd5b5061030e610452366004611eb8565b611044565b34801561046357600080fd5b5061030e610472366004611f38565b611081565b34801561048357600080fd5b5061028e610492366004611e9c565b60146020526000908152604090205481565b3480156104b057600080fd5b5061028e60065481565b3480156104c657600080fd5b5060045461037f906001600160a01b031681565b3480156104e657600080fd5b5061030e611298565b3480156104fb57600080fd5b5061030e61050a366004611ef0565b6112c2565b34801561051b57600080fd5b5061028e61052a366004611e9c565b6001600160a01b031660009081526013602052604090205490565b34801561055157600080fd5b5061030e61134b565b34801561056657600080fd5b5061028e600b5481565b34801561057c57600080fd5b5061028e6113bf565b34801561059157600080fd5b5060115461034f9062010000900460ff1681565b3480156105b157600080fd5b5061037f6105c0366004611f38565b6113d2565b3480156105d157600080fd5b5061028e6105e0366004611e9c565b600e6020526000908152604090205481565b3480156105fe57600080fd5b506000546001600160a01b031661037f565b34801561061c57600080fd5b5060115461034f9060ff1681565b34801561063657600080fd5b5061030e610645366004611f68565b6113fc565b34801561065657600080fd5b5060095461034f9060ff1681565b34801561067057600080fd5b5061030e61067f366004611e9c565b611757565b34801561069057600080fd5b5061028e61069f366004611e9c565b60106020526000908152604090205481565b3480156106bd57600080fd5b5061028e600c5481565b3480156106d357600080fd5b5061028e6117ef565b3480156106e857600080fd5b5061028e600d5481565b3480156106fe57600080fd5b5061028e60175481565b34801561071457600080fd5b5061030e61183d565b34801561072957600080fd5b5061028e600a5481565b34801561073f57600080fd5b5061034f61074e366004611e9c565b611866565b34801561075f57600080fd5b5061030e61076e366004611e9c565b611897565b34801561077f57600080fd5b5060035461037f906001600160a01b031681565b6001600160a01b0381166000908152600f6020908152604080832054600e90925282205461080c919061080690670de0b6b3a764000090610800906107e0906107da6117ef565b90611981565b6001600160a01b0388166000908152601360205260409020545b906119ca565b90611a49565b90611a8b565b92915050565b3360008181526014602052604090205415610893576001600160a01b03811660009081526014602052604090205460175461084c91611981565b6017556001600160a01b038082166000908152601460205260409020546004546108799216903390611aea565b6001600160a01b0381166000908152601460205260408120555b50565b6000546001600160a01b031633146108c95760405162461bcd60e51b81526004016108c090611fd8565b60405180910390fd5b806001600160a01b031663a9059cbb6108ea6000546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561092957600080fd5b505afa15801561093d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109619190611f50565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b1580156109a757600080fd5b505af11580156109bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109df9190611ed4565b6108935760405162461bcd60e51b815260206004820152601a60248201527f4572726f7220696e2072657472696576696e6720746f6b656e7300000000000060448201526064016108c0565b33610a346117ef565b600d55610a3f6113bf565b600c556001600160a01b03811615610a8657610a5a81610793565b6001600160a01b0382166000908152600f6020908152604080832093909355600d54600e909152919020555b33803b15610aa65760405162461bcd60e51b81526004016108c09061200d565b600280541415610ac85760405162461bcd60e51b81526004016108c0906120a5565b6002805560115462010000900460ff1615610af55760405162461bcd60e51b81526004016108c090612060565b60008311610b455760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74207769746864726177206e6f7468696e6700000000000000000060448201526064016108c0565b601254610b529084611981565b60125533600090815260136020526040902054610b6f9084611981565b33600081815260136020526040902091909155600454610b9b916001600160a01b039091169085611aea565b33600090815260136020526040902054610bc757336000908152601660205260409020805460ff191690555b60405183815233907f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d59060200160405180910390a25050600160025550565b6000546001600160a01b03163314610c305760405162461bcd60e51b81526004016108c090611fd8565b6001546001600160a01b031615610c975760405162461bcd60e51b815260206004820152602560248201527f52657761726420646973747269627574696f6e2041646d696e20616c726561646044820152641e481cd95d60da1b60648201526084016108c0565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610ce35760405162461bcd60e51b81526004016108c090611fd8565b4260085410610d345760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f7420757365206966206661726d206973206c69766500000000000060448201526064016108c0565b610d5a610d496000546001600160a01b031690565b6001600160a01b0384169083611aea565b5050565b33610d676117ef565b600d55610d726113bf565b600c556001600160a01b03811615610db957610d8d81610793565b6001600160a01b0382166000908152600f6020908152604080832093909355600d54600e909152919020555b33803b15610dd95760405162461bcd60e51b81526004016108c09061200d565b601154610100900460ff1615610e015760405162461bcd60e51b81526004016108c090612060565b6000610e0c33610793565b90508015610e7357336000818152600f6020526040812055600354610e3d916001600160a01b039091169083611aea565b60405181815233907fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e04869060200160405180910390a25b505050565b600480546040516370a0823160e01b815230928101929092526000916001600160a01b03909116906370a082319060240160206040518083038186803b158015610ec157600080fd5b505afa158015610ed5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef99190611f50565b90506000610f1e610f17601754601254611a8b90919063ffffffff16565b8390611981565b601754909150610f2e9082611a8b565b6017558015610d5a5760005b601554811015610e7357600060158281548110610f6757634e487b7160e01b600052603260045260246000fd5b60009182526020822001546001600160a01b03169150610f9c826001600160a01b031660009081526013602052604090205490565b9050801561102f57601254600090610fb89061080087856119ca565b6001600160a01b038416600090815260146020526040902054909150610fde9082611a8b565b6001600160a01b03841660009081526014602090815260409182902092909255518281527fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d910160405180910390a1505b5050808061103c90612176565b915050610f3a565b6000546001600160a01b0316331461106e5760405162461bcd60e51b81526004016108c090611fd8565b6009805460ff1916911515919091179055565b3361108a6117ef565b600d556110956113bf565b600c556001600160a01b038116156110dc576110b081610793565b6001600160a01b0382166000908152600f6020908152604080832093909355600d54600e909152919020555b33803b156110fc5760405162461bcd60e51b81526004016108c09061200d565b60028054141561111e5760405162461bcd60e51b81526004016108c0906120a5565b6002805560115460ff16156111455760405162461bcd60e51b81526004016108c090612060565b6000831161118b5760405162461bcd60e51b815260206004820152601360248201527243616e6e6f74206661726d206e6f7468696e6760681b60448201526064016108c0565b6004546111a3906001600160a01b0316333086611b4d565b60006111bf6064610800600654876119ca90919063ffffffff16565b905060006111dd6064610800600754886119ca90919063ffffffff16565b6005546004549192506111fd916001600160a01b03908116911684611aea565b600061120d836107da8885611981565b60125490915061121d9082611a8b565b6012553360009081526013602052604090205461123a9082611a8b565b3360008181526013602052604090209190915561125690611b8b565b60405181815233907f78b5171f3125ee7fa9cda18c8fa6bdfdd147883c0abd8cae698c883b49a192bb9060200160405180910390a25050600160025550505050565b6112a0610812565b6112a8610d5e565b60095460ff161515600114156112c0576112c0610e78565b565b6000546001600160a01b031633146112ec5760405162461bcd60e51b81526004016108c090611fd8565b80611305576011805483151560ff199091161790555050565b806001141561132757601180548315156101000261ff00199091161790555050565b8060031415610d5a5760118054831515620100000262ff0000199091161790555050565b6000546001600160a01b031633146113755760405162461bcd60e51b81526004016108c090611fd8565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60006113cd42600a54611bd4565b905090565b601581815481106113e257600080fd5b6000918252602090912001546001600160a01b0316905081565b6001546001600160a01b0316336001600160a01b0316146114695760405162461bcd60e51b815260206004820152602160248201527f43616c6c6572206973206e6f742072657761726420646973747269627574696f6044820152603760f91b60648201526084016108c0565b60028054141561148b5760405162461bcd60e51b81526004016108c0906120a5565b6002805560006114996117ef565b600d556114a46113bf565b600c556001600160a01b038116156114eb576114bf81610793565b6001600160a01b0382166000908152600f6020908152604080832093909355600d54600e909152919020555b600082116115345760405162461bcd60e51b815260206004820152601660248201527504475726174696f6e206d757374206e6f7420626520360541b60448201526064016108c0565b6003546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561157757600080fd5b505afa15801561158b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115af9190611f50565b600854600b546115be916119ca565b1161174d576115d082620151806119ca565b600855600a5442106115f2576008546115ea908490611a49565b600b55611635565b600a546000906116029042611981565b9050600061161b600b54836119ca90919063ffffffff16565b60085490915061162f906108008784611a8b565b600b5550505b42600c8190556008546116489190611a8b565b600a556003546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561168e57600080fd5b505afa1580156116a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c69190611f50565b600854600b546116d5916119ca565b11156117195760405162461bcd60e51b8152602060048201526013602482015272125b9cdd59999a58da595b9d081c995dd85c99606a1b60448201526064016108c0565b6040518381527fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9060200160405180910390a15b5050600160025550565b6000546001600160a01b031633146117815760405162461bcd60e51b81526004016108c090611fd8565b6001600160a01b0381166117cd5760405162461bcd60e51b815260206004820152601360248201527201029b2ba3a34b73390181030b99020b2323c9606d1b60448201526064016108c0565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b60006117fa60125490565b6118055750600d5490565b6113cd61183461181460125490565b610800670de0b6b3a76400006107fa600b546107fa600c546107da6113bf565b600d5490611a8b565b3360009081526013602052604090205461185690610a2b565b61185e610812565b6112c0610d5e565b6001600160a01b03811660009081526016602052604081205460ff161561188f57506001919050565b506000919050565b6000546001600160a01b031633146118c15760405162461bcd60e51b81526004016108c090611fd8565b6001600160a01b0381166119265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c0565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60006119c383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611bea565b9392505050565b6000826119d95750600061080c565b60006119e58385612114565b9050826119f285836120f4565b146119c35760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108c0565b60006119c383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611c24565b600080611a9883856120dc565b9050838110156119c35760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108c0565b6040516001600160a01b038316602482015260448101829052610e7390849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611c52565b6040516001600160a01b0380851660248301528316604482015260648101829052611b859085906323b872dd60e01b90608401611b16565b50505050565b6000611b9682611866565b905080610d5a573360009081526010602090815260408083204290556001600160a01b038516835260169091529020805460ff191660011790555050565b6000818310611be357816119c3565b5090919050565b60008184841115611c0e5760405162461bcd60e51b81526004016108c09190611fa5565b506000611c1b8486612133565b95945050505050565b60008183611c455760405162461bcd60e51b81526004016108c09190611fa5565b506000611c1b84866120f4565b6000611ca7826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611d249092919063ffffffff16565b805190915015610e735780806020019051810190611cc59190611ed4565b610e735760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016108c0565b6060611d338484600085611d3b565b949350505050565b606082471015611d9c5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016108c0565b843b611dea5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016108c0565b600080866001600160a01b03168587604051611e069190611f89565b60006040518083038185875af1925050503d8060008114611e43576040519150601f19603f3d011682016040523d82523d6000602084013e611e48565b606091505b5091509150611e58828286611e63565b979650505050505050565b60608315611e725750816119c3565b825115611e825782518084602001fd5b8160405162461bcd60e51b81526004016108c09190611fa5565b600060208284031215611ead578081fd5b81356119c3816121a7565b600060208284031215611ec9578081fd5b81356119c3816121bc565b600060208284031215611ee5578081fd5b81516119c3816121bc565b60008060408385031215611f02578081fd5b8235611f0d816121bc565b946020939093013593505050565b60008060408385031215611f2d578182fd5b8235611f0d816121a7565b600060208284031215611f49578081fd5b5035919050565b600060208284031215611f61578081fd5b5051919050565b60008060408385031215611f7a578182fd5b50508035926020909101359150565b60008251611f9b81846020870161214a565b9190910192915050565b6020815260008251806020840152611fc481604085016020870161214a565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f436f6e74726163747320617265206e6f7420616c6c6f77656420746f20696e746040820152726572616374207769746820746865206661726d60681b606082015260800190565b60208082526025908201527f41646d696e20526573747269637465642066756e6374696f6e2074656d706f726040820152646172696c7960d81b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600082198211156120ef576120ef612191565b500190565b60008261210f57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561212e5761212e612191565b500290565b60008282101561214557612145612191565b500390565b60005b8381101561216557818101518382015260200161214d565b83811115611b855750506000910152565b600060001982141561218a5761218a612191565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461089357600080fd5b801515811461089357600080fdfea2646970667358221220dc732beb5eadabc1b181b41fc435d66f2f113c6e82137a92709d976e4b7a948864736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f1b8762a7fa8c244e36f7234edf40cfae24394e3000000000000000000000000be5d345d05dd62828ed61519ef9f7af76f092248
-----Decoded View---------------
Arg [0] : _lpToken (address): 0xf1b8762a7fa8C244e36F7234EDF40cFaE24394e3
Arg [1] : _rewardToken (address): 0xBe5D345d05dD62828ed61519eF9F7aF76F092248
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000f1b8762a7fa8c244e36f7234edf40cfae24394e3
Arg [1] : 000000000000000000000000be5d345d05dd62828ed61519ef9f7af76f092248
Deployed Bytecode Sourcemap
23970:10054:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27624:8;;;23970:10054;;;;28237:265;;;;;;;;;;-1:-1:-1;28237:265:0;;;;;:::i;:::-;;:::i;:::-;;;11364:25:1;;;11352:2;11337:18;28237:265:0;;;;;;;;24823:42;;;;;;;;;;-1:-1:-1;24823:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;24527:34;;;;;;;;;;;;;;;;26985:91;;;;;;;;;;-1:-1:-1;27056:12:0;;26985:91;;33602:320;;;;;;;;;;;;;:::i;:::-;;33391:199;;;;;;;;;;-1:-1:-1;33391:199:0;;;;;:::i;:::-;;:::i;25025:33::-;;;;;;;;;;-1:-1:-1;25025:33:0;;;;;;;;;;;;;;3428:14:1;;3421:22;3403:41;;3391:2;3376:18;25025:33:0;3358:92:1;24263:67:0;;;;;;;;;;-1:-1:-1;24263:67:0;;;;-1:-1:-1;;;;;24263:67:0;;;;;;-1:-1:-1;;;;;2560:32:1;;;2542:51;;2530:2;2515:18;24263:67:0;2497:102:1;29837:604:0;;;;;;;;;;-1:-1:-1;29837:604:0;;;;;:::i;:::-;;:::i;23720:237::-;;;;;;;;;;-1:-1:-1;23720:237:0;;;;;:::i;:::-;;:::i;27206:304::-;;;;;;;;;;-1:-1:-1;27206:304:0;;;;;:::i;:::-;;:::i;30585:398::-;;;;;;;;;;;;;:::i;24440:24::-;;;;;;;;;;;;;;;;32035:924;;;;;;;;;;;;;:::i;33934:87::-;;;;;;;;;;-1:-1:-1;33934:87:0;;;;;:::i;:::-;;:::i;29013:816::-;;;;;;;;;;-1:-1:-1;29013:816:0;;;;;:::i;:::-;;:::i;25325:48::-;;;;;;;;;;-1:-1:-1;25325:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;24360:27;;;;;;;;;;;;;;;;24211:21;;;;;;;;;;-1:-1:-1;24211:21:0;;;;-1:-1:-1;;;;;24211:21:0;;;32971:151;;;;;;;;;;;;;:::i;26634:343::-;;;;;;;;;;-1:-1:-1;26634:343:0;;;;;:::i;:::-;;:::i;27084:110::-;;;;;;;;;;-1:-1:-1;27084:110:0;;;;;:::i;:::-;-1:-1:-1;;;;;27168:18:0;27141:7;27168:18;;;:9;:18;;;;;;;27084:110;7160:148;;;;;;;;;;;;;:::i;24645:29::-;;;;;;;;;;;;;;;;27648:131;;;;;;;;;;;;;:::i;25125:35::-;;;;;;;;;;-1:-1:-1;25125:35:0;;;;;;;;;;;25606:24;;;;;;;;;;-1:-1:-1;25606:24:0;;;;;:::i;:::-;;:::i;24759:57::-;;;;;;;;;;-1:-1:-1;24759:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;6518:79;;;;;;;;;;-1:-1:-1;6556:7:0;6583:6;-1:-1:-1;;;;;6583:6:0;6518:79;;24932:31;;;;;;;;;;-1:-1:-1;24932:31:0;;;;;;;;31001:970;;;;;;;;;;-1:-1:-1;31001:970:0;;;;;:::i;:::-;;:::i;24568:26::-;;;;;;;;;;-1:-1:-1;24568:26:0;;;;;;;;26473:149;;;;;;;;;;-1:-1:-1;26473:149:0;;;;;:::i;:::-;;:::i;24884:40::-;;;;;;;;;;-1:-1:-1;24884:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;24681:29;;;;;;;;;;;;;;;;27797:422;;;;;;;;;;;;;:::i;24717:35::-;;;;;;;;;;;;;;;;31995:27;;;;;;;;;;;;;;;;30449:128;;;;;;;;;;;;;:::i;24607:31::-;;;;;;;;;;;;;;;;28520:193;;;;;;;;;;-1:-1:-1;28520:193:0;;;;;:::i;:::-;;:::i;7463:244::-;;;;;;;;;;-1:-1:-1;7463:244:0;;;;;:::i;:::-;;:::i;24152:25::-;;;;;;;;;;-1:-1:-1;24152:25:0;;;;-1:-1:-1;;;;;24152:25:0;;;28237:265;-1:-1:-1;;;;;28477:16:0;;28291:7;28477:16;;;:7;:16;;;;;;;;;28393:22;:31;;;;;;28331:163;;28477:16;28331:123;;28449:4;;28331:95;;28372:53;;:16;:14;:16::i;:::-;:20;;:53::i;:::-;-1:-1:-1;;;;;27168:18:0;;27141:7;27168:18;;;:9;:18;;;;;;28331;:40;;:95::i;:::-;:117;;:123::i;:::-;:145;;:163::i;:::-;28311:183;28237:265;-1:-1:-1;;28237:265:0:o;33602:320::-;33661:10;33645:13;33695:20;;;:13;:20;;;;;;:24;33692:223;;-1:-1:-1;;;;;33760:20:0;;;;;;:13;:20;;;;;;33747:8;;:34;;:12;:34::i;:::-;33736:8;:45;-1:-1:-1;;;;;33843:20:0;;;;;;;:13;:20;;;;;;33810:7;;:54;;:7;;33831:10;;33810:20;:54::i;:::-;-1:-1:-1;;;;;33879:20:0;;33902:1;33879:20;;;:13;:20;;;;;:24;33692:223;33602:320;:::o;33391:199::-;6730:6;;-1:-1:-1;;;;;6730:6:0;5796:10;6730:22;6722:67;;;;-1:-1:-1;;;6722:67:0;;;;;;;:::i;:::-;;;;;;;;;33485:6:::1;-1:-1:-1::0;;;;;33478:23:0::1;;33502:7;6556::::0;6583:6;-1:-1:-1;;;;;6583:6:0;;6518:79;33502:7:::1;33511:39;::::0;-1:-1:-1;;;33511:39:0;;33544:4:::1;33511:39;::::0;::::1;2542:51:1::0;-1:-1:-1;;;;;33511:24:0;::::1;::::0;::::1;::::0;2515:18:1;;33511:39:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33478:73;::::0;-1:-1:-1;;;;;;33478:73:0::1;::::0;;;;;;-1:-1:-1;;;;;3176:32:1;;;33478:73:0::1;::::0;::::1;3158:51:1::0;3225:18;;;3218:34;3131:18;;33478:73:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33470:112;;;::::0;-1:-1:-1;;;33470:112:0;;6133:2:1;33470:112:0::1;::::0;::::1;6115:21:1::0;6172:2;6152:18;;;6145:30;6211:28;6191:18;;;6184:56;6257:18;;33470:112:0::1;6105:176:1::0;29837:604:0;29891:10;26016:16;:14;:16::i;:::-;25993:20;:39;26060:26;:24;:26::i;:::-;26043:14;:43;-1:-1:-1;;;;;26101:21:0;;;26097:157;;26158:15;26165:7;26158:6;:15::i;:::-;-1:-1:-1;;;;;26139:16:0;;;;;;:7;:16;;;;;;;;:34;;;;26222:20;;26188:22;:31;;;;;;:54;26097:157;29914:10:::1;14495:20:::0;;14534:8;26341:100:::1;;;;-1:-1:-1::0;;;26341:100:0::1;;;;;;;:::i;:::-;22269:1:::2;22866:7:::0;::::2;:19;;22858:63;;;;-1:-1:-1::0;;;22858:63:0::2;;;;;;;:::i;:::-;22269:1;22999:18:::0;;29958:15:::3;::::0;;;::::3;;;:24;29950:74;;;;-1:-1:-1::0;;;29950:74:0::3;;;;;;;:::i;:::-;30052:1;30043:6;:10;30035:46;;;::::0;-1:-1:-1;;;30035:46:0;;10720:2:1;30035:46:0::3;::::0;::::3;10702:21:1::0;10759:2;10739:18;;;10732:30;10798:25;10778:18;;;10771:53;10841:18;;30035:46:0::3;10692:173:1::0;30035:46:0::3;30117:12;::::0;:24:::3;::::0;30134:6;30117:16:::3;:24::i;:::-;30102:12;:39:::0;30186:10:::3;30176:21;::::0;;;:9:::3;:21;::::0;;;;;:33:::3;::::0;30202:6;30176:25:::3;:33::i;:::-;30162:10;30152:21;::::0;;;:9:::3;:21;::::0;;;;:57;;;;30220:7:::3;::::0;:40:::3;::::0;-1:-1:-1;;;;;30220:7:0;;::::3;::::0;30253:6;30220:20:::3;:40::i;:::-;30295:10;30285:21;::::0;;;:9:::3;:21;::::0;;;;;30281:98:::3;;30336:10;30362:5;30328:19:::0;;;:7:::3;:19;::::0;;;;:39;;-1:-1:-1;;30328:39:0::3;::::0;;30281:98:::3;30394:29;::::0;11364:25:1;;;30404:10:0::3;::::0;30394:29:::3;::::0;11352:2:1;11337:18;30394:29:0::3;;;;;;;-1:-1:-1::0;;22225:1:0::2;23178:7;:22:::0;-1:-1:-1;29837:604:0:o;23720:237::-;6730:6;;-1:-1:-1;;;;;6730:6:0;5796:10;6730:22;6722:67;;;;-1:-1:-1;;;6722:67:0;;;;;;;:::i;:::-;23824:18:::1;::::0;-1:-1:-1;;;;;23824:18:0::1;:32:::0;23816:82:::1;;;::::0;-1:-1:-1;;;23816:82:0;;8073:2:1;23816:82:0::1;::::0;::::1;8055:21:1::0;8112:2;8092:18;;;8085:30;8151:34;8131:18;;;8124:62;-1:-1:-1;;;8202:18:1;;;8195:35;8247:19;;23816:82:0::1;8045:227:1::0;23816:82:0::1;23909:18;:40:::0;;-1:-1:-1;;;;;;23909:40:0::1;-1:-1:-1::0;;;;;23909:40:0;;;::::1;::::0;;;::::1;::::0;;23720:237::o;27206:304::-;6730:6;;-1:-1:-1;;;;;6730:6:0;5796:10;6730:22;6722:67;;;;-1:-1:-1;;;6722:67:0;;;;;;;:::i;:::-;27409:15:::1;27398:8;;:26;27390:65;;;::::0;-1:-1:-1;;;27390:65:0;;10005:2:1;27390:65:0::1;::::0;::::1;9987:21:1::0;10044:2;10024:18;;;10017:30;10083:28;10063:18;;;10056:56;10129:18;;27390:65:0::1;9977:176:1::0;27390:65:0::1;27466:36;27486:7;6556::::0;6583:6;-1:-1:-1;;;;;6583:6:0;;6518:79;27486:7:::1;-1:-1:-1::0;;;;;27466:19:0;::::1;::::0;27495:6;27466:19:::1;:36::i;:::-;27206:304:::0;;:::o;30585:398::-;30626:10;26016:16;:14;:16::i;:::-;25993:20;:39;26060:26;:24;:26::i;:::-;26043:14;:43;-1:-1:-1;;;;;26101:21:0;;;26097:157;;26158:15;26165:7;26158:6;:15::i;:::-;-1:-1:-1;;;;;26139:16:0;;;;;;:7;:16;;;;;;;;:34;;;;26222:20;;26188:22;:31;;;;;;:54;26097:157;30649:10:::1;14495:20:::0;;14534:8;26341:100:::1;;;;-1:-1:-1::0;;;26341:100:0::1;;;;;;;:::i;:::-;30680:13:::2;::::0;::::2;::::0;::::2;;;:22;30672:72;;;;-1:-1:-1::0;;;30672:72:0::2;;;;;;;:::i;:::-;30755:14;30772:18;30779:10;30772:6;:18::i;:::-;30755:35:::0;-1:-1:-1;30805:10:0;;30801:175:::2;;30840:10;30854:1;30832:19:::0;;;:7:::2;:19;::::0;;;;:23;30870:11:::2;::::0;:44:::2;::::0;-1:-1:-1;;;;;30870:11:0;;::::2;::::0;30907:6;30870:24:::2;:44::i;:::-;30934:30;::::0;11364:25:1;;;30945:10:0::2;::::0;30934:30:::2;::::0;11352:2:1;11337:18;30934:30:0::2;;;;;;;30801:175;26452:1;26264::::1;30585:398:::0;:::o;32035:924::-;32208:7;;;:32;;-1:-1:-1;;;32208:32:0;;32234:4;32208:32;;;2542:51:1;;;;32180:25:0;;-1:-1:-1;;;;;32208:7:0;;;;:17;;2515:18:1;;32208:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32180:60;;32251:24;32278:49;32300:26;32317:8;;32300:12;;:16;;:26;;;;:::i;:::-;32278:17;;:21;:49::i;:::-;32359:8;;32251:76;;-1:-1:-1;32359:30:0;;32251:76;32359:12;:30::i;:::-;32348:8;:41;32424:20;;32421:531;;32466:9;32461:480;32485:7;:14;32481:18;;32461:480;;;32525:11;32539:7;32547:1;32539:10;;;;;;-1:-1:-1;;;32539:10:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32539:10:0;;-1:-1:-1;32584:14:0;32539:10;-1:-1:-1;;;;;27168:18:0;27141:7;27168:18;;;:9;:18;;;;;;;27084:110;32584:14;32569:29;-1:-1:-1;32621:8:0;;32618:309;;32709:12;;32655:17;;32676:46;;:28;32677:16;32699:4;32676:22;:28::i;:46::-;-1:-1:-1;;;;;32795:18:0;;;;;;:13;:18;;;;;;32655:67;;-1:-1:-1;32795:33:0;;32655:67;32795:22;:33::i;:::-;-1:-1:-1;;;;;32774:18:0;;;;;;:13;:18;;;;;;;;;:54;;;;32884:22;11364:25:1;;;32884:22:0;;11337:18:1;32884:22:0;;;;;;;32618:309;;32461:480;;32501:3;;;;;:::i;:::-;;;;32461:480;;33934:87;6730:6;;-1:-1:-1;;;;;6730:6:0;5796:10;6730:22;6722:67;;;;-1:-1:-1;;;6722:67:0;;;;;;;:::i;:::-;33998:7:::1;:15:::0;;-1:-1:-1;;33998:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33934:87::o;29013:816::-;29065:10;26016:16;:14;:16::i;:::-;25993:20;:39;26060:26;:24;:26::i;:::-;26043:14;:43;-1:-1:-1;;;;;26101:21:0;;;26097:157;;26158:15;26165:7;26158:6;:15::i;:::-;-1:-1:-1;;;;;26139:16:0;;;;;;:7;:16;;;;;;;;:34;;;;26222:20;;26188:22;:31;;;;;;:54;26097:157;29088:10:::1;14495:20:::0;;14534:8;26341:100:::1;;;;-1:-1:-1::0;;;26341:100:0::1;;;;;;;:::i;:::-;22269:1:::2;22866:7:::0;::::2;:19;;22858:63;;;;-1:-1:-1::0;;;22858:63:0::2;;;;;;;:::i;:::-;22269:1;22999:18:::0;;29132:11:::3;::::0;::::3;;:20;29124:70;;;;-1:-1:-1::0;;;29124:70:0::3;;;;;;;:::i;:::-;29222:1;29213:6;:10;29205:42;;;::::0;-1:-1:-1;;;29205:42:0;;5378:2:1;29205:42:0::3;::::0;::::3;5360:21:1::0;5417:2;5397:18;;;5390:30;-1:-1:-1;;;5436:18:1;;;5429:49;5495:18;;29205:42:0::3;5350:169:1::0;29205:42:0::3;29260:7;::::0;:59:::3;::::0;-1:-1:-1;;;;;29260:7:0::3;29285:10;29305:4;29312:6:::0;29260:24:::3;:59::i;:::-;29340:14;29357:29;29382:3;29357:20;29368:8;;29357:6;:10;;:20;;;;:::i;:29::-;29340:46;;29397:14;29414:26;29436:3;29414:17;29425:5;;29414:6;:10;;:17;;;;:::i;:26::-;29490:7;::::0;29461::::3;::::0;29397:43;;-1:-1:-1;29461:46:0::3;::::0;-1:-1:-1;;;;;29461:7:0;;::::3;::::0;29490::::3;29500:6:::0;29461:20:::3;:46::i;:::-;29528:19;29550:30;29573:6:::0;29550:18:::3;:6:::0;29561;29550:10:::3;:18::i;:30::-;29616:12;::::0;29528:52;;-1:-1:-1;29616:29:0::3;::::0;29528:52;29616:16:::3;:29::i;:::-;29601:12;:44:::0;29690:10:::3;29680:21;::::0;;;:9:::3;:21;::::0;;;;;:38:::3;::::0;29706:11;29680:25:::3;:38::i;:::-;29666:10;29656:21;::::0;;;:9:::3;:21;::::0;;;;:62;;;;29739:26:::3;::::0;:14:::3;:26::i;:::-;29791:30;::::0;11364:25:1;;;29798:10:0::3;::::0;29791:30:::3;::::0;11352:2:1;11337:18;29791:30:0::3;;;;;;;-1:-1:-1::0;;22225:1:0::2;23178:7;:22:::0;-1:-1:-1;;;;29013:816:0:o;32971:151::-;33016:15;:13;:15::i;:::-;33042:11;:9;:11::i;:::-;33067:7;;;;:13;;:7;:13;33064:51;;;33092:21;:19;:21::i;:::-;32971:151::o;26634:343::-;6730:6;;-1:-1:-1;;;;;6730:6:0;5796:10;6730:22;6722:67;;;;-1:-1:-1;;;6722:67:0;;;;;;;:::i;:::-;26717:8;26714:256:::1;;26741:11;:21:::0;;;::::1;;-1:-1:-1::0;;26741:21:0;;::::1;;::::0;;27206:304;;:::o;26714:256::-:1;26806:5;26813:1;26806:8;26803:167;;;26830:13;:22:::0;;;::::1;;;;-1:-1:-1::0;;26830:22:0;;::::1;;::::0;;27206:304;;:::o;26803:167::-:1;26896:5;26903:1;26896:8;26893:77;;;26920:15;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;26920:24:0;;::::1;;::::0;;26634:343;;:::o;7160:148::-;6730:6;;-1:-1:-1;;;;;6730:6:0;5796:10;6730:22;6722:67;;;;-1:-1:-1;;;6722:67:0;;;;;;;:::i;:::-;7267:1:::1;7251:6:::0;;7230:40:::1;::::0;-1:-1:-1;;;;;7251:6:0;;::::1;::::0;7230:40:::1;::::0;7267:1;;7230:40:::1;7298:1;7281:19:::0;;-1:-1:-1;;;;;;7281:19:0::1;::::0;;7160:148::o;27648:131::-;27705:7;27732:39;27741:15;27758:12;;27732:8;:39::i;:::-;27725:46;;27648:131;:::o;25606:24::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25606:24:0;;-1:-1:-1;25606:24:0;:::o;31001:970::-;23384:18;;-1:-1:-1;;;;;23384:18:0;5796:10;-1:-1:-1;;;;;23368:34:0;;23360:80;;;;-1:-1:-1;;;23360:80:0;;7671:2:1;23360:80:0;;;7653:21:1;7710:2;7690:18;;;7683:30;7749:34;7729:18;;;7722:62;-1:-1:-1;;;7800:18:1;;;7793:31;7841:19;;23360:80:0;7643:223:1;23360:80:0;22269:1:::1;22866:7:::0;::::1;:19;;22858:63;;;;-1:-1:-1::0;;;22858:63:0::1;;;;;;;:::i;:::-;22269:1;22999:18:::0;;31160:1:::2;26016:16;:14;:16::i;:::-;25993:20;:39:::0;26060:26:::2;:24;:26::i;:::-;26043:14;:43:::0;-1:-1:-1;;;;;26101:21:0;::::2;::::0;26097:157:::2;;26158:15;26165:7;26158:6;:15::i;:::-;-1:-1:-1::0;;;;;26139:16:0;::::2;;::::0;;;:7:::2;:16;::::0;;;;;;;:34;;;;26222:20:::2;::::0;26188:22:::2;:31:::0;;;;;;:54;26097:157:::2;31200:1:::3;31188:9;:13;31180:48;;;::::0;-1:-1:-1;;;31180:48:0;;8479:2:1;31180:48:0::3;::::0;::::3;8461:21:1::0;8518:2;8498:18;;;8491:30;-1:-1:-1;;;8537:18:1;;;8530:52;8599:18;;31180:48:0::3;8451:172:1::0;31180:48:0::3;31270:11;::::0;:36:::3;::::0;-1:-1:-1;;;31270:36:0;;31300:4:::3;31270:36;::::0;::::3;2542:51:1::0;-1:-1:-1;;;;;31270:11:0;;::::3;::::0;:21:::3;::::0;2515:18:1;;31270:36:0::3;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31257:8;::::0;31242:10:::3;::::0;:24:::3;::::0;:14:::3;:24::i;:::-;:64;31239:725;;31333:21;:9:::0;31347:6:::3;31333:13;:21::i;:::-;31322:8;:32:::0;31392:12:::3;::::0;31373:15:::3;:31;31369:328;;31449:8;::::0;31438:20:::3;::::0;:6;;:10:::3;:20::i;:::-;31425:10;:33:::0;31369:328:::3;;;31519:12;::::0;31499:17:::3;::::0;31519:33:::3;::::0;31536:15:::3;31519:16;:33::i;:::-;31499:53;;31571:16;31590:25;31604:10;;31590:9;:13;;:25;;;;:::i;:::-;31672:8;::::0;31571:44;;-1:-1:-1;31647:34:0::3;::::0;:20:::3;:6:::0;31571:44;31647:10:::3;:20::i;:34::-;31634:10;:47:::0;-1:-1:-1;;31369:328:0::3;31728:15;31711:14;:32:::0;;;31793:8:::3;::::0;31773:29:::3;::::0;31728:15;31773:19:::3;:29::i;:::-;31758:12;:44:::0;31853:11:::3;::::0;:36:::3;::::0;-1:-1:-1;;;31853:36:0;;31883:4:::3;31853:36;::::0;::::3;2542:51:1::0;-1:-1:-1;;;;;31853:11:0;;::::3;::::0;:21:::3;::::0;2515:18:1;;31853:36:0::3;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31840:8;::::0;31825:10:::3;::::0;:24:::3;::::0;:14:::3;:24::i;:::-;:64;;31817:96;;;::::0;-1:-1:-1;;;31817:96:0;;11072:2:1;31817:96:0::3;::::0;::::3;11054:21:1::0;11111:2;11091:18;;;11084:30;-1:-1:-1;;;11130:18:1;;;11123:49;11189:18;;31817:96:0::3;11044:169:1::0;31817:96:0::3;31933:19;::::0;11364:25:1;;;31933:19:0::3;::::0;11352:2:1;11337:18;31933:19:0::3;;;;;;;31239:725;-1:-1:-1::0;;22225:1:0::1;23178:7;:22:::0;-1:-1:-1;31001:970:0:o;26473:149::-;6730:6;;-1:-1:-1;;;;;6730:6:0;5796:10;6730:22;6722:67;;;;-1:-1:-1;;;6722:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26544:19:0;::::1;26536:51;;;::::0;-1:-1:-1;;;26536:51:0;;5030:2:1;26536:51:0::1;::::0;::::1;5012:21:1::0;5069:2;5049:18;;;5042:30;-1:-1:-1;;;5088:18:1;;;5081:49;5147:18;;26536:51:0::1;5002:169:1::0;26536:51:0::1;26599:7;:15:::0;;-1:-1:-1;;;;;;26599:15:0::1;-1:-1:-1::0;;;;;26599:15:0;;;::::1;::::0;;;::::1;::::0;;26473:149::o;27797:422::-;27844:7;27868:13;27056:12;;;26985:91;27868:13;27864:78;;-1:-1:-1;27910:20:0;;;27797:422::o;27864:78::-;27974:237;28017:179;28182:13;27056:12;;;26985:91;28182:13;28017:138;28150:4;28017:106;28112:10;;28017:68;28070:14;;28017:26;:24;:26::i;:179::-;27974:20;;;:24;:237::i;30449:128::-;30504:10;27141:7;27168:18;;;:9;:18;;;;;;30485:31;;29837:604;:::i;30485:31::-;30527:15;:13;:15::i;:::-;30554:11;:9;:11::i;28520:193::-;-1:-1:-1;;;;;28637:17:0;;28605:4;28637:17;;;:7;:17;;;;;:29;;;28634:72;;;-1:-1:-1;28675:4:0;;28520:193;-1:-1:-1;28520:193:0:o;28634:72::-;-1:-1:-1;28701:5:0;;28520:193;-1:-1:-1;28520:193:0:o;7463:244::-;6730:6;;-1:-1:-1;;;;;6730:6:0;5796:10;6730:22;6722:67;;;;-1:-1:-1;;;6722:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7552:22:0;::::1;7544:73;;;::::0;-1:-1:-1;;;7544:73:0;;4267:2:1;7544:73:0::1;::::0;::::1;4249:21:1::0;4306:2;4286:18;;;4279:30;4345:34;4325:18;;;4318:62;-1:-1:-1;;;4396:18:1;;;4389:36;4442:19;;7544:73:0::1;4239:228:1::0;7544:73:0::1;7654:6;::::0;;7633:38:::1;::::0;-1:-1:-1;;;;;7633:38:0;;::::1;::::0;7654:6;::::1;::::0;7633:38:::1;::::0;::::1;7682:6;:17:::0;;-1:-1:-1;;;;;;7682:17:0::1;-1:-1:-1::0;;;;;7682:17:0;;;::::1;::::0;;;::::1;::::0;;7463:244::o;1569:136::-;1627:7;1654:43;1658:1;1661;1654:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1647:50;1569:136;-1:-1:-1;;;1569:136:0:o;2459:471::-;2517:7;2762:6;2758:47;;-1:-1:-1;2792:1:0;2785:8;;2758:47;2817:9;2829:5;2833:1;2829;:5;:::i;:::-;2817:17;-1:-1:-1;2862:1:0;2853:5;2857:1;2817:17;2853:5;:::i;:::-;:10;2845:56;;;;-1:-1:-1;;;2845:56:0;;6488:2:1;2845:56:0;;;6470:21:1;6527:2;6507:18;;;6500:30;6566:34;6546:18;;;6539:62;-1:-1:-1;;;6617:18:1;;;6610:31;6658:19;;2845:56:0;6460:223:1;3406:132:0;3464:7;3491:39;3495:1;3498;3491:39;;;;;;;;;;;;;;;;;:3;:39::i;1105:181::-;1163:7;;1195:5;1199:1;1195;:5;:::i;:::-;1183:17;;1224:1;1219;:6;;1211:46;;;;-1:-1:-1;;;1211:46:0;;4674:2:1;1211:46:0;;;4656:21:1;4713:2;4693:18;;;4686:30;4752:29;4732:18;;;4725:57;4799:18;;1211:46:0;4646:177:1;10447::0;10557:58;;-1:-1:-1;;;;;3176:32:1;;10557:58:0;;;3158:51:1;3225:18;;;3218:34;;;10530:86:0;;10550:5;;-1:-1:-1;;;10580:23:0;3131:18:1;;10557:58:0;;;;-1:-1:-1;;10557:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;10557:58:0;-1:-1:-1;;;;;;10557:58:0;;;;;;;;;;10530:19;:86::i;10632:205::-;10760:68;;-1:-1:-1;;;;;2862:15:1;;;10760:68:0;;;2844:34:1;2914:15;;2894:18;;;2887:43;2946:18;;;2939:34;;;10733:96:0;;10753:5;;-1:-1:-1;;;10783:27:0;2779:18:1;;10760:68:0;2761:218:1;10733:96:0;10632:205;;;;:::o;28723:282::-;28801:19;28824:27;28838:12;28824:13;:27::i;:::-;28800:51;;28865:14;28861:138;;28904:10;28895:20;;;;:8;:20;;;;;;;;28919:15;28895:39;;-1:-1:-1;;;;;28948:21:0;;;;:7;:21;;;;;:40;;-1:-1:-1;;28948:40:0;28984:4;28948:40;;;28723:282;;:::o;417:106::-;475:7;506:1;502;:5;:13;;514:1;502:13;;;-1:-1:-1;510:1:0;;417:106;-1:-1:-1;417:106:0:o;2008:192::-;2094:7;2130:12;2122:6;;;;2114:29;;;;-1:-1:-1;;;2114:29:0;;;;;;;;:::i;:::-;-1:-1:-1;2154:9:0;2166:5;2170:1;2166;:5;:::i;:::-;2154:17;2008:192;-1:-1:-1;;;;;2008:192:0:o;4034:278::-;4120:7;4155:12;4148:5;4140:28;;;;-1:-1:-1;;;4140:28:0;;;;;;;;:::i;:::-;-1:-1:-1;4179:9:0;4191:5;4195:1;4191;:5;:::i;12752:761::-;13176:23;13202:69;13230:4;13202:69;;;;;;;;;;;;;;;;;13210:5;-1:-1:-1;;;;;13202:27:0;;;:69;;;;;:::i;:::-;13286:17;;13176:95;;-1:-1:-1;13286:21:0;13282:224;;13428:10;13417:30;;;;;;;;;;;;:::i;:::-;13409:85;;;;-1:-1:-1;;;13409:85:0;;9594:2:1;13409:85:0;;;9576:21:1;9633:2;9613:18;;;9606:30;9672:34;9652:18;;;9645:62;-1:-1:-1;;;9723:18:1;;;9716:40;9773:19;;13409:85:0;9566:232:1;17046:195:0;17149:12;17181:52;17203:6;17211:4;17217:1;17220:12;17181:21;:52::i;:::-;17174:59;17046:195;-1:-1:-1;;;;17046:195:0:o;18098:530::-;18225:12;18283:5;18258:21;:30;;18250:81;;;;-1:-1:-1;;;18250:81:0;;5726:2:1;18250:81:0;;;5708:21:1;5765:2;5745:18;;;5738:30;5804:34;5784:18;;;5777:62;-1:-1:-1;;;5855:18:1;;;5848:36;5901:19;;18250:81:0;5698:228:1;18250:81:0;14495:20;;18342:60;;;;-1:-1:-1;;;18342:60:0;;8830:2:1;18342:60:0;;;8812:21:1;8869:2;8849:18;;;8842:30;8908:31;8888:18;;;8881:59;8957:18;;18342:60:0;8802:179:1;18342:60:0;18476:12;18490:23;18517:6;-1:-1:-1;;;;;18517:11:0;18537:5;18545:4;18517:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18475:75;;;;18568:52;18586:7;18595:10;18607:12;18568:17;:52::i;:::-;18561:59;18098:530;-1:-1:-1;;;;;;;18098:530:0:o;20638:742::-;20753:12;20782:7;20778:595;;;-1:-1:-1;20813:10:0;20806:17;;20778:595;20927:17;;:21;20923:439;;21190:10;21184:17;21251:15;21238:10;21234:2;21230:19;21223:44;21138:148;21333:12;21326:20;;-1:-1:-1;;;21326:20:0;;;;;;;;:::i;14:257:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;276:251::-;332:6;385:2;373:9;364:7;360:23;356:32;353:2;;;406:6;398;391:22;353:2;450:9;437:23;469:28;491:5;469:28;:::i;532:255::-;599:6;652:2;640:9;631:7;627:23;623:32;620:2;;;673:6;665;658:22;620:2;710:9;704:16;729:28;751:5;729:28;:::i;792:319::-;857:6;865;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;983:9;970:23;1002:28;1024:5;1002:28;:::i;:::-;1049:5;1101:2;1086:18;;;;1073:32;;-1:-1:-1;;;876:235:1:o;1116:339::-;1198:6;1206;1259:2;1247:9;1238:7;1234:23;1230:32;1227:2;;;1280:6;1272;1265:22;1227:2;1324:9;1311:23;1343:31;1368:5;1343:31;:::i;1460:190::-;1519:6;1572:2;1560:9;1551:7;1547:23;1543:32;1540:2;;;1593:6;1585;1578:22;1540:2;-1:-1:-1;1621:23:1;;1530:120;-1:-1:-1;1530:120:1:o;1655:194::-;1725:6;1778:2;1766:9;1757:7;1753:23;1749:32;1746:2;;;1799:6;1791;1784:22;1746:2;-1:-1:-1;1827:16:1;;1736:113;-1:-1:-1;1736:113:1:o;1854:258::-;1922:6;1930;1983:2;1971:9;1962:7;1958:23;1954:32;1951:2;;;2004:6;1996;1989:22;1951:2;-1:-1:-1;;2032:23:1;;;2102:2;2087:18;;;2074:32;;-1:-1:-1;1941:171:1:o;2117:274::-;2246:3;2284:6;2278:13;2300:53;2346:6;2341:3;2334:4;2326:6;2322:17;2300:53;:::i;:::-;2369:16;;;;;2254:137;-1:-1:-1;;2254:137:1:o;3677:383::-;3826:2;3815:9;3808:21;3789:4;3858:6;3852:13;3901:6;3896:2;3885:9;3881:18;3874:34;3917:66;3976:6;3971:2;3960:9;3956:18;3951:2;3943:6;3939:15;3917:66;:::i;:::-;4044:2;4023:15;-1:-1:-1;;4019:29:1;4004:45;;;;4051:2;4000:54;;3798:262;-1:-1:-1;;3798:262:1:o;6688:356::-;6890:2;6872:21;;;6909:18;;;6902:30;6968:34;6963:2;6948:18;;6941:62;7035:2;7020:18;;6862:182::o;7049:415::-;7251:2;7233:21;;;7290:2;7270:18;;;7263:30;7329:34;7324:2;7309:18;;7302:62;-1:-1:-1;;;7395:2:1;7380:18;;7373:49;7454:3;7439:19;;7223:241::o;8986:401::-;9188:2;9170:21;;;9227:2;9207:18;;;9200:30;9266:34;9261:2;9246:18;;9239:62;-1:-1:-1;;;9332:2:1;9317:18;;9310:35;9377:3;9362:19;;9160:227::o;10158:355::-;10360:2;10342:21;;;10399:2;10379:18;;;10372:30;10438:33;10433:2;10418:18;;10411:61;10504:2;10489:18;;10332:181::o;11400:128::-;11440:3;11471:1;11467:6;11464:1;11461:13;11458:2;;;11477:18;;:::i;:::-;-1:-1:-1;11513:9:1;;11448:80::o;11533:217::-;11573:1;11599;11589:2;;-1:-1:-1;;;11624:31:1;;11678:4;11675:1;11668:15;11706:4;11631:1;11696:15;11589:2;-1:-1:-1;11735:9:1;;11579:171::o;11755:168::-;11795:7;11861:1;11857;11853:6;11849:14;11846:1;11843:21;11838:1;11831:9;11824:17;11820:45;11817:2;;;11868:18;;:::i;:::-;-1:-1:-1;11908:9:1;;11807:116::o;11928:125::-;11968:4;11996:1;11993;11990:8;11987:2;;;12001:18;;:::i;:::-;-1:-1:-1;12038:9:1;;11977:76::o;12058:258::-;12130:1;12140:113;12154:6;12151:1;12148:13;12140:113;;;12230:11;;;12224:18;12211:11;;;12204:39;12176:2;12169:10;12140:113;;;12271:6;12268:1;12265:13;12262:2;;;-1:-1:-1;;12306:1:1;12288:16;;12281:27;12111:205::o;12321:135::-;12360:3;-1:-1:-1;;12381:17:1;;12378:2;;;12401:18;;:::i;:::-;-1:-1:-1;12448:1:1;12437:13;;12368:88::o;12461:127::-;12522:10;12517:3;12513:20;12510:1;12503:31;12553:4;12550:1;12543:15;12577:4;12574:1;12567:15;12593:131;-1:-1:-1;;;;;12668:31:1;;12658:42;;12648:2;;12714:1;12711;12704:12;12729:118;12815:5;12808:13;12801:21;12794:5;12791:32;12781:2;;12837:1;12834;12827:12
Swarm Source
ipfs://dc732beb5eadabc1b181b41fc435d66f2f113c6e82137a92709d976e4b7a9488
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.077368 | 1,236.9234 | $95.7 |
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.