ETH Price: $3,476.87 (+2.24%)

Contract

0xc4aeAca3dF2EDab46F27483973C14a29F1224253
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Emergency Reward...143044142022-03-02 0:33:291029 days ago1646181209IN
0xc4aeAca3...9F1224253
0 ETH0.0038233861.2486492
Emergency Reward...142607482022-02-23 6:31:471036 days ago1645597907IN
0xc4aeAca3...9F1224253
0 ETH0.0049746758.98642289
Withdraw142487372022-02-21 10:00:501038 days ago1645437650IN
0xc4aeAca3...9F1224253
0 ETH0.0113951346.41299804
Withdraw142426612022-02-20 11:27:451039 days ago1645356465IN
0xc4aeAca3...9F1224253
0 ETH0.0101972839.94330418
Withdraw142414752022-02-20 6:58:511039 days ago1645340331IN
0xc4aeAca3...9F1224253
0 ETH0.013501954.06903731
Withdraw142414482022-02-20 6:52:161039 days ago1645339936IN
0xc4aeAca3...9F1224253
0 ETH0.01154550.93895435
Withdraw142413852022-02-20 6:37:381039 days ago1645339058IN
0xc4aeAca3...9F1224253
0 ETH0.0118515247.43854122
Set Compound142413392022-02-20 6:28:191039 days ago1645338499IN
0xc4aeAca3...9F1224253
0 ETH0.0021490546.8418399
Set Compound142409612022-02-20 5:06:321039 days ago1645333592IN
0xc4aeAca3...9F1224253
0 ETH0.0016942670.69177048
Withdraw142405222022-02-20 3:27:451039 days ago1645327665IN
0xc4aeAca3...9F1224253
0 ETH0.0184927472.56922832
Withdraw142396332022-02-20 0:15:561039 days ago1645316156IN
0xc4aeAca3...9F1224253
0 ETH0.02876131112.81514007
Withdraw142396312022-02-20 0:14:401039 days ago1645316080IN
0xc4aeAca3...9F1224253
0 ETH0.0253489499.51454347
Withdraw142396192022-02-20 0:11:441039 days ago1645315904IN
0xc4aeAca3...9F1224253
0 ETH0.017454668.3438491
Withdraw142232312022-02-17 10:56:191042 days ago1645095379IN
0xc4aeAca3...9F1224253
0 ETH0.0113719345.46319712
Withdraw142195682022-02-16 21:20:281042 days ago1645046428IN
0xc4aeAca3...9F1224253
0 ETH0.0154691466.49649904
Withdraw142195112022-02-16 21:08:431042 days ago1645045723IN
0xc4aeAca3...9F1224253
0 ETH0.0207349887.17488357
Set Compound142194722022-02-16 20:59:261042 days ago1645045166IN
0xc4aeAca3...9F1224253
0 ETH0.0037937482.6902831
Deposit142117712022-02-15 16:28:181043 days ago1644942498IN
0xc4aeAca3...9F1224253
0 ETH0.0204719756.39739998
Deposit142117532022-02-15 16:24:421043 days ago1644942282IN
0xc4aeAca3...9F1224253
0 ETH0.0237367862.44960694
Deposit142117272022-02-15 16:19:511043 days ago1644941991IN
0xc4aeAca3...9F1224253
0 ETH0.0254191570.02617457
Deposit142115612022-02-15 15:47:211043 days ago1644940041IN
0xc4aeAca3...9F1224253
0 ETH0.0260579971.78608654
Deposit142115282022-02-15 15:39:161043 days ago1644939556IN
0xc4aeAca3...9F1224253
0 ETH0.0267554773.70755739
Deposit142114982022-02-15 15:33:211043 days ago1644939201IN
0xc4aeAca3...9F1224253
0 ETH0.0340359893.76433997
Deposit142113972022-02-15 15:08:481043 days ago1644937728IN
0xc4aeAca3...9F1224253
0 ETH0.0199902655.07036028
Set Compound142113712022-02-15 15:03:441043 days ago1644937424IN
0xc4aeAca3...9F1224253
0 ETH0.0013488956.2814767
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Staking

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : staking.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.4;
import "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20MetadataUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

contract EmergencyWithdraw is OwnableUpgradeable {
  event Received(address sender, uint amount);

  /**
   * @dev allow contract to receive ethers
   */
  receive() external payable {
    emit Received(_msgSender(), msg.value);
  }

  /**
   * @dev get the eth balance on the contract
   * @return eth balance
   */
  function getEthBalance() external view returns (uint) {
    return address(this).balance;
  }

  /**
   * @dev withdraw eth balance
   */
  function emergencyWithdrawEthBalance(address _to, uint _amount) external onlyOwner {
    require(_to != address(0), "Invalid to");
    payable(_to).transfer(_amount);
  }

  /**
   * @dev get the token balance
   * @param _tokenAddress token address
   */
  function getTokenBalance(address _tokenAddress) external view returns (uint) {
    IERC20 erc20 = IERC20(_tokenAddress);
    return erc20.balanceOf(address(this));
  }

  /**
   * @dev withdraw token balance
   * @param _tokenAddress token address
   */
  function emergencyWithdrawTokenBalance(
    address _tokenAddress,
    address _to,
    uint _amount
  ) external onlyOwner {
    IERC20 erc20 = IERC20(_tokenAddress);
    erc20.transfer(_to, _amount);
  }
}

contract DSMath {
  function add(uint x, uint y) internal pure returns (uint z) {
    require((z = x + y) >= x, "ds-math-add-overflow");
  }

  function sub(uint x, uint y) internal pure returns (uint z) {
    require((z = x - y) <= x, "ds-math-sub-underflow");
  }

  function mul(uint x, uint y) internal pure returns (uint z) {
    require(y == 0 || (z = x * y) / y == x, "ds-math-mul-overflow");
  }

  function min(uint x, uint y) internal pure returns (uint z) {
    return x <= y ? x : y;
  }

  function max(uint x, uint y) internal pure returns (uint z) {
    return x >= y ? x : y;
  }

  function imin(int x, int y) internal pure returns (int z) {
    return x <= y ? x : y;
  }

  function imax(int x, int y) internal pure returns (int z) {
    return x >= y ? x : y;
  }

  uint internal constant WAD = 10**18;
  uint internal constant RAY = 10**27;

  //rounds to zero if x*y < WAD / 2
  function wmul(uint x, uint y) internal pure returns (uint z) {
    z = add(mul(x, y), WAD / 2) / WAD;
  }

  //rounds to zero if x*y < WAD / 2
  function rmul(uint x, uint y) internal pure returns (uint z) {
    z = add(mul(x, y), RAY / 2) / RAY;
  }

  //rounds to zero if x*y < WAD / 2
  function wdiv(uint x, uint y) internal pure returns (uint z) {
    z = add(mul(x, WAD), y / 2) / y;
  }

  //rounds to zero if x*y < RAY / 2
  function rdiv(uint x, uint y) internal pure returns (uint z) {
    z = add(mul(x, RAY), y / 2) / y;
  }

  // This famous algorithm is called "exponentiation by squaring"
  // and calculates x^n with x as fixed-point and n as regular unsigned.
  //
  // It's O(log n), instead of O(n) for naive repeated multiplication.
  //
  // These facts are why it works:
  //
  //  If n is even, then x^n = (x^2)^(n/2).
  //  If n is odd,  then x^n = x * x^(n-1),
  //   and applying the equation for even x gives
  //    x^n = x * (x^2)^((n-1) / 2).
  //
  //  Also, EVM division is flooring and
  //    floor[(n-1) / 2] = floor[n / 2].
  //
  function rpow(uint x, uint n) internal pure returns (uint z) {
    z = n % 2 != 0 ? x : RAY;

    for (n /= 2; n != 0; n /= 2) {
      x = rmul(x, x);

      if (n % 2 != 0) {
        z = rmul(z, x);
      }
    }
  }

  // MATH Exponentiation
  // x ^ n using base b
  // EX: rpow(1.1 ether, 30e6, 1 ether) = (1.1 ^ 30e6) ether
  function rpow(
    uint x,
    uint n,
    uint b
  ) internal pure returns (uint z) {
    // solhint-disable no-inline-assembly
    assembly {
      switch x
      case 0 {
        switch n
        case 0 {
          z := b
        }
        default {
          z := 0
        }
      }
      default {
        switch mod(n, 2)
        case 0 {
          z := b
        }
        default {
          z := x
        }
        let half := div(b, 2) // for rounding.
        for {
          n := div(n, 2)
        } n {
          n := div(n, 2)
        } {
          let xx := mul(x, x)
          if iszero(eq(div(xx, x), x)) {
            revert(0, 0)
          }
          let xxRound := add(xx, half)
          if lt(xxRound, xx) {
            revert(0, 0)
          }
          x := div(xxRound, b)
          if mod(n, 2) {
            let zx := mul(z, x)
            if and(iszero(iszero(x)), iszero(eq(div(zx, x), z))) {
              revert(0, 0)
            }
            let zxRound := add(zx, half)
            if lt(zxRound, zx) {
              revert(0, 0)
            }
            z := div(zxRound, b)
          }
        }
      }
    }
  }
}

contract Staking is OwnableUpgradeable, ReentrancyGuardUpgradeable, EmergencyWithdraw, DSMath {
  using SafeERC20Upgradeable for IERC20MetadataUpgradeable;

  struct UserInfo {
    address addr; // Address of user
    uint256 amount; // How many staked tokens the user has provided
    uint256 lastRewardTime; // Last reward time
    uint256 depositTime; // Last deposit time
    uint256 lockDuration; // Lock duration in seconds
    bool registered; // It will add user in address list on first deposit
  }

  struct UserLog {
    address addr; // Address of user
    uint256 amount1; // Raw amount of token
    uint256 amount2; // Amount after tax of token in Deposit case.
    uint256 amount3; // Pending reward
    bool isDeposit; // Deposit or withdraw
    uint256 logTime; // Log timestamp
  }

  // Percentage nominator: 1% = 100
  uint256 private constant _RATE_NOMINATOR = 10_000;
  // Total second in a year
  uint256 public constant SECONDS_YEAR = 365 days;

  // The reward token
  IERC20MetadataUpgradeable public rewardToken;
  // The staked token
  IERC20MetadataUpgradeable public stakedToken;

  // Info of each user that stakes tokens (stakedToken)
  mapping(address => UserInfo) public userInfo;
  // User list
  address[] public userList;
  // User logs
  UserLog[] private _userLogs;

  // Max reward tokens per pool
  uint256 public maxRewardPerPool;
  // Claimed reward tokens per pool
  uint256 public claimedRewardPerPool;
  // Max staked tokens per pool
  uint256 public maxStakedPerPool;
  // Whether a limit is set for users
  bool public hasUserLimit;
  // Max staked tokens per user (0 if none)
  uint256 public maxStakedPerUser;
  // Fixed APY, default is 100%
  uint256 public fixedAPY;
  // Pool mode: AUTO COMPOUND as default
  bool public isAutoCompound;

  // Current staked tokens per pool
  uint256 public currentStakedPerPool;
  // The Pool start time.
  uint256 public startTime;
  // The Pool end time.
  uint256 public endTime;
  // Freeze start time
  uint256 public freezeStartTime;
  // Freeze end time
  uint256 public freezeEndTime;
  // Minimum deposit amount
  uint256 public minDepositAmount;
  // Time for withdraw. Allow user can withdraw if block.timestamp >= withdrawTime
  uint256 public withdrawTime;
  // Withdraw mode
  // 0: Apply withdrawTime to both (stake + reward)
  // 1: Apply withdrawTime to stake
  // 2: Apply withdrawTime to reward
  uint256 public withdrawMode;
  // Global lock to user mode
  bool public enableLockToUser;
  // Global lock duration
  uint256 public lockDuration;

  // Operator
  mapping(address => bool) public isOperator;

  event UserDeposit(address indexed user, uint256 amount);
  event UserWithdraw(address indexed user, uint256 amount);
  event NewStartAndEndTimes(uint256 startTime, uint256 endTime);
  event NewFreezeTimes(uint256 freezeStartTime, uint256 freezeEndTime);

  /**
   * @dev Upgradable initializer
   */
  function __Staking_init(
    IERC20MetadataUpgradeable _stakedToken,
    IERC20MetadataUpgradeable _rewardToken,
    uint256 _maxStakedPerPool,
    uint256 _startTime,
    uint256 _endTime,
    uint256 _maxStakedPerUser,
    uint256 _minDepositAmount,
    uint256 _withdrawTime,
    uint256 _withdrawMode,
    uint256 _fixedAPY,
    bool _isAutoCompound,
    address _admin
  ) external initializer {
    __Ownable_init();
    __ReentrancyGuard_init();

    stakedToken = _stakedToken;
    rewardToken = _rewardToken;
    maxStakedPerPool = _maxStakedPerPool;

    // 100% = 10000 = _RATE_NOMINATOR
    fixedAPY = _fixedAPY;
    isAutoCompound = _isAutoCompound;
    startTime = _startTime;
    endTime = _endTime;
    minDepositAmount = _minDepositAmount;
    withdrawTime = _withdrawTime;
    withdrawMode = _withdrawMode;

    if (_maxStakedPerUser > 0) {
      hasUserLimit = true;
      maxStakedPerUser = _maxStakedPerUser;
    }

    if (_admin != _msgSender()) {
      // Transfer ownership to the admin address who becomes owner of the contract
      transferOwnership(_admin);
    }
    enableLockToUser = true;
  }



  /**
   * @dev Function to add a account to blacklist
   */
  function fSetOperator(address _pAccount, bool _pStatus) external onlyOwner {
    require(isOperator[_pAccount] != _pStatus, "Added");
    isOperator[_pAccount] = _pStatus;
  }

  /*
   * @notice Compound mode is only enabled when stake token = reward token and isAutoCompound is true
   */
  function canCompound() public view returns (bool) {
    return address(stakedToken) == address(rewardToken) && isAutoCompound;
  }

  /*
   * @notice Update compound mode
   */
  function setCompound(bool _mode) external onlyOwner {
    isAutoCompound = _mode;
  }

  /*
   * @notice Get remaining reward
   */
  function getRemainingReward() public view returns (uint256) {
    if (maxRewardPerPool > claimedRewardPerPool) return maxRewardPerPool - claimedRewardPerPool;
    return 0;
  }

  /*
   * @notice View function to see pending reward on frontend.
   * @param _user: user address
   * @return Pending reward for a given user
   */
  function getPendingReward(address _user) public view returns (uint256) {
    UserInfo storage user = userInfo[_user];
    uint userReward;
    if (block.timestamp > user.lastRewardTime && currentStakedPerPool != 0) {
      uint256 multiplier = _getMultiplier(user.lastRewardTime, block.timestamp);
      if (multiplier == 0) return 0;
      if (canCompound()) {
        // APY = 100% = 1
        // SecondsPerYear = 365 * 24 * 60 * 60 = 31536000  (365 days)
        // Duration = n
        // InitialAmount = P
        // FinalAmount = P * ( 1 + APY/SecondsPerYear )^n
        // Compounded interest = FinalAmount - P;
        uint rate = rpow(WAD + (fixedAPY * WAD) / SECONDS_YEAR / _RATE_NOMINATOR, multiplier, WAD);
        userReward = wmul(user.amount, rate - WAD);
      } else {
        // FinalAmount = P * APY/SecondsPerYear * n
        // Compounded interest = FinalAmount - P;
        userReward = (user.amount * fixedAPY * multiplier) / SECONDS_YEAR / _RATE_NOMINATOR;
      }
    }
    return userReward;
  }

  /*
   * @notice Deposit staked tokens and collect reward tokens (if any)
   * @param _amount: amount to withdraw (in rewardToken)
   */
  function deposit(uint256 _amount) external nonReentrant {
    require(isFrozen() == false, "Deposit is frozen");
    if (maxStakedPerPool > 0) {
      require((currentStakedPerPool + _amount) <= maxStakedPerPool, "Exceed max staked tokens");
    }

    UserInfo storage user = userInfo[msg.sender];
    require((user.amount + _amount) >= minDepositAmount, "User amount below minimum");

    if (hasUserLimit) {
      require((_amount + user.amount) <= maxStakedPerUser, "User amount above limit");
    }

    user.depositTime = block.timestamp;

    uint256 pending;
    if (user.amount > 0) {
      pending = getPendingReward(msg.sender);
      if (pending > 0) {
        // If pool mode is non-compound -> transfer rewards to user
        // Otherwise, compound to user amount
        if (canCompound()) {
          user.amount += pending;
          currentStakedPerPool += pending;
          claimedRewardPerPool += pending;
        } else {
          _safeRewardTransfer(address(msg.sender), pending);
        }
        user.lastRewardTime = block.timestamp;
      }
    } else {
      if (user.registered == false) {
        userList.push(msg.sender);
        user.registered = true;
        user.addr = address(msg.sender);
        user.lastRewardTime = block.timestamp;
        // We're not apply lock per user this time
        user.lockDuration = 0;
      }
    }

    uint256 addedAmount_;
    if (_amount > 0) {
      // Check real amount to avoid taxed token
      uint256 previousBalance_ = stakedToken.balanceOf(address(this));
      stakedToken.safeTransferFrom(address(msg.sender), address(this), _amount);
      uint256 newBalance_ = stakedToken.balanceOf(address(this));
      addedAmount_ = newBalance_ - previousBalance_;

      user.amount += addedAmount_;
      currentStakedPerPool += addedAmount_;
    }
    _addUserLog(msg.sender, _amount, addedAmount_, pending, true);

    emit UserDeposit(msg.sender, _amount);
  }

  /*
   * @notice Withdraw staked tokens and collect reward tokens
   * @param _amount: amount to withdraw (in rewardToken)
   */
  function withdraw(uint256 _amount) external nonReentrant {
    require(isFrozen() == false, "Withdraw is frozen");
    bool isClaim = _amount == 0;

    UserInfo storage user = userInfo[msg.sender];
    if (withdrawMode == 0 || (withdrawMode == 1 && !isClaim) || (withdrawMode == 2 && isClaim)) {
      require(block.timestamp >= withdrawTime, "Withdraw not available");
      if (enableLockToUser) {
        require(block.timestamp >= user.depositTime + lockDuration, "Global lock");
      }
    }

    // Claim reward
    uint256 pending = getPendingReward(msg.sender);
    if (pending > 0) {
      // If pool mode is non-compound -> transfer rewards to user
      // Otherwise, compound to user amount
      if (canCompound()) {
        user.amount += pending;
        currentStakedPerPool += pending;
        claimedRewardPerPool += pending;
      } else {
        _safeRewardTransfer(address(msg.sender), pending);
      }
      user.lastRewardTime = block.timestamp;
    }

    // Unstake
    if (_amount > 0) {
      require(block.timestamp >= user.depositTime + user.lockDuration, "Locked");

      if (_amount > user.amount) {
        // Exit pool, withdraw all
        _amount = user.amount;
      }
      user.amount -= _amount;
      currentStakedPerPool -= _amount;
      stakedToken.safeTransfer(address(msg.sender), _amount);
    }

    _addUserLog(msg.sender, _amount, 0, pending, false);



    emit UserWithdraw(msg.sender, _amount);
  }



  /*
   * @notice Add user log
   */
  function _addUserLog(
    address _addr,
    uint256 _amount1,
    uint256 _amount2,
    uint256 _amount3,
    bool _isDeposit
  ) private {
    _userLogs.push(UserLog(_addr, _amount1, _amount2, _amount3, _isDeposit, block.timestamp));
  }

  /*
   * @notice Return length of user logs
   */
  function getUserLogLength() external view returns (uint) {
    return _userLogs.length;
  }

  /*
   * @notice View function to get user logs.
   * @param _offset: offset for paging
   * @param _limit: limit for paging
   * @return get users, next offset and total users
   */
  function getUserLogsPaging(uint _offset, uint _limit)
    external
    view
    returns (
      UserLog[] memory users,
      uint nextOffset,
      uint total
    )
  {
    uint totalUsers = _userLogs.length;
    if (_limit == 0) {
      _limit = 1;
    }

    if (_limit > totalUsers - _offset) {
      _limit = totalUsers - _offset;
    }

    UserLog[] memory values = new UserLog[](_limit);
    for (uint i = 0; i < _limit; i++) {
      values[i] = _userLogs[_offset + i];
    }

    return (values, _offset + _limit, totalUsers);
  }

  /*
   * @notice return length of user addresses
   */
  function getUserListLength() external view returns (uint) {
    return userList.length;
  }

  /*
   * @notice View function to get users.
   * @param _offset: offset for paging
   * @param _limit: limit for paging
   * @return get users, next offset and total users
   */
  function getUsersPaging(uint _offset, uint _limit)
    external
    view
    returns (
      UserInfo[] memory users,
      uint nextOffset,
      uint total
    )
  {
    uint totalUsers = userList.length;
    if (_limit == 0) {
      _limit = 1;
    }

    if (_limit > totalUsers - _offset) {
      _limit = totalUsers - _offset;
    }

    UserInfo[] memory values = new UserInfo[](_limit);
    for (uint i = 0; i < _limit; i++) {
      values[i] = userInfo[userList[_offset + i]];
    }

    return (values, _offset + _limit, totalUsers);
  }

  /*
   * @notice isFrozed returns if contract is frozen, user cannot call deposit, withdraw, emergencyWithdraw function
   * If this pool link with another ico project, the pool will be frozen when it's raising
   */
  function isFrozen() public view returns (bool) {
    return block.timestamp >= freezeStartTime && block.timestamp <= freezeEndTime;
  }

  /*
   * @notice Reset user state
   * @dev Needs to be for emergency.
   */
  function resetUserState(
    address _userAddress,
    uint256 _amount,
    uint256 _lastRewardTime,
    uint256 _depositTime,
    uint256 _lockDuration,
    bool _registered
  ) external onlyOwner {
    UserInfo storage user = userInfo[msg.sender];
    user.addr = _userAddress;
    user.amount = _amount;
    user.lastRewardTime = _lastRewardTime;
    user.depositTime = _depositTime;
    user.lockDuration = _lockDuration;
    user.registered = _registered;
  }

  /*
   * @notice Stop rewards
   * @dev Only callable by owner. Needs to be for emergency.
   */
  function emergencyRewardWithdraw(uint256 _amount) external onlyOwner {
    maxRewardPerPool -= _amount;
    rewardToken.safeTransfer(address(msg.sender), _amount);
  }

  /*
   * @dev Update lock to user mode
   */
  function setEnableLockToUser(bool _enable) external onlyOwner {
    enableLockToUser = _enable;
  }

  /*
   * @dev Update lock duration
   */
  function setLockDuration(uint256 _duration) external onlyOwner {
    lockDuration = _duration;
  }

  /*
   * @dev Reset user deposit time
   */
  function resetUserDepositTime(address _user, uint256 _time) external onlyOwner {
    userInfo[_user].depositTime = _time;
  }

  /**
   * @notice It allows the admin to reward tokens
   * @param _amount: amount of tokens
   * @dev This function is only callable by admin.
   */
  function addRewardTokens(uint256 _amount) external onlyOwner {
    // Check real amount to avoid taxed token
    uint256 previousBalance_ = rewardToken.balanceOf(address(this));
    rewardToken.safeTransferFrom(address(msg.sender), address(this), _amount);
    uint256 newBalance_ = rewardToken.balanceOf(address(this));
    uint256 addedAmount_ = newBalance_ - previousBalance_;

    maxRewardPerPool += addedAmount_;
  }

  /*
   * @notice Stop rewards
   * @dev Only callable by owner
   */
  function stopReward() external onlyOwner {
    endTime = block.timestamp;
  }

  /*
   * @notice Stop Freeze
   * @dev Only callable by owner
   */
  function stopFreeze() external onlyOwner {
    freezeStartTime = 0;
    freezeEndTime = 0;
  }

  /*
   * @notice Update pool limit per user
   * @dev Only callable by owner.
   * @param _hasUserLimit: whether the limit remains forced
   * @param _maxStakedPerUser: new pool limit per user
   */
  function updateMaxStakedPerUser(bool _hasUserLimit, uint256 _maxStakedPerUser) external onlyOwner {
    require(hasUserLimit, "Must be set");
    if (_hasUserLimit) {
      require(_maxStakedPerUser > maxStakedPerUser, "New limit must be higher");
      maxStakedPerUser = _maxStakedPerUser;
    } else {
      hasUserLimit = _hasUserLimit;
      maxStakedPerUser = 0;
    }
  }

  /*
   * @notice Update reward per block
   * @dev Only callable by owner.
   * @param _maxStakedPerPool: Max tokens can be staked to this pool
   */
  function updateMaxStakedPerPool(uint256 _maxStakedPerPool) external onlyOwner {
    maxStakedPerPool = _maxStakedPerPool;
  }

  /**
   * @notice It allows the admin to update start and end times
   * @dev This function is only callable by owner.
   * @param _startTime: the new start time
   * @param _endTime: the new end time
   */
  function updateStartAndEndTimes(uint256 _startTime, uint256 _endTime) external onlyOwner {
    require(block.timestamp > endTime, "Pool has started");
    require(_startTime < _endTime, "Invalid start and end time");
    endTime = _endTime;

    if (_startTime > block.timestamp) {
      startTime = _startTime;
    }
    emit NewStartAndEndTimes(_startTime, _endTime);
  }

  /**
   * @notice It allows the admin to update freeze start and end times
   * @dev This function is only callable by owner.
   * @param _freezeStartTime: the new freeze start time
   * @param _freezeEndTime: the new freeze end time
   */
  function updateFreezeTimes(uint256 _freezeStartTime, uint256 _freezeEndTime) external onlyOwner {
    require(_freezeStartTime < _freezeEndTime, "Invalid start and end time");
    require(block.timestamp < _freezeStartTime, "Invalid start and current");

    freezeStartTime = _freezeStartTime;
    freezeEndTime = _freezeEndTime;
    emit NewFreezeTimes(freezeStartTime, freezeEndTime);
  }

  /**
   * @notice Update minimum deposit amount
   * @dev This function is only callable by owner.
   * @param _minDepositAmount: the new minimum deposit amount
   */
  function updateMinDepositAmount(uint256 _minDepositAmount) external onlyOwner {
    minDepositAmount = _minDepositAmount;
  }

  /**
   * @dev Update withdraw config
   * @param _time: time for withdraw
   * @param _mode: withdraw mode
   * 0: Apply withdrawTime to both (stake + reward)
   * 1: Apply withdrawTime to stake
   * 2: Apply withdrawTime to reward
   */
  function updateWithdrawConfig(uint256 _time, uint256 _mode) external onlyOwner {
    withdrawTime = _time;
    withdrawMode = _mode;
  }

  /*
   * @notice Return reward multiplier over the given _from to _to time.
   * @param _from: time to start
   * @param _to: time to finish
   */
  function _getMultiplier(uint256 _from, uint256 _to) private view returns (uint256) {
    if (_from < startTime) _from = startTime;
    if (_to > endTime) _to = endTime;
    if (_from >= _to) return 0;
    return _to - _from;
  }

  /*
   * @notice transfer reward tokens.
   * @param _to: address where tokens will transfer
   * @param _amount: amount of tokens
   */
  function _safeRewardTransfer(address _to, uint256 _amount) private {
    uint256 rewardBal = rewardToken.balanceOf(address(this));
    uint256 remaining = getRemainingReward();
    if (remaining > rewardBal) {
      remaining = rewardBal;
    }

    if (_amount > remaining) {
      claimedRewardPerPool += remaining;
      rewardToken.safeTransfer(_to, remaining);
    } else {
      claimedRewardPerPool += _amount;
      rewardToken.safeTransfer(_to, _amount);
    }
  }
}

File 2 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `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);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 3 of 10 : ReentrancyGuardUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

/**
 * @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 ReentrancyGuardUpgradeable is Initializable {
    // 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;

    function __ReentrancyGuard_init() internal onlyInitializing {
        __ReentrancyGuard_init_unchained();
    }

    function __ReentrancyGuard_init_unchained() internal onlyInitializing {
        _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() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

File 4 of 10 : OwnableUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.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 OwnableUpgradeable is Initializable, ContextUpgradeable {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function __Ownable_init() internal onlyInitializing {
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal onlyInitializing {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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);
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

File 5 of 10 : SafeERC20Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20Upgradeable.sol";
import "../../../utils/AddressUpgradeable.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 SafeERC20Upgradeable {
    using AddressUpgradeable for address;

    function safeTransfer(
        IERC20Upgradeable token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20Upgradeable 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(
        IERC20Upgradeable 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(
        IERC20Upgradeable 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(
        IERC20Upgradeable 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));
        }
    }

    /**
     * @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(IERC20Upgradeable 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");
        }
    }
}

File 6 of 10 : IERC20MetadataUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20Upgradeable.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20MetadataUpgradeable is IERC20Upgradeable {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 7 of 10 : AddressUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library AddressUpgradeable {
    /**
     * @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 functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason 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 {
            // 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 8 of 10 : IERC20Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20Upgradeable {
    /**
     * @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);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 9 of 10 : Initializable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (proxy/utils/Initializable.sol)

pragma solidity ^0.8.0;

import "../../utils/AddressUpgradeable.sol";

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the
 * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() initializer {}
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     */
    bool private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Modifier to protect an initializer function from being invoked twice.
     */
    modifier initializer() {
        // If the contract is initializing we ignore whether _initialized is set in order to support multiple
        // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the
        // contract may have been reentered.
        require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} modifier, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    function _isConstructor() private view returns (bool) {
        return !AddressUpgradeable.isContract(address(this));
    }
}

File 10 of 10 : ContextUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

/**
 * @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 ContextUpgradeable is Initializable {
    function __Context_init() internal onlyInitializing {
    }

    function __Context_init_unchained() internal onlyInitializing {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"freezeStartTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"freezeEndTime","type":"uint256"}],"name":"NewFreezeTimes","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"NewStartAndEndTimes","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":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Received","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UserDeposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UserWithdraw","type":"event"},{"inputs":[],"name":"SECONDS_YEAR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20MetadataUpgradeable","name":"_stakedToken","type":"address"},{"internalType":"contract IERC20MetadataUpgradeable","name":"_rewardToken","type":"address"},{"internalType":"uint256","name":"_maxStakedPerPool","type":"uint256"},{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"},{"internalType":"uint256","name":"_maxStakedPerUser","type":"uint256"},{"internalType":"uint256","name":"_minDepositAmount","type":"uint256"},{"internalType":"uint256","name":"_withdrawTime","type":"uint256"},{"internalType":"uint256","name":"_withdrawMode","type":"uint256"},{"internalType":"uint256","name":"_fixedAPY","type":"uint256"},{"internalType":"bool","name":"_isAutoCompound","type":"bool"},{"internalType":"address","name":"_admin","type":"address"}],"name":"__Staking_init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"addRewardTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"canCompound","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimedRewardPerPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentStakedPerPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"emergencyRewardWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"emergencyWithdrawEthBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"emergencyWithdrawTokenBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableLockToUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pAccount","type":"address"},{"internalType":"bool","name":"_pStatus","type":"bool"}],"name":"fSetOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fixedAPY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEthBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getPendingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRemainingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"getTokenBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUserListLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUserLogLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_offset","type":"uint256"},{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"getUserLogsPaging","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount1","type":"uint256"},{"internalType":"uint256","name":"amount2","type":"uint256"},{"internalType":"uint256","name":"amount3","type":"uint256"},{"internalType":"bool","name":"isDeposit","type":"bool"},{"internalType":"uint256","name":"logTime","type":"uint256"}],"internalType":"struct Staking.UserLog[]","name":"users","type":"tuple[]"},{"internalType":"uint256","name":"nextOffset","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_offset","type":"uint256"},{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"getUsersPaging","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"lastRewardTime","type":"uint256"},{"internalType":"uint256","name":"depositTime","type":"uint256"},{"internalType":"uint256","name":"lockDuration","type":"uint256"},{"internalType":"bool","name":"registered","type":"bool"}],"internalType":"struct Staking.UserInfo[]","name":"users","type":"tuple[]"},{"internalType":"uint256","name":"nextOffset","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasUserLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAutoCompound","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxRewardPerPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxStakedPerPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxStakedPerUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minDepositAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"resetUserDepositTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_userAddress","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_lastRewardTime","type":"uint256"},{"internalType":"uint256","name":"_depositTime","type":"uint256"},{"internalType":"uint256","name":"_lockDuration","type":"uint256"},{"internalType":"bool","name":"_registered","type":"bool"}],"name":"resetUserState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"contract IERC20MetadataUpgradeable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_mode","type":"bool"}],"name":"setCompound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"setEnableLockToUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"setLockDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakedToken","outputs":[{"internalType":"contract IERC20MetadataUpgradeable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stopFreeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freezeStartTime","type":"uint256"},{"internalType":"uint256","name":"_freezeEndTime","type":"uint256"}],"name":"updateFreezeTimes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxStakedPerPool","type":"uint256"}],"name":"updateMaxStakedPerPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_hasUserLimit","type":"bool"},{"internalType":"uint256","name":"_maxStakedPerUser","type":"uint256"}],"name":"updateMaxStakedPerUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minDepositAmount","type":"uint256"}],"name":"updateMinDepositAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"}],"name":"updateStartAndEndTimes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"},{"internalType":"uint256","name":"_mode","type":"uint256"}],"name":"updateWithdrawConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"lastRewardTime","type":"uint256"},{"internalType":"uint256","name":"depositTime","type":"uint256"},{"internalType":"uint256","name":"lockDuration","type":"uint256"},{"internalType":"bool","name":"registered","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"userList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801561001057600080fd5b50613195806100206000396000f3fe60806040526004361061037a5760003560e01c806374abeb81116101d15780639f4216e811610102578063c0b5fca0116100a0578063ec8079d31161006f578063ec8079d314610a43578063f2fde38b14610a58578063f7c618c114610a78578063f9eabbfd14610a9857600080fd5b8063c0b5fca0146109d8578063c0e5dc99146109ed578063cc7a262e14610a03578063d496c3d614610a2357600080fd5b8063af68264a116100dc578063af68264a14610968578063b6b55f2514610982578063becfed34146109a2578063bf9d90c0146109b857600080fd5b80639f4216e814610910578063a62d5f2614610930578063abfdc73b1461094857600080fd5b80638820690b1161016f5780638da5cb5b116101495780638da5cb5b1461087f57806392e8990e146108b15780639a6b97ca146108cb5780639f34a156146108fa57600080fd5b80638820690b1461083057806389c4cba5146108455780638ce0358f1461086557600080fd5b806380dc0672116101ab57806380dc0672146107c5578063811e0ea6146107da57806383101814146107f0578063847802051461081057600080fd5b806374abeb811461076f5780637753b22c1461078f57806378e97925146107af57600080fd5b806340dd81a0116102ab57806358eb9700116102495780636d70f7ae116102235780636d70f7ae146106f757806370ed0ada14610727578063715018a61461073a57806372b7d6211461074f57600080fd5b806358eb9700146106a1578063645006ca146106c1578063657e8737146106d757600080fd5b80634df9d6ba116102855780634df9d6ba146106215780634eb665af146106415780635329dc0a1461066157806355b3cc751461068157600080fd5b806340dd81a0146105e057806345cb3dde146105f557806348c9eaaf1461060b57600080fd5b80632d00b587116103185780633279beab116102f25780633279beab1461056557806333eeb147146105855780633aecd0e3146105aa5780633eb6f329146105ca57600080fd5b80632d00b587146105195780632e1a7d4d1461052f5780633197cbb61461054f57600080fd5b8063105249f711610354578063105249f71461041c578063153074931461043257806318c882e6146104545780631959a0021461048357600080fd5b806303b12eb2146103c857806304554443146103f157806305fe2fc11461040757600080fd5b366103c3577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f8852587433604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103d457600080fd5b506103de609e5481565b6040519081526020015b60405180910390f35b3480156103fd57600080fd5b506103de60ac5481565b34801561041357600080fd5b50609a546103de565b34801561042857600080fd5b506103de609d5481565b34801561043e57600080fd5b5061045261044d366004612e7a565b610ab8565b005b34801561046057600080fd5b5061047461046f366004612e7a565b610af6565b6040516103e893929190612f48565b34801561048f57600080fd5b506104e061049e366004612c2c565b6099602052600090815260409020805460018201546002830154600384015460048501546005909501546001600160a01b039094169492939192909160ff1686565b604080516001600160a01b03909716875260208701959095529385019290925260608401526080830152151560a082015260c0016103e8565b34801561052557600080fd5b506103de60aa5481565b34801561053b57600080fd5b5061045261054a366004612e4a565b610cbe565b34801561055b57600080fd5b506103de60a55481565b34801561057157600080fd5b50610452610580366004612e4a565b610fcd565b34801561059157600080fd5b5061059a611028565b60405190151581526020016103e8565b3480156105b657600080fd5b506103de6105c5366004612c2c565b611043565b3480156105d657600080fd5b506103de60a05481565b3480156105ec57600080fd5b50609b546103de565b34801561060157600080fd5b506103de60a95481565b34801561061757600080fd5b506103de60a15481565b34801561062d57600080fd5b506103de61063c366004612c2c565b6110c6565b34801561064d57600080fd5b5061045261065c366004612e4a565b6111ef565b34801561066d57600080fd5b5061045261067c366004612e7a565b61121e565b34801561068d57600080fd5b5061045261069c366004612e7a565b61132e565b3480156106ad57600080fd5b506104526106bc366004612e4a565b611434565b3480156106cd57600080fd5b506103de60a85481565b3480156106e357600080fd5b506104526106f2366004612d48565b61159e565b34801561070357600080fd5b5061059a610712366004612c2c565b60ad6020526000908152604090205460ff1681565b34801561073357600080fd5b50476103de565b34801561074657600080fd5b506104526115db565b34801561075b57600080fd5b5061045261076a366004612c48565b611611565b34801561077b57600080fd5b5061045261078a366004612e4a565b6116c7565b34801561079b57600080fd5b506104526107aa366004612c88565b6116f6565b3480156107bb57600080fd5b506103de60a45481565b3480156107d157600080fd5b506104526117a2565b3480156107e657600080fd5b506103de60a35481565b3480156107fc57600080fd5b5061045261080b366004612cc0565b6117d2565b34801561081c57600080fd5b5061045261082b366004612e4a565b61181b565b34801561083c57600080fd5b5061045261184a565b34801561085157600080fd5b50610452610860366004612cc0565b611880565b34801561087157600080fd5b5060ab5461059a9060ff1681565b34801561088b57600080fd5b506033546001600160a01b03165b6040516001600160a01b0390911681526020016103e8565b3480156108bd57600080fd5b50609f5461059a9060ff1681565b3480156108d757600080fd5b506108eb6108e6366004612e7a565b611928565b6040516103e893929190612eb7565b34801561090657600080fd5b506103de60a65481565b34801561091c57600080fd5b5061089961092b366004612e4a565b611ae8565b34801561093c57600080fd5b506103de6301e1338081565b34801561095457600080fd5b50610452610963366004612d48565b611b12565b34801561097457600080fd5b5060a25461059a9060ff1681565b34801561098e57600080fd5b5061045261099d366004612e4a565b611b4f565b3480156109ae57600080fd5b506103de60a75481565b3480156109c457600080fd5b506104526109d3366004612d80565b611fe0565b3480156109e457600080fd5b506103de6120c0565b3480156109f957600080fd5b506103de609c5481565b348015610a0f57600080fd5b50609854610899906001600160a01b031681565b348015610a2f57600080fd5b50610452610a3e366004612d9d565b6120e4565b348015610a4f57600080fd5b5061059a612294565b348015610a6457600080fd5b50610452610a73366004612c2c565b6122bc565b348015610a8457600080fd5b50609754610899906001600160a01b031681565b348015610aa457600080fd5b50610452610ab3366004612ceb565b612354565b6033546001600160a01b03163314610aeb5760405162461bcd60e51b8152600401610ae290612ff1565b60405180910390fd5b60a99190915560aa55565b609b54606090600090819084610b0b57600194505b610b1586826130c8565b851115610b2957610b2686826130c8565b94505b60008567ffffffffffffffff811115610b5257634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610bc757816020015b610bb46040518060c0016040528060006001600160a01b03168152602001600081526020016000815260200160008152602001600015158152602001600081525090565b815260200190600190039081610b705790505b50905060005b86811015610ca257609b610be1828a613071565b81548110610bff57634e487b7160e01b600052603260045260246000fd5b60009182526020918290206040805160c081018252600690930290910180546001600160a01b0316835260018101549383019390935260028301549082015260038201546060820152600482015460ff161515608082015260059091015460a08201528251839083908110610c8457634e487b7160e01b600052603260045260246000fd5b60200260200101819052508080610c9a9061310b565b915050610bcd565b5080610cae8789613071565b8394509450945050509250925092565b60026065541415610d115760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ae2565b6002606555610d1e611028565b15610d605760405162461bcd60e51b81526020600482015260126024820152712bb4ba34323930bb9034b990333937bd32b760711b6044820152606401610ae2565b33600090815260996020526040902060aa54821591901580610d8d575060aa546001148015610d8d575081155b80610da2575060aa546002148015610da25750815b15610e4c5760a954421015610df25760405162461bcd60e51b81526020600482015260166024820152755769746864726177206e6f7420617661696c61626c6560501b6044820152606401610ae2565b60ab5460ff1615610e4c5760ac548160030154610e0f9190613071565b421015610e4c5760405162461bcd60e51b815260206004820152600b60248201526a476c6f62616c206c6f636b60a81b6044820152606401610ae2565b6000610e57336110c6565b90508015610ece57610e67612294565b15610ebd5780826001016000828254610e809190613071565b925050819055508060a36000828254610e999190613071565b9250508190555080609d6000828254610eb29190613071565b90915550610ec79050565b610ec733826123db565b4260028301555b8315610f7d5781600401548260030154610ee89190613071565b421015610f205760405162461bcd60e51b8152602060048201526006602482015265131bd8dad95960d21b6044820152606401610ae2565b8160010154841115610f3457816001015493505b83826001016000828254610f4891906130c8565b925050819055508360a36000828254610f6191906130c8565b9091555050609854610f7d906001600160a01b031633866124df565b610f8c33856000846000612542565b60405184815233907f98824d89d47225910d3e61aa38b640d29d58b43e2dc47b4d986a588c88e0a2a8906020015b60405180910390a2505060016065555050565b6033546001600160a01b03163314610ff75760405162461bcd60e51b8152600401610ae290612ff1565b80609c600082825461100991906130c8565b9091555050609754611025906001600160a01b031633836124df565b50565b600060a654421015801561103e575060a7544211155b905090565b6040516370a0823160e01b815230600482015260009082906001600160a01b038216906370a082319060240160206040518083038186803b15801561108757600080fd5b505afa15801561109b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110bf9190612e62565b9392505050565b6001600160a01b038116600090815260996020526040812060028101548290421180156110f4575060a35415155b156110bf57600061110983600201544261269c565b90508061111b57506000949350505050565b611123612294565b156111ab5760006111806127106301e13380670de0b6b3a764000060a15461114b91906130a9565b6111559190613089565b61115f9190613089565b61117190670de0b6b3a7640000613071565b83670de0b6b3a76400006126e0565b90506111a38460010154670de0b6b3a76400008361119e91906130c8565b61279d565b9250506111e7565b6127106301e133808260a15486600101546111c691906130a9565b6111d091906130a9565b6111da9190613089565b6111e49190613089565b91505b509392505050565b6033546001600160a01b031633146112195760405162461bcd60e51b8152600401610ae290612ff1565b60ac55565b6033546001600160a01b031633146112485760405162461bcd60e51b8152600401610ae290612ff1565b8082106112975760405162461bcd60e51b815260206004820152601a60248201527f496e76616c696420737461727420616e6420656e642074696d650000000000006044820152606401610ae2565b8142106112e65760405162461bcd60e51b815260206004820152601960248201527f496e76616c696420737461727420616e642063757272656e74000000000000006044820152606401610ae2565b60a682905560a781905560408051838152602081018390527f7a093fb6822f521f3b4da347f88036b933cd270d82ccc3a57b9e7e74c17f3b2991015b60405180910390a15050565b6033546001600160a01b031633146113585760405162461bcd60e51b8152600401610ae290612ff1565b60a554421161139c5760405162461bcd60e51b815260206004820152601060248201526f141bdbdb081a185cc81cdd185c9d195960821b6044820152606401610ae2565b8082106113eb5760405162461bcd60e51b815260206004820152601a60248201527f496e76616c696420737461727420616e6420656e642074696d650000000000006044820152606401610ae2565b60a5819055428211156113fe5760a48290555b60408051838152602081018390527fa536964ea59c734a26415fc574cf722afc526e94547abf6af36b26d3efcae1f99101611322565b6033546001600160a01b0316331461145e5760405162461bcd60e51b8152600401610ae290612ff1565b6097546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156114a257600080fd5b505afa1580156114b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114da9190612e62565b6097549091506114f5906001600160a01b03163330856127d7565b6097546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561153957600080fd5b505afa15801561154d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115719190612e62565b9050600061157f83836130c8565b905080609c60008282546115939190613071565b909155505050505050565b6033546001600160a01b031633146115c85760405162461bcd60e51b8152600401610ae290612ff1565b60ab805460ff1916911515919091179055565b6033546001600160a01b031633146116055760405162461bcd60e51b8152600401610ae290612ff1565b61160f600061280f565b565b6033546001600160a01b0316331461163b5760405162461bcd60e51b8152600401610ae290612ff1565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284919082169063a9059cbb90604401602060405180830381600087803b15801561168857600080fd5b505af115801561169c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c09190612d64565b5050505050565b6033546001600160a01b031633146116f15760405162461bcd60e51b8152600401610ae290612ff1565b609e55565b6033546001600160a01b031633146117205760405162461bcd60e51b8152600401610ae290612ff1565b6001600160a01b038216600090815260ad602052604090205460ff16151581151514156117775760405162461bcd60e51b8152602060048201526005602482015264105919195960da1b6044820152606401610ae2565b6001600160a01b0391909116600090815260ad60205260409020805460ff1916911515919091179055565b6033546001600160a01b031633146117cc5760405162461bcd60e51b8152600401610ae290612ff1565b4260a555565b6033546001600160a01b031633146117fc5760405162461bcd60e51b8152600401610ae290612ff1565b6001600160a01b03909116600090815260996020526040902060030155565b6033546001600160a01b031633146118455760405162461bcd60e51b8152600401610ae290612ff1565b60a855565b6033546001600160a01b031633146118745760405162461bcd60e51b8152600401610ae290612ff1565b600060a681905560a755565b6033546001600160a01b031633146118aa5760405162461bcd60e51b8152600401610ae290612ff1565b6001600160a01b0382166118ed5760405162461bcd60e51b815260206004820152600a602482015269496e76616c696420746f60b01b6044820152606401610ae2565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611923573d6000803e3d6000fd5b505050565b609a5460609060009081908461193d57600194505b61194786826130c8565b85111561195b5761195886826130c8565b94505b60008567ffffffffffffffff81111561198457634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156119f957816020015b6119e66040518060c0016040528060006001600160a01b03168152602001600081526020016000815260200160008152602001600081526020016000151581525090565b8152602001906001900390816119a25790505b50905060005b86811015610ca25760996000609a611a17848c613071565b81548110611a3557634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b039081168452838201949094526040928301909120825160c0810184528154909416845260018101549184019190915260028101549183019190915260038101546060830152600481015460808301526005015460ff16151560a08201528251839083908110611aca57634e487b7160e01b600052603260045260246000fd5b60200260200101819052508080611ae09061310b565b9150506119ff565b609a8181548110611af857600080fd5b6000918252602090912001546001600160a01b0316905081565b6033546001600160a01b03163314611b3c5760405162461bcd60e51b8152600401610ae290612ff1565b60a2805460ff1916911515919091179055565b60026065541415611ba25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ae2565b6002606555611baf611028565b15611bf05760405162461bcd60e51b81526020600482015260116024820152702232b837b9b4ba1034b990333937bd32b760791b6044820152606401610ae2565b609e5415611c5757609e548160a354611c099190613071565b1115611c575760405162461bcd60e51b815260206004820152601860248201527f457863656564206d6178207374616b656420746f6b656e7300000000000000006044820152606401610ae2565b33600090815260996020526040902060a8546001820154611c79908490613071565b1015611cc75760405162461bcd60e51b815260206004820152601960248201527f5573657220616d6f756e742062656c6f77206d696e696d756d000000000000006044820152606401610ae2565b609f5460ff1615611d325760a0546001820154611ce49084613071565b1115611d325760405162461bcd60e51b815260206004820152601760248201527f5573657220616d6f756e742061626f7665206c696d69740000000000000000006044820152606401610ae2565b426003820155600181015460009015611dca57611d4e336110c6565b90508015611dc557611d5e612294565b15611db45780826001016000828254611d779190613071565b925050819055508060a36000828254611d909190613071565b9250508190555080609d6000828254611da99190613071565b90915550611dbe9050565b611dbe33826123db565b4260028301555b611e42565b600582015460ff16611e4257609a80546001808201835560009283527f44da158ba27f9252712a74ff6a55c5d531f69609f1f6e7f17c4443a8e2089be49091018054336001600160a01b0319918216811790925560058601805460ff1916909317909255845490911617835542600284015560048301555b60008315611fa0576098546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015611e8e57600080fd5b505afa158015611ea2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec69190612e62565b609854909150611ee1906001600160a01b03163330886127d7565b6098546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015611f2557600080fd5b505afa158015611f39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f5d9190612e62565b9050611f6982826130c8565b925082856001016000828254611f7f9190613071565b925050819055508260a36000828254611f989190613071565b909155505050505b611fae338583856001612542565b60405184815233907f35db3d768e685509e031bae369804ca7dc6656af739e079f1d3312cadc7b19d890602001610fba565b6033546001600160a01b0316331461200a5760405162461bcd60e51b8152600401610ae290612ff1565b609f5460ff1661204a5760405162461bcd60e51b815260206004820152600b60248201526a135d5cdd081899481cd95d60aa1b6044820152606401610ae2565b81156120a75760a05481116120a15760405162461bcd60e51b815260206004820152601860248201527f4e6577206c696d6974206d7573742062652068696768657200000000000000006044820152606401610ae2565b60a05550565b609f805483151560ff19909116179055600060a0555050565b6000609d54609c5411156120de57609d54609c5461103e91906130c8565b50600090565b600054610100900460ff166120ff5760005460ff1615612103565b303b155b6121665760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610ae2565b600054610100900460ff16158015612188576000805461ffff19166101011790555b612190612861565b612198612890565b8c609860006101000a8154816001600160a01b0302191690836001600160a01b031602179055508b609760006101000a8154816001600160a01b0302191690836001600160a01b031602179055508a609e819055508360a1819055508260a260006101000a81548160ff0219169083151502179055508960a4819055508860a5819055508660a8819055508560a9819055508460aa81905550600088111561224d57609f805460ff1916600117905560a08890555b6001600160a01b038216331461226657612266826122bc565b60ab805460ff191660011790558015612285576000805461ff00191690555b50505050505050505050505050565b6097546098546000916001600160a01b03918216911614801561103e57505060a25460ff1690565b6033546001600160a01b031633146122e65760405162461bcd60e51b8152600401610ae290612ff1565b6001600160a01b03811661234b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ae2565b6110258161280f565b6033546001600160a01b0316331461237e5760405162461bcd60e51b8152600401610ae290612ff1565b33600090815260996020526040902080546001600160a01b0319166001600160a01b039790971696909617865560018601949094556002850192909255600384015560048301556005909101805460ff1916911515919091179055565b6097546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561241f57600080fd5b505afa158015612433573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124579190612e62565b905060006124636120c0565b9050818111156124705750805b808311156124ab5780609d600082825461248a9190613071565b90915550506097546124a6906001600160a01b031685836124df565b6124d9565b82609d60008282546124bd9190613071565b90915550506097546124d9906001600160a01b031685856124df565b50505050565b6040516001600160a01b03831660248201526044810182905261192390849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526128bf565b6040805160c0810182526001600160a01b0396871681526020810195865290810193845260608101928352901515608082019081524260a08301908152609b805460018101825560009190915292517fbba9db4cdbea0a37c207bbb83e20f828cd4441c49891101dc94fd20dc8efc349600690940293840180546001600160a01b031916919098161790965593517fbba9db4cdbea0a37c207bbb83e20f828cd4441c49891101dc94fd20dc8efc34a82015591517fbba9db4cdbea0a37c207bbb83e20f828cd4441c49891101dc94fd20dc8efc34b830155517fbba9db4cdbea0a37c207bbb83e20f828cd4441c49891101dc94fd20dc8efc34c82015590517fbba9db4cdbea0a37c207bbb83e20f828cd4441c49891101dc94fd20dc8efc34d8201805460ff191691151591909117905590517fbba9db4cdbea0a37c207bbb83e20f828cd4441c49891101dc94fd20dc8efc34e90910155565b600060a4548310156126ae5760a45492505b60a5548211156126be5760a55491505b8183106126cd575060006126da565b6126d783836130c8565b90505b92915050565b6000838015612780576001841680156126fb578592506126ff565b8392505b50600283046002850494505b841561277a57858602868782041461272257600080fd5b8181018181101561273257600080fd5b859004965050600185161561276f57858302838782041415871515161561275857600080fd5b8181018181101561276857600080fd5b8590049350505b60028504945061270b565b506111e7565b8380156127905760009250612794565b8392505b50509392505050565b6000670de0b6b3a76400006127cd6127b58585612991565b6127c86002670de0b6b3a7640000613089565b6129f8565b6126d79190613089565b6040516001600160a01b03808516602483015283166044820152606481018290526124d99085906323b872dd60e01b9060840161250b565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff166128885760405162461bcd60e51b8152600401610ae290613026565b61160f612a4d565b600054610100900460ff166128b75760405162461bcd60e51b8152600401610ae290613026565b61160f612a7d565b6000612914826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612aab9092919063ffffffff16565b80519091501561192357808060200190518101906129329190612d64565b6119235760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610ae2565b60008115806129b5575082826129a781836130a9565b92506129b39083613089565b145b6126da5760405162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6d756c2d6f766572666c6f7760601b6044820152606401610ae2565b600082612a058382613071565b91508110156126da5760405162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6164642d6f766572666c6f7760601b6044820152606401610ae2565b600054610100900460ff16612a745760405162461bcd60e51b8152600401610ae290613026565b61160f3361280f565b600054610100900460ff16612aa45760405162461bcd60e51b8152600401610ae290613026565b6001606555565b6060612aba8484600085612ac2565b949350505050565b606082471015612b235760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610ae2565b6001600160a01b0385163b612b7a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610ae2565b600080866001600160a01b03168587604051612b969190612e9b565b60006040518083038185875af1925050503d8060008114612bd3576040519150601f19603f3d011682016040523d82523d6000602084013e612bd8565b606091505b5091509150612be8828286612bf3565b979650505050505050565b60608315612c025750816110bf565b825115612c125782518084602001fd5b8160405162461bcd60e51b8152600401610ae29190612fbe565b600060208284031215612c3d578081fd5b81356110bf8161313c565b600080600060608486031215612c5c578182fd5b8335612c678161313c565b92506020840135612c778161313c565b929592945050506040919091013590565b60008060408385031215612c9a578182fd5b8235612ca58161313c565b91506020830135612cb581613151565b809150509250929050565b60008060408385031215612cd2578182fd5b8235612cdd8161313c565b946020939093013593505050565b60008060008060008060c08789031215612d03578182fd5b8635612d0e8161313c565b95506020870135945060408701359350606087013592506080870135915060a0870135612d3a81613151565b809150509295509295509295565b600060208284031215612d59578081fd5b81356110bf81613151565b600060208284031215612d75578081fd5b81516110bf81613151565b60008060408385031215612d92578182fd5b8235612cdd81613151565b6000806000806000806000806000806000806101808d8f031215612dbf578586fd5b8c35612dca8161313c565b9b5060208d0135612dda8161313c565b9a5060408d0135995060608d0135985060808d0135975060a08d0135965060c08d0135955060e08d013594506101008d013593506101208d013592506101408d0135612e2581613151565b91506101608d0135612e368161313c565b809150509295989b509295989b509295989b565b600060208284031215612e5b578081fd5b5035919050565b600060208284031215612e73578081fd5b5051919050565b60008060408385031215612e8c578182fd5b50508035926020909101359150565b60008251612ead8184602087016130df565b9190910192915050565b6060808252845182820181905260009190608090818501906020808a01865b83811015612f2d57815180516001600160a01b031686528381015184870152604080820151908701528781015188870152868101518787015260a09081015115159086015260c09094019390820190600101612ed6565b50508601979097526040909401949094525090949350505050565b6060808252845182820181905260009190608090818501906020808a01865b83811015612f2d57815180516001600160a01b0316865283810151848701526040808201519087015287810151888701528681015115158787015260a0908101519086015260c09094019390820190600101612f67565b6020815260008251806020840152612fdd8160408501602087016130df565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6000821982111561308457613084613126565b500190565b6000826130a457634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156130c3576130c3613126565b500290565b6000828210156130da576130da613126565b500390565b60005b838110156130fa5781810151838201526020016130e2565b838111156124d95750506000910152565b600060001982141561311f5761311f613126565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461102557600080fd5b801515811461102557600080fdfea264697066735822122057998f1dd5fa0779805c1333b678bbfd66c3f4fa5ca404a545331f6d7674b14f64736f6c63430008040033

Deployed Bytecode

0x60806040526004361061037a5760003560e01c806374abeb81116101d15780639f4216e811610102578063c0b5fca0116100a0578063ec8079d31161006f578063ec8079d314610a43578063f2fde38b14610a58578063f7c618c114610a78578063f9eabbfd14610a9857600080fd5b8063c0b5fca0146109d8578063c0e5dc99146109ed578063cc7a262e14610a03578063d496c3d614610a2357600080fd5b8063af68264a116100dc578063af68264a14610968578063b6b55f2514610982578063becfed34146109a2578063bf9d90c0146109b857600080fd5b80639f4216e814610910578063a62d5f2614610930578063abfdc73b1461094857600080fd5b80638820690b1161016f5780638da5cb5b116101495780638da5cb5b1461087f57806392e8990e146108b15780639a6b97ca146108cb5780639f34a156146108fa57600080fd5b80638820690b1461083057806389c4cba5146108455780638ce0358f1461086557600080fd5b806380dc0672116101ab57806380dc0672146107c5578063811e0ea6146107da57806383101814146107f0578063847802051461081057600080fd5b806374abeb811461076f5780637753b22c1461078f57806378e97925146107af57600080fd5b806340dd81a0116102ab57806358eb9700116102495780636d70f7ae116102235780636d70f7ae146106f757806370ed0ada14610727578063715018a61461073a57806372b7d6211461074f57600080fd5b806358eb9700146106a1578063645006ca146106c1578063657e8737146106d757600080fd5b80634df9d6ba116102855780634df9d6ba146106215780634eb665af146106415780635329dc0a1461066157806355b3cc751461068157600080fd5b806340dd81a0146105e057806345cb3dde146105f557806348c9eaaf1461060b57600080fd5b80632d00b587116103185780633279beab116102f25780633279beab1461056557806333eeb147146105855780633aecd0e3146105aa5780633eb6f329146105ca57600080fd5b80632d00b587146105195780632e1a7d4d1461052f5780633197cbb61461054f57600080fd5b8063105249f711610354578063105249f71461041c578063153074931461043257806318c882e6146104545780631959a0021461048357600080fd5b806303b12eb2146103c857806304554443146103f157806305fe2fc11461040757600080fd5b366103c3577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f8852587433604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103d457600080fd5b506103de609e5481565b6040519081526020015b60405180910390f35b3480156103fd57600080fd5b506103de60ac5481565b34801561041357600080fd5b50609a546103de565b34801561042857600080fd5b506103de609d5481565b34801561043e57600080fd5b5061045261044d366004612e7a565b610ab8565b005b34801561046057600080fd5b5061047461046f366004612e7a565b610af6565b6040516103e893929190612f48565b34801561048f57600080fd5b506104e061049e366004612c2c565b6099602052600090815260409020805460018201546002830154600384015460048501546005909501546001600160a01b039094169492939192909160ff1686565b604080516001600160a01b03909716875260208701959095529385019290925260608401526080830152151560a082015260c0016103e8565b34801561052557600080fd5b506103de60aa5481565b34801561053b57600080fd5b5061045261054a366004612e4a565b610cbe565b34801561055b57600080fd5b506103de60a55481565b34801561057157600080fd5b50610452610580366004612e4a565b610fcd565b34801561059157600080fd5b5061059a611028565b60405190151581526020016103e8565b3480156105b657600080fd5b506103de6105c5366004612c2c565b611043565b3480156105d657600080fd5b506103de60a05481565b3480156105ec57600080fd5b50609b546103de565b34801561060157600080fd5b506103de60a95481565b34801561061757600080fd5b506103de60a15481565b34801561062d57600080fd5b506103de61063c366004612c2c565b6110c6565b34801561064d57600080fd5b5061045261065c366004612e4a565b6111ef565b34801561066d57600080fd5b5061045261067c366004612e7a565b61121e565b34801561068d57600080fd5b5061045261069c366004612e7a565b61132e565b3480156106ad57600080fd5b506104526106bc366004612e4a565b611434565b3480156106cd57600080fd5b506103de60a85481565b3480156106e357600080fd5b506104526106f2366004612d48565b61159e565b34801561070357600080fd5b5061059a610712366004612c2c565b60ad6020526000908152604090205460ff1681565b34801561073357600080fd5b50476103de565b34801561074657600080fd5b506104526115db565b34801561075b57600080fd5b5061045261076a366004612c48565b611611565b34801561077b57600080fd5b5061045261078a366004612e4a565b6116c7565b34801561079b57600080fd5b506104526107aa366004612c88565b6116f6565b3480156107bb57600080fd5b506103de60a45481565b3480156107d157600080fd5b506104526117a2565b3480156107e657600080fd5b506103de60a35481565b3480156107fc57600080fd5b5061045261080b366004612cc0565b6117d2565b34801561081c57600080fd5b5061045261082b366004612e4a565b61181b565b34801561083c57600080fd5b5061045261184a565b34801561085157600080fd5b50610452610860366004612cc0565b611880565b34801561087157600080fd5b5060ab5461059a9060ff1681565b34801561088b57600080fd5b506033546001600160a01b03165b6040516001600160a01b0390911681526020016103e8565b3480156108bd57600080fd5b50609f5461059a9060ff1681565b3480156108d757600080fd5b506108eb6108e6366004612e7a565b611928565b6040516103e893929190612eb7565b34801561090657600080fd5b506103de60a65481565b34801561091c57600080fd5b5061089961092b366004612e4a565b611ae8565b34801561093c57600080fd5b506103de6301e1338081565b34801561095457600080fd5b50610452610963366004612d48565b611b12565b34801561097457600080fd5b5060a25461059a9060ff1681565b34801561098e57600080fd5b5061045261099d366004612e4a565b611b4f565b3480156109ae57600080fd5b506103de60a75481565b3480156109c457600080fd5b506104526109d3366004612d80565b611fe0565b3480156109e457600080fd5b506103de6120c0565b3480156109f957600080fd5b506103de609c5481565b348015610a0f57600080fd5b50609854610899906001600160a01b031681565b348015610a2f57600080fd5b50610452610a3e366004612d9d565b6120e4565b348015610a4f57600080fd5b5061059a612294565b348015610a6457600080fd5b50610452610a73366004612c2c565b6122bc565b348015610a8457600080fd5b50609754610899906001600160a01b031681565b348015610aa457600080fd5b50610452610ab3366004612ceb565b612354565b6033546001600160a01b03163314610aeb5760405162461bcd60e51b8152600401610ae290612ff1565b60405180910390fd5b60a99190915560aa55565b609b54606090600090819084610b0b57600194505b610b1586826130c8565b851115610b2957610b2686826130c8565b94505b60008567ffffffffffffffff811115610b5257634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610bc757816020015b610bb46040518060c0016040528060006001600160a01b03168152602001600081526020016000815260200160008152602001600015158152602001600081525090565b815260200190600190039081610b705790505b50905060005b86811015610ca257609b610be1828a613071565b81548110610bff57634e487b7160e01b600052603260045260246000fd5b60009182526020918290206040805160c081018252600690930290910180546001600160a01b0316835260018101549383019390935260028301549082015260038201546060820152600482015460ff161515608082015260059091015460a08201528251839083908110610c8457634e487b7160e01b600052603260045260246000fd5b60200260200101819052508080610c9a9061310b565b915050610bcd565b5080610cae8789613071565b8394509450945050509250925092565b60026065541415610d115760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ae2565b6002606555610d1e611028565b15610d605760405162461bcd60e51b81526020600482015260126024820152712bb4ba34323930bb9034b990333937bd32b760711b6044820152606401610ae2565b33600090815260996020526040902060aa54821591901580610d8d575060aa546001148015610d8d575081155b80610da2575060aa546002148015610da25750815b15610e4c5760a954421015610df25760405162461bcd60e51b81526020600482015260166024820152755769746864726177206e6f7420617661696c61626c6560501b6044820152606401610ae2565b60ab5460ff1615610e4c5760ac548160030154610e0f9190613071565b421015610e4c5760405162461bcd60e51b815260206004820152600b60248201526a476c6f62616c206c6f636b60a81b6044820152606401610ae2565b6000610e57336110c6565b90508015610ece57610e67612294565b15610ebd5780826001016000828254610e809190613071565b925050819055508060a36000828254610e999190613071565b9250508190555080609d6000828254610eb29190613071565b90915550610ec79050565b610ec733826123db565b4260028301555b8315610f7d5781600401548260030154610ee89190613071565b421015610f205760405162461bcd60e51b8152602060048201526006602482015265131bd8dad95960d21b6044820152606401610ae2565b8160010154841115610f3457816001015493505b83826001016000828254610f4891906130c8565b925050819055508360a36000828254610f6191906130c8565b9091555050609854610f7d906001600160a01b031633866124df565b610f8c33856000846000612542565b60405184815233907f98824d89d47225910d3e61aa38b640d29d58b43e2dc47b4d986a588c88e0a2a8906020015b60405180910390a2505060016065555050565b6033546001600160a01b03163314610ff75760405162461bcd60e51b8152600401610ae290612ff1565b80609c600082825461100991906130c8565b9091555050609754611025906001600160a01b031633836124df565b50565b600060a654421015801561103e575060a7544211155b905090565b6040516370a0823160e01b815230600482015260009082906001600160a01b038216906370a082319060240160206040518083038186803b15801561108757600080fd5b505afa15801561109b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110bf9190612e62565b9392505050565b6001600160a01b038116600090815260996020526040812060028101548290421180156110f4575060a35415155b156110bf57600061110983600201544261269c565b90508061111b57506000949350505050565b611123612294565b156111ab5760006111806127106301e13380670de0b6b3a764000060a15461114b91906130a9565b6111559190613089565b61115f9190613089565b61117190670de0b6b3a7640000613071565b83670de0b6b3a76400006126e0565b90506111a38460010154670de0b6b3a76400008361119e91906130c8565b61279d565b9250506111e7565b6127106301e133808260a15486600101546111c691906130a9565b6111d091906130a9565b6111da9190613089565b6111e49190613089565b91505b509392505050565b6033546001600160a01b031633146112195760405162461bcd60e51b8152600401610ae290612ff1565b60ac55565b6033546001600160a01b031633146112485760405162461bcd60e51b8152600401610ae290612ff1565b8082106112975760405162461bcd60e51b815260206004820152601a60248201527f496e76616c696420737461727420616e6420656e642074696d650000000000006044820152606401610ae2565b8142106112e65760405162461bcd60e51b815260206004820152601960248201527f496e76616c696420737461727420616e642063757272656e74000000000000006044820152606401610ae2565b60a682905560a781905560408051838152602081018390527f7a093fb6822f521f3b4da347f88036b933cd270d82ccc3a57b9e7e74c17f3b2991015b60405180910390a15050565b6033546001600160a01b031633146113585760405162461bcd60e51b8152600401610ae290612ff1565b60a554421161139c5760405162461bcd60e51b815260206004820152601060248201526f141bdbdb081a185cc81cdd185c9d195960821b6044820152606401610ae2565b8082106113eb5760405162461bcd60e51b815260206004820152601a60248201527f496e76616c696420737461727420616e6420656e642074696d650000000000006044820152606401610ae2565b60a5819055428211156113fe5760a48290555b60408051838152602081018390527fa536964ea59c734a26415fc574cf722afc526e94547abf6af36b26d3efcae1f99101611322565b6033546001600160a01b0316331461145e5760405162461bcd60e51b8152600401610ae290612ff1565b6097546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156114a257600080fd5b505afa1580156114b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114da9190612e62565b6097549091506114f5906001600160a01b03163330856127d7565b6097546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561153957600080fd5b505afa15801561154d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115719190612e62565b9050600061157f83836130c8565b905080609c60008282546115939190613071565b909155505050505050565b6033546001600160a01b031633146115c85760405162461bcd60e51b8152600401610ae290612ff1565b60ab805460ff1916911515919091179055565b6033546001600160a01b031633146116055760405162461bcd60e51b8152600401610ae290612ff1565b61160f600061280f565b565b6033546001600160a01b0316331461163b5760405162461bcd60e51b8152600401610ae290612ff1565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284919082169063a9059cbb90604401602060405180830381600087803b15801561168857600080fd5b505af115801561169c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c09190612d64565b5050505050565b6033546001600160a01b031633146116f15760405162461bcd60e51b8152600401610ae290612ff1565b609e55565b6033546001600160a01b031633146117205760405162461bcd60e51b8152600401610ae290612ff1565b6001600160a01b038216600090815260ad602052604090205460ff16151581151514156117775760405162461bcd60e51b8152602060048201526005602482015264105919195960da1b6044820152606401610ae2565b6001600160a01b0391909116600090815260ad60205260409020805460ff1916911515919091179055565b6033546001600160a01b031633146117cc5760405162461bcd60e51b8152600401610ae290612ff1565b4260a555565b6033546001600160a01b031633146117fc5760405162461bcd60e51b8152600401610ae290612ff1565b6001600160a01b03909116600090815260996020526040902060030155565b6033546001600160a01b031633146118455760405162461bcd60e51b8152600401610ae290612ff1565b60a855565b6033546001600160a01b031633146118745760405162461bcd60e51b8152600401610ae290612ff1565b600060a681905560a755565b6033546001600160a01b031633146118aa5760405162461bcd60e51b8152600401610ae290612ff1565b6001600160a01b0382166118ed5760405162461bcd60e51b815260206004820152600a602482015269496e76616c696420746f60b01b6044820152606401610ae2565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611923573d6000803e3d6000fd5b505050565b609a5460609060009081908461193d57600194505b61194786826130c8565b85111561195b5761195886826130c8565b94505b60008567ffffffffffffffff81111561198457634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156119f957816020015b6119e66040518060c0016040528060006001600160a01b03168152602001600081526020016000815260200160008152602001600081526020016000151581525090565b8152602001906001900390816119a25790505b50905060005b86811015610ca25760996000609a611a17848c613071565b81548110611a3557634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b039081168452838201949094526040928301909120825160c0810184528154909416845260018101549184019190915260028101549183019190915260038101546060830152600481015460808301526005015460ff16151560a08201528251839083908110611aca57634e487b7160e01b600052603260045260246000fd5b60200260200101819052508080611ae09061310b565b9150506119ff565b609a8181548110611af857600080fd5b6000918252602090912001546001600160a01b0316905081565b6033546001600160a01b03163314611b3c5760405162461bcd60e51b8152600401610ae290612ff1565b60a2805460ff1916911515919091179055565b60026065541415611ba25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ae2565b6002606555611baf611028565b15611bf05760405162461bcd60e51b81526020600482015260116024820152702232b837b9b4ba1034b990333937bd32b760791b6044820152606401610ae2565b609e5415611c5757609e548160a354611c099190613071565b1115611c575760405162461bcd60e51b815260206004820152601860248201527f457863656564206d6178207374616b656420746f6b656e7300000000000000006044820152606401610ae2565b33600090815260996020526040902060a8546001820154611c79908490613071565b1015611cc75760405162461bcd60e51b815260206004820152601960248201527f5573657220616d6f756e742062656c6f77206d696e696d756d000000000000006044820152606401610ae2565b609f5460ff1615611d325760a0546001820154611ce49084613071565b1115611d325760405162461bcd60e51b815260206004820152601760248201527f5573657220616d6f756e742061626f7665206c696d69740000000000000000006044820152606401610ae2565b426003820155600181015460009015611dca57611d4e336110c6565b90508015611dc557611d5e612294565b15611db45780826001016000828254611d779190613071565b925050819055508060a36000828254611d909190613071565b9250508190555080609d6000828254611da99190613071565b90915550611dbe9050565b611dbe33826123db565b4260028301555b611e42565b600582015460ff16611e4257609a80546001808201835560009283527f44da158ba27f9252712a74ff6a55c5d531f69609f1f6e7f17c4443a8e2089be49091018054336001600160a01b0319918216811790925560058601805460ff1916909317909255845490911617835542600284015560048301555b60008315611fa0576098546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015611e8e57600080fd5b505afa158015611ea2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec69190612e62565b609854909150611ee1906001600160a01b03163330886127d7565b6098546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015611f2557600080fd5b505afa158015611f39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f5d9190612e62565b9050611f6982826130c8565b925082856001016000828254611f7f9190613071565b925050819055508260a36000828254611f989190613071565b909155505050505b611fae338583856001612542565b60405184815233907f35db3d768e685509e031bae369804ca7dc6656af739e079f1d3312cadc7b19d890602001610fba565b6033546001600160a01b0316331461200a5760405162461bcd60e51b8152600401610ae290612ff1565b609f5460ff1661204a5760405162461bcd60e51b815260206004820152600b60248201526a135d5cdd081899481cd95d60aa1b6044820152606401610ae2565b81156120a75760a05481116120a15760405162461bcd60e51b815260206004820152601860248201527f4e6577206c696d6974206d7573742062652068696768657200000000000000006044820152606401610ae2565b60a05550565b609f805483151560ff19909116179055600060a0555050565b6000609d54609c5411156120de57609d54609c5461103e91906130c8565b50600090565b600054610100900460ff166120ff5760005460ff1615612103565b303b155b6121665760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610ae2565b600054610100900460ff16158015612188576000805461ffff19166101011790555b612190612861565b612198612890565b8c609860006101000a8154816001600160a01b0302191690836001600160a01b031602179055508b609760006101000a8154816001600160a01b0302191690836001600160a01b031602179055508a609e819055508360a1819055508260a260006101000a81548160ff0219169083151502179055508960a4819055508860a5819055508660a8819055508560a9819055508460aa81905550600088111561224d57609f805460ff1916600117905560a08890555b6001600160a01b038216331461226657612266826122bc565b60ab805460ff191660011790558015612285576000805461ff00191690555b50505050505050505050505050565b6097546098546000916001600160a01b03918216911614801561103e57505060a25460ff1690565b6033546001600160a01b031633146122e65760405162461bcd60e51b8152600401610ae290612ff1565b6001600160a01b03811661234b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ae2565b6110258161280f565b6033546001600160a01b0316331461237e5760405162461bcd60e51b8152600401610ae290612ff1565b33600090815260996020526040902080546001600160a01b0319166001600160a01b039790971696909617865560018601949094556002850192909255600384015560048301556005909101805460ff1916911515919091179055565b6097546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561241f57600080fd5b505afa158015612433573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124579190612e62565b905060006124636120c0565b9050818111156124705750805b808311156124ab5780609d600082825461248a9190613071565b90915550506097546124a6906001600160a01b031685836124df565b6124d9565b82609d60008282546124bd9190613071565b90915550506097546124d9906001600160a01b031685856124df565b50505050565b6040516001600160a01b03831660248201526044810182905261192390849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526128bf565b6040805160c0810182526001600160a01b0396871681526020810195865290810193845260608101928352901515608082019081524260a08301908152609b805460018101825560009190915292517fbba9db4cdbea0a37c207bbb83e20f828cd4441c49891101dc94fd20dc8efc349600690940293840180546001600160a01b031916919098161790965593517fbba9db4cdbea0a37c207bbb83e20f828cd4441c49891101dc94fd20dc8efc34a82015591517fbba9db4cdbea0a37c207bbb83e20f828cd4441c49891101dc94fd20dc8efc34b830155517fbba9db4cdbea0a37c207bbb83e20f828cd4441c49891101dc94fd20dc8efc34c82015590517fbba9db4cdbea0a37c207bbb83e20f828cd4441c49891101dc94fd20dc8efc34d8201805460ff191691151591909117905590517fbba9db4cdbea0a37c207bbb83e20f828cd4441c49891101dc94fd20dc8efc34e90910155565b600060a4548310156126ae5760a45492505b60a5548211156126be5760a55491505b8183106126cd575060006126da565b6126d783836130c8565b90505b92915050565b6000838015612780576001841680156126fb578592506126ff565b8392505b50600283046002850494505b841561277a57858602868782041461272257600080fd5b8181018181101561273257600080fd5b859004965050600185161561276f57858302838782041415871515161561275857600080fd5b8181018181101561276857600080fd5b8590049350505b60028504945061270b565b506111e7565b8380156127905760009250612794565b8392505b50509392505050565b6000670de0b6b3a76400006127cd6127b58585612991565b6127c86002670de0b6b3a7640000613089565b6129f8565b6126d79190613089565b6040516001600160a01b03808516602483015283166044820152606481018290526124d99085906323b872dd60e01b9060840161250b565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff166128885760405162461bcd60e51b8152600401610ae290613026565b61160f612a4d565b600054610100900460ff166128b75760405162461bcd60e51b8152600401610ae290613026565b61160f612a7d565b6000612914826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612aab9092919063ffffffff16565b80519091501561192357808060200190518101906129329190612d64565b6119235760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610ae2565b60008115806129b5575082826129a781836130a9565b92506129b39083613089565b145b6126da5760405162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6d756c2d6f766572666c6f7760601b6044820152606401610ae2565b600082612a058382613071565b91508110156126da5760405162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6164642d6f766572666c6f7760601b6044820152606401610ae2565b600054610100900460ff16612a745760405162461bcd60e51b8152600401610ae290613026565b61160f3361280f565b600054610100900460ff16612aa45760405162461bcd60e51b8152600401610ae290613026565b6001606555565b6060612aba8484600085612ac2565b949350505050565b606082471015612b235760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610ae2565b6001600160a01b0385163b612b7a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610ae2565b600080866001600160a01b03168587604051612b969190612e9b565b60006040518083038185875af1925050503d8060008114612bd3576040519150601f19603f3d011682016040523d82523d6000602084013e612bd8565b606091505b5091509150612be8828286612bf3565b979650505050505050565b60608315612c025750816110bf565b825115612c125782518084602001fd5b8160405162461bcd60e51b8152600401610ae29190612fbe565b600060208284031215612c3d578081fd5b81356110bf8161313c565b600080600060608486031215612c5c578182fd5b8335612c678161313c565b92506020840135612c778161313c565b929592945050506040919091013590565b60008060408385031215612c9a578182fd5b8235612ca58161313c565b91506020830135612cb581613151565b809150509250929050565b60008060408385031215612cd2578182fd5b8235612cdd8161313c565b946020939093013593505050565b60008060008060008060c08789031215612d03578182fd5b8635612d0e8161313c565b95506020870135945060408701359350606087013592506080870135915060a0870135612d3a81613151565b809150509295509295509295565b600060208284031215612d59578081fd5b81356110bf81613151565b600060208284031215612d75578081fd5b81516110bf81613151565b60008060408385031215612d92578182fd5b8235612cdd81613151565b6000806000806000806000806000806000806101808d8f031215612dbf578586fd5b8c35612dca8161313c565b9b5060208d0135612dda8161313c565b9a5060408d0135995060608d0135985060808d0135975060a08d0135965060c08d0135955060e08d013594506101008d013593506101208d013592506101408d0135612e2581613151565b91506101608d0135612e368161313c565b809150509295989b509295989b509295989b565b600060208284031215612e5b578081fd5b5035919050565b600060208284031215612e73578081fd5b5051919050565b60008060408385031215612e8c578182fd5b50508035926020909101359150565b60008251612ead8184602087016130df565b9190910192915050565b6060808252845182820181905260009190608090818501906020808a01865b83811015612f2d57815180516001600160a01b031686528381015184870152604080820151908701528781015188870152868101518787015260a09081015115159086015260c09094019390820190600101612ed6565b50508601979097526040909401949094525090949350505050565b6060808252845182820181905260009190608090818501906020808a01865b83811015612f2d57815180516001600160a01b0316865283810151848701526040808201519087015287810151888701528681015115158787015260a0908101519086015260c09094019390820190600101612f67565b6020815260008251806020840152612fdd8160408501602087016130df565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6000821982111561308457613084613126565b500190565b6000826130a457634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156130c3576130c3613126565b500290565b6000828210156130da576130da613126565b500390565b60005b838110156130fa5781810151838201526020016130e2565b838111156124d95750506000910152565b600060001982141561311f5761311f613126565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461102557600080fd5b801515811461102557600080fdfea264697066735822122057998f1dd5fa0779805c1333b678bbfd66c3f4fa5ca404a545331f6d7674b14f64736f6c63430008040033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.