More Info
Private Name Tags
ContractCreator
Latest 5 from a total of 5 transactions
Latest 6 internal transactions
Advanced mode:
Loading...
Loading
Contract Name:
ReferralFeeReceiver
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 10000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; import "./interfaces/IReferralFeeReceiver.sol"; import "./libraries/UniERC20.sol"; import "./utils/Converter.sol"; contract ReferralFeeReceiver is IReferralFeeReceiver, Converter, ReentrancyGuard { using UniERC20 for IERC20; struct UserInfo { uint256 balance; mapping(IERC20 => mapping(uint256 => uint256)) share; mapping(IERC20 => uint256) firstUnprocessedEpoch; } struct EpochBalance { uint256 totalSupply; uint256 token0Balance; uint256 token1Balance; uint256 inchBalance; } struct TokenInfo { mapping(uint256 => EpochBalance) epochBalance; uint256 firstUnprocessedEpoch; uint256 currentEpoch; } mapping(address => UserInfo) public userInfo; mapping(IERC20 => TokenInfo) public tokenInfo; // solhint-disable-next-line no-empty-blocks constructor(IERC20 _inchToken, IMooniswapFactory _mooniswapFactory) public Converter(_inchToken, _mooniswapFactory) {} function updateReward(address referral, uint256 amount) external override { Mooniswap mooniswap = Mooniswap(msg.sender); TokenInfo storage token = tokenInfo[mooniswap]; UserInfo storage user = userInfo[referral]; uint256 currentEpoch = token.currentEpoch; // Add new reward to current epoch user.share[mooniswap][currentEpoch] = user.share[mooniswap][currentEpoch].add(amount); token.epochBalance[currentEpoch].totalSupply = token.epochBalance[currentEpoch].totalSupply.add(amount); // Collect all processed epochs and advance user token epoch _collectProcessedEpochs(user, token, mooniswap, currentEpoch); } function freezeEpoch(Mooniswap mooniswap) external nonReentrant validPool(mooniswap) validSpread(mooniswap) { TokenInfo storage token = tokenInfo[mooniswap]; uint256 currentEpoch = token.currentEpoch; require(token.firstUnprocessedEpoch == currentEpoch, "Previous epoch is not finalized"); IERC20[] memory tokens = mooniswap.getTokens(); uint256 token0Balance = tokens[0].uniBalanceOf(address(this)); uint256 token1Balance = tokens[1].uniBalanceOf(address(this)); mooniswap.withdraw(mooniswap.balanceOf(address(this)), new uint256[](0)); token.epochBalance[currentEpoch].token0Balance = tokens[0].uniBalanceOf(address(this)).sub(token0Balance); token.epochBalance[currentEpoch].token1Balance = tokens[1].uniBalanceOf(address(this)).sub(token1Balance); token.currentEpoch = currentEpoch.add(1); } function trade(Mooniswap mooniswap, IERC20[] memory path) external nonReentrant validPool(mooniswap) validPath(path) { TokenInfo storage token = tokenInfo[mooniswap]; uint256 firstUnprocessedEpoch = token.firstUnprocessedEpoch; EpochBalance storage epochBalance = token.epochBalance[firstUnprocessedEpoch]; require(firstUnprocessedEpoch.add(1) == token.currentEpoch, "Prev epoch already finalized"); IERC20[] memory tokens = mooniswap.getTokens(); uint256 availableBalance; if (path[0] == tokens[0]) { availableBalance = epochBalance.token0Balance; } else if (path[0] == tokens[1]) { availableBalance = epochBalance.token1Balance; } else { revert("Invalid first token"); } (uint256 amount, uint256 returnAmount) = _maxAmountForSwap(path, availableBalance); if (returnAmount == 0) { // get rid of dust if (availableBalance > 0) { require(availableBalance == amount, "availableBalance is not dust"); for (uint256 i = 0; i + 1 < path.length; i += 1) { Mooniswap _mooniswap = mooniswapFactory.pools(path[i], path[i+1]); require(_validateSpread(_mooniswap), "Spread is too high"); } if (path[0].isETH()) { tx.origin.transfer(availableBalance); // solhint-disable-line avoid-tx-origin } else { path[0].safeTransfer(address(mooniswap), availableBalance); } } } else { uint256 receivedAmount = _swap(path, amount, payable(address(this))); epochBalance.inchBalance = epochBalance.inchBalance.add(receivedAmount); } if (path[0] == tokens[0]) { epochBalance.token0Balance = epochBalance.token0Balance.sub(amount); } else { epochBalance.token1Balance = epochBalance.token1Balance.sub(amount); } if (epochBalance.token0Balance == 0 && epochBalance.token1Balance == 0) { token.firstUnprocessedEpoch = firstUnprocessedEpoch.add(1); } } function claim(Mooniswap[] memory pools) external { UserInfo storage user = userInfo[msg.sender]; for (uint256 i = 0; i < pools.length; ++i) { Mooniswap mooniswap = pools[i]; TokenInfo storage token = tokenInfo[mooniswap]; _collectProcessedEpochs(user, token, mooniswap, token.currentEpoch); } uint256 balance = user.balance; if (balance > 1) { // Avoid erasing storage to decrease gas footprint for referral payments user.balance = 1; inchToken.transfer(msg.sender, balance - 1); } } function claimCurrentEpoch(Mooniswap mooniswap) external nonReentrant validPool(mooniswap) { TokenInfo storage token = tokenInfo[mooniswap]; UserInfo storage user = userInfo[msg.sender]; uint256 currentEpoch = token.currentEpoch; uint256 balance = user.share[mooniswap][currentEpoch]; if (balance > 0) { user.share[mooniswap][currentEpoch] = 0; token.epochBalance[currentEpoch].totalSupply = token.epochBalance[currentEpoch].totalSupply.sub(balance); mooniswap.transfer(msg.sender, balance); } } function claimFrozenEpoch(Mooniswap mooniswap) external nonReentrant validPool(mooniswap) { TokenInfo storage token = tokenInfo[mooniswap]; UserInfo storage user = userInfo[msg.sender]; uint256 firstUnprocessedEpoch = token.firstUnprocessedEpoch; uint256 currentEpoch = token.currentEpoch; require(firstUnprocessedEpoch.add(1) == currentEpoch, "Epoch already finalized"); require(user.firstUnprocessedEpoch[mooniswap] == firstUnprocessedEpoch, "Epoch funds already claimed"); user.firstUnprocessedEpoch[mooniswap] = currentEpoch; uint256 share = user.share[mooniswap][firstUnprocessedEpoch]; if (share > 0) { EpochBalance storage epochBalance = token.epochBalance[firstUnprocessedEpoch]; uint256 totalSupply = epochBalance.totalSupply; user.share[mooniswap][firstUnprocessedEpoch] = 0; epochBalance.totalSupply = totalSupply.sub(share); IERC20[] memory tokens = mooniswap.getTokens(); epochBalance.token0Balance = _transferTokenShare(tokens[0], epochBalance.token0Balance, share, totalSupply); epochBalance.token1Balance = _transferTokenShare(tokens[1], epochBalance.token1Balance, share, totalSupply); epochBalance.inchBalance = _transferTokenShare(inchToken, epochBalance.inchBalance, share, totalSupply); } } function _transferTokenShare(IERC20 token, uint256 balance, uint256 share, uint256 totalSupply) private returns(uint256 newBalance) { uint256 amount = balance.mul(share).div(totalSupply); if (amount > 0) { token.uniTransfer(msg.sender, amount); } return balance.sub(amount); } function _collectProcessedEpochs(UserInfo storage user, TokenInfo storage token, Mooniswap mooniswap, uint256 currentEpoch) private { // Early return for the new users if (user.share[mooniswap][user.firstUnprocessedEpoch[mooniswap]] == 0) { user.firstUnprocessedEpoch[mooniswap] = currentEpoch; return; } uint256 userEpoch = user.firstUnprocessedEpoch[mooniswap]; uint256 tokenEpoch = token.firstUnprocessedEpoch; uint256 epochCount = Math.min(2, tokenEpoch.sub(userEpoch)); // 0, 1 or 2 epochs if (epochCount == 0) { return; } // Claim 1 or 2 processed epochs for the user uint256 collected = _collectEpoch(user, token, mooniswap, userEpoch); if (epochCount > 1) { collected = collected.add(_collectEpoch(user, token, mooniswap, userEpoch + 1)); } user.balance = user.balance.add(collected); // Update user token epoch counter bool emptySecondEpoch = user.share[mooniswap][userEpoch + 1] == 0; user.firstUnprocessedEpoch[mooniswap] = (epochCount == 2 || emptySecondEpoch) ? currentEpoch : userEpoch + 1; } function _collectEpoch(UserInfo storage user, TokenInfo storage token, Mooniswap mooniswap, uint256 epoch) private returns(uint256 collected) { uint256 inchBalance = token.epochBalance[epoch].inchBalance; uint256 share = user.share[mooniswap][epoch]; uint256 totalSupply = token.epochBalance[epoch].totalSupply; collected = inchBalance.mul(share).div(totalSupply); user.share[mooniswap][epoch] = 0; token.epochBalance[epoch].totalSupply = totalSupply.sub(share); token.epochBalance[epoch].inchBalance = inchBalance.sub(collected); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/math/Math.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "./interfaces/IReferralFeeReceiver.sol"; import "./libraries/UniERC20.sol"; import "./libraries/Sqrt.sol"; import "./libraries/VirtualBalance.sol"; import "./governance/MooniswapGovernance.sol"; contract Mooniswap is MooniswapGovernance, Ownable { using Sqrt for uint256; using SafeMath for uint256; using UniERC20 for IERC20; using VirtualBalance for VirtualBalance.Data; struct Balances { uint256 src; uint256 dst; } struct SwapVolumes { uint128 confirmed; uint128 result; } struct Fees { uint256 fee; uint256 slippageFee; } event Deposited( address indexed sender, address indexed receiver, uint256 share, uint256 token0Amount, uint256 token1Amount ); event Withdrawn( address indexed sender, address indexed receiver, uint256 share, uint256 token0Amount, uint256 token1Amount ); event Swapped( address indexed sender, address indexed receiver, address indexed srcToken, address dstToken, uint256 amount, uint256 result, uint256 srcAdditionBalance, uint256 dstRemovalBalance, address referral ); event Sync( uint256 srcBalance, uint256 dstBalance, uint256 fee, uint256 slippageFee, uint256 referralShare, uint256 governanceShare ); uint256 private constant _BASE_SUPPLY = 1000; // Total supply on first deposit IERC20 public immutable token0; IERC20 public immutable token1; mapping(IERC20 => SwapVolumes) public volumes; mapping(IERC20 => VirtualBalance.Data) public virtualBalancesForAddition; mapping(IERC20 => VirtualBalance.Data) public virtualBalancesForRemoval; modifier whenNotShutdown { require(mooniswapFactoryGovernance.isActive(), "Mooniswap: factory shutdown"); _; } constructor( IERC20 _token0, IERC20 _token1, string memory name, string memory symbol, IMooniswapFactoryGovernance _mooniswapFactoryGovernance ) public ERC20(name, symbol) MooniswapGovernance(_mooniswapFactoryGovernance) { require(bytes(name).length > 0, "Mooniswap: name is empty"); require(bytes(symbol).length > 0, "Mooniswap: symbol is empty"); require(_token0 != _token1, "Mooniswap: duplicate tokens"); token0 = _token0; token1 = _token1; } function getTokens() external view returns(IERC20[] memory tokens) { tokens = new IERC20[](2); tokens[0] = token0; tokens[1] = token1; } function tokens(uint256 i) external view returns(IERC20) { if (i == 0) { return token0; } else if (i == 1) { return token1; } else { revert("Pool has two tokens"); } } function getBalanceForAddition(IERC20 token) public view returns(uint256) { uint256 balance = token.uniBalanceOf(address(this)); return Math.max(virtualBalancesForAddition[token].current(decayPeriod(), balance), balance); } function getBalanceForRemoval(IERC20 token) public view returns(uint256) { uint256 balance = token.uniBalanceOf(address(this)); return Math.min(virtualBalancesForRemoval[token].current(decayPeriod(), balance), balance); } function getReturn(IERC20 src, IERC20 dst, uint256 amount) external view returns(uint256) { return _getReturn(src, dst, amount, getBalanceForAddition(src), getBalanceForRemoval(dst), fee(), slippageFee()); } function deposit(uint256[2] memory maxAmounts, uint256[2] memory minAmounts) external payable returns(uint256 fairSupply, uint256[2] memory receivedAmounts) { return depositFor(maxAmounts, minAmounts, msg.sender); } function depositFor(uint256[2] memory maxAmounts, uint256[2] memory minAmounts, address target) public payable nonReentrant returns(uint256 fairSupply, uint256[2] memory receivedAmounts) { IERC20[2] memory _tokens = [token0, token1]; require(msg.value == (_tokens[0].isETH() ? maxAmounts[0] : (_tokens[1].isETH() ? maxAmounts[1] : 0)), "Mooniswap: wrong value usage"); uint256 totalSupply = totalSupply(); if (totalSupply == 0) { fairSupply = _BASE_SUPPLY.mul(99); _mint(address(this), _BASE_SUPPLY); // Donate up to 1% for (uint i = 0; i < maxAmounts.length; i++) { fairSupply = Math.max(fairSupply, maxAmounts[i]); require(maxAmounts[i] > 0, "Mooniswap: amount is zero"); require(maxAmounts[i] >= minAmounts[i], "Mooniswap: minAmount not reached"); _tokens[i].uniTransferFrom(msg.sender, address(this), maxAmounts[i]); receivedAmounts[i] = maxAmounts[i]; } } else { uint256[2] memory realBalances; for (uint i = 0; i < realBalances.length; i++) { realBalances[i] = _tokens[i].uniBalanceOf(address(this)).sub(_tokens[i].isETH() ? msg.value : 0); } // Pre-compute fair supply fairSupply = type(uint256).max; for (uint i = 0; i < maxAmounts.length; i++) { fairSupply = Math.min(fairSupply, totalSupply.mul(maxAmounts[i]).div(realBalances[i])); } uint256 fairSupplyCached = fairSupply; for (uint i = 0; i < maxAmounts.length; i++) { require(maxAmounts[i] > 0, "Mooniswap: amount is zero"); uint256 amount = realBalances[i].mul(fairSupplyCached).add(totalSupply - 1).div(totalSupply); require(amount >= minAmounts[i], "Mooniswap: minAmount not reached"); _tokens[i].uniTransferFrom(msg.sender, address(this), amount); receivedAmounts[i] = _tokens[i].uniBalanceOf(address(this)).sub(realBalances[i]); fairSupply = Math.min(fairSupply, totalSupply.mul(receivedAmounts[i]).div(realBalances[i])); } uint256 _decayPeriod = decayPeriod(); // gas savings for (uint i = 0; i < maxAmounts.length; i++) { virtualBalancesForRemoval[_tokens[i]].scale(_decayPeriod, realBalances[i], totalSupply.add(fairSupply), totalSupply); virtualBalancesForAddition[_tokens[i]].scale(_decayPeriod, realBalances[i], totalSupply.add(fairSupply), totalSupply); } } require(fairSupply > 0, "Mooniswap: result is not enough"); _mint(target, fairSupply); emit Deposited(msg.sender, target, fairSupply, receivedAmounts[0], receivedAmounts[1]); } function withdraw(uint256 amount, uint256[] memory minReturns) external returns(uint256[2] memory withdrawnAmounts) { return withdrawFor(amount, minReturns, msg.sender); } function withdrawFor(uint256 amount, uint256[] memory minReturns, address payable target) public nonReentrant returns(uint256[2] memory withdrawnAmounts) { IERC20[2] memory _tokens = [token0, token1]; uint256 totalSupply = totalSupply(); uint256 _decayPeriod = decayPeriod(); // gas savings _burn(msg.sender, amount); for (uint i = 0; i < _tokens.length; i++) { IERC20 token = _tokens[i]; uint256 preBalance = token.uniBalanceOf(address(this)); uint256 value = preBalance.mul(amount).div(totalSupply); token.uniTransfer(target, value); withdrawnAmounts[i] = value; require(i >= minReturns.length || value >= minReturns[i], "Mooniswap: result is not enough"); virtualBalancesForAddition[token].scale(_decayPeriod, preBalance, totalSupply.sub(amount), totalSupply); virtualBalancesForRemoval[token].scale(_decayPeriod, preBalance, totalSupply.sub(amount), totalSupply); } emit Withdrawn(msg.sender, target, amount, withdrawnAmounts[0], withdrawnAmounts[1]); } function swap(IERC20 src, IERC20 dst, uint256 amount, uint256 minReturn, address referral) external payable returns(uint256 result) { return swapFor(src, dst, amount, minReturn, referral, msg.sender); } function swapFor(IERC20 src, IERC20 dst, uint256 amount, uint256 minReturn, address referral, address payable receiver) public payable nonReentrant whenNotShutdown returns(uint256 result) { require(msg.value == (src.isETH() ? amount : 0), "Mooniswap: wrong value usage"); Balances memory balances = Balances({ src: src.uniBalanceOf(address(this)).sub(src.isETH() ? msg.value : 0), dst: dst.uniBalanceOf(address(this)) }); uint256 confirmed; Balances memory virtualBalances; Fees memory fees = Fees({ fee: fee(), slippageFee: slippageFee() }); (confirmed, result, virtualBalances) = _doTransfers(src, dst, amount, minReturn, receiver, balances, fees); emit Swapped(msg.sender, receiver, address(src), address(dst), confirmed, result, virtualBalances.src, virtualBalances.dst, referral); _mintRewards(confirmed, result, referral, balances, fees); // Overflow of uint128 is desired volumes[src].confirmed += uint128(confirmed); volumes[src].result += uint128(result); } function _doTransfers(IERC20 src, IERC20 dst, uint256 amount, uint256 minReturn, address payable receiver, Balances memory balances, Fees memory fees) private returns(uint256 confirmed, uint256 result, Balances memory virtualBalances) { uint256 _decayPeriod = decayPeriod(); virtualBalances.src = virtualBalancesForAddition[src].current(_decayPeriod, balances.src); virtualBalances.src = Math.max(virtualBalances.src, balances.src); virtualBalances.dst = virtualBalancesForRemoval[dst].current(_decayPeriod, balances.dst); virtualBalances.dst = Math.min(virtualBalances.dst, balances.dst); src.uniTransferFrom(msg.sender, address(this), amount); confirmed = src.uniBalanceOf(address(this)).sub(balances.src); result = _getReturn(src, dst, confirmed, virtualBalances.src, virtualBalances.dst, fees.fee, fees.slippageFee); require(result > 0 && result >= minReturn, "Mooniswap: return is not enough"); dst.uniTransfer(receiver, result); // Update virtual balances to the same direction only at imbalanced state if (virtualBalances.src != balances.src) { virtualBalancesForAddition[src].set(virtualBalances.src.add(confirmed)); } if (virtualBalances.dst != balances.dst) { virtualBalancesForRemoval[dst].set(virtualBalances.dst.sub(result)); } // Update virtual balances to the opposite direction virtualBalancesForRemoval[src].update(_decayPeriod, balances.src); virtualBalancesForAddition[dst].update(_decayPeriod, balances.dst); } function _mintRewards(uint256 confirmed, uint256 result, address referral, Balances memory balances, Fees memory fees) private { (uint256 referralShare, uint256 governanceShare, address governanceFeeReceiver, address referralFeeReceiver) = mooniswapFactoryGovernance.shareParameters(); uint256 invariantRatio = uint256(1e36); invariantRatio = invariantRatio.mul(balances.src.add(confirmed)).div(balances.src); invariantRatio = invariantRatio.mul(balances.dst.sub(result)).div(balances.dst); if (invariantRatio > 1e36) { // calculate share only if invariant increased invariantRatio = invariantRatio.sqrt(); uint256 invIncrease = totalSupply().mul(invariantRatio.sub(1e18)).div(invariantRatio); if (referral != address(0)) { referralShare = invIncrease.mul(referralShare).div(MooniswapConstants._FEE_DENOMINATOR); if (referralShare > 0) { if (referralFeeReceiver != address(0)) { _mint(referralFeeReceiver, referralShare); IReferralFeeReceiver(referralFeeReceiver).updateReward(referral, referralShare); } else { _mint(referral, referralShare); } } } if (governanceFeeReceiver != address(0)) { governanceShare = invIncrease.mul(governanceShare).div(MooniswapConstants._FEE_DENOMINATOR); if (governanceShare > 0) { _mint(governanceFeeReceiver, governanceShare); } } } emit Sync(balances.src, balances.dst, fees.fee, fees.slippageFee, referralShare, governanceShare); } /* spot_ret = dx * y / x uni_ret = dx * y / (x + dx) slippage = (spot_ret - uni_ret) / spot_ret slippage = dx * dx * y / (x * (x + dx)) / (dx * y / x) slippage = dx / (x + dx) ret = uni_ret * (1 - slip_fee * slippage) ret = dx * y / (x + dx) * (1 - slip_fee * dx / (x + dx)) ret = dx * y / (x + dx) * (x + dx - slip_fee * dx) / (x + dx) x = amount * denominator dx = amount * (denominator - fee) */ function _getReturn(IERC20 src, IERC20 dst, uint256 amount, uint256 srcBalance, uint256 dstBalance, uint256 fee, uint256 slippageFee) internal view returns(uint256) { if (src > dst) { (src, dst) = (dst, src); } if (amount > 0 && src == token0 && dst == token1) { uint256 taxedAmount = amount.sub(amount.mul(fee).div(MooniswapConstants._FEE_DENOMINATOR)); uint256 srcBalancePlusTaxedAmount = srcBalance.add(taxedAmount); uint256 ret = taxedAmount.mul(dstBalance).div(srcBalancePlusTaxedAmount); uint256 feeNumerator = MooniswapConstants._FEE_DENOMINATOR.mul(srcBalancePlusTaxedAmount).sub(slippageFee.mul(taxedAmount)); uint256 feeDenominator = MooniswapConstants._FEE_DENOMINATOR.mul(srcBalancePlusTaxedAmount); return ret.mul(feeNumerator).div(feeDenominator); } } function rescueFunds(IERC20 token, uint256 amount) external nonReentrant onlyOwner { uint256 balance0 = token0.uniBalanceOf(address(this)); uint256 balance1 = token1.uniBalanceOf(address(this)); token.uniTransfer(msg.sender, amount); require(token0.uniBalanceOf(address(this)) >= balance0, "Mooniswap: access denied"); require(token1.uniBalanceOf(address(this)) >= balance1, "Mooniswap: access denied"); require(balanceOf(address(this)) >= _BASE_SUPPLY, "Mooniswap: access denied"); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; import "../interfaces/IMooniswapFactoryGovernance.sol"; import "../libraries/LiquidVoting.sol"; import "../libraries/MooniswapConstants.sol"; import "../libraries/SafeCast.sol"; abstract contract MooniswapGovernance is ERC20, ReentrancyGuard { using Vote for Vote.Data; using LiquidVoting for LiquidVoting.Data; using VirtualVote for VirtualVote.Data; using SafeCast for uint256; event FeeVoteUpdate(address indexed user, uint256 fee, bool isDefault, uint256 amount); event SlippageFeeVoteUpdate(address indexed user, uint256 slippageFee, bool isDefault, uint256 amount); event DecayPeriodVoteUpdate(address indexed user, uint256 decayPeriod, bool isDefault, uint256 amount); IMooniswapFactoryGovernance public immutable mooniswapFactoryGovernance; LiquidVoting.Data private _fee; LiquidVoting.Data private _slippageFee; LiquidVoting.Data private _decayPeriod; constructor(IMooniswapFactoryGovernance _mooniswapFactoryGovernance) internal { mooniswapFactoryGovernance = _mooniswapFactoryGovernance; _fee.data.result = _mooniswapFactoryGovernance.defaultFee().toUint104(); _slippageFee.data.result = _mooniswapFactoryGovernance.defaultSlippageFee().toUint104(); _decayPeriod.data.result = _mooniswapFactoryGovernance.defaultDecayPeriod().toUint104(); } function fee() public view returns(uint256) { return _fee.data.current(); } function slippageFee() public view returns(uint256) { return _slippageFee.data.current(); } function decayPeriod() public view returns(uint256) { return _decayPeriod.data.current(); } function virtualFee() external view returns(uint104, uint104, uint48) { return (_fee.data.oldResult, _fee.data.result, _fee.data.time); } function virtualSlippageFee() external view returns(uint104, uint104, uint48) { return (_slippageFee.data.oldResult, _slippageFee.data.result, _slippageFee.data.time); } function virtualDecayPeriod() external view returns(uint104, uint104, uint48) { return (_decayPeriod.data.oldResult, _decayPeriod.data.result, _decayPeriod.data.time); } function feeVotes(address user) external view returns(uint256) { return _fee.votes[user].get(mooniswapFactoryGovernance.defaultFee); } function slippageFeeVotes(address user) external view returns(uint256) { return _slippageFee.votes[user].get(mooniswapFactoryGovernance.defaultSlippageFee); } function decayPeriodVotes(address user) external view returns(uint256) { return _decayPeriod.votes[user].get(mooniswapFactoryGovernance.defaultDecayPeriod); } function feeVote(uint256 vote) external { require(vote <= MooniswapConstants._MAX_FEE, "Fee vote is too high"); _fee.updateVote(msg.sender, _fee.votes[msg.sender], Vote.init(vote), balanceOf(msg.sender), totalSupply(), mooniswapFactoryGovernance.defaultFee(), _emitFeeVoteUpdate); } function slippageFeeVote(uint256 vote) external { require(vote <= MooniswapConstants._MAX_SLIPPAGE_FEE, "Slippage fee vote is too high"); _slippageFee.updateVote(msg.sender, _slippageFee.votes[msg.sender], Vote.init(vote), balanceOf(msg.sender), totalSupply(), mooniswapFactoryGovernance.defaultSlippageFee(), _emitSlippageFeeVoteUpdate); } function decayPeriodVote(uint256 vote) external { require(vote <= MooniswapConstants._MAX_DECAY_PERIOD, "Decay period vote is too high"); require(vote >= MooniswapConstants._MIN_DECAY_PERIOD, "Decay period vote is too low"); _decayPeriod.updateVote(msg.sender, _decayPeriod.votes[msg.sender], Vote.init(vote), balanceOf(msg.sender), totalSupply(), mooniswapFactoryGovernance.defaultDecayPeriod(), _emitDecayPeriodVoteUpdate); } function discardFeeVote() external { _fee.updateVote(msg.sender, _fee.votes[msg.sender], Vote.init(), balanceOf(msg.sender), totalSupply(), mooniswapFactoryGovernance.defaultFee(), _emitFeeVoteUpdate); } function discardSlippageFeeVote() external { _slippageFee.updateVote(msg.sender, _slippageFee.votes[msg.sender], Vote.init(), balanceOf(msg.sender), totalSupply(), mooniswapFactoryGovernance.defaultSlippageFee(), _emitSlippageFeeVoteUpdate); } function discardDecayPeriodVote() external { _decayPeriod.updateVote(msg.sender, _decayPeriod.votes[msg.sender], Vote.init(), balanceOf(msg.sender), totalSupply(), mooniswapFactoryGovernance.defaultDecayPeriod(), _emitDecayPeriodVoteUpdate); } function _emitFeeVoteUpdate(address account, uint256 newFee, bool isDefault, uint256 newBalance) private { emit FeeVoteUpdate(account, newFee, isDefault, newBalance); } function _emitSlippageFeeVoteUpdate(address account, uint256 newSlippageFee, bool isDefault, uint256 newBalance) private { emit SlippageFeeVoteUpdate(account, newSlippageFee, isDefault, newBalance); } function _emitDecayPeriodVoteUpdate(address account, uint256 newDecayPeriod, bool isDefault, uint256 newBalance) private { emit DecayPeriodVoteUpdate(account, newDecayPeriod, isDefault, newBalance); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal override { if (from == to) { // ignore transfers to self return; } bool updateFrom = !(from == address(0) || mooniswapFactoryGovernance.isFeeReceiver(from)); bool updateTo = !(to == address(0) || mooniswapFactoryGovernance.isFeeReceiver(to)); if (!updateFrom && !updateTo) { // mint to feeReceiver or burn from feeReceiver return; } uint256 balanceFrom = (from != address(0)) ? balanceOf(from) : 0; uint256 balanceTo = (to != address(0)) ? balanceOf(to) : 0; uint256 newTotalSupply = totalSupply() .add(from == address(0) ? amount : 0) .sub(to == address(0) ? amount : 0); ParamsHelper memory params = ParamsHelper({ from: from, to: to, updateFrom: updateFrom, updateTo: updateTo, amount: amount, balanceFrom: balanceFrom, balanceTo: balanceTo, newTotalSupply: newTotalSupply }); (uint256 defaultFee, uint256 defaultSlippageFee, uint256 defaultDecayPeriod) = mooniswapFactoryGovernance.defaults(); _updateOnTransfer(params, defaultFee, _emitFeeVoteUpdate, _fee); _updateOnTransfer(params, defaultSlippageFee, _emitSlippageFeeVoteUpdate, _slippageFee); _updateOnTransfer(params, defaultDecayPeriod, _emitDecayPeriodVoteUpdate, _decayPeriod); } struct ParamsHelper { address from; address to; bool updateFrom; bool updateTo; uint256 amount; uint256 balanceFrom; uint256 balanceTo; uint256 newTotalSupply; } function _updateOnTransfer( ParamsHelper memory params, uint256 defaultValue, function(address, uint256, bool, uint256) internal emitEvent, LiquidVoting.Data storage votingData ) private { Vote.Data memory voteFrom = votingData.votes[params.from]; Vote.Data memory voteTo = votingData.votes[params.to]; if (voteFrom.isDefault() && voteTo.isDefault() && params.updateFrom && params.updateTo) { emitEvent(params.from, voteFrom.get(defaultValue), true, params.balanceFrom.sub(params.amount)); emitEvent(params.to, voteTo.get(defaultValue), true, params.balanceTo.add(params.amount)); return; } if (params.updateFrom) { votingData.updateBalance(params.from, voteFrom, params.balanceFrom, params.balanceFrom.sub(params.amount), params.newTotalSupply, defaultValue, emitEvent); } if (params.updateTo) { votingData.updateBalance(params.to, voteTo, params.balanceTo, params.balanceTo.add(params.amount), params.newTotalSupply, defaultValue, emitEvent); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "../Mooniswap.sol"; interface IMooniswapFactory is IMooniswapFactoryGovernance { function pools(IERC20 token0, IERC20 token1) external view returns (Mooniswap); function isPool(Mooniswap mooniswap) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; interface IMooniswapFactoryGovernance { function shareParameters() external view returns(uint256 referralShare, uint256 governanceShare, address governanceFeeReceiver, address referralFeeReceiver); function defaults() external view returns(uint256 defaultFee, uint256 defaultSlippageFee, uint256 defaultDecayPeriod); function defaultFee() external view returns(uint256); function defaultSlippageFee() external view returns(uint256); function defaultDecayPeriod() external view returns(uint256); function referralShare() external view returns(uint256); function governanceShare() external view returns(uint256); function governanceFeeReceiver() external view returns(address); function referralFeeReceiver() external view returns(address); function isFeeReceiver(address) external view returns(bool); function isActive() external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; interface IReferralFeeReceiver { function updateReward(address referral, uint256 referralShare) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.12; import "@openzeppelin/contracts/math/SafeMath.sol"; import "./SafeCast.sol"; import "./VirtualVote.sol"; import "./Vote.sol"; library LiquidVoting { using SafeMath for uint256; using SafeCast for uint256; using Vote for Vote.Data; using VirtualVote for VirtualVote.Data; struct Data { VirtualVote.Data data; uint256 _weightedSum; uint256 _defaultVotes; mapping(address => Vote.Data) votes; } function updateVote( LiquidVoting.Data storage self, address user, Vote.Data memory oldVote, Vote.Data memory newVote, uint256 balance, uint256 totalSupply, uint256 defaultVote, function(address, uint256, bool, uint256) emitEvent ) internal { return _update(self, user, oldVote, newVote, balance, balance, totalSupply, defaultVote, emitEvent); } function updateBalance( LiquidVoting.Data storage self, address user, Vote.Data memory oldVote, uint256 oldBalance, uint256 newBalance, uint256 newTotalSupply, uint256 defaultVote, function(address, uint256, bool, uint256) emitEvent ) internal { return _update(self, user, oldVote, newBalance == 0 ? Vote.init() : oldVote, oldBalance, newBalance, newTotalSupply, defaultVote, emitEvent); } function _update( LiquidVoting.Data storage self, address user, Vote.Data memory oldVote, Vote.Data memory newVote, uint256 oldBalance, uint256 newBalance, uint256 newTotalSupply, uint256 defaultVote, function(address, uint256, bool, uint256) emitEvent ) private { uint256 oldWeightedSum = self._weightedSum; uint256 newWeightedSum = oldWeightedSum; uint256 oldDefaultVotes = self._defaultVotes; uint256 newDefaultVotes = oldDefaultVotes; if (oldVote.isDefault()) { newDefaultVotes = newDefaultVotes.sub(oldBalance); } else { newWeightedSum = newWeightedSum.sub(oldBalance.mul(oldVote.get(defaultVote))); } if (newVote.isDefault()) { newDefaultVotes = newDefaultVotes.add(newBalance); } else { newWeightedSum = newWeightedSum.add(newBalance.mul(newVote.get(defaultVote))); } if (newWeightedSum != oldWeightedSum) { self._weightedSum = newWeightedSum; } if (newDefaultVotes != oldDefaultVotes) { self._defaultVotes = newDefaultVotes; } { uint256 newResult = newTotalSupply == 0 ? defaultVote : newWeightedSum.add(newDefaultVotes.mul(defaultVote)).div(newTotalSupply); VirtualVote.Data memory data = self.data; if (newResult != data.result) { self.data.oldResult = data.current().toUint104(); self.data.result = newResult.toUint104(); self.data.time = block.timestamp.toUint48(); } } if (!newVote.eq(oldVote)) { self.votes[user] = newVote; } emitEvent(user, newVote.get(defaultVote), newVote.isDefault(), newBalance); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; library MooniswapConstants { uint256 internal constant _FEE_DENOMINATOR = 1e18; uint256 internal constant _MIN_REFERRAL_SHARE = 0.05e18; // 5% uint256 internal constant _MIN_DECAY_PERIOD = 1 minutes; uint256 internal constant _MAX_FEE = 0.01e18; // 1% uint256 internal constant _MAX_SLIPPAGE_FEE = 1e18; // 100% uint256 internal constant _MAX_SHARE = 0.1e18; // 10% uint256 internal constant _MAX_DECAY_PERIOD = 5 minutes; uint256 internal constant _DEFAULT_FEE = 0; uint256 internal constant _DEFAULT_SLIPPAGE_FEE = 1e18; // 100% uint256 internal constant _DEFAULT_REFERRAL_SHARE = 0.1e18; // 10% uint256 internal constant _DEFAULT_GOVERNANCE_SHARE = 0; uint256 internal constant _DEFAULT_DECAY_PERIOD = 1 minutes; }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; library SafeCast { function toUint216(uint256 value) internal pure returns (uint216) { require(value < 2**216, "value does not fit in 216 bits"); return uint216(value); } function toUint104(uint256 value) internal pure returns (uint104) { require(value < 2**104, "value does not fit in 104 bits"); return uint104(value); } function toUint48(uint256 value) internal pure returns (uint48) { require(value < 2**48, "value does not fit in 48 bits"); return uint48(value); } function toUint40(uint256 value) internal pure returns (uint40) { require(value < 2**40, "value does not fit in 40 bits"); return uint40(value); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; library Sqrt { // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method) function sqrt(uint256 y) internal pure returns (uint256) { if (y > 3) { uint256 z = y; uint256 x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } return z; } else if (y != 0) { return 1; } else { return 0; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; library UniERC20 { using SafeMath for uint256; using SafeERC20 for IERC20; function isETH(IERC20 token) internal pure returns(bool) { return (address(token) == address(0)); } function uniBalanceOf(IERC20 token, address account) internal view returns (uint256) { if (isETH(token)) { return account.balance; } else { return token.balanceOf(account); } } function uniTransfer(IERC20 token, address payable to, uint256 amount) internal { if (amount > 0) { if (isETH(token)) { to.transfer(amount); } else { token.safeTransfer(to, amount); } } } function uniTransferFrom(IERC20 token, address payable from, address to, uint256 amount) internal { if (amount > 0) { if (isETH(token)) { require(msg.value >= amount, "UniERC20: not enough value"); require(from == msg.sender, "from is not msg.sender"); require(to == address(this), "to is not this"); if (msg.value > amount) { // Return remainder if exist from.transfer(msg.value.sub(amount)); } } else { token.safeTransferFrom(from, to, amount); } } } function uniSymbol(IERC20 token) internal view returns(string memory) { if (isETH(token)) { return "ETH"; } (bool success, bytes memory data) = address(token).staticcall{ gas: 20000 }( abi.encodeWithSignature("symbol()") ); if (!success) { (success, data) = address(token).staticcall{ gas: 20000 }( abi.encodeWithSignature("SYMBOL()") ); } if (success && data.length >= 96) { (uint256 offset, uint256 len) = abi.decode(data, (uint256, uint256)); if (offset == 0x20 && len > 0 && len <= 256) { return string(abi.decode(data, (bytes))); } } if (success && data.length == 32) { uint len = 0; while (len < data.length && data[len] >= 0x20 && data[len] <= 0x7E) { len++; } if (len > 0) { bytes memory result = new bytes(len); for (uint i = 0; i < len; i++) { result[i] = data[i]; } return string(result); } } return _toHex(address(token)); } function _toHex(address account) private pure returns(string memory) { return _toHex(abi.encodePacked(account)); } function _toHex(bytes memory data) private pure returns(string memory) { bytes memory str = new bytes(2 + data.length * 2); str[0] = "0"; str[1] = "x"; uint j = 2; for (uint i = 0; i < data.length; i++) { uint a = uint8(data[i]) >> 4; uint b = uint8(data[i]) & 0x0f; str[j++] = byte(uint8(a + 48 + (a/10)*39)); str[j++] = byte(uint8(b + 48 + (b/10)*39)); } return string(str); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.12; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/math/Math.sol"; import "./SafeCast.sol"; library VirtualBalance { using SafeMath for uint256; using SafeCast for uint256; struct Data { uint216 balance; uint40 time; } function set(VirtualBalance.Data storage self, uint256 balance) internal { self.balance = balance.toUint216(); self.time = block.timestamp.toUint40(); } function update(VirtualBalance.Data storage self, uint256 decayPeriod, uint256 realBalance) internal { set(self, current(self, decayPeriod, realBalance)); } function scale(VirtualBalance.Data storage self, uint256 decayPeriod, uint256 realBalance, uint256 num, uint256 denom) internal { set(self, current(self, decayPeriod, realBalance).mul(num).add(denom.sub(1)).div(denom)); } function current(VirtualBalance.Data memory self, uint256 decayPeriod, uint256 realBalance) internal view returns(uint256) { uint256 timePassed = Math.min(decayPeriod, block.timestamp.sub(self.time)); uint256 timeRemain = decayPeriod.sub(timePassed); return uint256(self.balance).mul(timeRemain).add( realBalance.mul(timePassed) ).div(decayPeriod); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.12; import "@openzeppelin/contracts/math/Math.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; library VirtualVote { using SafeMath for uint256; uint256 private constant _VOTE_DECAY_PERIOD = 1 days; struct Data { uint104 oldResult; uint104 result; uint48 time; } function current(VirtualVote.Data memory self) internal view returns(uint256) { uint256 timePassed = Math.min(_VOTE_DECAY_PERIOD, block.timestamp.sub(self.time)); uint256 timeRemain = _VOTE_DECAY_PERIOD.sub(timePassed); return uint256(self.oldResult).mul(timeRemain).add( uint256(self.result).mul(timePassed) ).div(_VOTE_DECAY_PERIOD); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.12; library Vote { struct Data { uint256 value; } function eq(Vote.Data memory self, Vote.Data memory vote) internal pure returns(bool) { return self.value == vote.value; } function init() internal pure returns(Vote.Data memory data) { return Vote.Data({ value: 0 }); } function init(uint256 vote) internal pure returns(Vote.Data memory data) { return Vote.Data({ value: vote + 1 }); } function isDefault(Data memory self) internal pure returns(bool) { return self.value == 0; } function get(Data memory self, uint256 defaultVote) internal pure returns(uint256) { if (self.value > 0) { return self.value - 1; } return defaultVote; } function get(Data memory self, function() external view returns(uint256) defaultVoteFn) internal view returns(uint256) { if (self.value > 0) { return self.value - 1; } return defaultVoteFn(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/math/Math.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "../interfaces/IMooniswapFactory.sol"; import "../libraries/UniERC20.sol"; import "../libraries/VirtualBalance.sol"; import "../Mooniswap.sol"; contract Converter is Ownable { using SafeMath for uint256; using SafeERC20 for IERC20; using UniERC20 for IERC20; using VirtualBalance for VirtualBalance.Data; uint256 private constant _ONE = 1e18; uint256 private constant _MAX_SPREAD = 0.01e18; uint256 private constant _MAX_LIQUIDITY_SHARE = 100; IERC20 public immutable inchToken; IMooniswapFactory public immutable mooniswapFactory; mapping(IERC20 => bool) public pathWhitelist; constructor (IERC20 _inchToken, IMooniswapFactory _mooniswapFactory) public { inchToken = _inchToken; mooniswapFactory = _mooniswapFactory; } receive() external payable { // solhint-disable-next-line avoid-tx-origin require(msg.sender != tx.origin, "ETH transfer forbidden"); } modifier validSpread(Mooniswap mooniswap) { require(_validateSpread(mooniswap), "Spread is too high"); _; } modifier validPool(Mooniswap mooniswap) { require(mooniswapFactory.isPool(mooniswap), "Invalid mooniswap"); _; } modifier validPath(IERC20[] memory path) { require(path.length > 0, "Min path length is 1"); require(path.length < 5, "Max path length is 4"); require(path[path.length - 1] == inchToken, "Should swap to target token"); for (uint256 i = 1; i + 1 < path.length; i += 1) { require(pathWhitelist[path[i]], "Token is not whitelisted"); } _; } function updatePathWhitelist(IERC20 token, bool whitelisted) external onlyOwner { pathWhitelist[token] = whitelisted; } function _validateSpread(Mooniswap mooniswap) internal view returns(bool) { IERC20[] memory tokens = mooniswap.getTokens(); uint256 buyPrice; uint256 sellPrice; uint256 spotPrice; { uint256 token0Balance = tokens[0].uniBalanceOf(address(mooniswap)); uint256 token1Balance = tokens[1].uniBalanceOf(address(mooniswap)); uint256 decayPeriod = mooniswap.decayPeriod(); VirtualBalance.Data memory vb; (vb.balance, vb.time) = mooniswap.virtualBalancesForAddition(tokens[0]); uint256 token0BalanceForAddition = Math.max(vb.current(decayPeriod, token0Balance), token0Balance); (vb.balance, vb.time) = mooniswap.virtualBalancesForAddition(tokens[1]); uint256 token1BalanceForAddition = Math.max(vb.current(decayPeriod, token1Balance), token1Balance); (vb.balance, vb.time) = mooniswap.virtualBalancesForRemoval(tokens[0]); uint256 token0BalanceForRemoval = Math.min(vb.current(decayPeriod, token0Balance), token0Balance); (vb.balance, vb.time) = mooniswap.virtualBalancesForRemoval(tokens[1]); uint256 token1BalanceForRemoval = Math.min(vb.current(decayPeriod, token1Balance), token1Balance); buyPrice = _ONE.mul(token1BalanceForAddition).div(token0BalanceForRemoval); sellPrice = _ONE.mul(token1BalanceForRemoval).div(token0BalanceForAddition); spotPrice = _ONE.mul(token1Balance).div(token0Balance); } return buyPrice.sub(sellPrice).mul(_ONE) < _MAX_SPREAD.mul(spotPrice); } function _maxAmountForSwap(IERC20[] memory path, uint256 amount) internal view returns(uint256 srcAmount, uint256 dstAmount) { srcAmount = amount; dstAmount = amount; uint256 pathLength = path.length; for (uint256 i = 0; i + 1 < pathLength; i += 1) { Mooniswap mooniswap = mooniswapFactory.pools(path[i], path[i+1]); uint256 maxCurStepAmount = path[i].uniBalanceOf(address(mooniswap)).div(_MAX_LIQUIDITY_SHARE); if (maxCurStepAmount < dstAmount) { srcAmount = srcAmount.mul(maxCurStepAmount).div(dstAmount); dstAmount = maxCurStepAmount; } dstAmount = mooniswap.getReturn(path[i], path[i+1], dstAmount); } } function _swap(IERC20[] memory path, uint256 initialAmount, address payable destination) internal returns(uint256 amount) { amount = initialAmount; for (uint256 i = 0; i + 1 < path.length; i += 1) { Mooniswap mooniswap = mooniswapFactory.pools(path[i], path[i+1]); require(_validateSpread(mooniswap), "Spread is too high"); uint256 value = amount; if (!path[i].isETH()) { path[i].safeApprove(address(mooniswap), amount); value = 0; } if (i + 2 < path.length) { amount = mooniswap.swap{value: value}(path[i], path[i+1], amount, 0, address(0)); } else { amount = mooniswap.swapFor{value: value}(path[i], path[i+1], amount, 0, address(0), destination); } } if (path.length == 1) { path[0].transfer(destination, amount); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "../GSN/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. */ 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 () internal { 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "../../GSN/Context.sol"; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.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.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 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view 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 * * - `to` 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 is 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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @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 { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ 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 () internal { _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; } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 10000 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract IERC20","name":"_inchToken","type":"address"},{"internalType":"contract IMooniswapFactory","name":"_mooniswapFactory","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"contract Mooniswap[]","name":"pools","type":"address[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Mooniswap","name":"mooniswap","type":"address"}],"name":"claimCurrentEpoch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Mooniswap","name":"mooniswap","type":"address"}],"name":"claimFrozenEpoch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Mooniswap","name":"mooniswap","type":"address"}],"name":"freezeEpoch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"inchToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mooniswapFactory","outputs":[{"internalType":"contract IMooniswapFactory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"name":"pathWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"name":"tokenInfo","outputs":[{"internalType":"uint256","name":"firstUnprocessedEpoch","type":"uint256"},{"internalType":"uint256","name":"currentEpoch","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract Mooniswap","name":"mooniswap","type":"address"},{"internalType":"contract IERC20[]","name":"path","type":"address[]"}],"name":"trade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"bool","name":"whitelisted","type":"bool"}],"name":"updatePathWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"referral","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040523480156200001157600080fd5b506040516200388938038062003889833981810160405260408110156200003757600080fd5b508051602090910151818160006200004e620000be565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600160601b0319606092831b8116608052911b1660a05250506001600255620000c2565b3390565b60805160601c60a05160601c61376b6200011e600039806108d95280610ce05280610da9528061131152806116e45280611cb552806128c25280612b435250806106e65280610c9d52806115085280611856525061376b6000f3fe6080604052600436106100ec5760003560e01c80638da5cb5b1161008a578063f2fde38b11610059578063f2fde38b146103cb578063f3aafa80146103fe578063f583adbc146104be578063f5dab711146104f957610148565b80638da5cb5b1461033b578063946e1a62146103505780639e96b2ce14610383578063ec954594146103b657610148565b80635e8c8bb7116100c65780635e8c8bb71461027b578063715018a6146102c257806371646f98146102d7578063857311401461030a57610148565b80631959a0021461014d5780631a39912514610192578063318d9e5d146101cb57610148565b366101485733321415610146576040805162461bcd60e51b815260206004820152601660248201527f455448207472616e7366657220666f7262696464656e00000000000000000000604482015290519081900360640190fd5b005b600080fd5b34801561015957600080fd5b506101806004803603602081101561017057600080fd5b50356001600160a01b0316610545565b60408051918252519081900360200190f35b34801561019e57600080fd5b50610146600480360360408110156101b557600080fd5b506001600160a01b038135169060200135610557565b3480156101d757600080fd5b50610146600480360360208110156101ee57600080fd5b81019060208101813564010000000081111561020957600080fd5b82018360208201111561021b57600080fd5b8035906020019184602083028401116401000000008311171561023d57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610600945050505050565b34801561028757600080fd5b506102ae6004803603602081101561029e57600080fd5b50356001600160a01b0316610760565b604080519115158252519081900360200190f35b3480156102ce57600080fd5b50610146610775565b3480156102e357600080fd5b50610146600480360360208110156102fa57600080fd5b50356001600160a01b0316610841565b34801561031657600080fd5b5061031f610cde565b604080516001600160a01b039092168252519081900360200190f35b34801561034757600080fd5b5061031f610d02565b34801561035c57600080fd5b506101466004803603602081101561037357600080fd5b50356001600160a01b0316610d11565b34801561038f57600080fd5b50610146600480360360208110156103a657600080fd5b50356001600160a01b0316611279565b3480156103c257600080fd5b5061031f611506565b3480156103d757600080fd5b50610146600480360360208110156103ee57600080fd5b50356001600160a01b031661152a565b34801561040a57600080fd5b506101466004803603604081101561042157600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561044c57600080fd5b82018360208201111561045e57600080fd5b8035906020019184602083028401116401000000008311171561048057600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061164c945050505050565b3480156104ca57600080fd5b50610146600480360360408110156104e157600080fd5b506001600160a01b0381351690602001351515611f53565b34801561050557600080fd5b5061052c6004803603602081101561051c57600080fd5b50356001600160a01b0316612006565b6040805192835260208301919091528051918290030190f35b60036020526000908152604090205481565b3360008181526004602090815260408083206001600160a01b038716845260038352818420600282015486865260018201855283862081875290945291909320549091906105a59086612022565b6001600160a01b0385166000908152600184016020908152604080832085845282528083209390935585905220546105dd9086612022565b6000828152602085905260409020556105f882848684612085565b505050505050565b336000908152600360205260408120905b825181101561067557600083828151811061062857fe5b60200260200101519050600060046000836001600160a01b03166001600160a01b03168152602001908152602001600020905061066b8482848460020154612085565b5050600101610611565b508054600181111561075b5760018255604080517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8301602482015290516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163a9059cbb9160448083019260209291908290030181600087803b15801561072e57600080fd5b505af1158015610742573d6000803e3d6000fd5b505050506040513d602081101561075857600080fd5b50505b505050565b60016020526000908152604090205460ff1681565b61077d6121d0565b6000546001600160a01b039081169116146107df576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b600280541415610898576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60028055604080517f5b16ebb70000000000000000000000000000000000000000000000000000000081526001600160a01b038084166004830152915183927f00000000000000000000000000000000000000000000000000000000000000001691635b16ebb7916024808301926020929190829003018186803b15801561091f57600080fd5b505afa158015610933573d6000803e3d6000fd5b505050506040513d602081101561094957600080fd5b505161099c576040805162461bcd60e51b815260206004820152601160248201527f496e76616c6964206d6f6f6e6973776170000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b038216600090815260046020908152604080832033845260039092529091206001808301546002840154909181906109dc908490612022565b14610a2e576040805162461bcd60e51b815260206004820152601760248201527f45706f636820616c72656164792066696e616c697a6564000000000000000000604482015290519081900360640190fd5b6001600160a01b03861660009081526002840160205260409020548214610a9c576040805162461bcd60e51b815260206004820152601b60248201527f45706f63682066756e647320616c726561647920636c61696d65640000000000604482015290519081900360640190fd5b6001600160a01b038616600090815260028401602090815260408083208490556001860182528083208584529091529020548015610cd05760008381526020868152604080832080546001600160a01b038c16855260018901845282852088865290935290832092909255610b1181846121d4565b82600001819055506060896001600160a01b031663aa6ca8086040518163ffffffff1660e01b815260040160006040518083038186803b158015610b5457600080fd5b505afa158015610b68573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526020811015610baf57600080fd5b8101908080516040519392919084640100000000821115610bcf57600080fd5b908301906020820185811115610be457600080fd5b8251866020820283011164010000000082111715610c0157600080fd5b82525081516020918201928201910280838360005b83811015610c2e578181015183820152602001610c16565b505050509050016040525050509050610c6181600081518110610c4d57fe5b602002602001015184600101548685612216565b8360010181905550610c8d81600181518110610c7957fe5b602002602001015184600201548685612216565b60028401556003830154610cc4907f0000000000000000000000000000000000000000000000000000000000000000908685612216565b83600301819055505050505b505060016002555050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b031690565b600280541415610d68576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60028055604080517f5b16ebb70000000000000000000000000000000000000000000000000000000081526001600160a01b038084166004830152915183927f00000000000000000000000000000000000000000000000000000000000000001691635b16ebb7916024808301926020929190829003018186803b158015610def57600080fd5b505afa158015610e03573d6000803e3d6000fd5b505050506040513d6020811015610e1957600080fd5b5051610e6c576040805162461bcd60e51b815260206004820152601160248201527f496e76616c6964206d6f6f6e6973776170000000000000000000000000000000604482015290519081900360640190fd5b81610e768161225f565b610ec7576040805162461bcd60e51b815260206004820152601260248201527f53707265616420697320746f6f20686967680000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600460205260409020600281015460018201548114610f3c576040805162461bcd60e51b815260206004820152601f60248201527f50726576696f75732065706f6368206973206e6f742066696e616c697a656400604482015290519081900360640190fd5b6060856001600160a01b031663aa6ca8086040518163ffffffff1660e01b815260040160006040518083038186803b158015610f7757600080fd5b505afa158015610f8b573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526020811015610fd257600080fd5b8101908080516040519392919084640100000000821115610ff257600080fd5b90830190602082018581111561100757600080fd5b825186602082028301116401000000008211171561102457600080fd5b82525081516020918201928201910280838360005b83811015611051578181015183820152602001611039565b5050505090500160405250505090506000611092308360008151811061107357fe5b60200260200101516001600160a01b031661280990919063ffffffff16565b905060006110a7308460018151811061107357fe5b9050876001600160a01b0316635915d806896001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561110557600080fd5b505afa158015611119573d6000803e3d6000fd5b505050506040513d602081101561112f57600080fd5b50516040805160008082526020820190925290506040518363ffffffff1660e01b81526004018083815260200180602001828103825283818151815260200191508051906020019060200280838360005b83811015611198578181015183820152602001611180565b5050505090500193505050506040805180830381600087803b1580156111bd57600080fd5b505af11580156111d1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525060408110156111f657600080fd5b50508251611217908390611211903090879060009061107357fe5b906121d4565b8560000160008681526020019081526020016000206001018190555061124881611211308660018151811061107357fe5b600085815260208790526040902060020155611265846001612022565b600295860155505060019092555050505050565b6002805414156112d0576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60028055604080517f5b16ebb70000000000000000000000000000000000000000000000000000000081526001600160a01b038084166004830152915183927f00000000000000000000000000000000000000000000000000000000000000001691635b16ebb7916024808301926020929190829003018186803b15801561135757600080fd5b505afa15801561136b573d6000803e3d6000fd5b505050506040513d602081101561138157600080fd5b50516113d4576040805162461bcd60e51b815260206004820152601160248201527f496e76616c6964206d6f6f6e6973776170000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b03821660008181526004602090815260408083203384526003835281842060028201549585526001810184528285208686529093529220549192909180156114f9576001600160a01b0386166000908152600184016020908152604080832085845282528083208390559086905290205461145690826121d4565b6000838152602086815260408083209390935582517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810185905292516001600160a01b038a169363a9059cbb9360448083019493928390030190829087803b1580156114cc57600080fd5b505af11580156114e0573d6000803e3d6000fd5b505050506040513d60208110156114f657600080fd5b50505b5050600160025550505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6115326121d0565b6000546001600160a01b03908116911614611594576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166115d95760405162461bcd60e51b815260040180806020018281038252602681526020018061368f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6002805414156116a3576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60028055604080517f5b16ebb70000000000000000000000000000000000000000000000000000000081526001600160a01b038085166004830152915184927f00000000000000000000000000000000000000000000000000000000000000001691635b16ebb7916024808301926020929190829003018186803b15801561172a57600080fd5b505afa15801561173e573d6000803e3d6000fd5b505050506040513d602081101561175457600080fd5b50516117a7576040805162461bcd60e51b815260206004820152601160248201527f496e76616c6964206d6f6f6e6973776170000000000000000000000000000000604482015290519081900360640190fd5b8160008151116117fe576040805162461bcd60e51b815260206004820152601460248201527f4d696e2070617468206c656e6774682069732031000000000000000000000000604482015290519081900360640190fd5b6005815110611854576040805162461bcd60e51b815260206004820152601460248201527f4d61782070617468206c656e6774682069732034000000000000000000000000604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168160018351038151811061188e57fe5b60200260200101516001600160a01b0316146118f1576040805162461bcd60e51b815260206004820152601b60248201527f53686f756c64207377617020746f2074617267657420746f6b656e0000000000604482015290519081900360640190fd5b60015b8151816001011015611990576001600083838151811061191057fe5b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff16611988576040805162461bcd60e51b815260206004820152601860248201527f546f6b656e206973206e6f742077686974656c69737465640000000000000000604482015290519081900360640190fd5b6001016118f4565b506001600160a01b03841660009081526004602090815260408083206001808201548086529382905291909320600284015490916119cf908490612022565b14611a21576040805162461bcd60e51b815260206004820152601c60248201527f507265762065706f636820616c72656164792066696e616c697a656400000000604482015290519081900360640190fd5b6060876001600160a01b031663aa6ca8086040518163ffffffff1660e01b815260040160006040518083038186803b158015611a5c57600080fd5b505afa158015611a70573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526020811015611ab757600080fd5b8101908080516040519392919084640100000000821115611ad757600080fd5b908301906020820185811115611aec57600080fd5b8251866020820283011164010000000082111715611b0957600080fd5b82525081516020918201928201910280838360005b83811015611b36578181015183820152602001611b1e565b505050509050016040525050509050600081600081518110611b5457fe5b60200260200101516001600160a01b031688600081518110611b7257fe5b60200260200101516001600160a01b03161415611b9457506001820154611c2e565b81600181518110611ba157fe5b60200260200101516001600160a01b031688600081518110611bbf57fe5b60200260200101516001600160a01b03161415611be157506002820154611c2e565b6040805162461bcd60e51b815260206004820152601360248201527f496e76616c696420666972737420746f6b656e00000000000000000000000000604482015290519081900360640190fd5b600080611c3b8a846128aa565b915091508060001415611e81578215611e7c57818314611ca2576040805162461bcd60e51b815260206004820152601c60248201527f617661696c61626c6542616c616e6365206973206e6f74206475737400000000604482015290519081900360640190fd5b60005b8a51816001011015611deb5760007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663901754d78d8481518110611cee57fe5b60200260200101518e8560010181518110611d0557fe5b60200260200101516040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060206040518083038186803b158015611d5a57600080fd5b505afa158015611d6e573d6000803e3d6000fd5b505050506040513d6020811015611d8457600080fd5b50519050611d918161225f565b611de2576040805162461bcd60e51b815260206004820152601260248201527f53707265616420697320746f6f20686967680000000000000000000000000000604482015290519081900360640190fd5b50600101611ca5565b50611e128a600081518110611dfc57fe5b60200260200101516001600160a01b0316612aa2565b15611e4a57604051329084156108fc029085906000818181858888f19350505050158015611e44573d6000803e3d6000fd5b50611e7c565b611e7c8b848c600081518110611e5c57fe5b60200260200101516001600160a01b0316612aaf9092919063ffffffff16565b611ea7565b6000611e8e8b8430612b2f565b6003870154909150611ea09082612022565b6003870155505b83600081518110611eb457fe5b60200260200101516001600160a01b03168a600081518110611ed257fe5b60200260200101516001600160a01b03161415611f02576001850154611ef890836121d4565b6001860155611f17565b6002850154611f1190836121d4565b60028601555b6001850154158015611f2b57506002850154155b15611f4157611f3b866001612022565b60018801555b50506001600255505050505050505050565b611f5b6121d0565b6000546001600160a01b03908116911614611fbd576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0391909116600090815260016020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6004602052600090815260409020600181015460029091015482565b60008282018381101561207c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b6001600160a01b038216600090815260018501602090815260408083206002880183528184205484529091529020546120da576001600160a01b038216600090815260028501602052604090208190556121ca565b6001600160a01b0382166000908152600280860160205260408220546001860154909290916121129061210d84866121d4565b612f4a565b905080612121575050506121ca565b600061212f88888887612f60565b905060018211156121565761215361214c89898988600101612f60565b8290612022565b90505b87546121629082612022565b88556001600160a01b03861660009081526001808a0160209081526040808420928801845291905290205415600283148061219a5750805b6121a757846001016121a9565b855b6001600160a01b038816600090815260028b01602052604090205550505050505b50505050565b3390565b600061207c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613014565b60008061222d8361222787876130ab565b90613104565b90508015612249576122496001600160a01b0387163383613146565b61225385826121d4565b9150505b949350505050565b60006060826001600160a01b031663aa6ca8086040518163ffffffff1660e01b815260040160006040518083038186803b15801561229c57600080fd5b505afa1580156122b0573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820160405260208110156122f757600080fd5b810190808051604051939291908464010000000082111561231757600080fd5b90830190602082018581111561232c57600080fd5b825186602082028301116401000000008211171561234957600080fd5b82525081516020918201928201910280838360005b8381101561237657818101518382015260200161235e565b50505050905001604052505050905060008060008061239c878660008151811061107357fe5b905060006123b1888760018151811061107357fe5b90506000886001600160a01b03166348d67e1b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156123ee57600080fd5b505afa158015612402573d6000803e3d6000fd5b505050506040513d602081101561241857600080fd5b50519050612424613677565b896001600160a01b0316636edc2c098960008151811061244057fe5b60200260200101516040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050604080518083038186803b15801561248457600080fd5b505afa158015612498573d6000803e3d6000fd5b505050506040513d60408110156124ae57600080fd5b50805160209182015164ffffffffff16918301919091527affffffffffffffffffffffffffffffffffffffffffffffffffffff16815260006124fa6124f48385886131aa565b86613229565b90508a6001600160a01b0316636edc2c098a60018151811061251857fe5b60200260200101516040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050604080518083038186803b15801561255c57600080fd5b505afa158015612570573d6000803e3d6000fd5b505050506040513d604081101561258657600080fd5b50805160209182015164ffffffffff16918401919091527affffffffffffffffffffffffffffffffffffffffffffffffffffff16825260006125cc6124f48486886131aa565b90508b6001600160a01b0316635ed9156d8b6000815181106125ea57fe5b60200260200101516040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050604080518083038186803b15801561262e57600080fd5b505afa158015612642573d6000803e3d6000fd5b505050506040513d604081101561265857600080fd5b50805160209182015164ffffffffff16918501919091527affffffffffffffffffffffffffffffffffffffffffffffffffffff16835260006126a461269e85878a6131aa565b88612f4a565b90508c6001600160a01b0316635ed9156d8c6001815181106126c257fe5b60200260200101516040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050604080518083038186803b15801561270657600080fd5b505afa15801561271a573d6000803e3d6000fd5b505050506040513d604081101561273057600080fd5b50805160209182015164ffffffffff16918601919091527affffffffffffffffffffffffffffffffffffffffffffffffffffff168452600061277661269e86888a6131aa565b905061278e82612227670de0b6b3a7640000866130ab565b9a506127a684612227670de0b6b3a7640000846130ab565b99506127be88612227670de0b6b3a76400008a6130ab565b985050505050505050506127e281662386f26fc100006130ab90919063ffffffff16565b6127fe670de0b6b3a76400006127f886866121d4565b906130ab565b109695505050505050565b600061281483612aa2565b1561282a57506001600160a01b0381163161207f565b826001600160a01b03166370a08231836040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561287757600080fd5b505afa15801561288b573d6000803e3d6000fd5b505050506040513d60208110156128a157600080fd5b5051905061207f565b81518190819060005b81816001011015612a995760007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663901754d78884815181106128fb57fe5b602002602001015189856001018151811061291257fe5b60200260200101516040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060206040518083038186803b15801561296757600080fd5b505afa15801561297b573d6000803e3d6000fd5b505050506040513d602081101561299157600080fd5b505187519091506000906129b4906064906122279085908c908890811061107357fe5b9050848110156129d2576129cc8561222788846130ab565b95508094505b816001600160a01b0316631e1401f88985815181106129ed57fe5b60200260200101518a8660010181518110612a0457fe5b6020026020010151886040518463ffffffff1660e01b815260040180846001600160a01b03168152602001836001600160a01b03168152602001828152602001935050505060206040518083038186803b158015612a6157600080fd5b505afa158015612a75573d6000803e3d6000fd5b505050506040513d6020811015612a8b57600080fd5b5051945050506001016128b3565b50509250929050565b6001600160a01b03161590565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905261075b908490613239565b8160005b8451816001011015612ea05760007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663901754d7878481518110612b7c57fe5b6020026020010151888560010181518110612b9357fe5b60200260200101516040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060206040518083038186803b158015612be857600080fd5b505afa158015612bfc573d6000803e3d6000fd5b505050506040513d6020811015612c1257600080fd5b50519050612c1f8161225f565b612c70576040805162461bcd60e51b815260206004820152601260248201527f53707265616420697320746f6f20686967680000000000000000000000000000604482015290519081900360640190fd5b6000839050612c84878481518110611dfc57fe5b612cbd57612cb98285898681518110612c9957fe5b60200260200101516001600160a01b03166132ea9092919063ffffffff16565b5060005b8651836002011015612da857816001600160a01b031663d5bcb9b582898681518110612ce557fe5b60200260200101518a8760010181518110612cfc57fe5b6020026020010151886000806040518763ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b03168152602001848152602001838152602001826001600160a01b03168152602001955050505050506020604051808303818588803b158015612d7457600080fd5b505af1158015612d88573d6000803e3d6000fd5b50505050506040513d6020811015612d9f57600080fd5b50519350612e96565b816001600160a01b031663e331d03982898681518110612dc457fe5b60200260200101518a8760010181518110612ddb57fe5b602090810291909101810151604080517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b1681526001600160a01b0394851660048201529184166024830152604482018b90526000606483018190526084830152928b1660a4820152915160c48084019382900301818588803b158015612e6657600080fd5b505af1158015612e7a573d6000803e3d6000fd5b50505050506040513d6020811015612e9157600080fd5b505193505b5050600101612b33565b50835160011415612f435783600081518110612eb857fe5b60200260200101516001600160a01b031663a9059cbb83836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015612f1657600080fd5b505af1158015612f2a573d6000803e3d6000fd5b505050506040513d6020811015612f4057600080fd5b50505b9392505050565b6000818310612f59578161207c565b5090919050565b60008181526020848152604080832060038101546001600160a01b03871685526001890184528285208686528452918420549287905254909190612fa88161222785856130ab565b6001600160a01b038716600090815260018a01602090815260408083208984529091528120559350612fda81836121d4565b600086815260208990526040902055612ff383856121d4565b60009586526020979097525050604090922060030193909355509092915050565b600081848411156130a35760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613068578181015183820152602001613050565b50505050905090810190601f1680156130955780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000826130ba5750600061207f565b828202828482816130c757fe5b041461207c5760405162461bcd60e51b81526004018080602001828103825260218152602001806136b56021913960400191505060405180910390fd5b600061207c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613444565b801561075b5761315583612aa2565b15613196576040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015613190573d6000803e3d6000fd5b5061075b565b61075b6001600160a01b0384168383612aaf565b6000806131cf8461210d876020015164ffffffffff16426121d490919063ffffffff16565b905060006131dd85836121d4565b905061321f856122276131f087866130ab565b8951613219907affffffffffffffffffffffffffffffffffffffffffffffffffffff16866130ab565b90612022565b9695505050505050565b600081831015612f59578161207c565b606061328e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166134a99092919063ffffffff16565b80519091501561075b578080602001905160208110156132ad57600080fd5b505161075b5760405162461bcd60e51b815260040180806020018281038252602a8152602001806136d6602a913960400191505060405180910390fd5b8015806133895750604080517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561335b57600080fd5b505afa15801561336f573d6000803e3d6000fd5b505050506040513d602081101561338557600080fd5b5051155b6133c45760405162461bcd60e51b81526004018080602001828103825260368152602001806137006036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b30000000000000000000000000000000000000000000000000000000017905261075b908490613239565b600081836134935760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613068578181015183820152602001613050565b50600083858161349f57fe5b0495945050505050565b6060612257848460008560606134be8561363e565b61350f576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061356c57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0909201916020918201910161352f565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146135ce576040519150601f19603f3d011682016040523d82523d6000602084013e6135d3565b606091505b509150915081156135e75791506122579050565b8051156135f75780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315613068578181015183820152602001613050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590612257575050151592915050565b60408051808201909152600080825260208201529056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a26469706673582212203c39e61f315e6c9557058e531d0666bb5dda0194000c143e6c9ee4657ff717e364736f6c634300060c0033000000000000000000000000111111111117dc0aa78b770fa6a738034120c302000000000000000000000000c4a8b7e29e3c8ec560cd4945c1cf3461a85a148d
Deployed Bytecode
0x6080604052600436106100ec5760003560e01c80638da5cb5b1161008a578063f2fde38b11610059578063f2fde38b146103cb578063f3aafa80146103fe578063f583adbc146104be578063f5dab711146104f957610148565b80638da5cb5b1461033b578063946e1a62146103505780639e96b2ce14610383578063ec954594146103b657610148565b80635e8c8bb7116100c65780635e8c8bb71461027b578063715018a6146102c257806371646f98146102d7578063857311401461030a57610148565b80631959a0021461014d5780631a39912514610192578063318d9e5d146101cb57610148565b366101485733321415610146576040805162461bcd60e51b815260206004820152601660248201527f455448207472616e7366657220666f7262696464656e00000000000000000000604482015290519081900360640190fd5b005b600080fd5b34801561015957600080fd5b506101806004803603602081101561017057600080fd5b50356001600160a01b0316610545565b60408051918252519081900360200190f35b34801561019e57600080fd5b50610146600480360360408110156101b557600080fd5b506001600160a01b038135169060200135610557565b3480156101d757600080fd5b50610146600480360360208110156101ee57600080fd5b81019060208101813564010000000081111561020957600080fd5b82018360208201111561021b57600080fd5b8035906020019184602083028401116401000000008311171561023d57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610600945050505050565b34801561028757600080fd5b506102ae6004803603602081101561029e57600080fd5b50356001600160a01b0316610760565b604080519115158252519081900360200190f35b3480156102ce57600080fd5b50610146610775565b3480156102e357600080fd5b50610146600480360360208110156102fa57600080fd5b50356001600160a01b0316610841565b34801561031657600080fd5b5061031f610cde565b604080516001600160a01b039092168252519081900360200190f35b34801561034757600080fd5b5061031f610d02565b34801561035c57600080fd5b506101466004803603602081101561037357600080fd5b50356001600160a01b0316610d11565b34801561038f57600080fd5b50610146600480360360208110156103a657600080fd5b50356001600160a01b0316611279565b3480156103c257600080fd5b5061031f611506565b3480156103d757600080fd5b50610146600480360360208110156103ee57600080fd5b50356001600160a01b031661152a565b34801561040a57600080fd5b506101466004803603604081101561042157600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561044c57600080fd5b82018360208201111561045e57600080fd5b8035906020019184602083028401116401000000008311171561048057600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061164c945050505050565b3480156104ca57600080fd5b50610146600480360360408110156104e157600080fd5b506001600160a01b0381351690602001351515611f53565b34801561050557600080fd5b5061052c6004803603602081101561051c57600080fd5b50356001600160a01b0316612006565b6040805192835260208301919091528051918290030190f35b60036020526000908152604090205481565b3360008181526004602090815260408083206001600160a01b038716845260038352818420600282015486865260018201855283862081875290945291909320549091906105a59086612022565b6001600160a01b0385166000908152600184016020908152604080832085845282528083209390935585905220546105dd9086612022565b6000828152602085905260409020556105f882848684612085565b505050505050565b336000908152600360205260408120905b825181101561067557600083828151811061062857fe5b60200260200101519050600060046000836001600160a01b03166001600160a01b03168152602001908152602001600020905061066b8482848460020154612085565b5050600101610611565b508054600181111561075b5760018255604080517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8301602482015290516001600160a01b037f000000000000000000000000111111111117dc0aa78b770fa6a738034120c302169163a9059cbb9160448083019260209291908290030181600087803b15801561072e57600080fd5b505af1158015610742573d6000803e3d6000fd5b505050506040513d602081101561075857600080fd5b50505b505050565b60016020526000908152604090205460ff1681565b61077d6121d0565b6000546001600160a01b039081169116146107df576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b600280541415610898576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60028055604080517f5b16ebb70000000000000000000000000000000000000000000000000000000081526001600160a01b038084166004830152915183927f000000000000000000000000c4a8b7e29e3c8ec560cd4945c1cf3461a85a148d1691635b16ebb7916024808301926020929190829003018186803b15801561091f57600080fd5b505afa158015610933573d6000803e3d6000fd5b505050506040513d602081101561094957600080fd5b505161099c576040805162461bcd60e51b815260206004820152601160248201527f496e76616c6964206d6f6f6e6973776170000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b038216600090815260046020908152604080832033845260039092529091206001808301546002840154909181906109dc908490612022565b14610a2e576040805162461bcd60e51b815260206004820152601760248201527f45706f636820616c72656164792066696e616c697a6564000000000000000000604482015290519081900360640190fd5b6001600160a01b03861660009081526002840160205260409020548214610a9c576040805162461bcd60e51b815260206004820152601b60248201527f45706f63682066756e647320616c726561647920636c61696d65640000000000604482015290519081900360640190fd5b6001600160a01b038616600090815260028401602090815260408083208490556001860182528083208584529091529020548015610cd05760008381526020868152604080832080546001600160a01b038c16855260018901845282852088865290935290832092909255610b1181846121d4565b82600001819055506060896001600160a01b031663aa6ca8086040518163ffffffff1660e01b815260040160006040518083038186803b158015610b5457600080fd5b505afa158015610b68573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526020811015610baf57600080fd5b8101908080516040519392919084640100000000821115610bcf57600080fd5b908301906020820185811115610be457600080fd5b8251866020820283011164010000000082111715610c0157600080fd5b82525081516020918201928201910280838360005b83811015610c2e578181015183820152602001610c16565b505050509050016040525050509050610c6181600081518110610c4d57fe5b602002602001015184600101548685612216565b8360010181905550610c8d81600181518110610c7957fe5b602002602001015184600201548685612216565b60028401556003830154610cc4907f000000000000000000000000111111111117dc0aa78b770fa6a738034120c302908685612216565b83600301819055505050505b505060016002555050505050565b7f000000000000000000000000c4a8b7e29e3c8ec560cd4945c1cf3461a85a148d81565b6000546001600160a01b031690565b600280541415610d68576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60028055604080517f5b16ebb70000000000000000000000000000000000000000000000000000000081526001600160a01b038084166004830152915183927f000000000000000000000000c4a8b7e29e3c8ec560cd4945c1cf3461a85a148d1691635b16ebb7916024808301926020929190829003018186803b158015610def57600080fd5b505afa158015610e03573d6000803e3d6000fd5b505050506040513d6020811015610e1957600080fd5b5051610e6c576040805162461bcd60e51b815260206004820152601160248201527f496e76616c6964206d6f6f6e6973776170000000000000000000000000000000604482015290519081900360640190fd5b81610e768161225f565b610ec7576040805162461bcd60e51b815260206004820152601260248201527f53707265616420697320746f6f20686967680000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600460205260409020600281015460018201548114610f3c576040805162461bcd60e51b815260206004820152601f60248201527f50726576696f75732065706f6368206973206e6f742066696e616c697a656400604482015290519081900360640190fd5b6060856001600160a01b031663aa6ca8086040518163ffffffff1660e01b815260040160006040518083038186803b158015610f7757600080fd5b505afa158015610f8b573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526020811015610fd257600080fd5b8101908080516040519392919084640100000000821115610ff257600080fd5b90830190602082018581111561100757600080fd5b825186602082028301116401000000008211171561102457600080fd5b82525081516020918201928201910280838360005b83811015611051578181015183820152602001611039565b5050505090500160405250505090506000611092308360008151811061107357fe5b60200260200101516001600160a01b031661280990919063ffffffff16565b905060006110a7308460018151811061107357fe5b9050876001600160a01b0316635915d806896001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561110557600080fd5b505afa158015611119573d6000803e3d6000fd5b505050506040513d602081101561112f57600080fd5b50516040805160008082526020820190925290506040518363ffffffff1660e01b81526004018083815260200180602001828103825283818151815260200191508051906020019060200280838360005b83811015611198578181015183820152602001611180565b5050505090500193505050506040805180830381600087803b1580156111bd57600080fd5b505af11580156111d1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525060408110156111f657600080fd5b50508251611217908390611211903090879060009061107357fe5b906121d4565b8560000160008681526020019081526020016000206001018190555061124881611211308660018151811061107357fe5b600085815260208790526040902060020155611265846001612022565b600295860155505060019092555050505050565b6002805414156112d0576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60028055604080517f5b16ebb70000000000000000000000000000000000000000000000000000000081526001600160a01b038084166004830152915183927f000000000000000000000000c4a8b7e29e3c8ec560cd4945c1cf3461a85a148d1691635b16ebb7916024808301926020929190829003018186803b15801561135757600080fd5b505afa15801561136b573d6000803e3d6000fd5b505050506040513d602081101561138157600080fd5b50516113d4576040805162461bcd60e51b815260206004820152601160248201527f496e76616c6964206d6f6f6e6973776170000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b03821660008181526004602090815260408083203384526003835281842060028201549585526001810184528285208686529093529220549192909180156114f9576001600160a01b0386166000908152600184016020908152604080832085845282528083208390559086905290205461145690826121d4565b6000838152602086815260408083209390935582517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810185905292516001600160a01b038a169363a9059cbb9360448083019493928390030190829087803b1580156114cc57600080fd5b505af11580156114e0573d6000803e3d6000fd5b505050506040513d60208110156114f657600080fd5b50505b5050600160025550505050565b7f000000000000000000000000111111111117dc0aa78b770fa6a738034120c30281565b6115326121d0565b6000546001600160a01b03908116911614611594576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166115d95760405162461bcd60e51b815260040180806020018281038252602681526020018061368f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6002805414156116a3576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60028055604080517f5b16ebb70000000000000000000000000000000000000000000000000000000081526001600160a01b038085166004830152915184927f000000000000000000000000c4a8b7e29e3c8ec560cd4945c1cf3461a85a148d1691635b16ebb7916024808301926020929190829003018186803b15801561172a57600080fd5b505afa15801561173e573d6000803e3d6000fd5b505050506040513d602081101561175457600080fd5b50516117a7576040805162461bcd60e51b815260206004820152601160248201527f496e76616c6964206d6f6f6e6973776170000000000000000000000000000000604482015290519081900360640190fd5b8160008151116117fe576040805162461bcd60e51b815260206004820152601460248201527f4d696e2070617468206c656e6774682069732031000000000000000000000000604482015290519081900360640190fd5b6005815110611854576040805162461bcd60e51b815260206004820152601460248201527f4d61782070617468206c656e6774682069732034000000000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000111111111117dc0aa78b770fa6a738034120c3026001600160a01b03168160018351038151811061188e57fe5b60200260200101516001600160a01b0316146118f1576040805162461bcd60e51b815260206004820152601b60248201527f53686f756c64207377617020746f2074617267657420746f6b656e0000000000604482015290519081900360640190fd5b60015b8151816001011015611990576001600083838151811061191057fe5b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff16611988576040805162461bcd60e51b815260206004820152601860248201527f546f6b656e206973206e6f742077686974656c69737465640000000000000000604482015290519081900360640190fd5b6001016118f4565b506001600160a01b03841660009081526004602090815260408083206001808201548086529382905291909320600284015490916119cf908490612022565b14611a21576040805162461bcd60e51b815260206004820152601c60248201527f507265762065706f636820616c72656164792066696e616c697a656400000000604482015290519081900360640190fd5b6060876001600160a01b031663aa6ca8086040518163ffffffff1660e01b815260040160006040518083038186803b158015611a5c57600080fd5b505afa158015611a70573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526020811015611ab757600080fd5b8101908080516040519392919084640100000000821115611ad757600080fd5b908301906020820185811115611aec57600080fd5b8251866020820283011164010000000082111715611b0957600080fd5b82525081516020918201928201910280838360005b83811015611b36578181015183820152602001611b1e565b505050509050016040525050509050600081600081518110611b5457fe5b60200260200101516001600160a01b031688600081518110611b7257fe5b60200260200101516001600160a01b03161415611b9457506001820154611c2e565b81600181518110611ba157fe5b60200260200101516001600160a01b031688600081518110611bbf57fe5b60200260200101516001600160a01b03161415611be157506002820154611c2e565b6040805162461bcd60e51b815260206004820152601360248201527f496e76616c696420666972737420746f6b656e00000000000000000000000000604482015290519081900360640190fd5b600080611c3b8a846128aa565b915091508060001415611e81578215611e7c57818314611ca2576040805162461bcd60e51b815260206004820152601c60248201527f617661696c61626c6542616c616e6365206973206e6f74206475737400000000604482015290519081900360640190fd5b60005b8a51816001011015611deb5760007f000000000000000000000000c4a8b7e29e3c8ec560cd4945c1cf3461a85a148d6001600160a01b031663901754d78d8481518110611cee57fe5b60200260200101518e8560010181518110611d0557fe5b60200260200101516040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060206040518083038186803b158015611d5a57600080fd5b505afa158015611d6e573d6000803e3d6000fd5b505050506040513d6020811015611d8457600080fd5b50519050611d918161225f565b611de2576040805162461bcd60e51b815260206004820152601260248201527f53707265616420697320746f6f20686967680000000000000000000000000000604482015290519081900360640190fd5b50600101611ca5565b50611e128a600081518110611dfc57fe5b60200260200101516001600160a01b0316612aa2565b15611e4a57604051329084156108fc029085906000818181858888f19350505050158015611e44573d6000803e3d6000fd5b50611e7c565b611e7c8b848c600081518110611e5c57fe5b60200260200101516001600160a01b0316612aaf9092919063ffffffff16565b611ea7565b6000611e8e8b8430612b2f565b6003870154909150611ea09082612022565b6003870155505b83600081518110611eb457fe5b60200260200101516001600160a01b03168a600081518110611ed257fe5b60200260200101516001600160a01b03161415611f02576001850154611ef890836121d4565b6001860155611f17565b6002850154611f1190836121d4565b60028601555b6001850154158015611f2b57506002850154155b15611f4157611f3b866001612022565b60018801555b50506001600255505050505050505050565b611f5b6121d0565b6000546001600160a01b03908116911614611fbd576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0391909116600090815260016020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6004602052600090815260409020600181015460029091015482565b60008282018381101561207c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b6001600160a01b038216600090815260018501602090815260408083206002880183528184205484529091529020546120da576001600160a01b038216600090815260028501602052604090208190556121ca565b6001600160a01b0382166000908152600280860160205260408220546001860154909290916121129061210d84866121d4565b612f4a565b905080612121575050506121ca565b600061212f88888887612f60565b905060018211156121565761215361214c89898988600101612f60565b8290612022565b90505b87546121629082612022565b88556001600160a01b03861660009081526001808a0160209081526040808420928801845291905290205415600283148061219a5750805b6121a757846001016121a9565b855b6001600160a01b038816600090815260028b01602052604090205550505050505b50505050565b3390565b600061207c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613014565b60008061222d8361222787876130ab565b90613104565b90508015612249576122496001600160a01b0387163383613146565b61225385826121d4565b9150505b949350505050565b60006060826001600160a01b031663aa6ca8086040518163ffffffff1660e01b815260040160006040518083038186803b15801561229c57600080fd5b505afa1580156122b0573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820160405260208110156122f757600080fd5b810190808051604051939291908464010000000082111561231757600080fd5b90830190602082018581111561232c57600080fd5b825186602082028301116401000000008211171561234957600080fd5b82525081516020918201928201910280838360005b8381101561237657818101518382015260200161235e565b50505050905001604052505050905060008060008061239c878660008151811061107357fe5b905060006123b1888760018151811061107357fe5b90506000886001600160a01b03166348d67e1b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156123ee57600080fd5b505afa158015612402573d6000803e3d6000fd5b505050506040513d602081101561241857600080fd5b50519050612424613677565b896001600160a01b0316636edc2c098960008151811061244057fe5b60200260200101516040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050604080518083038186803b15801561248457600080fd5b505afa158015612498573d6000803e3d6000fd5b505050506040513d60408110156124ae57600080fd5b50805160209182015164ffffffffff16918301919091527affffffffffffffffffffffffffffffffffffffffffffffffffffff16815260006124fa6124f48385886131aa565b86613229565b90508a6001600160a01b0316636edc2c098a60018151811061251857fe5b60200260200101516040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050604080518083038186803b15801561255c57600080fd5b505afa158015612570573d6000803e3d6000fd5b505050506040513d604081101561258657600080fd5b50805160209182015164ffffffffff16918401919091527affffffffffffffffffffffffffffffffffffffffffffffffffffff16825260006125cc6124f48486886131aa565b90508b6001600160a01b0316635ed9156d8b6000815181106125ea57fe5b60200260200101516040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050604080518083038186803b15801561262e57600080fd5b505afa158015612642573d6000803e3d6000fd5b505050506040513d604081101561265857600080fd5b50805160209182015164ffffffffff16918501919091527affffffffffffffffffffffffffffffffffffffffffffffffffffff16835260006126a461269e85878a6131aa565b88612f4a565b90508c6001600160a01b0316635ed9156d8c6001815181106126c257fe5b60200260200101516040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050604080518083038186803b15801561270657600080fd5b505afa15801561271a573d6000803e3d6000fd5b505050506040513d604081101561273057600080fd5b50805160209182015164ffffffffff16918601919091527affffffffffffffffffffffffffffffffffffffffffffffffffffff168452600061277661269e86888a6131aa565b905061278e82612227670de0b6b3a7640000866130ab565b9a506127a684612227670de0b6b3a7640000846130ab565b99506127be88612227670de0b6b3a76400008a6130ab565b985050505050505050506127e281662386f26fc100006130ab90919063ffffffff16565b6127fe670de0b6b3a76400006127f886866121d4565b906130ab565b109695505050505050565b600061281483612aa2565b1561282a57506001600160a01b0381163161207f565b826001600160a01b03166370a08231836040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561287757600080fd5b505afa15801561288b573d6000803e3d6000fd5b505050506040513d60208110156128a157600080fd5b5051905061207f565b81518190819060005b81816001011015612a995760007f000000000000000000000000c4a8b7e29e3c8ec560cd4945c1cf3461a85a148d6001600160a01b031663901754d78884815181106128fb57fe5b602002602001015189856001018151811061291257fe5b60200260200101516040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060206040518083038186803b15801561296757600080fd5b505afa15801561297b573d6000803e3d6000fd5b505050506040513d602081101561299157600080fd5b505187519091506000906129b4906064906122279085908c908890811061107357fe5b9050848110156129d2576129cc8561222788846130ab565b95508094505b816001600160a01b0316631e1401f88985815181106129ed57fe5b60200260200101518a8660010181518110612a0457fe5b6020026020010151886040518463ffffffff1660e01b815260040180846001600160a01b03168152602001836001600160a01b03168152602001828152602001935050505060206040518083038186803b158015612a6157600080fd5b505afa158015612a75573d6000803e3d6000fd5b505050506040513d6020811015612a8b57600080fd5b5051945050506001016128b3565b50509250929050565b6001600160a01b03161590565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905261075b908490613239565b8160005b8451816001011015612ea05760007f000000000000000000000000c4a8b7e29e3c8ec560cd4945c1cf3461a85a148d6001600160a01b031663901754d7878481518110612b7c57fe5b6020026020010151888560010181518110612b9357fe5b60200260200101516040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060206040518083038186803b158015612be857600080fd5b505afa158015612bfc573d6000803e3d6000fd5b505050506040513d6020811015612c1257600080fd5b50519050612c1f8161225f565b612c70576040805162461bcd60e51b815260206004820152601260248201527f53707265616420697320746f6f20686967680000000000000000000000000000604482015290519081900360640190fd5b6000839050612c84878481518110611dfc57fe5b612cbd57612cb98285898681518110612c9957fe5b60200260200101516001600160a01b03166132ea9092919063ffffffff16565b5060005b8651836002011015612da857816001600160a01b031663d5bcb9b582898681518110612ce557fe5b60200260200101518a8760010181518110612cfc57fe5b6020026020010151886000806040518763ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b03168152602001848152602001838152602001826001600160a01b03168152602001955050505050506020604051808303818588803b158015612d7457600080fd5b505af1158015612d88573d6000803e3d6000fd5b50505050506040513d6020811015612d9f57600080fd5b50519350612e96565b816001600160a01b031663e331d03982898681518110612dc457fe5b60200260200101518a8760010181518110612ddb57fe5b602090810291909101810151604080517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b1681526001600160a01b0394851660048201529184166024830152604482018b90526000606483018190526084830152928b1660a4820152915160c48084019382900301818588803b158015612e6657600080fd5b505af1158015612e7a573d6000803e3d6000fd5b50505050506040513d6020811015612e9157600080fd5b505193505b5050600101612b33565b50835160011415612f435783600081518110612eb857fe5b60200260200101516001600160a01b031663a9059cbb83836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015612f1657600080fd5b505af1158015612f2a573d6000803e3d6000fd5b505050506040513d6020811015612f4057600080fd5b50505b9392505050565b6000818310612f59578161207c565b5090919050565b60008181526020848152604080832060038101546001600160a01b03871685526001890184528285208686528452918420549287905254909190612fa88161222785856130ab565b6001600160a01b038716600090815260018a01602090815260408083208984529091528120559350612fda81836121d4565b600086815260208990526040902055612ff383856121d4565b60009586526020979097525050604090922060030193909355509092915050565b600081848411156130a35760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613068578181015183820152602001613050565b50505050905090810190601f1680156130955780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000826130ba5750600061207f565b828202828482816130c757fe5b041461207c5760405162461bcd60e51b81526004018080602001828103825260218152602001806136b56021913960400191505060405180910390fd5b600061207c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613444565b801561075b5761315583612aa2565b15613196576040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015613190573d6000803e3d6000fd5b5061075b565b61075b6001600160a01b0384168383612aaf565b6000806131cf8461210d876020015164ffffffffff16426121d490919063ffffffff16565b905060006131dd85836121d4565b905061321f856122276131f087866130ab565b8951613219907affffffffffffffffffffffffffffffffffffffffffffffffffffff16866130ab565b90612022565b9695505050505050565b600081831015612f59578161207c565b606061328e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166134a99092919063ffffffff16565b80519091501561075b578080602001905160208110156132ad57600080fd5b505161075b5760405162461bcd60e51b815260040180806020018281038252602a8152602001806136d6602a913960400191505060405180910390fd5b8015806133895750604080517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561335b57600080fd5b505afa15801561336f573d6000803e3d6000fd5b505050506040513d602081101561338557600080fd5b5051155b6133c45760405162461bcd60e51b81526004018080602001828103825260368152602001806137006036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b30000000000000000000000000000000000000000000000000000000017905261075b908490613239565b600081836134935760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613068578181015183820152602001613050565b50600083858161349f57fe5b0495945050505050565b6060612257848460008560606134be8561363e565b61350f576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061356c57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0909201916020918201910161352f565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146135ce576040519150601f19603f3d011682016040523d82523d6000602084013e6135d3565b606091505b509150915081156135e75791506122579050565b8051156135f75780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315613068578181015183820152602001613050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590612257575050151592915050565b60408051808201909152600080825260208201529056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a26469706673582212203c39e61f315e6c9557058e531d0666bb5dda0194000c143e6c9ee4657ff717e364736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000111111111117dc0aa78b770fa6a738034120c302000000000000000000000000c4a8b7e29e3c8ec560cd4945c1cf3461a85a148d
-----Decoded View---------------
Arg [0] : _inchToken (address): 0x111111111117dC0aa78b770fA6A738034120C302
Arg [1] : _mooniswapFactory (address): 0xC4A8B7e29E3C8ec560cd4945c1cF3461a85a148d
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000111111111117dc0aa78b770fa6a738034120c302
Arg [1] : 000000000000000000000000c4a8b7e29e3c8ec560cd4945c1cf3461a85a148d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.213147 | 4,031.0917 | $859.22 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.