Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,658 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Deposit | 21575977 | 1 hr ago | IN | 0 ETH | 0.00200511 | ||||
Deposit | 21574513 | 6 hrs ago | IN | 0 ETH | 0.00426299 | ||||
Claim Reward | 21574059 | 7 hrs ago | IN | 0 ETH | 0.00233111 | ||||
Claim Reward | 21571336 | 16 hrs ago | IN | 0 ETH | 0.00110928 | ||||
Claim Reward | 21571316 | 16 hrs ago | IN | 0 ETH | 0.00114034 | ||||
Claim Reward | 21571312 | 16 hrs ago | IN | 0 ETH | 0.00085793 | ||||
Claim Reward | 21571310 | 16 hrs ago | IN | 0 ETH | 0.00106859 | ||||
Claim Reward | 21571308 | 16 hrs ago | IN | 0 ETH | 0.00103632 | ||||
Claim Reward | 21570184 | 20 hrs ago | IN | 0 ETH | 0.00114825 | ||||
Claim Reward | 21566017 | 34 hrs ago | IN | 0 ETH | 0.00266879 | ||||
Claim Reward | 21565403 | 36 hrs ago | IN | 0 ETH | 0.00182283 | ||||
Deposit | 21565400 | 36 hrs ago | IN | 0 ETH | 0.00296938 | ||||
Claim Reward | 21564157 | 40 hrs ago | IN | 0 ETH | 0.00154708 | ||||
Claim Reward | 21560366 | 2 days ago | IN | 0 ETH | 0.00158029 | ||||
Deposit | 21559534 | 2 days ago | IN | 0 ETH | 0.00253953 | ||||
Claim Reward | 21558613 | 2 days ago | IN | 0 ETH | 0.00170679 | ||||
Deposit | 21558103 | 2 days ago | IN | 0 ETH | 0.00316626 | ||||
Claim Reward | 21558073 | 2 days ago | IN | 0 ETH | 0.001432 | ||||
Claim Reward | 21558071 | 2 days ago | IN | 0 ETH | 0.00105601 | ||||
Claim Reward | 21558070 | 2 days ago | IN | 0 ETH | 0.00131268 | ||||
Claim Reward | 21558068 | 2 days ago | IN | 0 ETH | 0.00098598 | ||||
Claim Reward | 21558066 | 2 days ago | IN | 0 ETH | 0.00122872 | ||||
Claim Reward | 21557927 | 2 days ago | IN | 0 ETH | 0.00086624 | ||||
Claim Reward | 21557585 | 2 days ago | IN | 0 ETH | 0.00102864 | ||||
Claim Reward | 21553885 | 3 days ago | IN | 0 ETH | 0.00121894 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
RFRMStaking
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
Yes with 10000 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.23; /** * @title RFRM Staking Contract * @dev A staking contract that allows users to stake tokens and earn rewards. * @author Reform DAO * @notice This contract allows users to stake tokens, participate in liquidity pools, and earn rewards. * @dev The contract supports NFT pools, lock periods, and vesting of rewards. */ import { IERC20, SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { ReentrancyGuard } from "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import { IERC721Receiver } from "@openzeppelin/contracts/interfaces/IERC721Receiver.sol"; import { EnumerableSet } from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import { IVesting } from "./interface/IVesting.sol"; interface IERC721 { function safeTransferFrom(address from, address to, uint256 tokenId) external; } contract RFRMStaking is Ownable, ReentrancyGuard, IERC721Receiver { using SafeERC20 for IERC20; using EnumerableSet for EnumerableSet.UintSet; // Info of each user. struct UserInfo { uint256 totalDeposit; uint256 rewardDebt; uint256 totalClaimed; uint256 depositTime; EnumerableSet.UintSet deposits; } // Info of each pool. struct PoolInfo { bool isInputNFT; //Is NFT pool or not bool isVested; //Is reward vested or not uint32 totalInvestors; address input; // Address of input token. uint256 allocPoint; // How many allocation points assigned to this pool. RFRMs to distribute per block. uint256 lastRewardBlock; // Last block number that RFRMs distribution occurs. uint256 accTknPerShare; // Accumulated RFRMs per share, times 1e12. See below. uint256 startIdx; //Start index of NFT (if applicable) uint256 endIdx; //End index of NFT (if applicable) uint256 totalDeposit; EnumerableSet.UintSet deposits; } struct PoolLockInfo { uint32 multi; //4 decimal precision uint32 claimFee; //2 decimal precision uint32 lockPeriodInSeconds; //Lock period for staked tokens bool forcedUnlockEnabled; //Whether forced unlock is enabled for this pool } struct UserLockInfo { bool isWithdrawed; uint32 depositTime; uint256 actualDeposit; } // The REWARD TOKEN! IERC20 public immutable reward; //Percentage distributed per day. 2 decimals / 100000 uint32 public percPerDay = 1; //Address where reward token is stored address public rewardWallet; //Address where fees are sent address public feeWallet; //Vesting contract address IVesting public vestingCont; //Number of blocks per day uint16 internal constant BLOCKS_PER_DAY = 7150; //Divisor uint16 internal constant DIVISOR = 10000; // Info of each pool. PoolInfo[] internal pools; //Info of each lock term mapping(uint256 => PoolLockInfo) public poolLockInfo; // Info of each user that stakes tokens. mapping(uint256 => mapping(address => UserInfo)) internal users; // Info of users who staked tokens from bonding contract mapping(uint8 => mapping(address => UserLockInfo[])) public userLockInfo; // Total allocation points. Must be the sum of all allocation points in all pools. uint256 public totalAllocPoint = 0; //Actual deposit in lock pool uint256 public totalActualDeposit; // The block number when REWARDing starts. uint256 public startBlock; event Deposit(address indexed user, uint256 indexed pid, uint8 indexed lid, uint256[] amounts); event Withdraw(address indexed user, uint256 indexed pid, uint8 indexed lid, uint256[] amounts); event RewardClaimed(address indexed user, uint256 indexed pid, uint256 amount); event PoolAdded( bool _isInputNFT, bool _isVested, uint256 _allocPoint, address _input, uint256 _startIdx, uint256 _endIdx ); event PoolChanged(uint256 pid, uint256 allocPoint, bool isVested, uint256 startIdx, uint256 endIdx); event PoolLockChanged(uint256 lid, uint32 multi, uint32 claimFee, uint32 lockPeriod); event PoolUpdated(uint256 pid); event WalletsChanged(address reward, address feeWallet); event RewardChanged(uint32 perc); event VestingContractChanged(address vesting); error ZeroAddress(); error InvalidNFTId(); error InvalidAmount(); error InvalidLockId(); error AlreadyWithdrawed(); error ForcedUnlockDisabled(); error InvalidInput(); error DepositNotFound(); /** * @dev Initializes the RFRMStaking contract with the specified parameters. * @param _reward The address of the REWARD token. * @param _rewardWallet The address where REWARD tokens are stored. * @param _feeWallet The address where fees are sent. * @param _startBlock The block number when REWARDing starts. * @notice All parameters must be non-zero addresses. */ constructor(address _reward, address _rewardWallet, address _feeWallet, uint256 _startBlock) { if (_reward == address(0) || _rewardWallet == address(0) || _feeWallet == address(0)) revert ZeroAddress(); reward = IERC20(_reward); rewardWallet = _rewardWallet; feeWallet = _feeWallet; startBlock = _startBlock; } /** * @dev Returns the number of pools available for staking. * @return The number of pools. */ function poolLength() external view returns (uint256) { return pools.length; } /** * @dev Adds a new pool to the contract. Can only be called by the owner. * @param _isInputNFT True if the input is an NFT, false otherwise. * @param _isVested True if the rewards are vested, false otherwise. * @param _allocPoint The allocation points for the new pool. * @param _input The address of the input token or NFT. * @param _startIdx The starting index for NFTs (if _isInputNFT is true). * @param _endIdx The ending index for NFTs (if _isInputNFT is true). */ function add( bool _isInputNFT, bool _isVested, uint256 _allocPoint, address _input, uint256 _startIdx, uint256 _endIdx ) external onlyOwner { if (_input == address(0)) revert ZeroAddress(); massUpdatePools(); uint256 lastRewardBlock = block.number > startBlock ? block.number : startBlock; totalAllocPoint = totalAllocPoint + _allocPoint; PoolInfo storage newPool = pools.push(); newPool.allocPoint = _allocPoint; newPool.input = _input; newPool.isInputNFT = _isInputNFT; newPool.isVested = _isVested; newPool.lastRewardBlock = lastRewardBlock; if (_isInputNFT) { newPool.startIdx = _startIdx; newPool.endIdx = _endIdx; } emit PoolAdded(_isInputNFT, _isVested, _allocPoint, _input, _startIdx, _endIdx); } /** * @dev Updates an existing pool. Can only be called by the owner. * @param _pid The ID of the pool to be updated. * @param _allocPoint The new allocation points for the pool. * @param _isVested True if the rewards are vested, false otherwise. * @param _startIdx The new starting index for NFTs (if pool is for NFTs). * @param _endIdx The new ending index for NFTs (if pool is for NFTs). */ function set( uint256 _pid, uint256 _allocPoint, bool _isVested, uint256 _startIdx, uint256 _endIdx ) external onlyOwner { massUpdatePools(); PoolInfo storage pool = pools[_pid]; totalAllocPoint = totalAllocPoint - pool.allocPoint + _allocPoint; pool.allocPoint = _allocPoint; pool.isVested = _isVested; if (pool.isInputNFT) { pool.startIdx = _startIdx; pool.endIdx = _endIdx; } emit PoolChanged(_pid, _allocPoint, _isVested, _startIdx, _endIdx); } /** * @dev Sets lock parameters for a specific pool. * @param _lid The ID of the lock pool. * @param _multi The multiplier for the lock pool. * @param _claimFee The claim fee for the lock pool. * @param _lockPeriod The lock period in seconds for the lock pool. */ function setPoolLock(uint256 _lid, uint32 _multi, uint32 _claimFee, uint32 _lockPeriod) external onlyOwner { PoolLockInfo storage pool = poolLockInfo[_lid]; pool.claimFee = _claimFee; pool.lockPeriodInSeconds = _lockPeriod; pool.multi = _multi; emit PoolLockChanged(_lid, _multi, _claimFee, _lockPeriod); } /** * @dev View function to see pending rewards for a user in a specific pool. * @param _pid The ID of the pool. * @param _user The user's address. * @return The pending rewards for the user. */ function pendingTkn(uint256 _pid, address _user) external view returns (uint256) { PoolInfo storage pool = pools[_pid]; UserInfo storage user = users[_pid][_user]; uint256 accTknPerShare = pool.accTknPerShare; uint256 total = pool.totalDeposit; if (block.number > pool.lastRewardBlock && total != 0) { uint256 multi = block.number - pool.lastRewardBlock; uint256 rewardPerBlock = getRewardPerBlock(); uint256 tknReward = (multi * rewardPerBlock * pool.allocPoint) / totalAllocPoint; accTknPerShare = accTknPerShare + ((tknReward * 1e12) / total); } return (user.totalDeposit * accTknPerShare) / 1e12 - user.rewardDebt; } /** * @dev Deposits tokens into staking for reward allocation. * @param _pid The ID of the pool. * @param _lid The ID of the lock pool (if applicable). * @param _benificiary The address of the beneficiary. * @param _amounts The amounts to deposit (for NFTs or tokens). */ function deposit( uint256 _pid, uint8 _lid, address _benificiary, uint256[] calldata _amounts ) external nonReentrant { PoolInfo storage pool = pools[_pid]; UserInfo storage user = users[_pid][_benificiary]; updatePool(_pid); if (user.totalDeposit > 0) { _claimReward(_pid, _benificiary); } else { pool.totalInvestors++; } if (pool.isInputNFT) { IERC721 nft = IERC721(pool.input); uint256 len = _amounts.length; uint256 id; for (uint256 i = 0; i < len; ) { id = _amounts[i]; if (id < pool.startIdx || id > pool.endIdx) revert InvalidNFTId(); nft.safeTransferFrom(msg.sender, address(this), id); pool.deposits.add(id); user.deposits.add(id); unchecked { i++; } } user.totalDeposit = user.totalDeposit + len; pool.totalDeposit = pool.totalDeposit + len; } else { if (_amounts.length != 1) revert InvalidAmount(); uint256 amount = _amounts[0]; IERC20(pool.input).safeTransferFrom(msg.sender, address(this), amount); if (_pid == 0) { PoolLockInfo storage poolLock = poolLockInfo[_lid]; UserLockInfo storage userLock = userLockInfo[_lid][_benificiary].push(); if (poolLock.multi <= 0) revert InvalidLockId(); userLock.depositTime = uint32(block.timestamp); userLock.actualDeposit = amount; totalActualDeposit += amount; uint256 weightedAmount = (amount * poolLock.multi) / DIVISOR; user.totalDeposit += weightedAmount; pool.totalDeposit += weightedAmount; vestingCont.mint(_benificiary, amount); } else { user.totalDeposit = user.totalDeposit + amount; pool.totalDeposit = pool.totalDeposit + amount; } } user.rewardDebt = (user.totalDeposit * pool.accTknPerShare) / 1e12; user.depositTime = block.timestamp; emit Deposit(_benificiary, _pid, _lid, _amounts); } /** * @dev Withdraws tokens from staking. * @param _pid The ID of the pool. * @param _lid The ID of the lock pool (if applicable). * @param _did The ID of the user's deposit (if applicable). * @param _amounts The amounts to withdraw (for NFTs or tokens). */ function withdraw(uint256 _pid, uint8 _lid, uint256 _did, uint256[] calldata _amounts) external nonReentrant { PoolInfo storage pool = pools[_pid]; UserInfo storage user = users[_pid][msg.sender]; updatePool(_pid); _claimReward(_pid, msg.sender); if (pool.isInputNFT) { IERC721 nft = IERC721(pool.input); uint256 len = _amounts.length; for (uint256 i = 0; i < len; ) { uint256 id = _amounts[i]; if (!user.deposits.contains(id)) revert InvalidNFTId(); nft.safeTransferFrom(address(this), msg.sender, id); user.deposits.remove(id); pool.deposits.remove(id); unchecked { i++; } } user.totalDeposit = user.totalDeposit - _amounts.length; pool.totalDeposit = pool.totalDeposit - _amounts.length; } else { IERC20 token = IERC20(pool.input); uint256 amount = _amounts[0]; if (_pid == 0) { PoolLockInfo storage poolLock = poolLockInfo[_lid]; UserLockInfo storage userLock = userLockInfo[_lid][msg.sender][_did]; amount = userLock.actualDeposit; if (userLock.isWithdrawed) revert AlreadyWithdrawed(); uint256 weightedAmount = (amount * poolLock.multi) / DIVISOR; user.totalDeposit -= weightedAmount; pool.totalDeposit -= weightedAmount; userLock.isWithdrawed = true; totalActualDeposit -= amount; vestingCont.burn(msg.sender, amount); if (canWithdraw(_lid, _did, msg.sender)) { token.safeTransfer(msg.sender, amount); } else { if (!poolLock.forcedUnlockEnabled) revert ForcedUnlockDisabled(); uint256 feeAmount = (amount * poolLock.claimFee) / DIVISOR; token.safeTransfer(feeWallet, feeAmount); amount = amount - feeAmount; token.safeTransfer(msg.sender, amount); } } else { if (user.totalDeposit < amount) revert InvalidAmount(); user.totalDeposit = user.totalDeposit - amount; pool.totalDeposit = pool.totalDeposit - amount; token.safeTransfer(msg.sender, amount); } } user.rewardDebt = (user.totalDeposit * pool.accTknPerShare) / 1e12; emit Withdraw(msg.sender, _pid, _lid, _amounts); } /** * @dev Claims rewards for a specific pool. * @param _pid The ID of the pool. */ function claimReward(uint256 _pid) external { _claimReward(_pid, msg.sender); } /** * @dev Sets the reward and fee wallets. * @param _reward The address of the reward wallet. * @param _feeWallet The address of the fee wallet. */ function setWallets(address _reward, address _feeWallet) external onlyOwner { if (_reward == address(0) || _feeWallet == address(0)) revert ZeroAddress(); rewardWallet = _reward; feeWallet = _feeWallet; emit WalletsChanged(_reward, _feeWallet); } /** * @dev Sets the percentage per day for rewards. * @param _perc The percentage per day. */ function setPercentagePerDay(uint32 _perc) external onlyOwner { percPerDay = _perc; emit RewardChanged(_perc); } /** * @dev Sets the Vesting contract address. * @param _vesting The address of the Vesting contract. */ function setVesting(address _vesting) external onlyOwner { if (_vesting == address(0)) revert ZeroAddress(); vestingCont = IVesting(_vesting); emit VestingContractChanged(_vesting); } /** * @dev Sets the forced unlock state for multiple lock pools. * @param _lid The array of lock pool IDs. * @param _state The array of forced unlock states. */ function setForcedUnlockState(uint256[] calldata _lid, bool[] calldata _state) external onlyOwner { if (_lid.length != _state.length) revert InvalidInput(); uint256 length = _lid.length; for (uint256 i = 0; i < length; i++) { poolLockInfo[_lid[i]].forcedUnlockEnabled = _state[i]; } } /** * @dev Sets the allocation points for multiple pools. * @param _pids The array of pool IDs. * @param _allocPoints The array of allocation points. */ function setBulkAllocPoints(uint256[] calldata _pids, uint256[] calldata _allocPoints) external onlyOwner { if (_pids.length != _allocPoints.length || _pids.length != pools.length) revert InvalidInput(); uint256 length = _pids.length; uint256 total = 0; massUpdatePools(); for (uint256 i = 0; i < length; i++) { total += _allocPoints[i]; pools[_pids[i]].allocPoint = _allocPoints[i]; } totalAllocPoint = total; } /** * @dev Gets the deposited NFT IDs of a user in a specific pool. * @param _pid The ID of the pool. * @param _user The user's address. * @return An array of deposited NFT IDs. */ function getDepositedIdsOfUser(uint256 _pid, address _user) external view returns (uint256[] memory) { return users[_pid][_user].deposits.values(); } /** * @dev Gets the lock terms of a user in a specific lock pool. * @param _user The user's address. * @param _lid The ID of the lock pool. * @return count The number of lock terms and an array of UserLockInfo. */ function getLockTermsOfUser( address _user, uint8 _lid ) external view returns (uint256 count, UserLockInfo[] memory) { return (userLockInfo[_lid][_user].length, userLockInfo[_lid][_user]); } /** * @dev Retrieves information about a pool. * @param _pid The ID of the pool. * @return isInputNFT Is pool for NFTs or not. * @return isVested Is reward vested or not. * @return totalInvestors Total investors in the pool. * @return input Address of input token. * @return allocPoint Allocation points for the pool. * @return lastRewardBlock Last block number that RFRMs distribution occurs. * @return accTknPerShare Accumulated RFRMs per share, times 1e12. * @return startIdx Start index of NFT (if applicable). * @return endIdx End index of NFT (if applicable). * @return totalDeposit Total deposits in the pool. */ function poolInfo( uint256 _pid ) external view returns ( bool isInputNFT, bool isVested, uint32 totalInvestors, address input, uint256 allocPoint, uint256 lastRewardBlock, uint256 accTknPerShare, uint256 startIdx, uint256 endIdx, uint256 totalDeposit ) { PoolInfo storage pool = pools[_pid]; isInputNFT = pool.isInputNFT; isVested = pool.isVested; allocPoint = pool.allocPoint; lastRewardBlock = pool.lastRewardBlock; accTknPerShare = pool.accTknPerShare; totalDeposit = pool.totalDeposit; startIdx = pool.startIdx; endIdx = pool.endIdx; input = pool.input; totalInvestors = pool.totalInvestors; } /** * @dev Retrieves user information for a specific pool and user. * @param _pid The ID of the pool. * @param _user The user's address. * @return totalDeposit Total deposits of the user. * @return rewardDebt Reward debt of the user. * @return totalClaimed Total claimed rewards of the user. * @return depositTime Deposit time of the user. */ function userInfo( uint256 _pid, address _user ) external view returns (uint256 totalDeposit, uint256 rewardDebt, uint256 totalClaimed, uint256 depositTime) { UserInfo storage user = users[_pid][_user]; totalDeposit = user.totalDeposit; rewardDebt = user.rewardDebt; totalClaimed = user.totalClaimed; depositTime = user.depositTime; } /** * @dev Updates reward variables for all pools. Be careful of gas spending! */ function massUpdatePools() public { uint256 length = pools.length; for (uint256 pid = 0; pid < length; ++pid) { updatePool(pid); } } /** * @dev Updates reward variables of a specific pool to be up-to-date. * @param _pid The ID of the pool to be updated. */ function updatePool(uint256 _pid) public { PoolInfo storage pool = pools[_pid]; if (block.number <= pool.lastRewardBlock) { return; } uint256 total = pool.totalDeposit; if (total == 0 || pool.allocPoint == 0) { pool.lastRewardBlock = block.number; return; } uint256 multi = block.number - pool.lastRewardBlock; uint256 rewardPerBlock = getRewardPerBlock(); uint256 tknReward = (multi * rewardPerBlock * pool.allocPoint) / totalAllocPoint; reward.safeTransferFrom(rewardWallet, address(this), tknReward); pool.accTknPerShare = pool.accTknPerShare + ((tknReward * 1e12) / total); pool.lastRewardBlock = block.number; emit PoolUpdated(_pid); } /** * @dev ERC721 receiver function to accept NFT deposits. * param operator The address that sent the NFT. * param from The address that transferred the NFT. * param tokenId The ID of the received NFT. * param data Additional data (not used in this contract). * @return The ERC721_RECEIVED selector. */ function onERC721Received(address, address, uint256, bytes memory) public virtual override returns (bytes4) { return this.onERC721Received.selector; } /** * @dev Gets the reward per block. * @return rpb The reward per block. */ function getRewardPerBlock() public view returns (uint256 rpb) { uint256 total = reward.balanceOf(rewardWallet); uint256 rewardPerDay = (total * percPerDay) / DIVISOR; rewardPerDay = rewardPerDay / 10; //Additional precision rpb = rewardPerDay / BLOCKS_PER_DAY; } /** * @dev Checks if a user can withdraw from a specific lock pool. * @param _lid The ID of the lock pool. * @param _did The ID of the user's deposit in the lock pool. * @param _user The user's address. * @return True if the user can withdraw, false otherwise. */ function canWithdraw(uint8 _lid, uint256 _did, address _user) public view returns (bool) { return (block.timestamp >= userLockInfo[_lid][_user][_did].depositTime + poolLockInfo[_lid].lockPeriodInSeconds); } /** * @dev Internal function to claim rewards for a specific pool and user. * @param _pid The ID of the pool. * @param _user The user's address. */ function _claimReward(uint256 _pid, address _user) internal { updatePool(_pid); UserInfo storage user = users[_pid][_user]; if (user.totalDeposit == 0) { return; } uint256 pending = (user.totalDeposit * pools[_pid].accTknPerShare) / 1e12 - user.rewardDebt; if (pending > 0) { user.totalClaimed = user.totalClaimed + pending; user.rewardDebt = (user.totalDeposit * pools[_pid].accTknPerShare) / 1e12; if (pools[_pid].isVested) { vestingCont.addVesting(_user, pending); reward.safeTransfer(address(vestingCont), pending); } else { reward.safeTransfer(_user, pending); } } emit RewardClaimed(_user, _pid, pending); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using 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' 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) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @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 require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ 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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ 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 making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // 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; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC721Receiver.sol) pragma solidity ^0.8.0; import "../token/ERC721/IERC721Receiver.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values in the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.23; interface IVesting { function getRoleAdmin(bytes32 role) external view returns (bytes32); function hasRole(bytes32 role, address account) external view returns (bool); function rfrm() external view returns (address); function isStakingContract(address _address) external view returns (bool); function lockPeriod() external view returns (uint256); function supportsInterface(bytes4 interfaceId) external view returns (bool); function unlockDisabledUntil() external view returns (uint256); function vesting(address, uint256) external view returns (uint256 time, uint256 amount, bool claimed); function removeStakingContract(address _address) external; function grantRole(bytes32 role, address account) external; function removeStuckToken(address _address) external; function renounceRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function transfer(address to, uint256 amount) external returns (bool); function transferAdmin(address _newAdmin) external; function claimUserVesting(uint256 _id) external; function transferFrom(address from, address to, uint256 amount) external returns (bool); function addStakingContract(address _address) external; function addVesting(address _wallet, uint256 _amount) external; function mint(address _wallet, uint256 _amount) external; function burn(address _wallet, uint256 _amount) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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"); (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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
{ "remappings": [ "@prb/test/=lib/prb-test/src/", "forge-std/=lib/forge-std/src/", "@openzeppelin/=lib/openzeppelin-contracts/", "@uniswap/=node_modules/@uniswap/", "@chainlink/=lib/chainlink/", "chainlink/=lib/chainlink/integration-tests/contracts/ethereum/src/", "ds-test/=lib/forge-std/lib/ds-test/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "prb-test/=lib/prb-test/src/" ], "optimizer": { "enabled": true, "runs": 10000 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "none", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_reward","type":"address"},{"internalType":"address","name":"_rewardWallet","type":"address"},{"internalType":"address","name":"_feeWallet","type":"address"},{"internalType":"uint256","name":"_startBlock","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyWithdrawed","type":"error"},{"inputs":[],"name":"DepositNotFound","type":"error"},{"inputs":[],"name":"ForcedUnlockDisabled","type":"error"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"InvalidInput","type":"error"},{"inputs":[],"name":"InvalidLockId","type":"error"},{"inputs":[],"name":"InvalidNFTId","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":true,"internalType":"uint8","name":"lid","type":"uint8"},{"indexed":false,"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"Deposit","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":"bool","name":"_isInputNFT","type":"bool"},{"indexed":false,"internalType":"bool","name":"_isVested","type":"bool"},{"indexed":false,"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"indexed":false,"internalType":"address","name":"_input","type":"address"},{"indexed":false,"internalType":"uint256","name":"_startIdx","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_endIdx","type":"uint256"}],"name":"PoolAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"allocPoint","type":"uint256"},{"indexed":false,"internalType":"bool","name":"isVested","type":"bool"},{"indexed":false,"internalType":"uint256","name":"startIdx","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endIdx","type":"uint256"}],"name":"PoolChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"lid","type":"uint256"},{"indexed":false,"internalType":"uint32","name":"multi","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"claimFee","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"lockPeriod","type":"uint32"}],"name":"PoolLockChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"pid","type":"uint256"}],"name":"PoolUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint32","name":"perc","type":"uint32"}],"name":"RewardChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"vesting","type":"address"}],"name":"VestingContractChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"reward","type":"address"},{"indexed":false,"internalType":"address","name":"feeWallet","type":"address"}],"name":"WalletsChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":true,"internalType":"uint8","name":"lid","type":"uint8"},{"indexed":false,"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"bool","name":"_isInputNFT","type":"bool"},{"internalType":"bool","name":"_isVested","type":"bool"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"address","name":"_input","type":"address"},{"internalType":"uint256","name":"_startIdx","type":"uint256"},{"internalType":"uint256","name":"_endIdx","type":"uint256"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_lid","type":"uint8"},{"internalType":"uint256","name":"_did","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"canWithdraw","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"claimReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint8","name":"_lid","type":"uint8"},{"internalType":"address","name":"_benificiary","type":"address"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"getDepositedIdsOfUser","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint8","name":"_lid","type":"uint8"}],"name":"getLockTermsOfUser","outputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"components":[{"internalType":"bool","name":"isWithdrawed","type":"bool"},{"internalType":"uint32","name":"depositTime","type":"uint32"},{"internalType":"uint256","name":"actualDeposit","type":"uint256"}],"internalType":"struct RFRMStaking.UserLockInfo[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRewardPerBlock","outputs":[{"internalType":"uint256","name":"rpb","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingTkn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percPerDay","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"bool","name":"isInputNFT","type":"bool"},{"internalType":"bool","name":"isVested","type":"bool"},{"internalType":"uint32","name":"totalInvestors","type":"uint32"},{"internalType":"address","name":"input","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accTknPerShare","type":"uint256"},{"internalType":"uint256","name":"startIdx","type":"uint256"},{"internalType":"uint256","name":"endIdx","type":"uint256"},{"internalType":"uint256","name":"totalDeposit","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolLockInfo","outputs":[{"internalType":"uint32","name":"multi","type":"uint32"},{"internalType":"uint32","name":"claimFee","type":"uint32"},{"internalType":"uint32","name":"lockPeriodInSeconds","type":"uint32"},{"internalType":"bool","name":"forcedUnlockEnabled","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reward","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"bool","name":"_isVested","type":"bool"},{"internalType":"uint256","name":"_startIdx","type":"uint256"},{"internalType":"uint256","name":"_endIdx","type":"uint256"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_pids","type":"uint256[]"},{"internalType":"uint256[]","name":"_allocPoints","type":"uint256[]"}],"name":"setBulkAllocPoints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_lid","type":"uint256[]"},{"internalType":"bool[]","name":"_state","type":"bool[]"}],"name":"setForcedUnlockState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_perc","type":"uint32"}],"name":"setPercentagePerDay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lid","type":"uint256"},{"internalType":"uint32","name":"_multi","type":"uint32"},{"internalType":"uint32","name":"_claimFee","type":"uint32"},{"internalType":"uint32","name":"_lockPeriod","type":"uint32"}],"name":"setPoolLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vesting","type":"address"}],"name":"setVesting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_reward","type":"address"},{"internalType":"address","name":"_feeWallet","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalActualDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"totalDeposit","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"},{"internalType":"uint256","name":"totalClaimed","type":"uint256"},{"internalType":"uint256","name":"depositTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"userLockInfo","outputs":[{"internalType":"bool","name":"isWithdrawed","type":"bool"},{"internalType":"uint32","name":"depositTime","type":"uint32"},{"internalType":"uint256","name":"actualDeposit","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vestingCont","outputs":[{"internalType":"contract IVesting","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint8","name":"_lid","type":"uint8"},{"internalType":"uint256","name":"_did","type":"uint256"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526002805463ffffffff1916600117905560006009553480156200002657600080fd5b506040516200337238038062003372833981016040819052620000499162000167565b6200005433620000fa565b600180556001600160a01b03841615806200007657506001600160a01b038316155b806200008957506001600160a01b038216155b15620000a85760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b0393841660805260028054600160201b600160c01b0319166401000000009486169490940293909317909255600380546001600160a01b0319169190931617909155600b55620001b9565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146200016257600080fd5b919050565b600080600080608085870312156200017e57600080fd5b62000189856200014a565b935062000199602086016200014a565b9250620001a9604086016200014a565b6060959095015193969295505050565b608051613181620001f16000396000818161035c01528181611193015281816112fd01528181612240015261227c01526131816000f3fe608060405234801561001057600080fd5b50600436106102415760003560e01c8063715018a611610145578063d3f6a157116100bd578063eacd900d1161008c578063f2fde38b11610071578063f2fde38b14610645578063fb75b2c714610658578063ff3a1c971461067357600080fd5b8063eacd900d146105ab578063f25f4b561461063257600080fd5b8063d3f6a1571461052b578063d73b7a001461053e578063da446fff14610573578063e846697a1461058657600080fd5b8063ad38edac11610114578063b4c643b5116100f9578063b4c643b5146104f2578063cc11922c14610505578063d35d650b1461051857600080fd5b8063ad38edac146104bc578063ae169a50146104df57600080fd5b8063715018a61461042557806376e626161461042d5780638da5cb5b1461044057806393f1a40b1461045157600080fd5b806332cfccd8116101d857806351eb05a6116101a7578063630b5ba11161018c578063630b5ba1146103f757806363b33c37146103ff5780636f6ff3bc1461041257600080fd5b806351eb05a6146103db5780635f540c8e146103ee57600080fd5b806332cfccd8146103965780633d6310b2146103b757806348cd4cb1146103ca57806349df8d33146103d357600080fd5b80631526fe27116102145780631526fe27146102c957806317caf6f11461033b57806319c2300b14610344578063228cb7331461035757600080fd5b8063081e3eda14610246578063082503401461025d5780630b9d7d1014610272578063150b7a0214610285575b600080fd5b6005545b6040519081526020015b60405180910390f35b61027061026b366004612996565b610693565b005b61024a610280366004612a05565b610b8d565b610298610293366004612a60565b610ca9565b6040517fffffffff000000000000000000000000000000000000000000000000000000009091168152602001610254565b6102dc6102d7366004612b5a565b610cd3565b604080519a15158b5298151560208b015263ffffffff909716978901979097526001600160a01b039094166060880152608087019290925260a086015260c085015260e084015261010083019190915261012082015261014001610254565b61024a60095481565b610270610352366004612b81565b610d98565b61037e7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610254565b6103a96103a4366004612be4565b610fa0565b604051610254929190612c0e565b6102706103c5366004612c90565b61104f565b61024a600b5481565b61024a61114a565b6102706103e9366004612b5a565b611247565b61024a600a5481565b61027061139f565b61027061040d366004612cdd565b6113c2565b610270610420366004612d49565b6114bb565b610270611570565b61027061043b366004612d64565b611584565b6000546001600160a01b031661037e565b61049c61045f366004612a05565b60009182526007602090815260408084206001600160a01b0390931684529190529020805460018201546002830154600390930154919390929190565b604080519485526020850193909352918301526060820152608001610254565b6104cf6104ca366004612daf565b611ae1565b6040519015158152602001610254565b6102706104ed366004612b5a565b611b6c565b610270610500366004612deb565b611b79565b610270610513366004612cdd565b611c71565b60045461037e906001600160a01b031681565b610270610539366004612e34565b611d62565b61055161054c366004612e5e565b611e6b565b60408051931515845263ffffffff909216602084015290820152606001610254565b610270610581366004612e9a565b611ec4565b6002546105969063ffffffff1681565b60405163ffffffff9091168152602001610254565b6106006105b9366004612b5a565b60066020526000908152604090205463ffffffff80821691640100000000810482169168010000000000000000820416906c01000000000000000000000000900460ff1684565b604051610254949392919063ffffffff9485168152928416602084015292166040820152901515606082015260800190565b60035461037e906001600160a01b031681565b610270610653366004612d49565b611f2f565b60025461037e9064010000000090046001600160a01b031681565b610686610681366004612a05565b611fdb565b6040516102549190612eb5565b61069b612013565b6000600586815481106106b0576106b0612ef9565b600091825260208083208984526007825260408085206001600160a01b038a1686529092529220600990910290910191506106ea87611247565b805415610700576106fb8786612086565b61073a565b815462010000900463ffffffff1682600261071a83612f57565b91906101000a81548163ffffffff021916908363ffffffff160217905550505b815460ff161561089f578154660100000000000090046001600160a01b0316836000805b828110156108715787878281811061077857610778612ef9565b90506020020135915085600401548210806107965750856005015482115b156107cd576040517f5f6f1f0b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f42842e0e000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018390526001600160a01b038516906342842e0e90606401600060405180830381600087803b15801561083457600080fd5b505af1158015610848573d6000803e3d6000fd5b5061085a9250505060078701836122ed565b5061086860048601836122ed565b5060010161075e565b50835461087f908390612f7a565b84556006850154610891908390612f7a565b600686015550610b03915050565b600183146108d9576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000848460008181106108ee576108ee612ef9565b855460209091029290920135925061091e916001600160a01b0366010000000000009091041690503330846122f9565b87600003610adc5760ff87166000908152600660209081526040808320600883528184206001600160a01b038b168552835290832080546001810182559084529190922082546002909202019063ffffffff166109a7576040517faefe60c300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000ff166101004263ffffffff160217815560018101839055600a80548491906000906109f5908490612f7a565b9091555050815460009061271090610a139063ffffffff1686612f8d565b610a1d9190612fa4565b905080856000016000828254610a339190612f7a565b9250508190555080866006016000828254610a4e9190612f7a565b9091555050600480546040517f40c10f190000000000000000000000000000000000000000000000000000000081526001600160a01b038c811693820193909352602481018790529116906340c10f1990604401600060405180830381600087803b158015610abc57600080fd5b505af1158015610ad0573d6000803e3d6000fd5b50505050505050610b01565b8154610ae9908290612f7a565b82556006830154610afb908290612f7a565b60068401555b505b6003820154815464e8d4a5100091610b1a91612f8d565b610b249190612fa4565b600182015542600382015560405160ff87169088906001600160a01b038816907fe54d289cb860073b2834abd3362a8d819971ed455fe5e41d097e6c578fc063e390610b739089908990612fdf565b60405180910390a45050610b8660018055565b5050505050565b60008060058481548110610ba357610ba3612ef9565b600091825260208083208784526007825260408085206001600160a01b03891686529092529220600360099092029092019081015460068201546002830154929450909143118015610bf457508015155b15610c6f576000846002015443610c0b9190613031565b90506000610c1761114a565b9050600060095487600101548385610c2f9190612f8d565b610c399190612f8d565b610c439190612fa4565b905083610c558264e8d4a51000612f8d565b610c5f9190612fa4565b610c699086612f7a565b94505050505b6001830154835464e8d4a5100090610c88908590612f8d565b610c929190612fa4565b610c9c9190613031565b9450505050505b92915050565b7f150b7a02000000000000000000000000000000000000000000000000000000005b949350505050565b600080600080600080600080600080600060058c81548110610cf757610cf7612ef9565b906000526020600020906009020190508060000160009054906101000a900460ff169a508060000160019054906101000a900460ff1699508060010154965080600201549550806003015494508060060154915080600401549350806005015492508060000160069054906101000a90046001600160a01b031697508060000160029054906101000a900463ffffffff169850509193959799509193959799565b610da06123ce565b6001600160a01b038316610de0576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610de861139f565b6000600b544311610dfb57600b54610dfd565b435b905084600954610e0d9190612f7a565b600990815560058054600181018255600091909152027f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db181018690557f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0810180547fffffffffffff0000000000000000000000000000000000000000ffffffffff001666010000000000006001600160a01b038816027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00161789158015919091177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101008a1515021782557f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db290920183905590610f355760048101849055600581018390555b60408051891515815288151560208201529081018790526001600160a01b03861660608201526080810185905260a081018490527f495c4d4fcc6f0835967b5a6f6b1e1b4caf0f28047be0cd1e9fb6000e8bd3062b9060c00160405180910390a15050505050505050565b60ff811660009081526008602090815260408083206001600160a01b03861684528252808320805482518185028101850190935280835260609390929082908490879084015b8282101561103d5760008481526020908190206040805160608101825260028602909201805460ff811615158452610100900463ffffffff1683850152600190810154918301919091529083529092019101610fe6565b505050509050915091505b9250929050565b6110576123ce565b60008481526006602090815260409182902080547fffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffff1664010000000063ffffffff8781169182027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff169290921768010000000000000000878416908102919091177fffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000016928916928317845585518a81529485019290925283850152606083015291517f5f471a9d444a1f96d8f2dda6852c401f94be05f0afada9c96e6301639274de099181900360800190a15050505050565b6002546040517f70a082310000000000000000000000000000000000000000000000000000000081526401000000009091046001600160a01b03908116600483015260009182917f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa1580156111da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111fe9190613044565b6002549091506000906127109061121b9063ffffffff1684612f8d565b6112259190612fa4565b9050611232600a82612fa4565b9050611240611bee82612fa4565b9250505090565b60006005828154811061125c5761125c612ef9565b906000526020600020906009020190508060020154431161127b575050565b600681015480158061128f57506001820154155b1561129f57504360029091015550565b60008260020154436112b19190613031565b905060006112bd61114a565b90506000600954856001015483856112d59190612f8d565b6112df9190612f8d565b6112e99190612fa4565b60025490915061132f906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169164010000000090041630846122f9565b8361133f8264e8d4a51000612f8d565b6113499190612fa4565b85600301546113589190612f7a565b60038601554360028601556040518681527f141d729c29cc848b27c53f7dbe9f9542cedc4ed2efa7bd2aeb2a4bdce06a407f906020015b60405180910390a1505050505050565b60055460005b818110156113be576113b681611247565b6001016113a5565b5050565b6113ca6123ce565b82811415806113db57506005548314155b15611412576040517fb4fa3fb300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82600061141d61139f565b60005b828110156114b05784848281811061143a5761143a612ef9565b905060200201358261144c9190612f7a565b915084848281811061146057611460612ef9565b90506020020135600588888481811061147b5761147b612ef9565b905060200201358154811061149257611492612ef9565b60009182526020909120600160099092020181019190915501611420565b506009555050505050565b6114c36123ce565b6001600160a01b038116611503576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600480547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383169081179091556040519081527f5dff00aa253c8624dbbbd26ea7b6b161327e629f5ed7a0cde6ff3c66cceb909f906020015b60405180910390a150565b6115786123ce565b6115826000612442565b565b61158c612013565b6000600586815481106115a1576115a1612ef9565b600091825260208083208984526007825260408085203386529092529220600990910290910191506115d287611247565b6115dc8733612086565b815460ff1615611742578154660100000000000090046001600160a01b03168360005b8181101561171557600087878381811061161b5761161b612ef9565b90506020020135905061163a81866004016124aa90919063ffffffff16565b611670576040517f5f6f1f0b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f42842e0e000000000000000000000000000000000000000000000000000000008152306004820152336024820152604481018290526001600160a01b038516906342842e0e90606401600060405180830381600087803b1580156116d757600080fd5b505af11580156116eb573d6000803e3d6000fd5b506116fd9250505060048601826124c2565b5061170b60078701826124c2565b50506001016115ff565b508254611723908690613031565b83556006840154611735908690613031565b600685015550611a809050565b8154660100000000000090046001600160a01b031660008585828161176957611769612ef9565b90506020020135905088600003611a0a5760ff8816600090815260066020908152604080832060088352818420338552909252822080549192918a9081106117b3576117b3612ef9565b600091825260209091206002909102016001810154815490945090915060ff161561180a576040517f219055cc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8154600090612710906118239063ffffffff1686612f8d565b61182d9190612fa4565b9050808660000160008282546118439190613031565b925050819055508087600601600082825461185e9190613031565b909155505081547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001178255600a80548591906000906118a1908490613031565b9091555050600480546040517f9dc29fac0000000000000000000000000000000000000000000000000000000081523392810192909252602482018690526001600160a01b031690639dc29fac90604401600060405180830381600087803b15801561190c57600080fd5b505af1158015611920573d6000803e3d6000fd5b5050505061192f8b8b33611ae1565b1561194d576119486001600160a01b03861633866124ce565b611a02565b82546c01000000000000000000000000900460ff16611998576040517f1dfa2d9a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8254600090612710906119b990640100000000900463ffffffff1687612f8d565b6119c39190612fa4565b6003549091506119e0906001600160a01b038881169116836124ce565b6119ea8186613031565b9450611a006001600160a01b03871633876124ce565b505b505050611a7d565b8254811115611a45576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8254611a52908290613031565b83556006840154611a64908290613031565b6006850155611a7d6001600160a01b03831633836124ce565b50505b6003820154815464e8d4a5100091611a9791612f8d565b611aa19190612fa4565b600182015560405160ff871690889033907f7b5ffc3ba195947b4353b1b81162681f7d9e574d241416a66fd43bdad0ef4e6c90610b739089908990612fdf565b60ff8316600090815260066020908152604080832054600883528184206001600160a01b0386168552909252822080546801000000000000000090920463ffffffff169185908110611b3557611b35612ef9565b6000918252602090912060029091020154611b5b9190610100900463ffffffff1661305d565b63ffffffff16421015949350505050565b611b768133612086565b50565b611b816123ce565b611b8961139f565b600060058681548110611b9e57611b9e612ef9565b90600052602060002090600902019050848160010154600954611bc19190613031565b611bcb9190612f7a565b600955600181018590558054841515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff82168117835560ff90811691161715611c215760048101839055600581018290555b60408051878152602081018790528515159181019190915260608101849052608081018390527f3314d9954bdfea521083fec16bd54c06d3ed43846d16149cc8aa3fd2349041179060a00161138f565b611c796123ce565b828114611cb2576040517fb4fa3fb300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8260005b81811015611d5a57838382818110611cd057611cd0612ef9565b9050602002016020810190611ce5919061307a565b60066000888885818110611cfb57611cfb612ef9565b6020908102929092013583525081019190915260400160002080549115156c01000000000000000000000000027fffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffff909216919091179055600101611cb6565b505050505050565b611d6a6123ce565b6001600160a01b0382161580611d8757506001600160a01b038116155b15611dbe576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600280547fffffffffffffffff0000000000000000000000000000000000000000ffffffff166401000000006001600160a01b0385811691820292909217909255600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001691841691821790556040805192835260208301919091527f186ca604571738d83684995b203c2a2e6f26412e30436bf1926162381878fe27910160405180910390a15050565b60086020528260005260406000206020528160005260406000208181548110611e9357600080fd5b60009182526020909120600290910201805460019091015460ff8216945061010090910463ffffffff169250905083565b611ecc6123ce565b600280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001663ffffffff83169081179091556040519081527f37f4b1c97732b79b3e59e6b39f7501657b52ea5c31bb7877cac17d02460b865d90602001611565565b611f376123ce565b6001600160a01b038116611fd2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b611b7681612442565b60008281526007602090815260408083206001600160a01b0385168452909152902060609061200c9060040161251c565b9392505050565b60026001540361207f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401611fc9565b6002600155565b61208f82611247565b60008281526007602090815260408083206001600160a01b0385168452909152812080549091036120bf57505050565b6000816001015464e8d4a51000600586815481106120df576120df612ef9565b90600052602060002090600902016003015484600001546121009190612f8d565b61210a9190612fa4565b6121149190613031565b905080156122a35780826002015461212c9190612f7a565b826002018190555064e8d4a510006005858154811061214d5761214d612ef9565b906000526020600020906009020160030154836000015461216e9190612f8d565b6121789190612fa4565b6001830155600580548590811061219157612191612ef9565b6000918252602090912060099091020154610100900460ff161561226f57600480546040517f95fcb00d0000000000000000000000000000000000000000000000000000000081526001600160a01b0386811693820193909352602481018490529116906395fcb00d90604401600060405180830381600087803b15801561221857600080fd5b505af115801561222c573d6000803e3d6000fd5b505060045461226a92506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116925016836124ce565b6122a3565b6122a36001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001684836124ce565b83836001600160a01b03167ff01da32686223933d8a18a391060918c7f11a3648639edd87ae013e2e2731743836040516122df91815260200190565b60405180910390a350505050565b600061200c8383612529565b6040516001600160a01b03808516602483015283166044820152606481018290526123c89085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152612578565b50505050565b6000546001600160a01b03163314611582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611fc9565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000818152600183016020526040812054151561200c565b600061200c8383612677565b6040516001600160a01b0383166024820152604481018290526125179084907fa9059cbb0000000000000000000000000000000000000000000000000000000090606401612346565b505050565b6060600061200c83612771565b600081815260018301602052604081205461257057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610ca3565b506000610ca3565b60006125cd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166127cd9092919063ffffffff16565b80519091501561251757808060200190518101906125eb9190613097565b612517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401611fc9565b6000818152600183016020526040812054801561276057600061269b600183613031565b85549091506000906126af90600190613031565b90508181146127145760008660000182815481106126cf576126cf612ef9565b90600052602060002001549050808760000184815481106126f2576126f2612ef9565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080612725576127256130b4565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610ca3565b6000915050610ca3565b5092915050565b6060816000018054806020026020016040519081016040528092919081815260200182805480156127c157602002820191906000526020600020905b8154815260200190600101908083116127ad575b50505050509050919050565b6060610ccb848460008585600080866001600160a01b031685876040516127f49190613107565b60006040518083038185875af1925050503d8060008114612831576040519150601f19603f3d011682016040523d82523d6000602084013e612836565b606091505b509150915061284787838387612852565b979650505050505050565b606083156128db5782516000036128d4576001600160a01b0385163b6128d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401611fc9565b5081610ccb565b610ccb83838151156128f05781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc99190613123565b803560ff8116811461293557600080fd5b919050565b80356001600160a01b038116811461293557600080fd5b60008083601f84011261296357600080fd5b50813567ffffffffffffffff81111561297b57600080fd5b6020830191508360208260051b850101111561104857600080fd5b6000806000806000608086880312156129ae57600080fd5b853594506129be60208701612924565b93506129cc6040870161293a565b9250606086013567ffffffffffffffff8111156129e857600080fd5b6129f488828901612951565b969995985093965092949392505050565b60008060408385031215612a1857600080fd5b82359150612a286020840161293a565b90509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008060008060808587031215612a7657600080fd5b612a7f8561293a565b9350612a8d6020860161293a565b925060408501359150606085013567ffffffffffffffff80821115612ab157600080fd5b818701915087601f830112612ac557600080fd5b813581811115612ad757612ad7612a31565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908382118183101715612b1d57612b1d612a31565b816040528281528a6020848701011115612b3657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600060208284031215612b6c57600080fd5b5035919050565b8015158114611b7657600080fd5b60008060008060008060c08789031215612b9a57600080fd5b8635612ba581612b73565b95506020870135612bb581612b73565b945060408701359350612bca6060880161293a565b92506080870135915060a087013590509295509295509295565b60008060408385031215612bf757600080fd5b612c008361293a565b9150612a2860208401612924565b60006040808301858452602060406020860152818651808452606093506060870191506020880160005b82811015612c6d5781518051151585528581015163ffffffff1686860152870151878501529285019290840190600101612c38565b50919998505050505050505050565b803563ffffffff8116811461293557600080fd5b60008060008060808587031215612ca657600080fd5b84359350612cb660208601612c7c565b9250612cc460408601612c7c565b9150612cd260608601612c7c565b905092959194509250565b60008060008060408587031215612cf357600080fd5b843567ffffffffffffffff80821115612d0b57600080fd5b612d1788838901612951565b90965094506020870135915080821115612d3057600080fd5b50612d3d87828801612951565b95989497509550505050565b600060208284031215612d5b57600080fd5b61200c8261293a565b600080600080600060808688031215612d7c57600080fd5b85359450612d8c60208701612924565b935060408601359250606086013567ffffffffffffffff8111156129e857600080fd5b600080600060608486031215612dc457600080fd5b612dcd84612924565b925060208401359150612de26040850161293a565b90509250925092565b600080600080600060a08688031215612e0357600080fd5b85359450602086013593506040860135612e1c81612b73565b94979396509394606081013594506080013592915050565b60008060408385031215612e4757600080fd5b612e508361293a565b9150612a286020840161293a565b600080600060608486031215612e7357600080fd5b612e7c84612924565b9250612e8a6020850161293a565b9150604084013590509250925092565b600060208284031215612eac57600080fd5b61200c82612c7c565b6020808252825182820181905260009190848201906040850190845b81811015612eed57835183529284019291840191600101612ed1565b50909695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600063ffffffff808316818103612f7057612f70612f28565b6001019392505050565b80820180821115610ca357610ca3612f28565b8082028115828204841417610ca357610ca3612f28565b600082612fda577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6020815281602082015260007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83111561301857600080fd5b8260051b80856040850137919091016040019392505050565b81810381811115610ca357610ca3612f28565b60006020828403121561305657600080fd5b5051919050565b63ffffffff81811683821601908082111561276a5761276a612f28565b60006020828403121561308c57600080fd5b813561200c81612b73565b6000602082840312156130a957600080fd5b815161200c81612b73565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60005b838110156130fe5781810151838201526020016130e6565b50506000910152565b600082516131198184602087016130e3565b9190910192915050565b60208152600082518060208401526131428160408501602087016130e3565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea164736f6c6343000817000a000000000000000000000000ea3eed8616877f5d3c4aebf5a799f2e8d6de9a5e00000000000000000000000010ad87c2d32b102a757f464ac081ed2338e869730000000000000000000000008ef08312b03ce48300adc1fd6a70f664a458e8bb0000000000000000000000000000000000000000000000000000000001228d37
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102415760003560e01c8063715018a611610145578063d3f6a157116100bd578063eacd900d1161008c578063f2fde38b11610071578063f2fde38b14610645578063fb75b2c714610658578063ff3a1c971461067357600080fd5b8063eacd900d146105ab578063f25f4b561461063257600080fd5b8063d3f6a1571461052b578063d73b7a001461053e578063da446fff14610573578063e846697a1461058657600080fd5b8063ad38edac11610114578063b4c643b5116100f9578063b4c643b5146104f2578063cc11922c14610505578063d35d650b1461051857600080fd5b8063ad38edac146104bc578063ae169a50146104df57600080fd5b8063715018a61461042557806376e626161461042d5780638da5cb5b1461044057806393f1a40b1461045157600080fd5b806332cfccd8116101d857806351eb05a6116101a7578063630b5ba11161018c578063630b5ba1146103f757806363b33c37146103ff5780636f6ff3bc1461041257600080fd5b806351eb05a6146103db5780635f540c8e146103ee57600080fd5b806332cfccd8146103965780633d6310b2146103b757806348cd4cb1146103ca57806349df8d33146103d357600080fd5b80631526fe27116102145780631526fe27146102c957806317caf6f11461033b57806319c2300b14610344578063228cb7331461035757600080fd5b8063081e3eda14610246578063082503401461025d5780630b9d7d1014610272578063150b7a0214610285575b600080fd5b6005545b6040519081526020015b60405180910390f35b61027061026b366004612996565b610693565b005b61024a610280366004612a05565b610b8d565b610298610293366004612a60565b610ca9565b6040517fffffffff000000000000000000000000000000000000000000000000000000009091168152602001610254565b6102dc6102d7366004612b5a565b610cd3565b604080519a15158b5298151560208b015263ffffffff909716978901979097526001600160a01b039094166060880152608087019290925260a086015260c085015260e084015261010083019190915261012082015261014001610254565b61024a60095481565b610270610352366004612b81565b610d98565b61037e7f000000000000000000000000ea3eed8616877f5d3c4aebf5a799f2e8d6de9a5e81565b6040516001600160a01b039091168152602001610254565b6103a96103a4366004612be4565b610fa0565b604051610254929190612c0e565b6102706103c5366004612c90565b61104f565b61024a600b5481565b61024a61114a565b6102706103e9366004612b5a565b611247565b61024a600a5481565b61027061139f565b61027061040d366004612cdd565b6113c2565b610270610420366004612d49565b6114bb565b610270611570565b61027061043b366004612d64565b611584565b6000546001600160a01b031661037e565b61049c61045f366004612a05565b60009182526007602090815260408084206001600160a01b0390931684529190529020805460018201546002830154600390930154919390929190565b604080519485526020850193909352918301526060820152608001610254565b6104cf6104ca366004612daf565b611ae1565b6040519015158152602001610254565b6102706104ed366004612b5a565b611b6c565b610270610500366004612deb565b611b79565b610270610513366004612cdd565b611c71565b60045461037e906001600160a01b031681565b610270610539366004612e34565b611d62565b61055161054c366004612e5e565b611e6b565b60408051931515845263ffffffff909216602084015290820152606001610254565b610270610581366004612e9a565b611ec4565b6002546105969063ffffffff1681565b60405163ffffffff9091168152602001610254565b6106006105b9366004612b5a565b60066020526000908152604090205463ffffffff80821691640100000000810482169168010000000000000000820416906c01000000000000000000000000900460ff1684565b604051610254949392919063ffffffff9485168152928416602084015292166040820152901515606082015260800190565b60035461037e906001600160a01b031681565b610270610653366004612d49565b611f2f565b60025461037e9064010000000090046001600160a01b031681565b610686610681366004612a05565b611fdb565b6040516102549190612eb5565b61069b612013565b6000600586815481106106b0576106b0612ef9565b600091825260208083208984526007825260408085206001600160a01b038a1686529092529220600990910290910191506106ea87611247565b805415610700576106fb8786612086565b61073a565b815462010000900463ffffffff1682600261071a83612f57565b91906101000a81548163ffffffff021916908363ffffffff160217905550505b815460ff161561089f578154660100000000000090046001600160a01b0316836000805b828110156108715787878281811061077857610778612ef9565b90506020020135915085600401548210806107965750856005015482115b156107cd576040517f5f6f1f0b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f42842e0e000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018390526001600160a01b038516906342842e0e90606401600060405180830381600087803b15801561083457600080fd5b505af1158015610848573d6000803e3d6000fd5b5061085a9250505060078701836122ed565b5061086860048601836122ed565b5060010161075e565b50835461087f908390612f7a565b84556006850154610891908390612f7a565b600686015550610b03915050565b600183146108d9576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000848460008181106108ee576108ee612ef9565b855460209091029290920135925061091e916001600160a01b0366010000000000009091041690503330846122f9565b87600003610adc5760ff87166000908152600660209081526040808320600883528184206001600160a01b038b168552835290832080546001810182559084529190922082546002909202019063ffffffff166109a7576040517faefe60c300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000ff166101004263ffffffff160217815560018101839055600a80548491906000906109f5908490612f7a565b9091555050815460009061271090610a139063ffffffff1686612f8d565b610a1d9190612fa4565b905080856000016000828254610a339190612f7a565b9250508190555080866006016000828254610a4e9190612f7a565b9091555050600480546040517f40c10f190000000000000000000000000000000000000000000000000000000081526001600160a01b038c811693820193909352602481018790529116906340c10f1990604401600060405180830381600087803b158015610abc57600080fd5b505af1158015610ad0573d6000803e3d6000fd5b50505050505050610b01565b8154610ae9908290612f7a565b82556006830154610afb908290612f7a565b60068401555b505b6003820154815464e8d4a5100091610b1a91612f8d565b610b249190612fa4565b600182015542600382015560405160ff87169088906001600160a01b038816907fe54d289cb860073b2834abd3362a8d819971ed455fe5e41d097e6c578fc063e390610b739089908990612fdf565b60405180910390a45050610b8660018055565b5050505050565b60008060058481548110610ba357610ba3612ef9565b600091825260208083208784526007825260408085206001600160a01b03891686529092529220600360099092029092019081015460068201546002830154929450909143118015610bf457508015155b15610c6f576000846002015443610c0b9190613031565b90506000610c1761114a565b9050600060095487600101548385610c2f9190612f8d565b610c399190612f8d565b610c439190612fa4565b905083610c558264e8d4a51000612f8d565b610c5f9190612fa4565b610c699086612f7a565b94505050505b6001830154835464e8d4a5100090610c88908590612f8d565b610c929190612fa4565b610c9c9190613031565b9450505050505b92915050565b7f150b7a02000000000000000000000000000000000000000000000000000000005b949350505050565b600080600080600080600080600080600060058c81548110610cf757610cf7612ef9565b906000526020600020906009020190508060000160009054906101000a900460ff169a508060000160019054906101000a900460ff1699508060010154965080600201549550806003015494508060060154915080600401549350806005015492508060000160069054906101000a90046001600160a01b031697508060000160029054906101000a900463ffffffff169850509193959799509193959799565b610da06123ce565b6001600160a01b038316610de0576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610de861139f565b6000600b544311610dfb57600b54610dfd565b435b905084600954610e0d9190612f7a565b600990815560058054600181018255600091909152027f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db181018690557f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0810180547fffffffffffff0000000000000000000000000000000000000000ffffffffff001666010000000000006001600160a01b038816027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00161789158015919091177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101008a1515021782557f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db290920183905590610f355760048101849055600581018390555b60408051891515815288151560208201529081018790526001600160a01b03861660608201526080810185905260a081018490527f495c4d4fcc6f0835967b5a6f6b1e1b4caf0f28047be0cd1e9fb6000e8bd3062b9060c00160405180910390a15050505050505050565b60ff811660009081526008602090815260408083206001600160a01b03861684528252808320805482518185028101850190935280835260609390929082908490879084015b8282101561103d5760008481526020908190206040805160608101825260028602909201805460ff811615158452610100900463ffffffff1683850152600190810154918301919091529083529092019101610fe6565b505050509050915091505b9250929050565b6110576123ce565b60008481526006602090815260409182902080547fffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffff1664010000000063ffffffff8781169182027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff169290921768010000000000000000878416908102919091177fffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000016928916928317845585518a81529485019290925283850152606083015291517f5f471a9d444a1f96d8f2dda6852c401f94be05f0afada9c96e6301639274de099181900360800190a15050505050565b6002546040517f70a082310000000000000000000000000000000000000000000000000000000081526401000000009091046001600160a01b03908116600483015260009182917f000000000000000000000000ea3eed8616877f5d3c4aebf5a799f2e8d6de9a5e16906370a0823190602401602060405180830381865afa1580156111da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111fe9190613044565b6002549091506000906127109061121b9063ffffffff1684612f8d565b6112259190612fa4565b9050611232600a82612fa4565b9050611240611bee82612fa4565b9250505090565b60006005828154811061125c5761125c612ef9565b906000526020600020906009020190508060020154431161127b575050565b600681015480158061128f57506001820154155b1561129f57504360029091015550565b60008260020154436112b19190613031565b905060006112bd61114a565b90506000600954856001015483856112d59190612f8d565b6112df9190612f8d565b6112e99190612fa4565b60025490915061132f906001600160a01b037f000000000000000000000000ea3eed8616877f5d3c4aebf5a799f2e8d6de9a5e81169164010000000090041630846122f9565b8361133f8264e8d4a51000612f8d565b6113499190612fa4565b85600301546113589190612f7a565b60038601554360028601556040518681527f141d729c29cc848b27c53f7dbe9f9542cedc4ed2efa7bd2aeb2a4bdce06a407f906020015b60405180910390a1505050505050565b60055460005b818110156113be576113b681611247565b6001016113a5565b5050565b6113ca6123ce565b82811415806113db57506005548314155b15611412576040517fb4fa3fb300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82600061141d61139f565b60005b828110156114b05784848281811061143a5761143a612ef9565b905060200201358261144c9190612f7a565b915084848281811061146057611460612ef9565b90506020020135600588888481811061147b5761147b612ef9565b905060200201358154811061149257611492612ef9565b60009182526020909120600160099092020181019190915501611420565b506009555050505050565b6114c36123ce565b6001600160a01b038116611503576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600480547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383169081179091556040519081527f5dff00aa253c8624dbbbd26ea7b6b161327e629f5ed7a0cde6ff3c66cceb909f906020015b60405180910390a150565b6115786123ce565b6115826000612442565b565b61158c612013565b6000600586815481106115a1576115a1612ef9565b600091825260208083208984526007825260408085203386529092529220600990910290910191506115d287611247565b6115dc8733612086565b815460ff1615611742578154660100000000000090046001600160a01b03168360005b8181101561171557600087878381811061161b5761161b612ef9565b90506020020135905061163a81866004016124aa90919063ffffffff16565b611670576040517f5f6f1f0b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f42842e0e000000000000000000000000000000000000000000000000000000008152306004820152336024820152604481018290526001600160a01b038516906342842e0e90606401600060405180830381600087803b1580156116d757600080fd5b505af11580156116eb573d6000803e3d6000fd5b506116fd9250505060048601826124c2565b5061170b60078701826124c2565b50506001016115ff565b508254611723908690613031565b83556006840154611735908690613031565b600685015550611a809050565b8154660100000000000090046001600160a01b031660008585828161176957611769612ef9565b90506020020135905088600003611a0a5760ff8816600090815260066020908152604080832060088352818420338552909252822080549192918a9081106117b3576117b3612ef9565b600091825260209091206002909102016001810154815490945090915060ff161561180a576040517f219055cc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8154600090612710906118239063ffffffff1686612f8d565b61182d9190612fa4565b9050808660000160008282546118439190613031565b925050819055508087600601600082825461185e9190613031565b909155505081547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001178255600a80548591906000906118a1908490613031565b9091555050600480546040517f9dc29fac0000000000000000000000000000000000000000000000000000000081523392810192909252602482018690526001600160a01b031690639dc29fac90604401600060405180830381600087803b15801561190c57600080fd5b505af1158015611920573d6000803e3d6000fd5b5050505061192f8b8b33611ae1565b1561194d576119486001600160a01b03861633866124ce565b611a02565b82546c01000000000000000000000000900460ff16611998576040517f1dfa2d9a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8254600090612710906119b990640100000000900463ffffffff1687612f8d565b6119c39190612fa4565b6003549091506119e0906001600160a01b038881169116836124ce565b6119ea8186613031565b9450611a006001600160a01b03871633876124ce565b505b505050611a7d565b8254811115611a45576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8254611a52908290613031565b83556006840154611a64908290613031565b6006850155611a7d6001600160a01b03831633836124ce565b50505b6003820154815464e8d4a5100091611a9791612f8d565b611aa19190612fa4565b600182015560405160ff871690889033907f7b5ffc3ba195947b4353b1b81162681f7d9e574d241416a66fd43bdad0ef4e6c90610b739089908990612fdf565b60ff8316600090815260066020908152604080832054600883528184206001600160a01b0386168552909252822080546801000000000000000090920463ffffffff169185908110611b3557611b35612ef9565b6000918252602090912060029091020154611b5b9190610100900463ffffffff1661305d565b63ffffffff16421015949350505050565b611b768133612086565b50565b611b816123ce565b611b8961139f565b600060058681548110611b9e57611b9e612ef9565b90600052602060002090600902019050848160010154600954611bc19190613031565b611bcb9190612f7a565b600955600181018590558054841515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff82168117835560ff90811691161715611c215760048101839055600581018290555b60408051878152602081018790528515159181019190915260608101849052608081018390527f3314d9954bdfea521083fec16bd54c06d3ed43846d16149cc8aa3fd2349041179060a00161138f565b611c796123ce565b828114611cb2576040517fb4fa3fb300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8260005b81811015611d5a57838382818110611cd057611cd0612ef9565b9050602002016020810190611ce5919061307a565b60066000888885818110611cfb57611cfb612ef9565b6020908102929092013583525081019190915260400160002080549115156c01000000000000000000000000027fffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffff909216919091179055600101611cb6565b505050505050565b611d6a6123ce565b6001600160a01b0382161580611d8757506001600160a01b038116155b15611dbe576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600280547fffffffffffffffff0000000000000000000000000000000000000000ffffffff166401000000006001600160a01b0385811691820292909217909255600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001691841691821790556040805192835260208301919091527f186ca604571738d83684995b203c2a2e6f26412e30436bf1926162381878fe27910160405180910390a15050565b60086020528260005260406000206020528160005260406000208181548110611e9357600080fd5b60009182526020909120600290910201805460019091015460ff8216945061010090910463ffffffff169250905083565b611ecc6123ce565b600280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001663ffffffff83169081179091556040519081527f37f4b1c97732b79b3e59e6b39f7501657b52ea5c31bb7877cac17d02460b865d90602001611565565b611f376123ce565b6001600160a01b038116611fd2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b611b7681612442565b60008281526007602090815260408083206001600160a01b0385168452909152902060609061200c9060040161251c565b9392505050565b60026001540361207f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401611fc9565b6002600155565b61208f82611247565b60008281526007602090815260408083206001600160a01b0385168452909152812080549091036120bf57505050565b6000816001015464e8d4a51000600586815481106120df576120df612ef9565b90600052602060002090600902016003015484600001546121009190612f8d565b61210a9190612fa4565b6121149190613031565b905080156122a35780826002015461212c9190612f7a565b826002018190555064e8d4a510006005858154811061214d5761214d612ef9565b906000526020600020906009020160030154836000015461216e9190612f8d565b6121789190612fa4565b6001830155600580548590811061219157612191612ef9565b6000918252602090912060099091020154610100900460ff161561226f57600480546040517f95fcb00d0000000000000000000000000000000000000000000000000000000081526001600160a01b0386811693820193909352602481018490529116906395fcb00d90604401600060405180830381600087803b15801561221857600080fd5b505af115801561222c573d6000803e3d6000fd5b505060045461226a92506001600160a01b037f000000000000000000000000ea3eed8616877f5d3c4aebf5a799f2e8d6de9a5e8116925016836124ce565b6122a3565b6122a36001600160a01b037f000000000000000000000000ea3eed8616877f5d3c4aebf5a799f2e8d6de9a5e1684836124ce565b83836001600160a01b03167ff01da32686223933d8a18a391060918c7f11a3648639edd87ae013e2e2731743836040516122df91815260200190565b60405180910390a350505050565b600061200c8383612529565b6040516001600160a01b03808516602483015283166044820152606481018290526123c89085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152612578565b50505050565b6000546001600160a01b03163314611582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611fc9565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000818152600183016020526040812054151561200c565b600061200c8383612677565b6040516001600160a01b0383166024820152604481018290526125179084907fa9059cbb0000000000000000000000000000000000000000000000000000000090606401612346565b505050565b6060600061200c83612771565b600081815260018301602052604081205461257057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610ca3565b506000610ca3565b60006125cd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166127cd9092919063ffffffff16565b80519091501561251757808060200190518101906125eb9190613097565b612517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401611fc9565b6000818152600183016020526040812054801561276057600061269b600183613031565b85549091506000906126af90600190613031565b90508181146127145760008660000182815481106126cf576126cf612ef9565b90600052602060002001549050808760000184815481106126f2576126f2612ef9565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080612725576127256130b4565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610ca3565b6000915050610ca3565b5092915050565b6060816000018054806020026020016040519081016040528092919081815260200182805480156127c157602002820191906000526020600020905b8154815260200190600101908083116127ad575b50505050509050919050565b6060610ccb848460008585600080866001600160a01b031685876040516127f49190613107565b60006040518083038185875af1925050503d8060008114612831576040519150601f19603f3d011682016040523d82523d6000602084013e612836565b606091505b509150915061284787838387612852565b979650505050505050565b606083156128db5782516000036128d4576001600160a01b0385163b6128d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401611fc9565b5081610ccb565b610ccb83838151156128f05781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc99190613123565b803560ff8116811461293557600080fd5b919050565b80356001600160a01b038116811461293557600080fd5b60008083601f84011261296357600080fd5b50813567ffffffffffffffff81111561297b57600080fd5b6020830191508360208260051b850101111561104857600080fd5b6000806000806000608086880312156129ae57600080fd5b853594506129be60208701612924565b93506129cc6040870161293a565b9250606086013567ffffffffffffffff8111156129e857600080fd5b6129f488828901612951565b969995985093965092949392505050565b60008060408385031215612a1857600080fd5b82359150612a286020840161293a565b90509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008060008060808587031215612a7657600080fd5b612a7f8561293a565b9350612a8d6020860161293a565b925060408501359150606085013567ffffffffffffffff80821115612ab157600080fd5b818701915087601f830112612ac557600080fd5b813581811115612ad757612ad7612a31565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908382118183101715612b1d57612b1d612a31565b816040528281528a6020848701011115612b3657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600060208284031215612b6c57600080fd5b5035919050565b8015158114611b7657600080fd5b60008060008060008060c08789031215612b9a57600080fd5b8635612ba581612b73565b95506020870135612bb581612b73565b945060408701359350612bca6060880161293a565b92506080870135915060a087013590509295509295509295565b60008060408385031215612bf757600080fd5b612c008361293a565b9150612a2860208401612924565b60006040808301858452602060406020860152818651808452606093506060870191506020880160005b82811015612c6d5781518051151585528581015163ffffffff1686860152870151878501529285019290840190600101612c38565b50919998505050505050505050565b803563ffffffff8116811461293557600080fd5b60008060008060808587031215612ca657600080fd5b84359350612cb660208601612c7c565b9250612cc460408601612c7c565b9150612cd260608601612c7c565b905092959194509250565b60008060008060408587031215612cf357600080fd5b843567ffffffffffffffff80821115612d0b57600080fd5b612d1788838901612951565b90965094506020870135915080821115612d3057600080fd5b50612d3d87828801612951565b95989497509550505050565b600060208284031215612d5b57600080fd5b61200c8261293a565b600080600080600060808688031215612d7c57600080fd5b85359450612d8c60208701612924565b935060408601359250606086013567ffffffffffffffff8111156129e857600080fd5b600080600060608486031215612dc457600080fd5b612dcd84612924565b925060208401359150612de26040850161293a565b90509250925092565b600080600080600060a08688031215612e0357600080fd5b85359450602086013593506040860135612e1c81612b73565b94979396509394606081013594506080013592915050565b60008060408385031215612e4757600080fd5b612e508361293a565b9150612a286020840161293a565b600080600060608486031215612e7357600080fd5b612e7c84612924565b9250612e8a6020850161293a565b9150604084013590509250925092565b600060208284031215612eac57600080fd5b61200c82612c7c565b6020808252825182820181905260009190848201906040850190845b81811015612eed57835183529284019291840191600101612ed1565b50909695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600063ffffffff808316818103612f7057612f70612f28565b6001019392505050565b80820180821115610ca357610ca3612f28565b8082028115828204841417610ca357610ca3612f28565b600082612fda577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6020815281602082015260007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83111561301857600080fd5b8260051b80856040850137919091016040019392505050565b81810381811115610ca357610ca3612f28565b60006020828403121561305657600080fd5b5051919050565b63ffffffff81811683821601908082111561276a5761276a612f28565b60006020828403121561308c57600080fd5b813561200c81612b73565b6000602082840312156130a957600080fd5b815161200c81612b73565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60005b838110156130fe5781810151838201526020016130e6565b50506000910152565b600082516131198184602087016130e3565b9190910192915050565b60208152600082518060208401526131428160408501602087016130e3565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea164736f6c6343000817000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ea3eed8616877f5d3c4aebf5a799f2e8d6de9a5e00000000000000000000000010ad87c2d32b102a757f464ac081ed2338e869730000000000000000000000008ef08312b03ce48300adc1fd6a70f664a458e8bb0000000000000000000000000000000000000000000000000000000001228d37
-----Decoded View---------------
Arg [0] : _reward (address): 0xea3eed8616877F5d3c4aEbf5A799F2e8D6DE9A5E
Arg [1] : _rewardWallet (address): 0x10Ad87C2d32b102a757F464ac081ed2338e86973
Arg [2] : _feeWallet (address): 0x8Ef08312B03ce48300ADC1FD6a70F664A458E8Bb
Arg [3] : _startBlock (uint256): 19041591
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000ea3eed8616877f5d3c4aebf5a799f2e8d6de9a5e
Arg [1] : 00000000000000000000000010ad87c2d32b102a757f464ac081ed2338e86973
Arg [2] : 0000000000000000000000008ef08312b03ce48300adc1fd6a70f664a458e8bb
Arg [3] : 0000000000000000000000000000000000000000000000000000000001228d37
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.094058 | 172,229,132.2464 | $16,199,527.72 |
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.