ETH Price: $2,316.88 (-5.83%)

Token

DividendTracker (DividendTracker)
 

Overview

Max Total Supply

87,475,420,255.576080586465914998 DividendTracker

Holders

27

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 DividendTracker

Value
$0.00
0x6c4797ab4443e5f25532f8b66b4196db3cfb0eb9
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
DividendTracker

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 6 : TokenDividendTracker.sol
// SPDX-License-Identifier: No License

import "./ERC20.sol";
import "./Ownable.sol";

pragma solidity ^0.8.0;

library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}

library SafeMathInt {
  function toUint256Safe(int256 a) internal pure returns (uint256) {
    require(a >= 0);
    return uint256(a);
  }
}

/// @title Dividend-Paying Token Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev An interface for a dividend-paying token contract.
interface DividendPayingTokenInterface {

  function dividendOf(address _owner) external view returns (uint256);

  event DividendsDistributed(address indexed from, uint256 weiAmount);

  event DividendWithdrawn(address indexed to, uint256 weiAmount);
}

/// @title Dividend-Paying Token Optional Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev OPTIONAL functions for a dividend-paying token contract.
interface DividendPayingTokenOptionalInterface {

  function withdrawableDividendOf(address _owner) external view returns (uint256);

  function withdrawnDividendOf(address _owner) external view returns (uint256);

  function accumulativeDividendOf(address _owner) external view returns (uint256);
}

/// @title Dividend-Paying Token
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev A mintable ERC20 token that allows anyone to pay and distribute ether
/// to token holders as dividends and allows token holders to withdraw their dividends.
/// Reference: the source code of PoWH3D: https://etherscan.io/address/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe#code
contract DividendPayingToken is ERC20, DividendPayingTokenInterface, DividendPayingTokenOptionalInterface {
  using SafeMathUint for uint256;
  using SafeMathInt for int256;

  uint256 constant internal magnitude = 2**128;

  uint256 internal magnifiedDividendPerShare;

  mapping(address => int256) internal magnifiedDividendCorrections;
  mapping(address => uint256) internal withdrawnDividends;

  uint256 public totalDividendsDistributed;

  address public rewardToken;

  constructor(address _rewardToken, string memory _name, string memory _symbol) ERC20(_name, _symbol) {
    rewardToken = _rewardToken;
  }

  function distributeDividends(uint256 amount) public {
    require(totalSupply() > 0);

    uint256 balBefore = IERC20(rewardToken).balanceOf(address(this));
    IERC20(rewardToken).transferFrom(msg.sender, address(this), amount);
    uint256 received = IERC20(rewardToken).balanceOf(address(this)) - balBefore;
    
    if (received > 0) {
      magnifiedDividendPerShare = magnifiedDividendPerShare + (received * magnitude / totalSupply());

      emit DividendsDistributed(msg.sender, received);

      totalDividendsDistributed = totalDividendsDistributed + received;
    }
  }

  function _withdrawDividend(address account) internal returns(uint256) {
    uint256 withdrawableDividend = withdrawableDividendOf(account);

    if (withdrawableDividend > 0) {
      withdrawnDividends[account] = withdrawnDividends[account] + withdrawableDividend;

      try IERC20(rewardToken).transfer(account, withdrawableDividend) returns (bool) {
        emit DividendWithdrawn(account, withdrawableDividend);

        return withdrawableDividend;
      } catch {
        withdrawnDividends[account] = withdrawnDividends[account] - withdrawableDividend;

        return 0;
      }
    }

    return 0;
  }

  function dividendOf(address account) public view override returns(uint256) {
    return withdrawableDividendOf(account);
  }

  function withdrawableDividendOf(address account) public view override returns(uint256) {
    return accumulativeDividendOf(account) - withdrawnDividends[account];
  }

  function withdrawnDividendOf(address account) public view override returns(uint256) {
    return withdrawnDividends[account];
  }

  function accumulativeDividendOf(address account) public view override returns(uint256) {
    return ((magnifiedDividendPerShare * balanceOf(account)).toInt256Safe() + magnifiedDividendCorrections[account]).toUint256Safe() / magnitude;
  }

  function _mint(address account, uint256 value) internal override {
    super._mint(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] - (magnifiedDividendPerShare * value).toInt256Safe();
  }

  function _burn(address account, uint256 value) internal override {
    super._burn(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] + (magnifiedDividendPerShare * value).toInt256Safe();
  }

  function _setBalance(address account, uint256 newBalance) internal {
    uint256 currentBalance = balanceOf(account);

    if(newBalance > currentBalance) _mint(account, newBalance - currentBalance);
    else if(newBalance < currentBalance) _burn(account, currentBalance - newBalance);
  }
}

library IterableMapping {
  // Iterable mapping from address to uint;
  struct Map {
    address[] keys;
    mapping(address => uint) values;
    mapping(address => uint) indexOf;
    mapping(address => bool) inserted;
  }

  function get(Map storage map, address key) public view returns (uint) {
    return map.values[key];
  }

  function getIndexOfKey(Map storage map, address key) public view returns (int) {
    if(!map.inserted[key]) {
        return -1;
    }
    return int(map.indexOf[key]);
  }

  function getKeyAtIndex(Map storage map, uint index) public view returns (address) {
    return map.keys[index];
  }

  function size(Map storage map) public view returns (uint) {
    return map.keys.length;
  }

  function set(Map storage map, address key, uint val) public {
    if (map.inserted[key]) {
      map.values[key] = val;
    } else {
      map.inserted[key] = true;
      map.values[key] = val;
      map.indexOf[key] = map.keys.length;
      map.keys.push(key);
    }
  }

  function remove(Map storage map, address key) public {
    if (!map.inserted[key]) {
      return;
    }

    delete map.inserted[key];
    delete map.values[key];

    uint index = map.indexOf[key];
    uint lastIndex = map.keys.length - 1;
    address lastKey = map.keys[lastIndex];

    map.indexOf[lastKey] = index;
    delete map.indexOf[key];

    map.keys[index] = lastKey;
    map.keys.pop();
  }
}

contract DividendTracker is Ownable, DividendPayingToken {
  using IterableMapping for IterableMapping.Map;

  IterableMapping.Map private tokenHoldersMap;
  uint256 public lastProcessedIndex;

  mapping(address => bool) public isExcludedFromDividends;
  mapping(address => uint256) public lastClaimTimes;

  uint256 public claimWait;
  uint256 public minimumTokenBalanceForDividends;

  event ExcludeFromDividends(address indexed account, bool isExcluded);
  event ClaimWaitUpdated(uint256 claimWait);
  event ProcessedDividendTracker(uint256 iterations, uint256 claims);

  constructor (uint256 _claimWait, uint256 _minimumTokenBalance, address _rewardToken) DividendPayingToken(_rewardToken, "DividendTracker", "DividendTracker") {
    claimWaitSetup(_claimWait);
    minimumTokenBalanceForDividends = _minimumTokenBalance;
  }

  function excludeFromDividends(address account, uint256 balance, bool isExcluded) external onlyOwner {
    if (isExcluded) {
      require(!isExcludedFromDividends[account], "DividendTracker: This address is already excluded from dividends");
      isExcludedFromDividends[account] = true;

      _setBalance(account, 0);
      tokenHoldersMap.remove(account);
    } else {
      require(isExcludedFromDividends[account], "DividendTracker: This address is already included in dividends");
      isExcludedFromDividends[account] = false;

      setBalance(account, balance);
    }

    emit ExcludeFromDividends(account, isExcluded);
  }

  function claimWaitSetup(uint256 newClaimWait) public onlyOwner {
    require(newClaimWait >= 60 && newClaimWait <= 7 days, "DividendTracker: Claim wait time must be between 1 minute and 7 days");

    claimWait = newClaimWait;

    emit ClaimWaitUpdated(newClaimWait);
  }

  function getNumberOfTokenHolders() external view returns (uint256) {
    return tokenHoldersMap.keys.length;
  }

  function getAccountData(address _account) public view returns (
      address account,
      int256 index,
      int256 iterationsUntilProcessed,
      uint256 withdrawableDividends,
      uint256 totalDividends,
      uint256 lastClaimTime,
      uint256 nextClaimTime,
      uint256 secondsUntilAutoClaimAvailable
    )
  {
    account = _account;
    index = tokenHoldersMap.getIndexOfKey(account);
    iterationsUntilProcessed = -1;

    if (index >= 0) {
      if (uint256(index) > lastProcessedIndex) {
        iterationsUntilProcessed = index - int256(lastProcessedIndex);
      } else {
        uint256 processesUntilEndOfArray = tokenHoldersMap.keys.length > lastProcessedIndex ? tokenHoldersMap.keys.length - lastProcessedIndex : 0;
        iterationsUntilProcessed = index + int256(processesUntilEndOfArray);
      }
    }

    withdrawableDividends = withdrawableDividendOf(account);
    totalDividends = accumulativeDividendOf(account);
    lastClaimTime = lastClaimTimes[account];
    nextClaimTime = lastClaimTime > 0 ? lastClaimTime + claimWait : 0;
    secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp ? nextClaimTime - block.timestamp : 0;
  }

  function getAccountDataAtIndex(uint256 index) public view returns (
      address,
      int256,
      int256,
      uint256,
      uint256,
      uint256,
      uint256,
      uint256
    )
  {
    if (index >= tokenHoldersMap.size()) return (address(0), -1, -1, 0, 0, 0, 0, 0);

    address account = tokenHoldersMap.getKeyAtIndex(index);

    return getAccountData(account);
  }

  function claim(address account) public onlyOwner returns (bool) {
    uint256 amount = _withdrawDividend(account);

    if (amount > 0) {
      lastClaimTimes[account] = block.timestamp;
      return true;
    }
    return false;
  }

  function _canAutoClaim(uint256 lastClaimTime) private view returns (bool) {
    if (block.timestamp < lastClaimTime) return false;
    
    return block.timestamp - lastClaimTime >= claimWait;
  }

  function setBalance(address account, uint256 newBalance) public onlyOwner {
    if (!isExcludedFromDividends[account]) {

      if (newBalance >= minimumTokenBalanceForDividends) {
        _setBalance(account, newBalance);
        tokenHoldersMap.set(account, newBalance);
      } else {
        _setBalance(account, 0);
        tokenHoldersMap.remove(account);
      }

    }
  }

  function process(uint256 gas) external onlyOwner returns(uint256 iterations, uint256 claims) {
    uint256 numberOfTokenHolders = tokenHoldersMap.keys.length;

    if (numberOfTokenHolders == 0) return (0, 0);

    uint256 _lastProcessedIndex = lastProcessedIndex;
    uint256 gasUsed = 0;
    uint256 gasLeft = gasleft();

    iterations = 0;
    claims = 0;

    while (gasUsed < gas && iterations < numberOfTokenHolders) {
      _lastProcessedIndex++;

      if (_lastProcessedIndex >= tokenHoldersMap.keys.length) _lastProcessedIndex = 0;

      address account = tokenHoldersMap.keys[_lastProcessedIndex];

      if (_canAutoClaim(lastClaimTimes[account])) {
        if (claim(account)) {
          claims++;
        }
      }

      iterations++;

      uint256 newGasLeft = gasleft();

      if (gasLeft > newGasLeft) gasUsed = gasUsed + (gasLeft - newGasLeft);

      gasLeft = newGasLeft;
    }

    lastProcessedIndex = _lastProcessedIndex;

    emit ProcessedDividendTracker(iterations, claims);
  }
}

abstract contract DividendTrackerFunctions is Ownable {
  DividendTracker public dividendTracker;

  uint256 public gasForProcessing;

  address public rewardToken;

  event DeployedDividendTracker(address indexed dividendTracker, address indexed rewardToken);
  event GasForProcessingUpdated(uint256 gasForProcessing);

  function _deployDividendTracker(uint256 claimWait, uint256 minimumTokenBalance, address _rewardToken) internal {
    dividendTracker = new DividendTracker(claimWait, minimumTokenBalance, _rewardToken);

    rewardToken = _rewardToken;

    emit DeployedDividendTracker(address(dividendTracker), _rewardToken);
  }

  function gasForProcessingSetup(uint256 _gasForProcessing) public onlyOwner {
    require(_gasForProcessing >= 200_000 && _gasForProcessing <= 1_000_000, "ERC20: gasForProcessing must be between 200k and 1M units");
    
    gasForProcessing = _gasForProcessing;

    emit GasForProcessingUpdated(_gasForProcessing);
  }

  function claimWaitSetup(uint256 claimWait) external onlyOwner {
    dividendTracker.claimWaitSetup(claimWait);
  }

  function excludeFromDividends(address account, bool isExcluded) public virtual;

  function isExcludedFromDividends(address account) public view returns (bool) {
    return dividendTracker.isExcludedFromDividends(account);
  }

  function claim() external returns(bool) {
    return dividendTracker.claim(msg.sender);
  }

  function getClaimWait() external view returns (uint256) {
    return dividendTracker.claimWait();
  }

  function getTotalDividendsDistributed() external view returns (uint256) {
    return dividendTracker.totalDividendsDistributed();
  }

  function withdrawableDividendOf(address account) public view returns (uint256) {
    return dividendTracker.withdrawableDividendOf(account);
  }

  function dividendTokenBalanceOf(address account) public view returns (uint256) {
    return dividendTracker.balanceOf(account);
  }

  function dividendTokenTotalSupply() public view returns (uint256) {
    return dividendTracker.totalSupply();
  }

  function getAccountDividendsInfo(address account) external view returns (
      address,
      int256,
      int256,
      uint256,
      uint256,
      uint256,
      uint256,
      uint256
    ) {
    return dividendTracker.getAccountData(account);
  }

  function getAccountDividendsInfoAtIndex(uint256 index) external view returns (
      address,
      int256,
      int256,
      uint256,
      uint256,
      uint256,
      uint256,
      uint256
    ) {
    return dividendTracker.getAccountDataAtIndex(index);
  }

  function getLastProcessedIndex() external view returns (uint256) {
    return dividendTracker.lastProcessedIndex();
  }

  function getNumberOfDividendTokenHolders() public view returns (uint256) {
    return dividendTracker.getNumberOfTokenHolders();
  }

  function process(uint256 gas) external returns(uint256 iterations, uint256 claims) {
    return dividendTracker.process(gas);
  }
}

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

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

File 3 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

File 5 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

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

pragma solidity ^0.8.0;

import "./IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @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);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {
    "TokenDividendTracker.sol": {
      "IterableMapping": "0x72cD67C331711Fff084be89cB2BF1F2f413cd8Cd"
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_claimWait","type":"uint256"},{"internalType":"uint256","name":"_minimumTokenBalance","type":"uint256"},{"internalType":"address","name":"_rewardToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"claimWait","type":"uint256"}],"name":"ClaimWaitUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"DividendWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"DividendsDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"accumulativeDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"claim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newClaimWait","type":"uint256"}],"name":"claimWaitSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"distributeDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getAccountData","outputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"int256","name":"index","type":"int256"},{"internalType":"int256","name":"iterationsUntilProcessed","type":"int256"},{"internalType":"uint256","name":"withdrawableDividends","type":"uint256"},{"internalType":"uint256","name":"totalDividends","type":"uint256"},{"internalType":"uint256","name":"lastClaimTime","type":"uint256"},{"internalType":"uint256","name":"nextClaimTime","type":"uint256"},{"internalType":"uint256","name":"secondsUntilAutoClaimAvailable","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDataAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromDividends","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastClaimTimes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumTokenBalanceForDividends","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"process","outputs":[{"internalType":"uint256","name":"iterations","type":"uint256"},{"internalType":"uint256","name":"claims","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"setBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawnDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040516200228c3803806200228c83398101604081905262000034916200028e565b806040518060400160405280600f81526020016e2234bb34b232b7322a3930b1b5b2b960891b8152506040518060400160405280600f81526020016e2234bb34b232b7322a3930b1b5b2b960891b8152508181620000a16200009b620000fc60201b60201c565b62000100565b6004620000af83826200037b565b506005620000be82826200037b565b5050600a80546001600160a01b0319166001600160a01b03959095169490941790935550620000f1915084905062000150565b506013555062000447565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6200015a62000230565b603c81101580156200016f575062093a808111155b620001f55760405162461bcd60e51b8152602060048201526044602482018190527f4469766964656e64547261636b65723a20436c61696d20776169742074696d65908201527f206d757374206265206265747765656e2031206d696e75746520616e642037206064820152636461797360e01b608482015260a4015b60405180910390fd5b60128190556040518181527f4b0a6b82d0dc4407b3359033a4f27efd1e2105e4571b72d6a3b8f1da3e6079dd9060200160405180910390a150565b6000546001600160a01b031633146200028c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620001ec565b565b600080600060608486031215620002a457600080fd5b83516020850151604086015191945092506001600160a01b0381168114620002cb57600080fd5b809150509250925092565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200030157607f821691505b6020821081036200032257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200037657600081815260208120601f850160051c81016020861015620003515750805b601f850160051c820191505b8181101562000372578281556001016200035d565b5050505b505050565b81516001600160401b03811115620003975762000397620002d6565b620003af81620003a88454620002ec565b8462000328565b602080601f831160018114620003e75760008415620003ce5750858301515b600019600386901b1c1916600185901b17855562000372565b600085815260208120601f198616915b828110156200041857888601518255948401946001909101908401620003f7565b5085821015620004375787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611e3580620004576000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c8063715018a61161011a578063aafd847a116100ad578063dd62ed3e1161007c578063dd62ed3e146104a1578063e30443bc146104b4578063f2fde38b146104c7578063f7c618c1146104da578063ffb2c479146104ed57600080fd5b8063aafd847a14610439578063be10b61414610462578063c705c5691461046b578063d1fbb84e1461048e57600080fd5b806395d89b41116100e957806395d89b41146103f8578063a457c2d714610400578063a8b9d24014610413578063a9059cbb1461042657600080fd5b8063715018a6146103af57806385a6b3ae146103b75780638da5cb5b146103c057806391b89fba146103e557600080fd5b80632f7541e91161019d578063395093511161016c57806339509351146103445780635d78650e146103575780636cc9c8f11461036a5780636f2789ec1461037d57806370a082311461038657600080fd5b80632f7541e9146102bf5780633009a60914610317578063313ce567146103205780633243c7911461032f57600080fd5b80631e83409a116101d95780631e83409a14610266578063226cfa3d1461027957806323b872dd1461029957806327ce0147146102ac57600080fd5b806306fdde031461020b578063095ea7b31461022957806309bbedde1461024c57806318160ddd1461025e575b600080fd5b610213610515565b6040516102209190611ae9565b60405180910390f35b61023c610237366004611b4c565b6105a7565b6040519015158152602001610220565b600b545b604051908152602001610220565b600354610250565b61023c610274366004611b78565b6105c1565b610250610287366004611b78565b60116020526000908152604090205481565b61023c6102a7366004611b9c565b610608565b6102506102ba366004611b78565b61062c565b6102d26102cd366004611bdd565b610689565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610220565b610250600f5481565b60405160128152602001610220565b61034261033d366004611bdd565b6107dd565b005b61023c610352366004611b4c565b6109d6565b6102d2610365366004611b78565b6109f8565b610342610378366004611bdd565b610b60565b61025060125481565b610250610394366004611b78565b6001600160a01b031660009081526001602052604090205490565b610342610c3c565b61025060095481565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610220565b6102506103f3366004611b78565b610c50565b610213610c5b565b61023c61040e366004611b4c565b610c6a565b610250610421366004611b78565b610ce5565b61023c610434366004611b4c565b610d11565b610250610447366004611b78565b6001600160a01b031660009081526008602052604090205490565b61025060135481565b61023c610479366004611b78565b60106020526000908152604090205460ff1681565b61034261049c366004611c04565b610d1f565b6102506104af366004611c46565b610f65565b6103426104c2366004611b4c565b610f90565b6103426104d5366004611b78565b6110b1565b600a546103cd906001600160a01b031681565b6105006104fb366004611bdd565b61112a565b60408051928352602083019190915201610220565b60606004805461052490611c7f565b80601f016020809104026020016040519081016040528092919081815260200182805461055090611c7f565b801561059d5780601f106105725761010080835404028352916020019161059d565b820191906000526020600020905b81548152906001019060200180831161058057829003601f168201915b5050505050905090565b6000336105b581858561127a565b60019150505b92915050565b60006105cb61139e565b60006105d6836113f8565b905080156105ff5750506001600160a01b03166000908152601160205260409020429055600190565b50600092915050565b60003361061685828561154a565b6106218585856115c4565b506001949350505050565b6001600160a01b0381166000908152600760209081526040808320546001909252822054600160801b9161067f916106709060065461066b9190611ccf565b61176f565b61067a9190611ce6565b61177f565b6105bb9190611d0e565b600080600080600080600080600b7372cd67c331711fff084be89cb2bf1f2f413cd8cd63deb3d89690916040518263ffffffff1660e01b81526004016106d191815260200190565b602060405180830381865af41580156106ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107129190611d30565b89106107375750600096506000199550859450869350839250829150819050806107d2565b6040516368d54f3f60e11b8152600b6004820152602481018a90526000907372cd67c331711fff084be89cb2bf1f2f413cd8cd9063d1aa9e7e90604401602060405180830381865af4158015610791573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b59190611d49565b90506107c0816109f8565b98509850985098509850985098509850505b919395975091939597565b60006107e860035490565b116107f257600080fd5b600a546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801561083b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085f9190611d30565b600a546040516323b872dd60e01b8152336004820152306024820152604481018590529192506001600160a01b0316906323b872dd906064016020604051808303816000875af11580156108b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108db9190611d66565b50600a546040516370a0823160e01b815230600482015260009183916001600160a01b03909116906370a0823190602401602060405180830381865afa158015610929573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094d9190611d30565b6109579190611d83565b905080156109d157600354610970600160801b83611ccf565b61097a9190611d0e565b6006546109879190611d96565b60065560405181815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2806009546109cd9190611d96565b6009555b505050565b6000336105b58185856109e98383610f65565b6109f39190611d96565b61127a565b6040516317e142d160e01b8152600b60048201526001600160a01b038216602482015281906000908190819081908190819081907372cd67c331711fff084be89cb2bf1f2f413cd8cd906317e142d190604401602060405180830381865af4158015610a68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8c9190611d30565b9650600019955060008712610aee57600f54871115610ab957600f54610ab29088611da9565b9550610aee565b600f54600b5460009110610ace576000610ade565b600f54600b54610ade9190611d83565b9050610aea8189611ce6565b9650505b610af788610ce5565b9450610b028861062c565b6001600160a01b038916600090815260116020526040902054909450925082610b2c576000610b39565b601254610b399084611d96565b9150428211610b49576000610b53565b610b534283611d83565b9050919395975091939597565b610b6861139e565b603c8110158015610b7c575062093a808111155b610c015760405162461bcd60e51b8152602060048201526044602482018190527f4469766964656e64547261636b65723a20436c61696d20776169742074696d65908201527f206d757374206265206265747765656e2031206d696e75746520616e642037206064820152636461797360e01b608482015260a4015b60405180910390fd5b60128190556040518181527f4b0a6b82d0dc4407b3359033a4f27efd1e2105e4571b72d6a3b8f1da3e6079dd9060200160405180910390a150565b610c4461139e565b610c4e6000611792565b565b60006105bb82610ce5565b60606005805461052490611c7f565b60003381610c788286610f65565b905083811015610cd85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bf8565b610621828686840361127a565b6001600160a01b038116600090815260086020526040812054610d078361062c565b6105bb9190611d83565b6000336105b58185856115c4565b610d2761139e565b8015610e63576001600160a01b03831660009081526010602052604090205460ff1615610dbe576040805162461bcd60e51b81526020600482015260248101919091527f4469766964656e64547261636b65723a2054686973206164647265737320697360448201527f20616c7265616479206578636c756465642066726f6d206469766964656e64736064820152608401610bf8565b6001600160a01b0383166000908152601060205260408120805460ff19166001179055610dec9084906117e2565b60405163131836e760e21b8152600b60048201526001600160a01b03841660248201527372cd67c331711fff084be89cb2bf1f2f413cd8cd90634c60db9c9060440160006040518083038186803b158015610e4657600080fd5b505af4158015610e5a573d6000803e3d6000fd5b50505050610f1b565b6001600160a01b03831660009081526010602052604090205460ff16610ef15760405162461bcd60e51b815260206004820152603e60248201527f4469766964656e64547261636b65723a2054686973206164647265737320697360448201527f20616c726561647920696e636c7564656420696e206469766964656e647300006064820152608401610bf8565b6001600160a01b0383166000908152601060205260409020805460ff19169055610f1b8383610f90565b826001600160a01b03167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be82604051610f58911515815260200190565b60405180910390a2505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610f9861139e565b6001600160a01b03821660009081526010602052604090205460ff166110ad57601354811061104857610fcb82826117e2565b604051632f0ad01760e21b8152600b60048201526001600160a01b0383166024820152604481018290527372cd67c331711fff084be89cb2bf1f2f413cd8cd9063bc2b405c9060640160006040518083038186803b15801561102c57600080fd5b505af4158015611040573d6000803e3d6000fd5b505050505050565b6110538260006117e2565b60405163131836e760e21b8152600b60048201526001600160a01b03831660248201527372cd67c331711fff084be89cb2bf1f2f413cd8cd90634c60db9c9060440160006040518083038186803b15801561102c57600080fd5b5050565b6110b961139e565b6001600160a01b03811661111e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bf8565b61112781611792565b50565b60008061113561139e565b600b54600081900361114d5750600093849350915050565b600f546000805a905060009550600094505b868210801561116d57508386105b15611233578261117c81611dd0565b600b549094508410905061118f57600092505b6000600b60000184815481106111a7576111a7611de9565b60009182526020808320909101546001600160a01b031680835260119091526040909120549091506111d890611831565b156111f9576111e6816105c1565b156111f957856111f581611dd0565b9650505b8661120381611dd0565b97505060005a90508083111561122a5761121d8184611d83565b6112279085611d96565b93505b915061115f9050565b600f83905560408051878152602081018790527ff78a0aac70b15fc744c16ea2c52bba9a167f030b8961e62a1d2c92588f77facf910160405180910390a150505050915091565b6001600160a01b0383166112dc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bf8565b6001600160a01b03821661133d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bf8565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b03163314610c4e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf8565b60008061140483610ce5565b905080156105ff576001600160a01b038316600090815260086020526040902054611430908290611d96565b6001600160a01b038481166000818152600860205260409081902093909355600a54925163a9059cbb60e01b815260048101919091526024810184905291169063a9059cbb906044016020604051808303816000875af19250505080156114b4575060408051601f3d908101601f191682019092526114b191810190611d66565b60015b611500576001600160a01b0383166000908152600860205260409020546114dc908290611d83565b6001600160a01b039093166000908152600860205260408120939093555090919050565b836001600160a01b03167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d8360405161153b91815260200190565b60405180910390a25092915050565b60006115568484610f65565b905060001981146115be57818110156115b15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610bf8565b6115be848484840361127a565b50505050565b6001600160a01b0383166116285760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610bf8565b6001600160a01b03821661168a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610bf8565b6001600160a01b038316600090815260016020526040902054818110156117025760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bf8565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906117629086815260200190565b60405180910390a36115be565b600081818112156105bb57600080fd5b60008082121561178e57600080fd5b5090565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03821660009081526001602052604090205480821115611816576109d1836118118385611d83565b611858565b808210156109d1576109d18361182c8484611d83565b6118b6565b60008142101561184357506000919050565b6012546118508342611d83565b101592915050565b61186282826118f4565b6118738160065461066b9190611ccf565b6001600160a01b0383166000908152600760205260409020546118969190611da9565b6001600160a01b0390921660009081526007602052604090209190915550565b6118c082826119b5565b6118d18160065461066b9190611ccf565b6001600160a01b0383166000908152600760205260409020546118969190611ce6565b6001600160a01b03821661194a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610bf8565b806003600082825461195c9190611d96565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038216611a155760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610bf8565b6001600160a01b03821660009081526001602052604090205481811015611a895760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610bf8565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600060208083528351808285015260005b81811015611b1657858101830151858201604001528201611afa565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461112757600080fd5b60008060408385031215611b5f57600080fd5b8235611b6a81611b37565b946020939093013593505050565b600060208284031215611b8a57600080fd5b8135611b9581611b37565b9392505050565b600080600060608486031215611bb157600080fd5b8335611bbc81611b37565b92506020840135611bcc81611b37565b929592945050506040919091013590565b600060208284031215611bef57600080fd5b5035919050565b801515811461112757600080fd5b600080600060608486031215611c1957600080fd5b8335611c2481611b37565b9250602084013591506040840135611c3b81611bf6565b809150509250925092565b60008060408385031215611c5957600080fd5b8235611c6481611b37565b91506020830135611c7481611b37565b809150509250929050565b600181811c90821680611c9357607f821691505b602082108103611cb357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176105bb576105bb611cb9565b8082018281126000831280158216821582161715611d0657611d06611cb9565b505092915050565b600082611d2b57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611d4257600080fd5b5051919050565b600060208284031215611d5b57600080fd5b8151611b9581611b37565b600060208284031215611d7857600080fd5b8151611b9581611bf6565b818103818111156105bb576105bb611cb9565b808201808211156105bb576105bb611cb9565b8181036000831280158383131683831282161715611dc957611dc9611cb9565b5092915050565b600060018201611de257611de2611cb9565b5060010190565b634e487b7160e01b600052603260045260246000fdfea26469706673582212204f9aeb23c47a87e6a3a69afd139a7fe33b23423c0102a96ea54e8aebca809e9d64736f6c634300081300330000000000000000000000000000000000000000000000000000000000000e1000000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000a62894d5196bc44e4c3978400ad07e7b30352372

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c8063715018a61161011a578063aafd847a116100ad578063dd62ed3e1161007c578063dd62ed3e146104a1578063e30443bc146104b4578063f2fde38b146104c7578063f7c618c1146104da578063ffb2c479146104ed57600080fd5b8063aafd847a14610439578063be10b61414610462578063c705c5691461046b578063d1fbb84e1461048e57600080fd5b806395d89b41116100e957806395d89b41146103f8578063a457c2d714610400578063a8b9d24014610413578063a9059cbb1461042657600080fd5b8063715018a6146103af57806385a6b3ae146103b75780638da5cb5b146103c057806391b89fba146103e557600080fd5b80632f7541e91161019d578063395093511161016c57806339509351146103445780635d78650e146103575780636cc9c8f11461036a5780636f2789ec1461037d57806370a082311461038657600080fd5b80632f7541e9146102bf5780633009a60914610317578063313ce567146103205780633243c7911461032f57600080fd5b80631e83409a116101d95780631e83409a14610266578063226cfa3d1461027957806323b872dd1461029957806327ce0147146102ac57600080fd5b806306fdde031461020b578063095ea7b31461022957806309bbedde1461024c57806318160ddd1461025e575b600080fd5b610213610515565b6040516102209190611ae9565b60405180910390f35b61023c610237366004611b4c565b6105a7565b6040519015158152602001610220565b600b545b604051908152602001610220565b600354610250565b61023c610274366004611b78565b6105c1565b610250610287366004611b78565b60116020526000908152604090205481565b61023c6102a7366004611b9c565b610608565b6102506102ba366004611b78565b61062c565b6102d26102cd366004611bdd565b610689565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610220565b610250600f5481565b60405160128152602001610220565b61034261033d366004611bdd565b6107dd565b005b61023c610352366004611b4c565b6109d6565b6102d2610365366004611b78565b6109f8565b610342610378366004611bdd565b610b60565b61025060125481565b610250610394366004611b78565b6001600160a01b031660009081526001602052604090205490565b610342610c3c565b61025060095481565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610220565b6102506103f3366004611b78565b610c50565b610213610c5b565b61023c61040e366004611b4c565b610c6a565b610250610421366004611b78565b610ce5565b61023c610434366004611b4c565b610d11565b610250610447366004611b78565b6001600160a01b031660009081526008602052604090205490565b61025060135481565b61023c610479366004611b78565b60106020526000908152604090205460ff1681565b61034261049c366004611c04565b610d1f565b6102506104af366004611c46565b610f65565b6103426104c2366004611b4c565b610f90565b6103426104d5366004611b78565b6110b1565b600a546103cd906001600160a01b031681565b6105006104fb366004611bdd565b61112a565b60408051928352602083019190915201610220565b60606004805461052490611c7f565b80601f016020809104026020016040519081016040528092919081815260200182805461055090611c7f565b801561059d5780601f106105725761010080835404028352916020019161059d565b820191906000526020600020905b81548152906001019060200180831161058057829003601f168201915b5050505050905090565b6000336105b581858561127a565b60019150505b92915050565b60006105cb61139e565b60006105d6836113f8565b905080156105ff5750506001600160a01b03166000908152601160205260409020429055600190565b50600092915050565b60003361061685828561154a565b6106218585856115c4565b506001949350505050565b6001600160a01b0381166000908152600760209081526040808320546001909252822054600160801b9161067f916106709060065461066b9190611ccf565b61176f565b61067a9190611ce6565b61177f565b6105bb9190611d0e565b600080600080600080600080600b7372cd67c331711fff084be89cb2bf1f2f413cd8cd63deb3d89690916040518263ffffffff1660e01b81526004016106d191815260200190565b602060405180830381865af41580156106ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107129190611d30565b89106107375750600096506000199550859450869350839250829150819050806107d2565b6040516368d54f3f60e11b8152600b6004820152602481018a90526000907372cd67c331711fff084be89cb2bf1f2f413cd8cd9063d1aa9e7e90604401602060405180830381865af4158015610791573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b59190611d49565b90506107c0816109f8565b98509850985098509850985098509850505b919395975091939597565b60006107e860035490565b116107f257600080fd5b600a546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801561083b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085f9190611d30565b600a546040516323b872dd60e01b8152336004820152306024820152604481018590529192506001600160a01b0316906323b872dd906064016020604051808303816000875af11580156108b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108db9190611d66565b50600a546040516370a0823160e01b815230600482015260009183916001600160a01b03909116906370a0823190602401602060405180830381865afa158015610929573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094d9190611d30565b6109579190611d83565b905080156109d157600354610970600160801b83611ccf565b61097a9190611d0e565b6006546109879190611d96565b60065560405181815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2806009546109cd9190611d96565b6009555b505050565b6000336105b58185856109e98383610f65565b6109f39190611d96565b61127a565b6040516317e142d160e01b8152600b60048201526001600160a01b038216602482015281906000908190819081908190819081907372cd67c331711fff084be89cb2bf1f2f413cd8cd906317e142d190604401602060405180830381865af4158015610a68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8c9190611d30565b9650600019955060008712610aee57600f54871115610ab957600f54610ab29088611da9565b9550610aee565b600f54600b5460009110610ace576000610ade565b600f54600b54610ade9190611d83565b9050610aea8189611ce6565b9650505b610af788610ce5565b9450610b028861062c565b6001600160a01b038916600090815260116020526040902054909450925082610b2c576000610b39565b601254610b399084611d96565b9150428211610b49576000610b53565b610b534283611d83565b9050919395975091939597565b610b6861139e565b603c8110158015610b7c575062093a808111155b610c015760405162461bcd60e51b8152602060048201526044602482018190527f4469766964656e64547261636b65723a20436c61696d20776169742074696d65908201527f206d757374206265206265747765656e2031206d696e75746520616e642037206064820152636461797360e01b608482015260a4015b60405180910390fd5b60128190556040518181527f4b0a6b82d0dc4407b3359033a4f27efd1e2105e4571b72d6a3b8f1da3e6079dd9060200160405180910390a150565b610c4461139e565b610c4e6000611792565b565b60006105bb82610ce5565b60606005805461052490611c7f565b60003381610c788286610f65565b905083811015610cd85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bf8565b610621828686840361127a565b6001600160a01b038116600090815260086020526040812054610d078361062c565b6105bb9190611d83565b6000336105b58185856115c4565b610d2761139e565b8015610e63576001600160a01b03831660009081526010602052604090205460ff1615610dbe576040805162461bcd60e51b81526020600482015260248101919091527f4469766964656e64547261636b65723a2054686973206164647265737320697360448201527f20616c7265616479206578636c756465642066726f6d206469766964656e64736064820152608401610bf8565b6001600160a01b0383166000908152601060205260408120805460ff19166001179055610dec9084906117e2565b60405163131836e760e21b8152600b60048201526001600160a01b03841660248201527372cd67c331711fff084be89cb2bf1f2f413cd8cd90634c60db9c9060440160006040518083038186803b158015610e4657600080fd5b505af4158015610e5a573d6000803e3d6000fd5b50505050610f1b565b6001600160a01b03831660009081526010602052604090205460ff16610ef15760405162461bcd60e51b815260206004820152603e60248201527f4469766964656e64547261636b65723a2054686973206164647265737320697360448201527f20616c726561647920696e636c7564656420696e206469766964656e647300006064820152608401610bf8565b6001600160a01b0383166000908152601060205260409020805460ff19169055610f1b8383610f90565b826001600160a01b03167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be82604051610f58911515815260200190565b60405180910390a2505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610f9861139e565b6001600160a01b03821660009081526010602052604090205460ff166110ad57601354811061104857610fcb82826117e2565b604051632f0ad01760e21b8152600b60048201526001600160a01b0383166024820152604481018290527372cd67c331711fff084be89cb2bf1f2f413cd8cd9063bc2b405c9060640160006040518083038186803b15801561102c57600080fd5b505af4158015611040573d6000803e3d6000fd5b505050505050565b6110538260006117e2565b60405163131836e760e21b8152600b60048201526001600160a01b03831660248201527372cd67c331711fff084be89cb2bf1f2f413cd8cd90634c60db9c9060440160006040518083038186803b15801561102c57600080fd5b5050565b6110b961139e565b6001600160a01b03811661111e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bf8565b61112781611792565b50565b60008061113561139e565b600b54600081900361114d5750600093849350915050565b600f546000805a905060009550600094505b868210801561116d57508386105b15611233578261117c81611dd0565b600b549094508410905061118f57600092505b6000600b60000184815481106111a7576111a7611de9565b60009182526020808320909101546001600160a01b031680835260119091526040909120549091506111d890611831565b156111f9576111e6816105c1565b156111f957856111f581611dd0565b9650505b8661120381611dd0565b97505060005a90508083111561122a5761121d8184611d83565b6112279085611d96565b93505b915061115f9050565b600f83905560408051878152602081018790527ff78a0aac70b15fc744c16ea2c52bba9a167f030b8961e62a1d2c92588f77facf910160405180910390a150505050915091565b6001600160a01b0383166112dc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bf8565b6001600160a01b03821661133d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bf8565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b03163314610c4e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf8565b60008061140483610ce5565b905080156105ff576001600160a01b038316600090815260086020526040902054611430908290611d96565b6001600160a01b038481166000818152600860205260409081902093909355600a54925163a9059cbb60e01b815260048101919091526024810184905291169063a9059cbb906044016020604051808303816000875af19250505080156114b4575060408051601f3d908101601f191682019092526114b191810190611d66565b60015b611500576001600160a01b0383166000908152600860205260409020546114dc908290611d83565b6001600160a01b039093166000908152600860205260408120939093555090919050565b836001600160a01b03167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d8360405161153b91815260200190565b60405180910390a25092915050565b60006115568484610f65565b905060001981146115be57818110156115b15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610bf8565b6115be848484840361127a565b50505050565b6001600160a01b0383166116285760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610bf8565b6001600160a01b03821661168a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610bf8565b6001600160a01b038316600090815260016020526040902054818110156117025760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bf8565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906117629086815260200190565b60405180910390a36115be565b600081818112156105bb57600080fd5b60008082121561178e57600080fd5b5090565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03821660009081526001602052604090205480821115611816576109d1836118118385611d83565b611858565b808210156109d1576109d18361182c8484611d83565b6118b6565b60008142101561184357506000919050565b6012546118508342611d83565b101592915050565b61186282826118f4565b6118738160065461066b9190611ccf565b6001600160a01b0383166000908152600760205260409020546118969190611da9565b6001600160a01b0390921660009081526007602052604090209190915550565b6118c082826119b5565b6118d18160065461066b9190611ccf565b6001600160a01b0383166000908152600760205260409020546118969190611ce6565b6001600160a01b03821661194a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610bf8565b806003600082825461195c9190611d96565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038216611a155760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610bf8565b6001600160a01b03821660009081526001602052604090205481811015611a895760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610bf8565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600060208083528351808285015260005b81811015611b1657858101830151858201604001528201611afa565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461112757600080fd5b60008060408385031215611b5f57600080fd5b8235611b6a81611b37565b946020939093013593505050565b600060208284031215611b8a57600080fd5b8135611b9581611b37565b9392505050565b600080600060608486031215611bb157600080fd5b8335611bbc81611b37565b92506020840135611bcc81611b37565b929592945050506040919091013590565b600060208284031215611bef57600080fd5b5035919050565b801515811461112757600080fd5b600080600060608486031215611c1957600080fd5b8335611c2481611b37565b9250602084013591506040840135611c3b81611bf6565b809150509250925092565b60008060408385031215611c5957600080fd5b8235611c6481611b37565b91506020830135611c7481611b37565b809150509250929050565b600181811c90821680611c9357607f821691505b602082108103611cb357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176105bb576105bb611cb9565b8082018281126000831280158216821582161715611d0657611d06611cb9565b505092915050565b600082611d2b57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611d4257600080fd5b5051919050565b600060208284031215611d5b57600080fd5b8151611b9581611b37565b600060208284031215611d7857600080fd5b8151611b9581611bf6565b818103818111156105bb576105bb611cb9565b808201808211156105bb576105bb611cb9565b8181036000831280158383131683831282161715611dc957611dc9611cb9565b5092915050565b600060018201611de257611de2611cb9565b5060010190565b634e487b7160e01b600052603260045260246000fdfea26469706673582212204f9aeb23c47a87e6a3a69afd139a7fe33b23423c0102a96ea54e8aebca809e9d64736f6c63430008130033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000e1000000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000a62894d5196bc44e4c3978400ad07e7b30352372

-----Decoded View---------------
Arg [0] : _claimWait (uint256): 3600
Arg [1] : _minimumTokenBalance (uint256): 100000000000000000000000000
Arg [2] : _rewardToken (address): 0xa62894D5196bC44e4C3978400Ad07E7b30352372

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000e10
Arg [1] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [2] : 000000000000000000000000a62894d5196bc44e4c3978400ad07e7b30352372


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.