ERC-20
Overview
Max Total Supply
479,736,916.434649027223867012 Staking_Dividend_Tracker
Holders
332
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
498,051 Staking_Dividend_TrackerValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xBE83F25f...c055919d0 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
StakingContract
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-05 */ // SPDX-License-Identifier: MIT // 84 71 32 64 84 104 101 71 104 111 115 116 68 101 118 // ASCII 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @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); } /** * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of 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 { using SafeMath for uint256; 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * 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 value {ERC20} uses, unless this function is * 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, 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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(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 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 to 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 {} } 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/ReentrancyGuard.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 ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } /// @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 DividendStakingToken is ERC20 { using SafeMath for uint256; constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {} function _transfer(address from, address to, uint256 value) internal virtual override { require(false, "Cant transfer"); super._transfer(from, to, value); } function _mint(address account, uint256 value) internal override { super._mint(account, value); } function _burn(address account, uint256 value) internal override { super._burn(account, value); } function _setDividendBalance(address account, uint256 newBalance) internal { uint256 currentBalance = balanceOf(account); if(newBalance > currentBalance) { uint256 mintAmount = newBalance.sub(currentBalance); _mint(account, mintAmount); } else if(newBalance < currentBalance) { uint256 burnAmount = currentBalance.sub(newBalance); _burn(account, burnAmount); } } } contract StakingContract is Ownable, DividendStakingToken, ReentrancyGuard { using SafeMath for uint256; IERC20 public accelToken; uint256 public totalRewardEthDistributed; uint256 public amountEthForReward; uint256 public requiredTimeForReward; uint256 public rewardEthPerSecond; uint256 public accEthPerShare; uint256 public lastRewardTime; uint256 public PRECISION_FACTOR; uint256 public totalStakedAmount; mapping(address => UserInfo) public userInfo; struct UserInfo { uint256 amount; uint256 depositTime; uint256 rewardEthDebt; uint256 pendingEthReward; } event Deposit(address indexed user, uint256 amount); event EmergencyWithdraw(address indexed user, uint256 amount); event Withdraw(address indexed user, uint256 amount); event Harvest(address indexed user, uint256 amount); constructor (address _addressAccel) DividendStakingToken("Staking_Dividend_Tracker", "Staking_Dividend_Tracker") { accelToken = IERC20(_addressAccel); PRECISION_FACTOR = uint256(10**12); rewardEthPerSecond = 0.000004 ether; // 10 eth/month requiredTimeForReward = 30 days; lastRewardTime = block.timestamp; } receive() external payable { distributeETHRewardToStaking(); } function distributeETHRewardToStaking() public payable { amountEthForReward = amountEthForReward.add(msg.value); } function setRewardEthPerSecond(uint256 _rewardEthPerSecond) public onlyOwner{ rewardEthPerSecond = _rewardEthPerSecond; } function deposit(uint256 _amount) external nonReentrant { UserInfo storage user = userInfo[msg.sender]; require(_amount > 0, "Can't deposit zero amount"); _updatePool(); if (user.amount > 0) { user.pendingEthReward = user.pendingEthReward.add(user.amount.mul(accEthPerShare).div(PRECISION_FACTOR).sub(user.rewardEthDebt)); } user.depositTime = user.depositTime > 0 ? user.depositTime : block.timestamp; if (_amount > 0) { user.amount = user.amount.add(_amount); accelToken.transferFrom(address(msg.sender), address(this), _amount); } totalStakedAmount = totalStakedAmount.add(_amount); user.rewardEthDebt = user.amount.mul(accEthPerShare).div(PRECISION_FACTOR); _setDividendBalance(msg.sender, user.amount); emit Deposit(msg.sender, _amount); } function setTimeRequireForRewardStaking(uint256 _second) public onlyOwner{ requiredTimeForReward = _second; } function withdraw() external nonReentrant { UserInfo storage user = userInfo[msg.sender]; require(user.amount >= 0, "You havent invested yet"); _updatePool(); uint256 pendingEth = user.pendingEthReward.add(user.amount.mul(accEthPerShare).div(PRECISION_FACTOR).sub(user.rewardEthDebt)); accelToken.transfer(address(msg.sender), user.amount); if(block.timestamp > user.depositTime.add(requiredTimeForReward)){ if (pendingEth > 0) { payable(address(msg.sender)).transfer(pendingEth); } }else { amountEthForReward = amountEthForReward.add(pendingEth); } totalStakedAmount = totalStakedAmount.sub(user.amount); user.amount = 0; user.depositTime = 0; user.rewardEthDebt = 0; user.pendingEthReward = 0; _setDividendBalance(msg.sender, user.amount); emit Withdraw(msg.sender, user.amount); } function harvest() external nonReentrant { UserInfo storage user = userInfo[msg.sender]; require(user.amount >= 0, "You havent invested yet"); require(block.timestamp > user.depositTime.add(requiredTimeForReward), "Check locking time require"); _updatePool(); uint256 pendingEth = user.pendingEthReward.add(user.amount.mul(accEthPerShare).div(PRECISION_FACTOR).sub(user.rewardEthDebt)); if (pendingEth > 0) { payable(address(msg.sender)).transfer(pendingEth); user.pendingEthReward = 0; user.rewardEthDebt = user.amount.mul(accEthPerShare).div(PRECISION_FACTOR); emit Harvest(msg.sender, pendingEth); } } function emergencyWithdraw() external nonReentrant { UserInfo storage user = userInfo[msg.sender]; uint256 amountToTransfer = user.amount; user.amount = 0; user.depositTime = 0; user.rewardEthDebt = 0; amountEthForReward = amountEthForReward.add(user.pendingEthReward); user.pendingEthReward = 0; if (amountToTransfer > 0) { accelToken.transfer(address(msg.sender), amountToTransfer); } emit EmergencyWithdraw(msg.sender, amountToTransfer); } function pendingReward(address _user) public view returns (uint256) { UserInfo storage user = userInfo[_user]; uint256 pendingEth; if (block.timestamp > lastRewardTime && totalStakedAmount != 0) { uint256 multiplier = block.timestamp.sub(lastRewardTime); uint256 ethReward = multiplier.mul(rewardEthPerSecond); if(ethReward > amountEthForReward){ ethReward = amountEthForReward; } uint256 adjustedEthPerShare = accEthPerShare.add(ethReward.mul(PRECISION_FACTOR).div(totalStakedAmount)); pendingEth = user.pendingEthReward.add(user.amount.mul(adjustedEthPerShare).div(PRECISION_FACTOR).sub(user.rewardEthDebt)); } else { pendingEth = user.pendingEthReward.add(user.amount.mul(accEthPerShare).div(PRECISION_FACTOR).sub(user.rewardEthDebt)); } return pendingEth; } function ableToHarvestReward(address _user) public view returns (bool) { UserInfo storage user = userInfo[_user]; if(block.timestamp > user.depositTime.add(requiredTimeForReward) && pendingReward(_user) > 0){ return true; }else return false; } function _updatePool() internal { if (block.timestamp <= lastRewardTime) { return; } if (totalStakedAmount == 0) { lastRewardTime = block.timestamp; return; } uint256 multiplier = block.timestamp.sub(lastRewardTime); uint256 ethReward = multiplier.mul(rewardEthPerSecond); if(ethReward > amountEthForReward){ ethReward = amountEthForReward; } accEthPerShare = accEthPerShare.add(ethReward.mul(PRECISION_FACTOR).div(totalStakedAmount)); amountEthForReward = amountEthForReward.sub(ethReward); totalRewardEthDistributed = totalRewardEthDistributed.add(ethReward); lastRewardTime = block.timestamp; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_addressAccel","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":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Harvest","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":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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"PRECISION_FACTOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"ableToHarvestReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accEthPerShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accelToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"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":[],"name":"amountEthForReward","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":[],"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":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distributeETHRewardToStaking","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","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":[],"name":"lastRewardTime","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":"address","name":"_user","type":"address"}],"name":"pendingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requiredTimeForReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardEthPerSecond","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardEthPerSecond","type":"uint256"}],"name":"setRewardEthPerSecond","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_second","type":"uint256"}],"name":"setTimeRequireForRewardStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRewardEthDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStakedAmount","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"depositTime","type":"uint256"},{"internalType":"uint256","name":"rewardEthDebt","type":"uint256"},{"internalType":"uint256","name":"pendingEthReward","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001d7438038062001d74833981016040819052620000349162000222565b6040518060400160405280601881526020017f5374616b696e675f4469766964656e645f547261636b657200000000000000008152506040518060400160405280601881526020017f5374616b696e675f4469766964656e645f547261636b6572000000000000000081525081816000620000b46200017860201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620001139060049060208501906200017c565b508051620001299060059060208401906200017c565b505060016006555050600780546001600160a01b0319166001600160a01b0393909316929092179091555064e8d4a51000600e556503a352944000600b5562278d00600a5542600d556200028f565b3390565b8280546200018a9062000252565b90600052602060002090601f016020900481019282620001ae5760008555620001f9565b82601f10620001c957805160ff1916838001178555620001f9565b82800160010185558215620001f9579182015b82811115620001f9578251825591602001919060010190620001dc565b50620002079291506200020b565b5090565b5b808211156200020757600081556001016200020c565b60006020828403121562000234578081fd5b81516001600160a01b03811681146200024b578182fd5b9392505050565b600181811c908216806200026757607f821691505b602082108114156200028957634e487b7160e01b600052602260045260246000fd5b50919050565b611ad5806200029f6000396000f3fe6080604052600436106101f25760003560e01c80638ae248991161010d578063b6b55f25116100a0578063dd62ed3e1161006f578063dd62ed3e1461058d578063e82099be146105d3578063f1377164146105db578063f2fde38b146105f1578063f40f0f521461061157600080fd5b8063b6b55f2514610522578063ccd34cd514610542578063ccf0e95414610558578063db2e21bc1461057857600080fd5b80639fa12f07116100dc5780639fa12f07146104ac578063a4041cfd146104cc578063a457c2d7146104e2578063a9059cbb1461050257600080fd5b80638ae248991461042f5780638da5cb5b1461044f5780639231cf741461048157806395d89b411461049757600080fd5b8063395093511161018557806370a082311161015457806370a08231146103b8578063715018a6146103ee5780637c099f9d14610403578063888ba1681461041957600080fd5b806339509351146103585780633ccfd60b146103785780634641257d1461038d578063567e98f9146103a257600080fd5b80631959a002116101c15780631959a0021461029a57806323b872dd146102fc5780632bab047f1461031c578063313ce5671461033c57600080fd5b806306fdde031461020657806307867b7d14610231578063095ea7b31461025557806318160ddd1461028557600080fd5b36610201576101ff610631565b005b600080fd5b34801561021257600080fd5b5061021b610643565b60405161022891906118b8565b60405180910390f35b34801561023d57600080fd5b50610247600c5481565b604051908152602001610228565b34801561026157600080fd5b50610275610270366004611857565b6106d5565b6040519015158152602001610228565b34801561029157600080fd5b50600354610247565b3480156102a657600080fd5b506102dc6102b53660046117d0565b60106020526000908152604090208054600182015460028301546003909301549192909184565b604080519485526020850193909352918301526060820152608001610228565b34801561030857600080fd5b5061027561031736600461181c565b6106ec565b34801561032857600080fd5b506102756103373660046117d0565b610755565b34801561034857600080fd5b5060405160128152602001610228565b34801561036457600080fd5b50610275610373366004611857565b6107b1565b34801561038457600080fd5b506101ff6107e7565b34801561039957600080fd5b506101ff6109d5565b3480156103ae57600080fd5b50610247600f5481565b3480156103c457600080fd5b506102476103d33660046117d0565b6001600160a01b031660009081526001602052604090205490565b3480156103fa57600080fd5b506101ff610b33565b34801561040f57600080fd5b50610247600a5481565b34801561042557600080fd5b5061024760095481565b34801561043b57600080fd5b506101ff61044a3660046118a0565b610ba7565b34801561045b57600080fd5b506000546001600160a01b03165b6040516001600160a01b039091168152602001610228565b34801561048d57600080fd5b50610247600d5481565b3480156104a357600080fd5b5061021b610bd6565b3480156104b857600080fd5b506101ff6104c73660046118a0565b610be5565b3480156104d857600080fd5b50610247600b5481565b3480156104ee57600080fd5b506102756104fd366004611857565b610c14565b34801561050e57600080fd5b5061027561051d366004611857565b610c63565b34801561052e57600080fd5b506101ff61053d3660046118a0565b610c70565b34801561054e57600080fd5b50610247600e5481565b34801561056457600080fd5b50600754610469906001600160a01b031681565b34801561058457600080fd5b506101ff610e66565b34801561059957600080fd5b506102476105a83660046117ea565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101ff610631565b3480156105e757600080fd5b5061024760085481565b3480156105fd57600080fd5b506101ff61060c3660046117d0565b610f8e565b34801561061d57600080fd5b5061024761062c3660046117d0565b611078565b60095461063e9034611186565b600955565b606060048054610652906119e5565b80601f016020809104026020016040519081016040528092919081815260200182805461067e906119e5565b80156106cb5780601f106106a0576101008083540402835291602001916106cb565b820191906000526020600020905b8154815290600101906020018083116106ae57829003601f168201915b5050505050905090565b60006106e23384846111e5565b5060015b92915050565b60006106f9848484611309565b61074b843361074685604051806060016040528060288152602001611a53602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190611346565b6111e5565b5060019392505050565b6001600160a01b0381166000908152601060205260408120600a54600182015461077e91611186565b421180156107945750600061079284611078565b115b156107a25750600192915050565b50600092915050565b50919050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916106e29185906107469086611186565b600260065414156108135760405162461bcd60e51b815260040161080a90611940565b60405180910390fd5b600260065533600090815260106020526040902061082f611380565b60006108726108678360020154610861600e5461085b600c54886000015461142290919063ffffffff16565b906114a1565b906114e3565b600384015490611186565b600754835460405163a9059cbb60e01b815233600482015260248101919091529192506001600160a01b03169063a9059cbb90604401602060405180830381600087803b1580156108c257600080fd5b505af11580156108d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108fa9190611880565b50600a54600183015461090c91611186565b42111561094d57801561094857604051339082156108fc029083906000818181858888f19350505050158015610946573d6000803e3d6000fd5b505b61095e565b60095461095a9082611186565b6009555b8154600f5461096c916114e3565b600f556000808355600183018190556002830181905560038301819055610994903390611525565b815460405190815233907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364906020015b60405180910390a250506001600655565b600260065414156109f85760405162461bcd60e51b815260040161080a90611940565b6002600655336000908152601060205260409020600a546001820154610a1d91611186565b4211610a6b5760405162461bcd60e51b815260206004820152601a60248201527f436865636b206c6f636b696e672074696d652072657175697265000000000000604482015260640161080a565b610a73611380565b6000610a9f6108678360020154610861600e5461085b600c54886000015461142290919063ffffffff16565b90508015610b2a57604051339082156108fc029083906000818181858888f19350505050158015610ad4573d6000803e3d6000fd5b5060006003830155600e54600c548354610af3929161085b9190611422565b600283015560405181815233907fc9695243a805adb74c91f28311176c65b417e842d5699893cef56d18bfa48cba906020016109c4565b50506001600655565b6000546001600160a01b03163314610b5d5760405162461bcd60e51b815260040161080a9061190b565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610bd15760405162461bcd60e51b815260040161080a9061190b565b600a55565b606060058054610652906119e5565b6000546001600160a01b03163314610c0f5760405162461bcd60e51b815260040161080a9061190b565b600b55565b60006106e2338461074685604051806060016040528060258152602001611a7b602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190611346565b60006106e2338484611309565b60026006541415610c935760405162461bcd60e51b815260040161080a90611940565b600260065533600090815260106020526040902081610cf45760405162461bcd60e51b815260206004820152601960248201527f43616e2774206465706f736974207a65726f20616d6f756e7400000000000000604482015260640161080a565b610cfc611380565b805415610d3e57610d38610d2d8260020154610861600e5461085b600c54876000015461142290919063ffffffff16565b600383015490611186565b60038201555b6000816001015411610d505742610d56565b80600101545b60018201558115610dfb578054610d6d9083611186565b81556007546040516323b872dd60e01b8152336004820152306024820152604481018490526001600160a01b03909116906323b872dd90606401602060405180830381600087803b158015610dc157600080fd5b505af1158015610dd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df99190611880565b505b600f54610e089083611186565b600f55600e54600c548254610e22929161085b9190611422565b60028201558054610e34903390611525565b60405182815233907fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c906020016109c4565b60026006541415610e895760405162461bcd60e51b815260040161080a90611940565b60026006819055336000908152601060205260408120805482825560018201839055928101919091556003810154600954919291610ec691611186565b600955600060038301558015610f5c5760075460405163a9059cbb60e01b8152336004820152602481018390526001600160a01b039091169063a9059cbb90604401602060405180830381600087803b158015610f2257600080fd5b505af1158015610f36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5a9190611880565b505b60405181815233907f5fafa99d0643513820be26656b45130b01e1c03062e1266bf36f88cbd3bd9695906020016109c4565b6000546001600160a01b03163314610fb85760405162461bcd60e51b815260040161080a9061190b565b6001600160a01b03811661101d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080a565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0381166000908152601060205260408120600d548290421180156110a45750600f5415155b156111525760006110c0600d54426114e390919063ffffffff16565b905060006110d9600b548361142290919063ffffffff16565b90506009548111156110ea57506009545b600061111361110a600f5461085b600e548661142290919063ffffffff16565b600c5490611186565b905061114861113d8660020154610861600e5461085b868b6000015461142290919063ffffffff16565b600387015490611186565b935050505061117f565b61117c6108678360020154610861600e5461085b600c54886000015461142290919063ffffffff16565b90505b9392505050565b6000806111938385611977565b90508381101561117f5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161080a565b6001600160a01b0383166112475760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161080a565b6001600160a01b0382166112a85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161080a565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60405162461bcd60e51b815260206004820152600d60248201526c21b0b73a103a3930b739b332b960991b604482015260640161080a565b505050565b6000818484111561136a5760405162461bcd60e51b815260040161080a91906118b8565b50600061137784866119ce565b95945050505050565b600d54421161138b57565b600f546113985742600d55565b60006113af600d54426114e390919063ffffffff16565b905060006113c8600b548361142290919063ffffffff16565b90506009548111156113d957506009545b6113f761110a600f5461085b600e548561142290919063ffffffff16565b600c5560095461140790826114e3565b6009556008546114179082611186565b600855505042600d55565b600082611431575060006106e6565b600061143d83856119af565b90508261144a858361198f565b1461117f5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161080a565b600061117f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611584565b600061117f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611346565b6001600160a01b0382166000908152600160205260409020548082111561156457600061155283836114e3565b905061155e84826115b2565b50505050565b8082101561134157600061157882846114e3565b905061155e84826115c0565b600081836115a55760405162461bcd60e51b815260040161080a91906118b8565b506000611377848661198f565b6115bc82826115ca565b5050565b6115bc82826116b0565b6001600160a01b0382166116205760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161080a565b60035461162d9082611186565b6003556001600160a01b0382166000908152600160205260409020546116539082611186565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906116a49085815260200190565b60405180910390a35050565b6001600160a01b0382166117105760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161080a565b61174d81604051806060016040528060228152602001611a31602291396001600160a01b0385166000908152600160205260409020549190611346565b6001600160a01b03831660009081526001602052604090205560035461177390826114e3565b6003556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016116a4565b80356001600160a01b03811681146117cb57600080fd5b919050565b6000602082840312156117e1578081fd5b61117f826117b4565b600080604083850312156117fc578081fd5b611805836117b4565b9150611813602084016117b4565b90509250929050565b600080600060608486031215611830578081fd5b611839846117b4565b9250611847602085016117b4565b9150604084013590509250925092565b60008060408385031215611869578182fd5b611872836117b4565b946020939093013593505050565b600060208284031215611891578081fd5b8151801515811461117f578182fd5b6000602082840312156118b1578081fd5b5035919050565b6000602080835283518082850152825b818110156118e4578581018301518582016040015282016118c8565b818111156118f55783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6000821982111561198a5761198a611a1a565b500190565b6000826119aa57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156119c9576119c9611a1a565b500290565b6000828210156119e0576119e0611a1a565b500390565b600181811c908216806119f957607f821691505b602082108114156107ab57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203cccdcd1a225b77af4b22a469d4e583fcaeafc5688ec7f4fe58471055dd37b8464736f6c634300080400330000000000000000000000007282e42707879b0c5530b026429b66d5592d0753
Deployed Bytecode
0x6080604052600436106101f25760003560e01c80638ae248991161010d578063b6b55f25116100a0578063dd62ed3e1161006f578063dd62ed3e1461058d578063e82099be146105d3578063f1377164146105db578063f2fde38b146105f1578063f40f0f521461061157600080fd5b8063b6b55f2514610522578063ccd34cd514610542578063ccf0e95414610558578063db2e21bc1461057857600080fd5b80639fa12f07116100dc5780639fa12f07146104ac578063a4041cfd146104cc578063a457c2d7146104e2578063a9059cbb1461050257600080fd5b80638ae248991461042f5780638da5cb5b1461044f5780639231cf741461048157806395d89b411461049757600080fd5b8063395093511161018557806370a082311161015457806370a08231146103b8578063715018a6146103ee5780637c099f9d14610403578063888ba1681461041957600080fd5b806339509351146103585780633ccfd60b146103785780634641257d1461038d578063567e98f9146103a257600080fd5b80631959a002116101c15780631959a0021461029a57806323b872dd146102fc5780632bab047f1461031c578063313ce5671461033c57600080fd5b806306fdde031461020657806307867b7d14610231578063095ea7b31461025557806318160ddd1461028557600080fd5b36610201576101ff610631565b005b600080fd5b34801561021257600080fd5b5061021b610643565b60405161022891906118b8565b60405180910390f35b34801561023d57600080fd5b50610247600c5481565b604051908152602001610228565b34801561026157600080fd5b50610275610270366004611857565b6106d5565b6040519015158152602001610228565b34801561029157600080fd5b50600354610247565b3480156102a657600080fd5b506102dc6102b53660046117d0565b60106020526000908152604090208054600182015460028301546003909301549192909184565b604080519485526020850193909352918301526060820152608001610228565b34801561030857600080fd5b5061027561031736600461181c565b6106ec565b34801561032857600080fd5b506102756103373660046117d0565b610755565b34801561034857600080fd5b5060405160128152602001610228565b34801561036457600080fd5b50610275610373366004611857565b6107b1565b34801561038457600080fd5b506101ff6107e7565b34801561039957600080fd5b506101ff6109d5565b3480156103ae57600080fd5b50610247600f5481565b3480156103c457600080fd5b506102476103d33660046117d0565b6001600160a01b031660009081526001602052604090205490565b3480156103fa57600080fd5b506101ff610b33565b34801561040f57600080fd5b50610247600a5481565b34801561042557600080fd5b5061024760095481565b34801561043b57600080fd5b506101ff61044a3660046118a0565b610ba7565b34801561045b57600080fd5b506000546001600160a01b03165b6040516001600160a01b039091168152602001610228565b34801561048d57600080fd5b50610247600d5481565b3480156104a357600080fd5b5061021b610bd6565b3480156104b857600080fd5b506101ff6104c73660046118a0565b610be5565b3480156104d857600080fd5b50610247600b5481565b3480156104ee57600080fd5b506102756104fd366004611857565b610c14565b34801561050e57600080fd5b5061027561051d366004611857565b610c63565b34801561052e57600080fd5b506101ff61053d3660046118a0565b610c70565b34801561054e57600080fd5b50610247600e5481565b34801561056457600080fd5b50600754610469906001600160a01b031681565b34801561058457600080fd5b506101ff610e66565b34801561059957600080fd5b506102476105a83660046117ea565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101ff610631565b3480156105e757600080fd5b5061024760085481565b3480156105fd57600080fd5b506101ff61060c3660046117d0565b610f8e565b34801561061d57600080fd5b5061024761062c3660046117d0565b611078565b60095461063e9034611186565b600955565b606060048054610652906119e5565b80601f016020809104026020016040519081016040528092919081815260200182805461067e906119e5565b80156106cb5780601f106106a0576101008083540402835291602001916106cb565b820191906000526020600020905b8154815290600101906020018083116106ae57829003601f168201915b5050505050905090565b60006106e23384846111e5565b5060015b92915050565b60006106f9848484611309565b61074b843361074685604051806060016040528060288152602001611a53602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190611346565b6111e5565b5060019392505050565b6001600160a01b0381166000908152601060205260408120600a54600182015461077e91611186565b421180156107945750600061079284611078565b115b156107a25750600192915050565b50600092915050565b50919050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916106e29185906107469086611186565b600260065414156108135760405162461bcd60e51b815260040161080a90611940565b60405180910390fd5b600260065533600090815260106020526040902061082f611380565b60006108726108678360020154610861600e5461085b600c54886000015461142290919063ffffffff16565b906114a1565b906114e3565b600384015490611186565b600754835460405163a9059cbb60e01b815233600482015260248101919091529192506001600160a01b03169063a9059cbb90604401602060405180830381600087803b1580156108c257600080fd5b505af11580156108d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108fa9190611880565b50600a54600183015461090c91611186565b42111561094d57801561094857604051339082156108fc029083906000818181858888f19350505050158015610946573d6000803e3d6000fd5b505b61095e565b60095461095a9082611186565b6009555b8154600f5461096c916114e3565b600f556000808355600183018190556002830181905560038301819055610994903390611525565b815460405190815233907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364906020015b60405180910390a250506001600655565b600260065414156109f85760405162461bcd60e51b815260040161080a90611940565b6002600655336000908152601060205260409020600a546001820154610a1d91611186565b4211610a6b5760405162461bcd60e51b815260206004820152601a60248201527f436865636b206c6f636b696e672074696d652072657175697265000000000000604482015260640161080a565b610a73611380565b6000610a9f6108678360020154610861600e5461085b600c54886000015461142290919063ffffffff16565b90508015610b2a57604051339082156108fc029083906000818181858888f19350505050158015610ad4573d6000803e3d6000fd5b5060006003830155600e54600c548354610af3929161085b9190611422565b600283015560405181815233907fc9695243a805adb74c91f28311176c65b417e842d5699893cef56d18bfa48cba906020016109c4565b50506001600655565b6000546001600160a01b03163314610b5d5760405162461bcd60e51b815260040161080a9061190b565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610bd15760405162461bcd60e51b815260040161080a9061190b565b600a55565b606060058054610652906119e5565b6000546001600160a01b03163314610c0f5760405162461bcd60e51b815260040161080a9061190b565b600b55565b60006106e2338461074685604051806060016040528060258152602001611a7b602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190611346565b60006106e2338484611309565b60026006541415610c935760405162461bcd60e51b815260040161080a90611940565b600260065533600090815260106020526040902081610cf45760405162461bcd60e51b815260206004820152601960248201527f43616e2774206465706f736974207a65726f20616d6f756e7400000000000000604482015260640161080a565b610cfc611380565b805415610d3e57610d38610d2d8260020154610861600e5461085b600c54876000015461142290919063ffffffff16565b600383015490611186565b60038201555b6000816001015411610d505742610d56565b80600101545b60018201558115610dfb578054610d6d9083611186565b81556007546040516323b872dd60e01b8152336004820152306024820152604481018490526001600160a01b03909116906323b872dd90606401602060405180830381600087803b158015610dc157600080fd5b505af1158015610dd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df99190611880565b505b600f54610e089083611186565b600f55600e54600c548254610e22929161085b9190611422565b60028201558054610e34903390611525565b60405182815233907fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c906020016109c4565b60026006541415610e895760405162461bcd60e51b815260040161080a90611940565b60026006819055336000908152601060205260408120805482825560018201839055928101919091556003810154600954919291610ec691611186565b600955600060038301558015610f5c5760075460405163a9059cbb60e01b8152336004820152602481018390526001600160a01b039091169063a9059cbb90604401602060405180830381600087803b158015610f2257600080fd5b505af1158015610f36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5a9190611880565b505b60405181815233907f5fafa99d0643513820be26656b45130b01e1c03062e1266bf36f88cbd3bd9695906020016109c4565b6000546001600160a01b03163314610fb85760405162461bcd60e51b815260040161080a9061190b565b6001600160a01b03811661101d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080a565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0381166000908152601060205260408120600d548290421180156110a45750600f5415155b156111525760006110c0600d54426114e390919063ffffffff16565b905060006110d9600b548361142290919063ffffffff16565b90506009548111156110ea57506009545b600061111361110a600f5461085b600e548661142290919063ffffffff16565b600c5490611186565b905061114861113d8660020154610861600e5461085b868b6000015461142290919063ffffffff16565b600387015490611186565b935050505061117f565b61117c6108678360020154610861600e5461085b600c54886000015461142290919063ffffffff16565b90505b9392505050565b6000806111938385611977565b90508381101561117f5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161080a565b6001600160a01b0383166112475760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161080a565b6001600160a01b0382166112a85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161080a565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60405162461bcd60e51b815260206004820152600d60248201526c21b0b73a103a3930b739b332b960991b604482015260640161080a565b505050565b6000818484111561136a5760405162461bcd60e51b815260040161080a91906118b8565b50600061137784866119ce565b95945050505050565b600d54421161138b57565b600f546113985742600d55565b60006113af600d54426114e390919063ffffffff16565b905060006113c8600b548361142290919063ffffffff16565b90506009548111156113d957506009545b6113f761110a600f5461085b600e548561142290919063ffffffff16565b600c5560095461140790826114e3565b6009556008546114179082611186565b600855505042600d55565b600082611431575060006106e6565b600061143d83856119af565b90508261144a858361198f565b1461117f5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161080a565b600061117f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611584565b600061117f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611346565b6001600160a01b0382166000908152600160205260409020548082111561156457600061155283836114e3565b905061155e84826115b2565b50505050565b8082101561134157600061157882846114e3565b905061155e84826115c0565b600081836115a55760405162461bcd60e51b815260040161080a91906118b8565b506000611377848661198f565b6115bc82826115ca565b5050565b6115bc82826116b0565b6001600160a01b0382166116205760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161080a565b60035461162d9082611186565b6003556001600160a01b0382166000908152600160205260409020546116539082611186565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906116a49085815260200190565b60405180910390a35050565b6001600160a01b0382166117105760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161080a565b61174d81604051806060016040528060228152602001611a31602291396001600160a01b0385166000908152600160205260409020549190611346565b6001600160a01b03831660009081526001602052604090205560035461177390826114e3565b6003556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016116a4565b80356001600160a01b03811681146117cb57600080fd5b919050565b6000602082840312156117e1578081fd5b61117f826117b4565b600080604083850312156117fc578081fd5b611805836117b4565b9150611813602084016117b4565b90509250929050565b600080600060608486031215611830578081fd5b611839846117b4565b9250611847602085016117b4565b9150604084013590509250925092565b60008060408385031215611869578182fd5b611872836117b4565b946020939093013593505050565b600060208284031215611891578081fd5b8151801515811461117f578182fd5b6000602082840312156118b1578081fd5b5035919050565b6000602080835283518082850152825b818110156118e4578581018301518582016040015282016118c8565b818111156118f55783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6000821982111561198a5761198a611a1a565b500190565b6000826119aa57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156119c9576119c9611a1a565b500290565b6000828210156119e0576119e0611a1a565b500390565b600181811c908216806119f957607f821691505b602082108114156107ab57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203cccdcd1a225b77af4b22a469d4e583fcaeafc5688ec7f4fe58471055dd37b8464736f6c63430008040033
Deployed Bytecode Sourcemap
25360:7037:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26685:30;:28;:30::i;:::-;25360:7037;;;;;6318:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25680:29;;;;;;;;;;;;;;;;;;;9480:25:1;;;9468:2;9453:18;25680:29:0;9435:76:1;8485:169:0;;;;;;;;;;-1:-1:-1;8485:169:0;;;;;:::i;:::-;;:::i;:::-;;;2809:14:1;;2802:22;2784:41;;2772:2;2757:18;8485:169:0;2739:92:1;7438:108:0;;;;;;;;;;-1:-1:-1;7526:12:0;;7438:108;;25829:44;;;;;;;;;;-1:-1:-1;25829:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9747:25:1;;;9803:2;9788:18;;9781:34;;;;9831:18;;;9824:34;9889:2;9874:18;;9867:34;9734:3;9719:19;25829:44:0;9701:206:1;9136:355:0;;;;;;;;;;-1:-1:-1;9136:355:0;;;;;:::i;:::-;;:::i;31317:301::-;;;;;;;;;;-1:-1:-1;31317:301:0;;;;;:::i;:::-;;:::i;7280:93::-;;;;;;;;;;-1:-1:-1;7280:93:0;;7363:2;10054:36:1;;10042:2;10027:18;7280:93:0;10009:87:1;9900:218:0;;;;;;;;;;-1:-1:-1;9900:218:0;;;;;:::i;:::-;;:::i;28073:989::-;;;;;;;;;;;;;:::i;29070:728::-;;;;;;;;;;;;;:::i;25790:32::-;;;;;;;;;;;;;;;;7609:127;;;;;;;;;;-1:-1:-1;7609:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;7710:18:0;7683:7;7710:18;;;:9;:18;;;;;;;7609:127;16058:148;;;;;;;;;;;;;:::i;25597:36::-;;;;;;;;;;;;;;;;25557:33;;;;;;;;;;;;;;;;27942:123;;;;;;;;;;-1:-1:-1;27942:123:0;;;;;:::i;:::-;;:::i;15416:79::-;;;;;;;;;;-1:-1:-1;15454:7:0;15481:6;-1:-1:-1;;;;;15481:6:0;15416:79;;;-1:-1:-1;;;;;1941:32:1;;;1923:51;;1911:2;1896:18;15416:79:0;1878:102:1;25716:29:0;;;;;;;;;;;;;;;;6537:104;;;;;;;;;;;;;:::i;26875:135::-;;;;;;;;;;-1:-1:-1;26875:135:0;;;;;:::i;:::-;;:::i;25640:33::-;;;;;;;;;;;;;;;;10621:269;;;;;;;;;;-1:-1:-1;10621:269:0;;;;;:::i;:::-;;:::i;7949:175::-;;;;;;;;;;-1:-1:-1;7949:175:0;;;;;:::i;:::-;;:::i;27018:916::-;;;;;;;;;;-1:-1:-1;27018:916:0;;;;;:::i;:::-;;:::i;25752:31::-;;;;;;;;;;;;;;;;25477:24;;;;;;;;;;-1:-1:-1;25477:24:0;;;;-1:-1:-1;;;;;25477:24:0;;;29806:554;;;;;;;;;;;;;:::i;8187:151::-;;;;;;;;;;-1:-1:-1;8187:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;8303:18:0;;;8276:7;8303:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8187:151;26731:128;;;:::i;25510:40::-;;;;;;;;;;;;;;;;16361:244;;;;;;;;;;-1:-1:-1;16361:244:0;;;;;:::i;:::-;;:::i;30368:941::-;;;;;;;;;;-1:-1:-1;30368:941:0;;;;;:::i;:::-;;:::i;26731:128::-;26818:18;;:33;;26841:9;26818:22;:33::i;:::-;26797:18;:54;26731:128::o;6318:100::-;6372:13;6405:5;6398:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6318:100;:::o;8485:169::-;8568:4;8585:39;749:10;8608:7;8617:6;8585:8;:39::i;:::-;-1:-1:-1;8642:4:0;8485:169;;;;;:::o;9136:355::-;9276:4;9293:36;9303:6;9311:9;9322:6;9293:9;:36::i;:::-;9340:121;9349:6;749:10;9371:89;9409:6;9371:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9371:19:0;;;;;;:11;:19;;;;;;;;749:10;9371:33;;;;;;;;;;:37;:89::i;:::-;9340:8;:121::i;:::-;-1:-1:-1;9479:4:0;9136:355;;;;;:::o;31317:301::-;-1:-1:-1;;;;;31423:15:0;;31382:4;31423:15;;;:8;:15;;;;;31491:21;;31470:16;;;;:43;;:20;:43::i;:::-;31452:15;:61;:89;;;;;31540:1;31517:20;31531:5;31517:13;:20::i;:::-;:24;31452:89;31449:161;;;-1:-1:-1;31564:4:0;;31317:301;-1:-1:-1;;31317:301:0:o;31449:161::-;-1:-1:-1;31605:5:0;;31317:301;-1:-1:-1;;31317:301:0:o;31449:161::-;31317:301;;;;:::o;9900:218::-;749:10;9988:4;10037:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10037:34:0;;;;;;;;;;9988:4;;10005:83;;10028:7;;10037:50;;10076:10;10037:38;:50::i;28073:989::-;23046:1;23642:7;;:19;;23634:63;;;;-1:-1:-1;;;23634:63:0;;;;;;;:::i;:::-;;;;;;;;;23046:1;23775:7;:18;28159:10:::1;28126:21;28150:20:::0;;;:8:::1;:20;::::0;;;;28246:13:::1;:11;:13::i;:::-;28272:18;28293:104;28319:77;28377:4;:18;;;28319:53;28355:16;;28319:31;28335:14;;28319:4;:11;;;:15;;:31;;;;:::i;:::-;:35:::0;::::1;:53::i;:::-;:57:::0;::::1;:77::i;:::-;28293:21;::::0;::::1;::::0;;:25:::1;:104::i;:::-;28410:10;::::0;28451:11;;28410:53:::1;::::0;-1:-1:-1;;;28410:53:0;;28438:10:::1;28410:53;::::0;::::1;2539:51:1::0;2606:18;;;2599:34;;;;28272:125:0;;-1:-1:-1;;;;;;28410:10:0::1;::::0;:19:::1;::::0;2512:18:1;;28410:53:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;28518:21:0::1;::::0;28497:16:::1;::::0;::::1;::::0;:43:::1;::::0;:20:::1;:43::i;:::-;28479:15;:61;28476:282;;;28560:14:::0;;28556:104:::1;;28595:49;::::0;28611:10:::1;::::0;28595:49;::::1;;;::::0;28633:10;;28595:49:::1;::::0;;;28633:10;28611;28595:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;28556:104;28476:282;;;28712:18;::::0;:34:::1;::::0;28735:10;28712:22:::1;:34::i;:::-;28691:18;:55:::0;28476:282:::1;28810:11:::0;;28788:17:::1;::::0;:34:::1;::::0;:21:::1;:34::i;:::-;28768:17;:54:::0;28847:1:::1;28833:15:::0;;;28859:16:::1;::::0;::::1;:20:::0;;;28890:18:::1;::::0;::::1;:22:::0;;;28923:21:::1;::::0;::::1;:25:::0;;;28961:44:::1;::::0;28981:10:::1;::::0;28961:19:::1;:44::i;:::-;29042:11:::0;;29021:33:::1;::::0;9480:25:1;;;29030:10:0::1;::::0;29021:33:::1;::::0;9468:2:1;9453:18;29021:33:0::1;;;;;;;;-1:-1:-1::0;;23002:1:0;23954:7;:22;28073:989::o;29070:728::-;23046:1;23642:7;;:19;;23634:63;;;;-1:-1:-1;;;23634:63:0;;;;;;;:::i;:::-;23046:1;23775:7;:18;29155:10:::1;29122:21;29146:20:::0;;;:8:::1;:20;::::0;;;;29287:21:::1;::::0;29266:16:::1;::::0;::::1;::::0;:43:::1;::::0;:20:::1;:43::i;:::-;29248:15;:61;29240:100;;;::::0;-1:-1:-1;;;29240:100:0;;5779:2:1;29240:100:0::1;::::0;::::1;5761:21:1::0;5818:2;5798:18;;;5791:30;5857:28;5837:18;;;5830:56;5903:18;;29240:100:0::1;5751:176:1::0;29240:100:0::1;29353:13;:11;:13::i;:::-;29379:18;29400:104;29426:77;29484:4;:18;;;29426:53;29462:16;;29426:31;29442:14;;29426:4;:11;;;:15;;:31;;;;:::i;29400:104::-;29379:125:::0;-1:-1:-1;29519:14:0;;29515:276:::1;;29550:49;::::0;29566:10:::1;::::0;29550:49;::::1;;;::::0;29588:10;;29550:49:::1;::::0;;;29588:10;29566;29550:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;29638:1:0::1;29614:21;::::0;::::1;:25:::0;29711:16:::1;::::0;29691:14:::1;::::0;29675:11;;:53:::1;::::0;29711:16;29675:31:::1;::::0;:11;:15:::1;:31::i;:53::-;29654:18;::::0;::::1;:74:::0;29748:31:::1;::::0;9480:25:1;;;29756:10:0::1;::::0;29748:31:::1;::::0;9468:2:1;9453:18;29748:31:0::1;9435:76:1::0;29515:276:0::1;-1:-1:-1::0;;23002:1:0;23954:7;:22;29070:728::o;16058:148::-;15628:6;;-1:-1:-1;;;;;15628:6:0;749:10;15628:22;15620:67;;;;-1:-1:-1;;;15620:67:0;;;;;;;:::i;:::-;16165:1:::1;16149:6:::0;;16128:40:::1;::::0;-1:-1:-1;;;;;16149:6:0;;::::1;::::0;16128:40:::1;::::0;16165:1;;16128:40:::1;16196:1;16179:19:::0;;-1:-1:-1;;;;;;16179:19:0::1;::::0;;16058:148::o;27942:123::-;15628:6;;-1:-1:-1;;;;;15628:6:0;749:10;15628:22;15620:67;;;;-1:-1:-1;;;15620:67:0;;;;;;;:::i;:::-;28026:21:::1;:31:::0;27942:123::o;6537:104::-;6593:13;6626:7;6619:14;;;;;:::i;26875:135::-;15628:6;;-1:-1:-1;;;;;15628:6:0;749:10;15628:22;15620:67;;;;-1:-1:-1;;;15620:67:0;;;;;;;:::i;:::-;26962:18:::1;:40:::0;26875:135::o;10621:269::-;10714:4;10731:129;749:10;10754:7;10763:96;10802:15;10763:96;;;;;;;;;;;;;;;;;749:10;10763:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10763:34:0;;;;;;;;;;;;:38;:96::i;7949:175::-;8035:4;8052:42;749:10;8076:9;8087:6;8052:9;:42::i;27018:916::-;23046:1;23642:7;;:19;;23634:63;;;;-1:-1:-1;;;23634:63:0;;;;;;;:::i;:::-;23046:1;23775:7;:18;27118:10:::1;27085:21;27109:20:::0;;;:8:::1;:20;::::0;;;;27148:11;27140:49:::1;;;::::0;-1:-1:-1;;;27140:49:0;;6486:2:1;27140:49:0::1;::::0;::::1;6468:21:1::0;6525:2;6505:18;;;6498:30;6564:27;6544:18;;;6537:55;6609:18;;27140:49:0::1;6458:175:1::0;27140:49:0::1;27202:13;:11;:13::i;:::-;27232:11:::0;;:15;27228:176:::1;;27288:104;27314:77;27372:4;:18;;;27314:53;27350:16;;27314:31;27330:14;;27314:4;:11;;;:15;;:31;;;;:::i;:77::-;27288:21;::::0;::::1;::::0;;:25:::1;:104::i;:::-;27264:21;::::0;::::1;:128:::0;27228:176:::1;27454:1;27435:4;:16;;;:20;:57;;27477:15;27435:57;;;27458:4;:16;;;27435:57;27416:16;::::0;::::1;:76:::0;27517:11;;27513:165:::1;;27559:11:::0;;:24:::1;::::0;27575:7;27559:15:::1;:24::i;:::-;27545:38:::0;;27598:10:::1;::::0;:68:::1;::::0;-1:-1:-1;;;27598:68:0;;27630:10:::1;27598:68;::::0;::::1;2225:34:1::0;27651:4:0::1;2275:18:1::0;;;2268:43;2327:18;;;2320:34;;;-1:-1:-1;;;;;27598:10:0;;::::1;::::0;:23:::1;::::0;2160:18:1;;27598:68:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27513:165;27710:17;::::0;:30:::1;::::0;27732:7;27710:21:::1;:30::i;:::-;27690:17;:50:::0;27808:16:::1;::::0;27788:14:::1;::::0;27772:11;;:53:::1;::::0;27808:16;27772:31:::1;::::0;:11;:15:::1;:31::i;:53::-;27751:18;::::0;::::1;:74:::0;27870:11;;27838:44:::1;::::0;27858:10:::1;::::0;27838:19:::1;:44::i;:::-;27898:28;::::0;9480:25:1;;;27906:10:0::1;::::0;27898:28:::1;::::0;9468:2:1;9453:18;27898:28:0::1;9435:76:1::0;29806:554:0;23046:1;23642:7;;:19;;23634:63;;;;-1:-1:-1;;;23634:63:0;;;;;;;:::i;:::-;23046:1;23775:7;:18;;;29901:10:::1;29868:21;29892:20:::0;;;:8:::1;:20;::::0;;;;29950:11;;29972:15;;;-1:-1:-1;29998:16:0;::::1;:20:::0;;;30029:18;;::::1;:22:::0;;;;30106:21:::1;::::0;::::1;::::0;30083:18:::1;::::0;29892:20;;29950:11;30083:45:::1;::::0;:22:::1;:45::i;:::-;30062:18;:66:::0;30163:1:::1;30139:21;::::0;::::1;:25:::0;30181:20;;30177:111:::1;;30218:10;::::0;:58:::1;::::0;-1:-1:-1;;;30218:58:0;;30246:10:::1;30218:58;::::0;::::1;2539:51:1::0;2606:18;;;2599:34;;;-1:-1:-1;;;;;30218:10:0;;::::1;::::0;:19:::1;::::0;2512:18:1;;30218:58:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30177:111;30305:47;::::0;9480:25:1;;;30323:10:0::1;::::0;30305:47:::1;::::0;9468:2:1;9453:18;30305:47:0::1;9435:76:1::0;16361:244:0;15628:6;;-1:-1:-1;;;;;15628:6:0;749:10;15628:22;15620:67;;;;-1:-1:-1;;;15620:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16450:22:0;::::1;16442:73;;;::::0;-1:-1:-1;;;16442:73:0;;4271:2:1;16442:73:0::1;::::0;::::1;4253:21:1::0;4310:2;4290:18;;;4283:30;4349:34;4329:18;;;4322:62;-1:-1:-1;;;4400:18:1;;;4393:36;4446:19;;16442:73:0::1;4243:228:1::0;16442:73:0::1;16552:6;::::0;;16531:38:::1;::::0;-1:-1:-1;;;;;16531:38:0;;::::1;::::0;16552:6;::::1;::::0;16531:38:::1;::::0;::::1;16580:6;:17:::0;;-1:-1:-1;;;;;;16580:17:0::1;-1:-1:-1::0;;;;;16580:17:0;;;::::1;::::0;;;::::1;::::0;;16361:244::o;30368:941::-;-1:-1:-1;;;;;30471:15:0;;30427:7;30471:15;;;:8;:15;;;;;30558:14;;30427:7;;30540:15;:32;:58;;;;-1:-1:-1;30576:17:0;;:22;;30540:58;30536:736;;;30615:18;30636:35;30656:14;;30636:15;:19;;:35;;;;:::i;:::-;30615:56;;30686:17;30706:34;30721:18;;30706:10;:14;;:34;;;;:::i;:::-;30686:54;;30770:18;;30758:9;:30;30755:99;;;-1:-1:-1;30820:18:0;;30755:99;30868:27;30898:74;30917:54;30953:17;;30917:31;30931:16;;30917:9;:13;;:31;;;;:::i;:54::-;30898:14;;;:18;:74::i;:::-;30868:104;;31001:109;31027:82;31090:4;:18;;;31027:58;31068:16;;31027:36;31043:19;31027:4;:11;;;:15;;:36;;;;:::i;:82::-;31001:21;;;;;:25;:109::i;:::-;30987:123;;30536:736;;;;;;31156:104;31182:77;31240:4;:18;;;31182:53;31218:16;;31182:31;31198:14;;31182:4;:11;;;:15;;:31;;;;:::i;31156:104::-;31143:117;;30536:736;31291:10;30368:941;-1:-1:-1;;;30368:941:0:o;16875:181::-;16933:7;;16965:5;16969:1;16965;:5;:::i;:::-;16953:17;;16994:1;16989;:6;;16981:46;;;;-1:-1:-1;;;16981:46:0;;5423:2:1;16981:46:0;;;5405:21:1;5462:2;5442:18;;;5435:30;5501:29;5481:18;;;5474:57;5548:18;;16981:46:0;5395:177:1;13807:380:0;-1:-1:-1;;;;;13943:19:0;;13935:68;;;;-1:-1:-1;;;13935:68:0;;8411:2:1;13935:68:0;;;8393:21:1;8450:2;8430:18;;;8423:30;8489:34;8469:18;;;8462:62;-1:-1:-1;;;8540:18:1;;;8533:34;8584:19;;13935:68:0;8383:226:1;13935:68:0;-1:-1:-1;;;;;14022:21:0;;14014:68;;;;-1:-1:-1;;;14014:68:0;;4678:2:1;14014:68:0;;;4660:21:1;4717:2;4697:18;;;4690:30;4756:34;4736:18;;;4729:62;-1:-1:-1;;;4807:18:1;;;4800:32;4849:19;;14014:68:0;4650:224:1;14014:68:0;-1:-1:-1;;;;;14095:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14147:32;;9480:25:1;;;14147:32:0;;9453:18:1;14147:32:0;;;;;;;13807:380;;;:::o;24533:169::-;24626:31;;-1:-1:-1;;;24626:31:0;;5081:2:1;24626:31:0;;;5063:21:1;5120:2;5100:18;;;5093:30;-1:-1:-1;;;5139:18:1;;;5132:43;5192:18;;24626:31:0;5053:163:1;24664:32:0;24533:169;;;:::o;17778:192::-;17864:7;17900:12;17892:6;;;;17884:29;;;;-1:-1:-1;;;17884:29:0;;;;;;;;:::i;:::-;-1:-1:-1;17924:9:0;17936:5;17940:1;17936;:5;:::i;:::-;17924:17;17778:192;-1:-1:-1;;;;;17778:192:0:o;31626:768::-;31692:14;;31673:15;:33;31669:72;;31626:768::o;31669:72::-;31757:17;;31753:108;;31813:15;31796:14;:32;31626:768::o;31753:108::-;31873:18;31894:35;31914:14;;31894:15;:19;;:35;;;;:::i;:::-;31873:56;;31940:17;31960:34;31975:18;;31960:10;:14;;:34;;;;:::i;:::-;31940:54;;32020:18;;32008:9;:30;32005:91;;;-1:-1:-1;32066:18:0;;32005:91;32123:74;32142:54;32178:17;;32142:31;32156:16;;32142:9;:13;;:31;;;;:::i;32123:74::-;32106:14;:91;32229:18;;:33;;32252:9;32229:22;:33::i;:::-;32208:18;:54;32301:25;;:40;;32331:9;32301:29;:40::i;:::-;32273:25;:68;-1:-1:-1;;32371:15:0;32354:14;:32;31626:768::o;18229:471::-;18287:7;18532:6;18528:47;;-1:-1:-1;18562:1:0;18555:8;;18528:47;18587:9;18599:5;18603:1;18599;:5;:::i;:::-;18587:17;-1:-1:-1;18632:1:0;18623:5;18627:1;18587:17;18623:5;:::i;:::-;:10;18615:56;;;;-1:-1:-1;;;18615:56:0;;6840:2:1;18615:56:0;;;6822:21:1;6879:2;6859:18;;;6852:30;6918:34;6898:18;;;6891:62;-1:-1:-1;;;6969:18:1;;;6962:31;7010:19;;18615:56:0;6812:223:1;19176:132:0;19234:7;19261:39;19265:1;19268;19261:39;;;;;;;;;;;;;;;;;:3;:39::i;17339:136::-;17397:7;17424:43;17428:1;17431;17424:43;;;;;;;;;;;;;;;;;:3;:43::i;24930:423::-;-1:-1:-1;;;;;7710:18:0;;25012:22;7710:18;;;:9;:18;;;;;;25067:27;;;25064:284;;;25107:18;25128:30;:10;25143:14;25128;:30::i;:::-;25107:51;;25169:26;25175:7;25184:10;25169:5;:26::i;:::-;25064:284;24533:169;;;:::o;25064:284::-;25225:14;25212:10;:27;25209:139;;;25252:18;25273:30;:14;25292:10;25273:18;:30::i;:::-;25252:51;;25314:26;25320:7;25329:10;25314:5;:26::i;19804:278::-;19890:7;19925:12;19918:5;19910:28;;;;-1:-1:-1;;;19910:28:0;;;;;;;;:::i;:::-;-1:-1:-1;19949:9:0;19961:5;19965:1;19961;:5;:::i;24708:105::-;24780:27;24792:7;24801:5;24780:11;:27::i;:::-;24708:105;;:::o;24819:::-;24891:27;24903:7;24912:5;24891:11;:27::i;12240:378::-;-1:-1:-1;;;;;12324:21:0;;12316:65;;;;-1:-1:-1;;;12316:65:0;;9176:2:1;12316:65:0;;;9158:21:1;9215:2;9195:18;;;9188:30;9254:33;9234:18;;;9227:61;9305:18;;12316:65:0;9148:181:1;12316:65:0;12471:12;;:24;;12488:6;12471:16;:24::i;:::-;12456:12;:39;-1:-1:-1;;;;;12527:18:0;;;;;;:9;:18;;;;;;:30;;12550:6;12527:22;:30::i;:::-;-1:-1:-1;;;;;12506:18:0;;;;;;:9;:18;;;;;;:51;;;;12573:37;;12506:18;;;12573:37;;;;12603:6;9480:25:1;;9468:2;9453:18;;9435:76;12573:37:0;;;;;;;;12240:378;;:::o;12951:418::-;-1:-1:-1;;;;;13035:21:0;;13027:67;;;;-1:-1:-1;;;13027:67:0;;7603:2:1;13027:67:0;;;7585:21:1;7642:2;7622:18;;;7615:30;7681:34;7661:18;;;7654:62;-1:-1:-1;;;7732:18:1;;;7725:31;7773:19;;13027:67:0;7575:223:1;13027:67:0;13190:68;13213:6;13190:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13190:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;13169:18:0;;;;;;:9;:18;;;;;:89;13284:12;;:24;;13301:6;13284:16;:24::i;:::-;13269:12;:39;13324:37;;9480:25:1;;;13350:1:0;;-1:-1:-1;;;;;13324:37:0;;;;;9468:2:1;9453:18;13324:37:0;9435:76:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:297::-;1347:6;1400:2;1388:9;1379:7;1375:23;1371:32;1368:2;;;1421:6;1413;1406:22;1368:2;1458:9;1452:16;1511:5;1504:13;1497:21;1490:5;1487:32;1477:2;;1538:6;1530;1523:22;1582:190;1641:6;1694:2;1682:9;1673:7;1669:23;1665:32;1662:2;;;1715:6;1707;1700:22;1662:2;-1:-1:-1;1743:23:1;;1652:120;-1:-1:-1;1652:120:1:o;3057:603::-;3169:4;3198:2;3227;3216:9;3209:21;3259:6;3253:13;3302:6;3297:2;3286:9;3282:18;3275:34;3327:4;3340:140;3354:6;3351:1;3348:13;3340:140;;;3449:14;;;3445:23;;3439:30;3415:17;;;3434:2;3411:26;3404:66;3369:10;;3340:140;;;3498:6;3495:1;3492:13;3489:2;;;3568:4;3563:2;3554:6;3543:9;3539:22;3535:31;3528:45;3489:2;-1:-1:-1;3644:2:1;3623:15;-1:-1:-1;;3619:29:1;3604:45;;;;3651:2;3600:54;;3178:482;-1:-1:-1;;;3178:482:1:o;7040:356::-;7242:2;7224:21;;;7261:18;;;7254:30;7320:34;7315:2;7300:18;;7293:62;7387:2;7372:18;;7214:182::o;8614:355::-;8816:2;8798:21;;;8855:2;8835:18;;;8828:30;8894:33;8889:2;8874:18;;8867:61;8960:2;8945:18;;8788:181::o;10101:128::-;10141:3;10172:1;10168:6;10165:1;10162:13;10159:2;;;10178:18;;:::i;:::-;-1:-1:-1;10214:9:1;;10149:80::o;10234:217::-;10274:1;10300;10290:2;;-1:-1:-1;;;10325:31:1;;10379:4;10376:1;10369:15;10407:4;10332:1;10397:15;10290:2;-1:-1:-1;10436:9:1;;10280:171::o;10456:168::-;10496:7;10562:1;10558;10554:6;10550:14;10547:1;10544:21;10539:1;10532:9;10525:17;10521:45;10518:2;;;10569:18;;:::i;:::-;-1:-1:-1;10609:9:1;;10508:116::o;10629:125::-;10669:4;10697:1;10694;10691:8;10688:2;;;10702:18;;:::i;:::-;-1:-1:-1;10739:9:1;;10678:76::o;10759:380::-;10838:1;10834:12;;;;10881;;;10902:2;;10956:4;10948:6;10944:17;10934:27;;10902:2;11009;11001:6;10998:14;10978:18;10975:38;10972:2;;;11055:10;11050:3;11046:20;11043:1;11036:31;11090:4;11087:1;11080:15;11118:4;11115:1;11108:15;11144:127;11205:10;11200:3;11196:20;11193:1;11186:31;11236:4;11233:1;11226:15;11260:4;11257:1;11250:15
Swarm Source
ipfs://3cccdcd1a225b77af4b22a469d4e583fcaeafc5688ec7f4fe58471055dd37b84
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.