Feature Tip: Add private address tag to any address under My Name Tag !
Overview
Max Total Supply
10,000,000,000 VIRAL
Holders
336 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
111,302.373280532243950753 VIRALValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
VIRAL
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion, Audited
Contract Source Code (Solidity Standard Json-Input format)Audit Report
// SPDX-License-Identifier: MIT /** TheViralCrypto presents: #VIRAL by @SatoshiViral Community: @TheViralCrypto Website: https://theviralcrypto.co/ */ pragma solidity ^0.8.10; import "./interfaces/DividendPayingToken.sol"; import "./interfaces/Ownable.sol"; import "./interfaces/IDex.sol"; import "./interfaces/IERC20.sol"; library Address{ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } } contract VIRAL is ERC20, Ownable { using Address for address payable; IRouter public router; address public pair; bool private swapping; bool public swapEnabled = true; bool public claimEnabled; bool public tradingEnabled; VIRALDividendTracker public dividendTracker; address public treasuryWallet = 0x73fA5dDF2aB78D92bB723D92Ab98aF7A0A4Fde8F; address public devWallet = 0x16023072c6a88555736B654629fC807d623617A5; uint256 public swapTokensAtAmount = 500_000 * 10**18; uint256 public maxBuyAmount = 1_000_000 * 10**18; uint256 public maxSellAmount = 1_000_000 * 10**18; /////////////// // Fees // /////////////// struct Taxes { uint256 rewards; uint256 treasury; uint256 liquidity; uint256 dev; } Taxes public buyTaxes = Taxes(0,0,0,2); Taxes public sellTaxes = Taxes(5,10,3,2); uint256 public totalBuyTax = 2; uint256 public totalSellTax = 20; mapping (address => bool) public _isBot; mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) public automatedMarketMakerPairs; /////////////// // Events // /////////////// event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue); event SendDividends(uint256 tokensSwapped,uint256 amount); event ProcessedDividendTracker(uint256 iterations,uint256 claims,uint256 lastProcessedIndex,bool indexed automatic,uint256 gas,address indexed processor); constructor() ERC20("VIRAL", "VIRAL") { dividendTracker = new VIRALDividendTracker(); IRouter _router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address _pair = IFactory(_router.factory()).createPair(address(this), _router.WETH()); router = _router; pair = _pair; _setAutomatedMarketMakerPair(_pair, true); dividendTracker.updateLP_Token(pair); // exclude from receiving dividends dividendTracker.excludeFromDividends(address(dividendTracker), true); dividendTracker.excludeFromDividends(address(this), true); dividendTracker.excludeFromDividends(owner(), true); dividendTracker.excludeFromDividends(address(0xdead), true); dividendTracker.excludeFromDividends(address(_router), true); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(treasuryWallet, true); excludeFromFees(devWallet, true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(owner(), 10e9* (10**18)); } receive() external payable {} function updateDividendTracker(address newAddress) public onlyOwner { VIRALDividendTracker newDividendTracker = VIRALDividendTracker(payable(newAddress)); newDividendTracker.excludeFromDividends(address(newDividendTracker), true); newDividendTracker.excludeFromDividends(address(this), true); newDividendTracker.excludeFromDividends(owner(), true); newDividendTracker.excludeFromDividends(address(router), true); dividendTracker = newDividendTracker; } /// @notice Manual claim the dividends function claim() external { require(claimEnabled, "Claim not enabled"); dividendTracker.processAccount(payable(msg.sender)); } /// @notice Withdraw tokens sent by mistake. /// @param tokenAddress The address of the token to withdraw function rescueETH20Tokens(address tokenAddress) external onlyOwner{ IERC20(tokenAddress).transfer(owner(), IERC20(tokenAddress).balanceOf(address(this))); } /// @notice Send remaining ETH to treasuryWallet /// @dev It will send all ETH to treasuryWallet function forceSend() external { uint256 ETHbalance = address(this).balance; payable(treasuryWallet).sendValue(ETHbalance); } function trackerRescueETH20Tokens(address tokenAddress) external onlyOwner{ dividendTracker.trackerRescueETH20Tokens(owner(), tokenAddress); } function trackerForceSend() external onlyOwner{ dividendTracker.trackerForceSend(owner()); } function updateRouter(address newRouter) external onlyOwner{ router = IRouter(newRouter); } ///////////////////////////////// // Exclude / Include functions // ///////////////////////////////// function excludeFromFees(address account, bool excluded) public onlyOwner { require(_isExcludedFromFees[account] != excluded, "VIRAL: Account is already the value of 'excluded'"); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) public onlyOwner { for(uint256 i = 0; i < accounts.length; i++) { _isExcludedFromFees[accounts[i]] = excluded; } emit ExcludeMultipleAccountsFromFees(accounts, excluded); } /// @dev "true" to exlcude, "false" to include function excludeFromDividends(address account, bool value) external onlyOwner{ dividendTracker.excludeFromDividends(account, value); } /////////////////////// // Setter Functions // /////////////////////// function setTreasuryWallet(address newWallet) external onlyOwner{ treasuryWallet = newWallet; } function setDevWallet(address newWallet) external onlyOwner{ devWallet = newWallet; } /// @notice Update the threshold to swap tokens for liquidity, /// treasury and dividends. function setSwapTokensAtAmount(uint256 amount) external onlyOwner{ swapTokensAtAmount = amount * 10**18; } function setBuyTaxes(uint256 _rewards, uint256 _treasury, uint256 _liquidity, uint256 _dev) external onlyOwner{ require(_rewards + _treasury + _liquidity + _dev <= 20, "Fee must be <= 20%"); buyTaxes = Taxes(_rewards, _treasury, _liquidity, _dev); totalBuyTax = _rewards + _treasury + _liquidity + _dev; } function setSellTaxes(uint256 _rewards, uint256 _treasury, uint256 _liquidity,uint256 _dev) external onlyOwner{ require(_rewards + _treasury + _liquidity + _dev <= 20, "Fee must be <= 20%"); sellTaxes = Taxes(_rewards, _treasury, _liquidity, _dev); totalSellTax = _rewards + _treasury + _liquidity + _dev; } function setMaxBuyAndSell(uint256 maxBuy, uint256 maxSell) external onlyOwner{ maxBuyAmount = maxBuy * 10**18; maxSellAmount = maxSell * 10**18; } /// @notice Enable or disable internal swaps /// @dev Set "true" to enable internal swaps for liquidity, treasury and dividends function setSwapEnabled(bool _enabled) external onlyOwner{ swapEnabled = _enabled; } function activateTrading() external onlyOwner{ require(!tradingEnabled, "Trading already enabled"); tradingEnabled = true; } function setClaimEnabled(bool state) external onlyOwner{ claimEnabled = state; } /// @param bot The bot address /// @param value "true" to blacklist, "false" to unblacklist function setBot(address bot, bool value) external onlyOwner{ require(_isBot[bot] != value); _isBot[bot] = value; } function setBulkBot(address[] memory bots, bool value) external onlyOwner{ for(uint256 i; i<bots.length; i++){ _isBot[bots[i]] = value; } } function setLP_Token(address _lpToken) external onlyOwner{ dividendTracker.updateLP_Token(_lpToken); } /// @dev Set new pairs created due to listing in new DEX function setAutomatedMarketMakerPair(address newPair, bool value) external onlyOwner { _setAutomatedMarketMakerPair(newPair, value); } function _setAutomatedMarketMakerPair(address newPair, bool value) private { require(automatedMarketMakerPairs[newPair] != value, "VIRAL: Automated market maker pair is already set to that value"); automatedMarketMakerPairs[newPair] = value; if(value) { dividendTracker.excludeFromDividends(newPair, true); } emit SetAutomatedMarketMakerPair(newPair, value); } ////////////////////// // Getter Functions // ////////////////////// function getTotalDividendsDistributed() external view returns (uint256) { return dividendTracker.totalDividendsDistributed(); } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function withdrawableDividendOf(address account) public view returns(uint256) { return dividendTracker.withdrawableDividendOf(account); } function dividendTokenBalanceOf(address account) public view returns (uint256) { return dividendTracker.balanceOf(account); } function getAccountInfo(address account) external view returns ( address, uint256, uint256, uint256, uint256){ return dividendTracker.getAccount(account); } //////////////////////// // Transfer Functions // //////////////////////// // Airdrop tokens to users. This won't update the dividend balance in order to avoid a gas issue. // Users will get dividend balance updated as soon as their balance change. function airdropTokens(address[] memory accounts, uint256[] memory amounts) external onlyOwner{ require(accounts.length == amounts.length, "Arrays must have same size"); for(uint256 i; i< accounts.length; i++){ super._transfer(msg.sender, accounts[i], amounts[i]); } } function _transfer(address from, address to, uint256 amount) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to] && !swapping){ require(tradingEnabled, "Trading not active"); require(!_isBot[from] && !_isBot[to], "Bye Bye Bot"); if(automatedMarketMakerPairs[to]) require(amount <= maxSellAmount, "You are exceeding maxSellAmount"); else if(automatedMarketMakerPairs[from]) require(amount <= maxBuyAmount, "You are exceeding maxBuyAmount"); } if(amount == 0) { super._transfer(from, to, 0); return; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if( canSwap && !swapping && swapEnabled && automatedMarketMakerPairs[to] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { swapping = true; if(totalSellTax> 0){ swapAndLiquify(swapTokensAtAmount); } swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } if(!automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from]) takeFee = false; if(takeFee) { uint256 feeAmt; if(automatedMarketMakerPairs[to]) feeAmt = amount * totalSellTax / 100; else if(automatedMarketMakerPairs[from]) feeAmt = amount * totalBuyTax / 100; amount = amount - feeAmt; super._transfer(from, address(this), feeAmt); } super._transfer(from, to, amount); try dividendTracker.setBalance(from, balanceOf(from)) {} catch {} try dividendTracker.setBalance(to, balanceOf(to)) {} catch {} } function swapAndLiquify(uint256 tokens) private { // Split the contract balance into halves uint256 tokensToAddLiquidityWith = tokens / 2; uint256 toSwap = tokens - tokensToAddLiquidityWith; uint256 initialBalance = address(this).balance; swapTokensForETH(toSwap); uint256 ETHToAddLiquidityWith = address(this).balance - initialBalance; if(ETHToAddLiquidityWith > 0){ // Add liquidity to pancake addLiquidity(tokensToAddLiquidityWith, ETHToAddLiquidityWith); } uint256 lpBalance = IERC20(pair).balanceOf(address(this)); uint256 totalTax = (totalSellTax - sellTaxes.liquidity); // Send LP to treasuryWallet uint256 treasuryAmt = lpBalance * sellTaxes.treasury / totalTax; if(treasuryAmt > 0){ IERC20(pair).transfer(treasuryWallet, treasuryAmt); } // Send LP to dev uint256 devAmt = lpBalance * sellTaxes.dev / totalTax; if(devAmt > 0){ IERC20(pair).transfer(devWallet, devAmt); } //Send LP to dividends uint256 dividends = lpBalance * sellTaxes.rewards / totalTax; if(dividends > 0){ bool success = IERC20(pair).transfer(address(dividendTracker), dividends); if (success) { dividendTracker.distributeLPDividends(dividends); emit SendDividends(tokens, dividends); } } } function swapTokensForETH(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), tokenAmount); // make the swap router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(router), tokenAmount); // add the liquidity router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(this), block.timestamp ); } } contract VIRALDividendTracker is Ownable, DividendPayingToken { using Address for address payable; struct AccountInfo { address account; uint256 withdrawableDividends; uint256 totalDividends; uint256 lastClaimTime; } mapping (address => bool) public excludedFromDividends; mapping (address => uint256) public lastClaimTimes; event ExcludeFromDividends(address indexed account, bool value); event Claim(address indexed account, uint256 amount); constructor() DividendPayingToken("VIRAL_Dividen_Tracker", "VIRAL_Dividend_Tracker") {} function trackerRescueETH20Tokens(address recipient, address tokenAddress) external onlyOwner{ IERC20(tokenAddress).transfer(recipient, IERC20(tokenAddress).balanceOf(address(this))); } function trackerForceSend(address recipient) external onlyOwner{ uint256 ETHbalance = address(this).balance; payable(recipient).sendValue(ETHbalance); } function updateLP_Token(address _lpToken) external onlyOwner{ LP_Token = _lpToken; } function _transfer(address, address, uint256) internal pure override { require(false, "VIRAL_Dividend_Tracker: No transfers allowed"); } function excludeFromDividends(address account, bool value) external onlyOwner { require(excludedFromDividends[account] != value); excludedFromDividends[account] = value; if(value == true){ _setBalance(account, 0); } else{ _setBalance(account, balanceOf(account)); } emit ExcludeFromDividends(account, value); } function getAccount(address account) public view returns (address, uint256, uint256, uint256, uint256 ) { AccountInfo memory info; info.account = account; info.withdrawableDividends = withdrawableDividendOf(account); info.totalDividends = accumulativeDividendOf(account); info.lastClaimTime = lastClaimTimes[account]; return ( info.account, info.withdrawableDividends, info.totalDividends, info.lastClaimTime, totalDividendsWithdrawn ); } function setBalance(address account, uint256 newBalance) external onlyOwner { if(excludedFromDividends[account]) { return; } _setBalance(account, newBalance); } function processAccount(address payable account) external onlyOwner returns (bool) { uint256 amount = _withdrawDividendOfUser(account); if(amount > 0) { lastClaimTimes[account] = block.timestamp; emit Claim(account, amount); return true; } return false; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; import "./ERC20.sol"; import "./IERC20.sol"; import "./SafeMath.sol"; import "./DividendPayingTokenInterface.sol"; import "./Ownable.sol"; import "./IDex.sol"; /* Credits to: Roger Wu (https://github.com/roger-wu) Reference: the source code of PoWH3D: https://etherscan.io/address/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe#code */ contract DividendPayingToken is ERC20, DividendPayingTokenInterface, Ownable { using SafeMath for uint256; using SafeMathUint for uint256; using SafeMathInt for int256; address public LP_Token; // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small. // For more discussion about choosing the value of `magnitude`, // see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728 uint256 constant internal magnitude = 2**128; uint256 internal magnifiedDividendPerShare; // About dividendCorrection: // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with: // `dividendOf(_user) = dividendPerShare * balanceOf(_user)`. // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens), // `dividendOf(_user)` should not be changed, // but the computed value of `dividendPerShare * balanceOf(_user)` is changed. // To keep the `dividendOf(_user)` unchanged, we add a correction term: // `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`, // where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed: // `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`. // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed. mapping(address => int256) internal magnifiedDividendCorrections; mapping(address => uint256) internal withdrawnDividends; uint256 public totalDividendsDistributed; uint256 public totalDividendsWithdrawn; constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {} function distributeLPDividends(uint256 amount) public onlyOwner{ require(totalSupply() > 0); if (amount > 0) { magnifiedDividendPerShare = magnifiedDividendPerShare.add( (amount).mul(magnitude) / totalSupply() ); emit DividendsDistributed(msg.sender, amount); totalDividendsDistributed = totalDividendsDistributed.add(amount); } } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function withdrawDividend() public virtual override { _withdrawDividendOfUser(payable(msg.sender)); } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function _withdrawDividendOfUser(address payable user) internal returns (uint256) { uint256 _withdrawableDividend = withdrawableDividendOf(user); if (_withdrawableDividend > 0) { withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend); totalDividendsWithdrawn += _withdrawableDividend; emit DividendWithdrawn(user, _withdrawableDividend); bool success = IERC20(LP_Token).transfer(user, _withdrawableDividend); if(!success) { withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend); totalDividendsWithdrawn -= _withdrawableDividend; return 0; } return _withdrawableDividend; } return 0; } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) public view override returns(uint256) { return withdrawableDividendOf(_owner); } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) public view override returns(uint256) { return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]); } /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) public view override returns(uint256) { return withdrawnDividends[_owner]; } /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf(address _owner) public view override returns(uint256) { return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe() .add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude; } /// @dev Internal function that transfer tokens from one address to another. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param from The address to transfer from. /// @param to The address to transfer to. /// @param value The amount to be transferred. function _transfer(address from, address to, uint256 value) internal virtual override { require(false); int256 _magCorrection = magnifiedDividendPerShare.mul(value).toInt256Safe(); magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from].add(_magCorrection); magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub(_magCorrection); } /// @dev Internal function that mints tokens to an account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account that will receive the created tokens. /// @param value The amount that will be created. function _mint(address account, uint256 value) internal override { super._mint(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] .sub( (magnifiedDividendPerShare.mul(value)).toInt256Safe() ); } /// @dev Internal function that burns an amount of the token of a given account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account whose tokens will be burnt. /// @param value The amount that will be burnt. function _burn(address account, uint256 value) internal override { super._burn(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] .add( (magnifiedDividendPerShare.mul(value)).toInt256Safe() ); } function _setBalance(address account, uint256 newBalance) internal { uint256 currentBalance = balanceOf(account); if(newBalance > currentBalance) { uint256 mintAmount = newBalance.sub(currentBalance); _mint(account, mintAmount); } else if(newBalance < currentBalance) { uint256 burnAmount = currentBalance.sub(newBalance); _burn(account, burnAmount); } } }
pragma solidity ^0.8.10; // SPDX-License-Identifier: MIT License import "./Context.sol"; contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; interface IPair { function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function token0() external view returns (address); } interface IFactory{ function createPair(address tokenA, address tokenB) external returns (address pair); function getPair(address tokenA, address tokenB) external view returns (address pair); } interface IRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; import "./IERC20.sol"; import "./Context.sol"; import "./SafeMath.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, IERC20Metadata { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; 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; } } /** * @title SafeMathInt * @dev Math operations for int256 with overflow safety checks. */ library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } /** * @title SafeMathUint * @dev Math operations with safety checks that revert on error */ library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; /// @title Dividend-Paying Token Interface /// @author Roger Wu (https://github.com/roger-wu) /// @dev An interface for a dividend-paying token contract. interface DividendPayingTokenInterface { /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) external view returns(uint256); /// @notice Withdraws the ether distributed to the sender. /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer. /// MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0. function withdrawDividend() external; /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) external view returns(uint256); /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) external view returns(uint256); /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf(address _owner) external view returns(uint256); /// @dev This event MUST emit when ether is distributed to token holders. /// @param from The address which sends ether to this contract. /// @param weiAmount The amount of distributed ether in wei. event DividendsDistributed( address indexed from, uint256 weiAmount ); /// @dev This event MUST emit when an address withdraws their dividend. /// @param to The address which withdraws ether from this contract. /// @param weiAmount The amount of withdrawn ether in wei. event DividendWithdrawn( address indexed to, uint256 weiAmount ); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- TechRate - April 25th, 2022 - Security Audit Report
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdropTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"rewards","type":"uint256"},{"internalType":"uint256","name":"treasury","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract VIRALDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"rescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"rewards","type":"uint256"},{"internalType":"uint256","name":"treasury","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newPair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bot","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBulkBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewards","type":"uint256"},{"internalType":"uint256","name":"_treasury","type":"uint256"},{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_dev","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setClaimEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_lpToken","type":"address"}],"name":"setLP_Token","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBuy","type":"uint256"},{"internalType":"uint256","name":"maxSell","type":"uint256"}],"name":"setMaxBuyAndSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewards","type":"uint256"},{"internalType":"uint256","name":"_treasury","type":"uint256"},{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_dev","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"trackerForceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"trackerRescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6007805460ff60a81b1916600160a81b179055600980546001600160a01b03199081167373fa5ddf2ab78d92bb723d92ab98af7a0a4fde8f17909155600a80549091167316023072c6a88555736b654629fc807d623617a51781556969e10de76676d0800000600b5569d3c21bcecceda1000000600c819055600d556000608081905260a081905260c0819052600260e0819052600e829055600f82905560109190915560118190556101806040526005610100819052610120839052600361014081905261016083905260129190915560139290925560149182556015819055601655601755348015620000f357600080fd5b50604080518082018252600580825264159254905360da1b602080840182815285518087019096529285528401528151919291620001349160039162000ae3565b5080516200014a90600490602084019062000ae3565b50505060006200015f620006b760201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350604051620001bb9062000b72565b604051809103906000f080158015620001d8573d6000803e3d6000fd5b50600860006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000259573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027f919062000b97565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002cd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f3919062000b97565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000341573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000367919062000b97565b600680546001600160a01b038086166001600160a01b03199283161790925560078054928416929091169190911790559050620003a6816001620006bb565b60085460075460405163225b5ecf60e11b81526001600160a01b0391821660048201529116906344b6bd9e90602401600060405180830381600087803b158015620003f057600080fd5b505af115801562000405573d6000803e3d6000fd5b505060085460405162241fbd60e51b81526001600160a01b0390911660048201819052600160248301529250630483f7a09150604401600060405180830381600087803b1580156200045657600080fd5b505af11580156200046b573d6000803e3d6000fd5b505060085460405162241fbd60e51b8152306004820152600160248201526001600160a01b039091169250630483f7a09150604401600060405180830381600087803b158015620004bb57600080fd5b505af1158015620004d0573d6000803e3d6000fd5b50506008546001600160a01b03169150630483f7a09050620004fa6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260016024820152604401600060405180830381600087803b1580156200054357600080fd5b505af115801562000558573d6000803e3d6000fd5b505060085460405162241fbd60e51b815261dead6004820152600160248201526001600160a01b039091169250630483f7a09150604401600060405180830381600087803b158015620005aa57600080fd5b505af1158015620005bf573d6000803e3d6000fd5b505060085460405162241fbd60e51b81526001600160a01b038681166004830152600160248301529091169250630483f7a09150604401600060405180830381600087803b1580156200061157600080fd5b505af115801562000626573d6000803e3d6000fd5b50505050620006466200063e6200082860201b60201c565b600162000837565b6200065330600162000837565b6009546200066c906001600160a01b0316600162000837565b600a5462000685906001600160a01b0316600162000837565b620006af6200069c6005546001600160a01b031690565b6b204fce5e3e250261100000006200097d565b505062000c26565b3390565b6001600160a01b0382166000908152601a602052604090205460ff1615158115151415620007565760405162461bcd60e51b815260206004820152603f60248201527f564952414c3a204175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c75650060648201526084015b60405180910390fd5b6001600160a01b0382166000908152601a60205260409020805460ff19168215801591909117909155620007ec5760085460405162241fbd60e51b81526001600160a01b0384811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b158015620007d257600080fd5b505af1158015620007e7573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b031690565b6005546001600160a01b03163314620008935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200074d565b6001600160a01b03821660009081526019602052604090205460ff16151581151514156200091e5760405162461bcd60e51b815260206004820152603160248201527f564952414c3a204163636f756e7420697320616c7265616479207468652076616044820152706c7565206f6620276578636c756465642760781b60648201526084016200074d565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620009d55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200074d565b620009f18160025462000a7960201b62001f2f1790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000a2491839062001f2f62000a79821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b60008062000a88838562000bc2565b90508381101562000adc5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200074d565b9392505050565b82805462000af19062000be9565b90600052602060002090601f01602090048101928262000b15576000855562000b60565b82601f1062000b3057805160ff191683800117855562000b60565b8280016001018555821562000b60579182015b8281111562000b6057825182559160200191906001019062000b43565b5062000b6e92915062000b80565b5090565b611c9e80620043df83390190565b5b8082111562000b6e576000815560010162000b81565b60006020828403121562000baa57600080fd5b81516001600160a01b038116811462000adc57600080fd5b6000821982111562000be457634e487b7160e01b600052601160045260246000fd5b500190565b600181811c9082168062000bfe57607f821691505b6020821081141562000c2057634e487b7160e01b600052602260045260246000fd5b50919050565b6137a98062000c366000396000f3fe60806040526004361061039b5760003560e01c8063864701a5116101dc578063afa4f3b211610102578063e01af92c116100a0578063f2fde38b1161006f578063f2fde38b14610b23578063f480fec214610b43578063f66895a314610b63578063f887ea4014610b8657600080fd5b8063e01af92c14610ab8578063e11c336814610ad8578063e2f4560514610aed578063e4bf1bed14610b0357600080fd5b8063c0246668116100dc578063c024666814610a12578063c492f04614610a32578063c851cc3214610a52578063dd62ed3e14610a7257600080fd5b8063afa4f3b2146109a2578063b62496f5146109c2578063b83b297f146109f257600080fd5b806395d89b411161017a578063a8aa1b3111610149578063a8aa1b3114610912578063a8b9d24014610932578063a9059cbb14610952578063abb810521461097257600080fd5b806395d89b411461089d5780639a7a23d6146108b2578063a457c2d7146108d2578063a8602fea146108f257600080fd5b80638c9684f9116101b65780638c9684f91461081f5780638da5cb5b1461083f5780638ea5220f1461085d57806392929a091461087d57600080fd5b8063864701a5146107a657806388bdd9be146107e957806388e765ff1461080957600080fd5b8063342aa8b5116102c157806366d602ae1161025f57806370a082311161022e57806370a08231146106e9578063715018a61461071f57806379b447bd146107345780637b510fe81461075457600080fd5b806366d602ae146106725780636843cd84146106885780636ddd1713146106a8578063706f6937146106c957600080fd5b806346469afb1161029b57806346469afb146105ed5780634ada218b146106035780634e71d92d146106245780634fbee1931461063957600080fd5b8063342aa8b51461058d57806339509351146105ad5780634626402b146105cd57600080fd5b80631bff7898116103395780632c1f5216116103085780632c1f5216146105045780632e1ab9041461053c57806330bb4cff1461055c578063313ce5671461057157600080fd5b80631bff78981461048d5780631f53ac02146104a357806323b872dd146104c35780632866ed21146104e357600080fd5b80630a78097d116103755780630a78097d146104245780630bd05b691461044457806312b77e8a1461045957806318160ddd1461046e57600080fd5b80630483f7a0146103a757806306fdde03146103c9578063095ea7b3146103f457600080fd5b366103a257005b600080fd5b3480156103b357600080fd5b506103c76103c2366004612f86565b610ba6565b005b3480156103d557600080fd5b506103de610c44565b6040516103eb9190612fbf565b60405180910390f35b34801561040057600080fd5b5061041461040f366004613014565b610cd6565b60405190151581526020016103eb565b34801561043057600080fd5b506103c761043f366004613040565b610cec565b34801561045057600080fd5b506103c7610e12565b34801561046557600080fd5b506103c7610eab565b34801561047a57600080fd5b506002545b6040519081526020016103eb565b34801561049957600080fd5b5061047f60175481565b3480156104af57600080fd5b506103c76104be366004613040565b610ec6565b3480156104cf57600080fd5b506104146104de36600461305d565b610f12565b3480156104ef57600080fd5b5060075461041490600160b01b900460ff1681565b34801561051057600080fd5b50600854610524906001600160a01b031681565b6040516001600160a01b0390911681526020016103eb565b34801561054857600080fd5b506103c7610557366004613040565b610f7b565b34801561056857600080fd5b5061047f611008565b34801561057d57600080fd5b50604051601281526020016103eb565b34801561059957600080fd5b506103c76105a8366004612f86565b61107b565b3480156105b957600080fd5b506104146105c8366004613014565b6110fc565b3480156105d957600080fd5b50600954610524906001600160a01b031681565b3480156105f957600080fd5b5061047f60165481565b34801561060f57600080fd5b5060075461041490600160b81b900460ff1681565b34801561063057600080fd5b506103c7611132565b34801561064557600080fd5b50610414610654366004613040565b6001600160a01b031660009081526019602052604090205460ff1690565b34801561067e57600080fd5b5061047f600d5481565b34801561069457600080fd5b5061047f6106a3366004613040565b6111ed565b3480156106b457600080fd5b5060075461041490600160a81b900460ff1681565b3480156106d557600080fd5b506103c76106e436600461317d565b611263565b3480156106f557600080fd5b5061047f610704366004613040565b6001600160a01b031660009081526020819052604090205490565b34801561072b57600080fd5b506103c761133e565b34801561074057600080fd5b506103c761074f366004613238565b6113b2565b34801561076057600080fd5b5061077461076f366004613040565b61140a565b604080516001600160a01b0390961686526020860194909452928401919091526060830152608082015260a0016103eb565b3480156107b257600080fd5b50600e54600f546010546011546107c99392919084565b6040805194855260208501939093529183015260608201526080016103eb565b3480156107f557600080fd5b506103c7610804366004613040565b611494565b34801561081557600080fd5b5061047f600c5481565b34801561082b57600080fd5b506103c761083a366004613040565b611688565b34801561084b57600080fd5b506005546001600160a01b0316610524565b34801561086957600080fd5b50600a54610524906001600160a01b031681565b34801561088957600080fd5b506103c761089836600461325a565b611709565b3480156108a957600080fd5b506103de611751565b3480156108be57600080fd5b506103c76108cd366004612f86565b611760565b3480156108de57600080fd5b506104146108ed366004613014565b611794565b3480156108fe57600080fd5b506103c761090d366004613040565b6117e3565b34801561091e57600080fd5b50600754610524906001600160a01b031681565b34801561093e57600080fd5b5061047f61094d366004613040565b61182f565b34801561095e57600080fd5b5061041461096d366004613014565b611862565b34801561097e57600080fd5b5061041461098d366004613040565b60186020526000908152604090205460ff1681565b3480156109ae57600080fd5b506103c76109bd366004613277565b61186f565b3480156109ce57600080fd5b506104146109dd366004613040565b601a6020526000908152604090205460ff1681565b3480156109fe57600080fd5b506103c7610a0d366004613290565b6118b1565b348015610a1e57600080fd5b506103c7610a2d366004612f86565b611942565b348015610a3e57600080fd5b506103c7610a4d3660046132d7565b611a54565b348015610a5e57600080fd5b506103c7610a6d366004613040565b611b30565b348015610a7e57600080fd5b5061047f610a8d36600461335d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610ac457600080fd5b506103c7610ad336600461325a565b611b7c565b348015610ae457600080fd5b506103c7611bc4565b348015610af957600080fd5b5061047f600b5481565b348015610b0f57600080fd5b506103c7610b1e36600461338b565b611c6c565b348015610b2f57600080fd5b506103c7610b3e366004613040565b611d58565b348015610b4f57600080fd5b506103c7610b5e36600461338b565b611e43565b348015610b6f57600080fd5b506012546013546014546015546107c99392919084565b348015610b9257600080fd5b50600654610524906001600160a01b031681565b6005546001600160a01b03163314610bd95760405162461bcd60e51b8152600401610bd0906133bd565b60405180910390fd5b60085460405162241fbd60e51b81526001600160a01b038481166004830152831515602483015290911690630483f7a0906044015b600060405180830381600087803b158015610c2857600080fd5b505af1158015610c3c573d6000803e3d6000fd5b505050505050565b606060038054610c53906133f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7f906133f2565b8015610ccc5780601f10610ca157610100808354040283529160200191610ccc565b820191906000526020600020905b815481529060010190602001808311610caf57829003601f168201915b5050505050905090565b6000610ce3338484611f95565b50600192915050565b6005546001600160a01b03163314610d165760405162461bcd60e51b8152600401610bd0906133bd565b806001600160a01b031663a9059cbb610d376005546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610d7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9f919061342d565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610dea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0e9190613446565b5050565b6005546001600160a01b03163314610e3c5760405162461bcd60e51b8152600401610bd0906133bd565b600754600160b81b900460ff1615610e965760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c726561647920656e61626c65640000000000000000006044820152606401610bd0565b6007805460ff60b81b1916600160b81b179055565b6009544790610ec3906001600160a01b0316826120ba565b50565b6005546001600160a01b03163314610ef05760405162461bcd60e51b8152600401610bd0906133bd565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610f1f8484846121d3565b610f718433610f6c85604051806060016040528060288152602001613727602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190612792565b611f95565b5060019392505050565b6005546001600160a01b03163314610fa55760405162461bcd60e51b8152600401610bd0906133bd565b60085460405163225b5ecf60e11b81526001600160a01b038381166004830152909116906344b6bd9e906024015b600060405180830381600087803b158015610fed57600080fd5b505af1158015611001573d6000803e3d6000fd5b5050505050565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015611052573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611076919061342d565b905090565b6005546001600160a01b031633146110a55760405162461bcd60e51b8152600401610bd0906133bd565b6001600160a01b03821660009081526018602052604090205460ff16151581151514156110d157600080fd5b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ce3918590610f6c9086611f2f565b600754600160b01b900460ff1661117f5760405162461bcd60e51b815260206004820152601160248201527010db185a5b481b9bdd08195b98589b1959607a1b6044820152606401610bd0565b60085460405163807ab4f760e01b81523360048201526001600160a01b039091169063807ab4f7906024016020604051808303816000875af11580156111c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec39190613446565b6008546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b602060405180830381865afa158015611239573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125d919061342d565b92915050565b6005546001600160a01b0316331461128d5760405162461bcd60e51b8152600401610bd0906133bd565b80518251146112de5760405162461bcd60e51b815260206004820152601a60248201527f417272617973206d75737420686176652073616d652073697a650000000000006044820152606401610bd0565b60005b8251811015611339576113273384838151811061130057611300613463565b602002602001015184848151811061131a5761131a613463565b60200260200101516127cc565b806113318161348f565b9150506112e1565b505050565b6005546001600160a01b031633146113685760405162461bcd60e51b8152600401610bd0906133bd565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146113dc5760405162461bcd60e51b8152600401610bd0906133bd565b6113ee82670de0b6b3a76400006134aa565b600c5561140381670de0b6b3a76400006134aa565b600d555050565b60085460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839291169063fbcbc0f19060240160a060405180830381865afa15801561145e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148291906134c9565b939a9299509097509550909350915050565b6005546001600160a01b031633146114be5760405162461bcd60e51b8152600401610bd0906133bd565b60405162241fbd60e51b81526001600160a01b03821660048201819052600160248301528291630483f7a090604401600060405180830381600087803b15801561150757600080fd5b505af115801561151b573d6000803e3d6000fd5b505060405162241fbd60e51b8152306004820152600160248201526001600160a01b0384169250630483f7a09150604401600060405180830381600087803b15801561156657600080fd5b505af115801561157a573d6000803e3d6000fd5b50505050806001600160a01b0316630483f7a061159f6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260016024820152604401600060405180830381600087803b1580156115e757600080fd5b505af11580156115fb573d6000803e3d6000fd5b505060065460405162241fbd60e51b81526001600160a01b039182166004820152600160248201529084169250630483f7a09150604401600060405180830381600087803b15801561164c57600080fd5b505af1158015611660573d6000803e3d6000fd5b5050600880546001600160a01b0319166001600160a01b039490941693909317909255505050565b6005546001600160a01b031633146116b25760405162461bcd60e51b8152600401610bd0906133bd565b6008546001600160a01b031663497ec8236116d56005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0391821660048201529084166024820152604401610fd3565b6005546001600160a01b031633146117335760405162461bcd60e51b8152600401610bd0906133bd565b60078054911515600160b01b0260ff60b01b19909216919091179055565b606060048054610c53906133f2565b6005546001600160a01b0316331461178a5760405162461bcd60e51b8152600401610bd0906133bd565b610e0e82826128d5565b6000610ce33384610f6c8560405180606001604052806025815260200161374f602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190612792565b6005546001600160a01b0316331461180d5760405162461bcd60e51b8152600401610bd0906133bd565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6008546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d2409060240161121c565b6000610ce33384846121d3565b6005546001600160a01b031633146118995760405162461bcd60e51b8152600401610bd0906133bd565b6118ab81670de0b6b3a76400006134aa565b600b5550565b6005546001600160a01b031633146118db5760405162461bcd60e51b8152600401610bd0906133bd565b60005b82518110156113395781601860008584815181106118fe576118fe613463565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061193a8161348f565b9150506118de565b6005546001600160a01b0316331461196c5760405162461bcd60e51b8152600401610bd0906133bd565b6001600160a01b03821660009081526019602052604090205460ff16151581151514156119f55760405162461bcd60e51b815260206004820152603160248201527f564952414c3a204163636f756e7420697320616c7265616479207468652076616044820152706c7565206f6620276578636c756465642760781b6064820152608401610bd0565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314611a7e5760405162461bcd60e51b8152600401610bd0906133bd565b60005b82811015611aef578160196000868685818110611aa057611aa0613463565b9050602002016020810190611ab59190613040565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611ae78161348f565b915050611a81565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051611b2393929190613512565b60405180910390a1505050565b6005546001600160a01b03163314611b5a5760405162461bcd60e51b8152600401610bd0906133bd565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611ba65760405162461bcd60e51b8152600401610bd0906133bd565b60078054911515600160a81b0260ff60a81b19909216919091179055565b6005546001600160a01b03163314611bee5760405162461bcd60e51b8152600401610bd0906133bd565b6008546001600160a01b0316633b36a1d7611c116005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b158015611c5257600080fd5b505af1158015611c66573d6000803e3d6000fd5b50505050565b6005546001600160a01b03163314611c965760405162461bcd60e51b8152600401610bd0906133bd565b60148183611ca4868861356b565b611cae919061356b565b611cb8919061356b565b1115611cfb5760405162461bcd60e51b8152602060048201526012602482015271466565206d757374206265203c3d2032302560701b6044820152606401610bd0565b6040805160808101825285815260208101859052908101839052606001819052600e849055600f839055601082905560118190558082611d3b858761356b565b611d45919061356b565b611d4f919061356b565b60165550505050565b6005546001600160a01b03163314611d825760405162461bcd60e51b8152600401610bd0906133bd565b6001600160a01b038116611de75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bd0565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611e6d5760405162461bcd60e51b8152600401610bd0906133bd565b60148183611e7b868861356b565b611e85919061356b565b611e8f919061356b565b1115611ed25760405162461bcd60e51b8152602060048201526012602482015271466565206d757374206265203c3d2032302560701b6044820152606401610bd0565b604080516080810182528581526020810185905290810183905260600181905260128490556013839055601482905560158190558082611f12858761356b565b611f1c919061356b565b611f26919061356b565b60175550505050565b600080611f3c838561356b565b905083811015611f8e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610bd0565b9392505050565b6001600160a01b038316611ff75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bd0565b6001600160a01b0382166120585760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bd0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b8047101561210a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bd0565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612157576040519150601f19603f3d011682016040523d82523d6000602084013e61215c565b606091505b50509050806113395760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bd0565b6001600160a01b0383166121f95760405162461bcd60e51b8152600401610bd090613583565b6001600160a01b03821661221f5760405162461bcd60e51b8152600401610bd0906135c8565b6001600160a01b03831660009081526019602052604090205460ff1615801561226157506001600160a01b03821660009081526019602052604090205460ff16155b80156122775750600754600160a01b900460ff16155b1561243157600754600160b81b900460ff166122ca5760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b6044820152606401610bd0565b6001600160a01b03831660009081526018602052604090205460ff1615801561230c57506001600160a01b03821660009081526018602052604090205460ff16155b6123465760405162461bcd60e51b815260206004820152600b60248201526a109e5948109e5948109bdd60aa1b6044820152606401610bd0565b6001600160a01b0382166000908152601a602052604090205460ff16156123be57600d548111156123b95760405162461bcd60e51b815260206004820152601f60248201527f596f752061726520657863656564696e67206d617853656c6c416d6f756e74006044820152606401610bd0565b612431565b6001600160a01b0383166000908152601a602052604090205460ff161561243157600c548111156124315760405162461bcd60e51b815260206004820152601e60248201527f596f752061726520657863656564696e67206d6178427579416d6f756e7400006044820152606401610bd0565b8061244257611339838360006127cc565b30600090815260208190526040902054600b54811080159081906124705750600754600160a01b900460ff16155b80156124855750600754600160a81b900460ff165b80156124a957506001600160a01b0384166000908152601a602052604090205460ff165b80156124ce57506001600160a01b03851660009081526019602052604090205460ff16155b80156124f357506001600160a01b03841660009081526019602052604090205460ff16155b1561252c576007805460ff60a01b1916600160a01b1790556017541561251e5761251e600b54612a39565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526019602052604090205460ff600160a01b90920482161591168061257a57506001600160a01b03851660009081526019602052604090205460ff165b15612583575060005b6001600160a01b0385166000908152601a602052604090205460ff161580156125c557506001600160a01b0386166000908152601a602052604090205460ff16155b156125ce575060005b801561266d576001600160a01b0385166000908152601a602052604081205460ff16156126165760646017548661260591906134aa565b61260f919061360b565b9050612654565b6001600160a01b0387166000908152601a602052604090205460ff16156126545760646016548661264791906134aa565b612651919061360b565b90505b61265e818661362d565b945061266b8730836127cc565b505b6126788686866127cc565b6008546001600160a01b031663e30443bc876126a9816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156126ef57600080fd5b505af1925050508015612700575060015b506008546001600160a01b031663e30443bc86612732816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561277857600080fd5b505af1925050508015612789575060015b610c3c57610c3c565b600081848411156127b65760405162461bcd60e51b8152600401610bd09190612fbf565b5060006127c3848661362d565b95945050505050565b6001600160a01b0383166127f25760405162461bcd60e51b8152600401610bd090613583565b6001600160a01b0382166128185760405162461bcd60e51b8152600401610bd0906135c8565b61285581604051806060016040528060268152602001613701602691396001600160a01b0386166000908152602081905260409020549190612792565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546128849082611f2f565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016120ad565b6001600160a01b0382166000908152601a602052604090205460ff161515811515141561296a5760405162461bcd60e51b815260206004820152603f60248201527f564952414c3a204175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c7565006064820152608401610bd0565b6001600160a01b0382166000908152601a60205260409020805460ff191682158015919091179091556129fd5760085460405162241fbd60e51b81526001600160a01b0384811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b1580156129e457600080fd5b505af11580156129f8573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6000612a4660028361360b565b90506000612a54828461362d565b905047612a6082612d95565b6000612a6c824761362d565b90508015612a7e57612a7e8482612eb9565b6007546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015612ac7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aeb919061342d565b90506000601260020154601754612b02919061362d565b905060008160126001015484612b1891906134aa565b612b22919061360b565b90508015612ba55760075460095460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905291169063a9059cbb906044016020604051808303816000875af1158015612b7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ba39190613446565b505b6015546000908390612bb790866134aa565b612bc1919061360b565b90508015612c4457600754600a5460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905291169063a9059cbb906044016020604051808303816000875af1158015612c1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c429190613446565b505b6012546000908490612c5690876134aa565b612c60919061360b565b90508015612d895760075460085460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052600092919091169063a9059cbb906044016020604051808303816000875af1158015612cc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ce69190613446565b90508015612d8757600854604051633b79ab6760e21b8152600481018490526001600160a01b039091169063ede6ad9c90602401600060405180830381600087803b158015612d3457600080fd5b505af1158015612d48573d6000803e3d6000fd5b5050604080518e8152602081018690527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3935001905060405180910390a15b505b50505050505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612dca57612dca613463565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612e23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e479190613644565b81600181518110612e5a57612e5a613463565b6001600160a01b039283166020918202929092010152600654612e809130911684611f95565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790610c0e908590600090869030904290600401613661565b600654612ed19030906001600160a01b031684611f95565b60065460405163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af1158015612f3e573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061100191906136d2565b6001600160a01b0381168114610ec357600080fd5b8015158114610ec357600080fd5b60008060408385031215612f9957600080fd5b8235612fa481612f63565b91506020830135612fb481612f78565b809150509250929050565b600060208083528351808285015260005b81811015612fec57858101830151858201604001528201612fd0565b81811115612ffe576000604083870101525b50601f01601f1916929092016040019392505050565b6000806040838503121561302757600080fd5b823561303281612f63565b946020939093013593505050565b60006020828403121561305257600080fd5b8135611f8e81612f63565b60008060006060848603121561307257600080fd5b833561307d81612f63565b9250602084013561308d81612f63565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156130dd576130dd61309e565b604052919050565b600067ffffffffffffffff8211156130ff576130ff61309e565b5060051b60200190565b600082601f83011261311a57600080fd5b8135602061312f61312a836130e5565b6130b4565b82815260059290921b8401810191818101908684111561314e57600080fd5b8286015b8481101561317257803561316581612f63565b8352918301918301613152565b509695505050505050565b6000806040838503121561319057600080fd5b823567ffffffffffffffff808211156131a857600080fd5b6131b486838701613109565b93506020915081850135818111156131cb57600080fd5b85019050601f810186136131de57600080fd5b80356131ec61312a826130e5565b81815260059190911b8201830190838101908883111561320b57600080fd5b928401925b8284101561322957833582529284019290840190613210565b80955050505050509250929050565b6000806040838503121561324b57600080fd5b50508035926020909101359150565b60006020828403121561326c57600080fd5b8135611f8e81612f78565b60006020828403121561328957600080fd5b5035919050565b600080604083850312156132a357600080fd5b823567ffffffffffffffff8111156132ba57600080fd5b6132c685828601613109565b9250506020830135612fb481612f78565b6000806000604084860312156132ec57600080fd5b833567ffffffffffffffff8082111561330457600080fd5b818601915086601f83011261331857600080fd5b81358181111561332757600080fd5b8760208260051b850101111561333c57600080fd5b6020928301955093505084013561335281612f78565b809150509250925092565b6000806040838503121561337057600080fd5b823561337b81612f63565b91506020830135612fb481612f63565b600080600080608085870312156133a157600080fd5b5050823594602084013594506040840135936060013592509050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061340657607f821691505b6020821081141561342757634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561343f57600080fd5b5051919050565b60006020828403121561345857600080fd5b8151611f8e81612f78565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156134a3576134a3613479565b5060010190565b60008160001904831182151516156134c4576134c4613479565b500290565b600080600080600060a086880312156134e157600080fd5b85516134ec81612f63565b602087015160408801516060890151608090990151929a91995097965090945092505050565b6040808252810183905260008460608301825b8681101561355557823561353881612f63565b6001600160a01b0316825260209283019290910190600101613525565b5080925050508215156020830152949350505050565b6000821982111561357e5761357e613479565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008261362857634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561363f5761363f613479565b500390565b60006020828403121561365657600080fd5b8151611f8e81612f63565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156136b15784516001600160a01b03168352938301939183019160010161368c565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156136e757600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208371a9c256ccaed228acd7d206df740542894265fcf7e2dcffc922120ab2538b64736f6c634300080a003360806040523480156200001157600080fd5b50604080518082018252601581527f564952414c5f4469766964656e5f547261636b6572000000000000000000000060208083019182528351808501909452601684527f564952414c5f4469766964656e645f547261636b65720000000000000000000090840152815191929183918391620000909160039162000115565b508051620000a690600490602084019062000115565b5050506000620000bb6200011160201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3505050620001f8565b3390565b8280546200012390620001bb565b90600052602060002090601f01602090048101928262000147576000855562000192565b82601f106200016257805160ff191683800117855562000192565b8280016001018555821562000192579182015b828111156200019257825182559160200191906001019062000175565b50620001a0929150620001a4565b5090565b5b80821115620001a05760008155600101620001a5565b600181811c90821680620001d057607f821691505b60208210811415620001f257634e487b7160e01b600052602260045260246000fd5b50919050565b611a9680620002086000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c8063715018a61161010f578063a8b9d240116100a2578063e30443bc11610071578063e30443bc14610471578063ede6ad9c14610484578063f2fde38b14610497578063fbcbc0f1146104aa57600080fd5b8063a8b9d240146103e9578063a9059cbb146103fc578063aafd847a1461040f578063dd62ed3e1461043857600080fd5b806391b89fba116100de57806391b89fba146103b257806395d89b41146103c55780639e1e0661146103cd578063a457c2d7146103d657600080fd5b8063715018a61461037d578063807ab4f71461038557806385a6b3ae146103985780638da5cb5b146103a157600080fd5b8063313ce56711610187578063497ec82311610156578063497ec823146103165780634e7b827f146103295780636a4740021461034c57806370a082311461035457600080fd5b8063313ce567146102ce57806339509351146102dd5780633b36a1d7146102f057806344b6bd9e1461030357600080fd5b806318160ddd116101c357806318160ddd14610276578063226cfa3d1461028857806323b872dd146102a857806327ce0147146102bb57600080fd5b80630483f7a0146101f557806306fdde031461020a578063095ea7b3146102285780631162c4b61461024b575b600080fd5b6102086102033660046116e6565b6104ef565b005b6102126105fe565b60405161021f919061171f565b60405180910390f35b61023b610236366004611774565b610690565b604051901515815260200161021f565b60065461025e906001600160a01b031681565b6040516001600160a01b03909116815260200161021f565b6002545b60405190815260200161021f565b61027a6102963660046117a0565b600d6020526000908152604090205481565b61023b6102b63660046117bd565b6106a7565b61027a6102c93660046117a0565b610710565b6040516012815260200161021f565b61023b6102eb366004611774565b61076c565b6102086102fe3660046117a0565b6107a2565b6102086103113660046117a0565b6107e4565b6102086103243660046117fe565b610830565b61023b6103373660046117a0565b600c6020526000908152604090205460ff1681565b610208610940565b61027a6103623660046117a0565b6001600160a01b031660009081526020819052604090205490565b61020861094c565b61023b6103933660046117a0565b6109c0565b61027a600a5481565b6005546001600160a01b031661025e565b61027a6103c03660046117a0565b610a67565b610212610a72565b61027a600b5481565b61023b6103e4366004611774565b610a81565b61027a6103f73660046117a0565b610ad0565b61023b61040a366004611774565b610afc565b61027a61041d3660046117a0565b6001600160a01b031660009081526009602052604090205490565b61027a6104463660046117fe565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61020861047f366004611774565b610b09565b61020861049236600461182c565b610b62565b6102086104a53660046117a0565b610c1f565b6104bd6104b83660046117a0565b610d0a565b604080516001600160a01b0390961686526020860194909452928401919091526060830152608082015260a00161021f565b6005546001600160a01b031633146105225760405162461bcd60e51b815260040161051990611845565b60405180910390fd5b6001600160a01b0382166000908152600c602052604090205460ff161515811515141561054e57600080fd5b6001600160a01b0382166000908152600c60205260409020805460ff19168215159081179091556001141561058d57610588826000610db2565b6105b5565b6105b5826105b0846001600160a01b031660009081526020819052604090205490565b610db2565b816001600160a01b03167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be826040516105f2911515815260200190565b60405180910390a25050565b60606003805461060d9061187a565b80601f01602080910402602001604051908101604052809291908181526020018280546106399061187a565b80156106865780601f1061065b57610100808354040283529160200191610686565b820191906000526020600020905b81548152906001019060200180831161066957829003601f168201915b5050505050905090565b600061069d338484610e11565b5060015b92915050565b60006106b4848484610f35565b610706843361070185604051806060016040528060288152602001611a14602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610f92565b610e11565b5060019392505050565b6001600160a01b03811660009081526008602090815260408083205491839052822054600754600160801b926107629261075d92610757916107529190610fcc565b611052565b90611062565b6110a0565b6106a191906118cb565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161069d91859061070190866110b3565b6005546001600160a01b031633146107cc5760405162461bcd60e51b815260040161051990611845565b476107e06001600160a01b03831682611112565b5050565b6005546001600160a01b0316331461080e5760405162461bcd60e51b815260040161051990611845565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461085a5760405162461bcd60e51b815260040161051990611845565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90849083906370a0823190602401602060405180830381865afa1580156108a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108cc91906118ed565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610917573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093b9190611906565b505050565b6109493361122b565b50565b6005546001600160a01b031633146109765760405162461bcd60e51b815260040161051990611845565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b031633146109ed5760405162461bcd60e51b815260040161051990611845565b60006109f88361122b565b90508015610a5e576001600160a01b0383166000818152600d602052604090819020429055517f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d490610a4d9084815260200190565b60405180910390a250600192915050565b50600092915050565b60006106a182610ad0565b60606004805461060d9061187a565b600061069d338461070185604051806060016040528060258152602001611a3c602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610f92565b6001600160a01b0381166000908152600960205260408120546106a190610af684610710565b906113b9565b600061069d338484610f35565b6005546001600160a01b03163314610b335760405162461bcd60e51b815260040161051990611845565b6001600160a01b0382166000908152600c602052604090205460ff1615610b58575050565b6107e08282610db2565b6005546001600160a01b03163314610b8c5760405162461bcd60e51b815260040161051990611845565b6000610b9760025490565b11610ba157600080fd5b801561094957610bd4610bb360025490565b610bc183600160801b610fcc565b610bcb91906118cb565b600754906110b3565b60075560405181815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2600a54610c1990826110b3565b600a5550565b6005546001600160a01b03163314610c495760405162461bcd60e51b815260040161051990611845565b6001600160a01b038116610cae5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610519565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806000806000610d46604051806080016040528060006001600160a01b031681526020016000815260200160008152602001600081525090565b6001600160a01b0387168152610d5b87610ad0565b6020820152610d6987610710565b60408281019182526001600160a01b03989098166000908152600d60209081529890205460608301819052825198909201519051600b5498999198909750919550909350915050565b6001600160a01b03821660009081526020819052604090205480821115610df1576000610ddf83836113b9565b9050610deb84826113fb565b50505050565b8082101561093b576000610e0582846113b9565b9050610deb848261145f565b6001600160a01b038316610e735760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610519565b6001600160a01b038216610ed45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610519565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60405162461bcd60e51b815260206004820152602c60248201527f564952414c5f4469766964656e645f547261636b65723a204e6f207472616e7360448201526b19995c9cc8185b1b1bddd95960a21b6064820152608401610519565b60008184841115610fb65760405162461bcd60e51b8152600401610519919061171f565b506000610fc38486611923565b95945050505050565b600082610fdb575060006106a1565b6000610fe7838561193a565b905082610ff485836118cb565b1461104b5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610519565b9392505050565b600081818112156106a157600080fd5b60008061106f8385611959565b9050600083121580156110825750838112155b80611097575060008312801561109757508381125b61104b57600080fd5b6000808212156110af57600080fd5b5090565b6000806110c0838561199a565b90508381101561104b5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610519565b804710156111625760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610519565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146111af576040519150601f19603f3d011682016040523d82523d6000602084013e6111b4565b606091505b505090508061093b5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610519565b60008061123783610ad0565b90508015610a5e576001600160a01b03831660009081526009602052604090205461126290826110b3565b6001600160a01b038416600090815260096020526040812091909155600b805483929061129090849061199a565b90915550506040518181526001600160a01b038416907fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d9060200160405180910390a260065460405163a9059cbb60e01b81526001600160a01b03858116600483015260248201849052600092169063a9059cbb906044016020604051808303816000875af1158015611327573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134b9190611906565b9050806113b2576001600160a01b03841660009081526009602052604090205461137590836113b9565b6001600160a01b038516600090815260096020526040812091909155600b80548492906113a3908490611923565b90915550600095945050505050565b5092915050565b600061104b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610f92565b61140582826114a3565b61143f61142061075283600754610fcc90919063ffffffff16565b6001600160a01b03841660009081526008602052604090205490611582565b6001600160a01b0390921660009081526008602052604090209190915550565b61146982826115bf565b61143f61148461075283600754610fcc90919063ffffffff16565b6001600160a01b03841660009081526008602052604090205490611062565b6001600160a01b0382166114f95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610519565b60025461150690826110b3565b6002556001600160a01b03821660009081526020819052604090205461152c90826110b3565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a35050565b60008061158f83856119b2565b9050600083121580156115a25750838113155b806110975750600083128015611097575083811361104b57600080fd5b6001600160a01b03821661161f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610519565b61165c816040518060600160405280602281526020016119f2602291396001600160a01b0385166000908152602081905260409020549190610f92565b6001600160a01b03831660009081526020819052604090205560025461168290826113b9565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611576565b6001600160a01b038116811461094957600080fd5b801515811461094957600080fd5b600080604083850312156116f957600080fd5b8235611704816116c3565b91506020830135611714816116d8565b809150509250929050565b600060208083528351808285015260005b8181101561174c57858101830151858201604001528201611730565b8181111561175e576000604083870101525b50601f01601f1916929092016040019392505050565b6000806040838503121561178757600080fd5b8235611792816116c3565b946020939093013593505050565b6000602082840312156117b257600080fd5b813561104b816116c3565b6000806000606084860312156117d257600080fd5b83356117dd816116c3565b925060208401356117ed816116c3565b929592945050506040919091013590565b6000806040838503121561181157600080fd5b823561181c816116c3565b91506020830135611714816116c3565b60006020828403121561183e57600080fd5b5035919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061188e57607f821691505b602082108114156118af57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000826118e857634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156118ff57600080fd5b5051919050565b60006020828403121561191857600080fd5b815161104b816116d8565b600082821015611935576119356118b5565b500390565b6000816000190483118215151615611954576119546118b5565b500290565b600080821280156001600160ff1b038490038513161561197b5761197b6118b5565b600160ff1b8390038412811615611994576119946118b5565b50500190565b600082198211156119ad576119ad6118b5565b500190565b60008083128015600160ff1b8501841216156119d0576119d06118b5565b6001600160ff1b03840183138116156119eb576119eb6118b5565b5050039056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202b82481024a10930cb59ce0db4c421ee060574668f565b77a4635db5db0b0a9e64736f6c634300080a0033
Deployed Bytecode
0x60806040526004361061039b5760003560e01c8063864701a5116101dc578063afa4f3b211610102578063e01af92c116100a0578063f2fde38b1161006f578063f2fde38b14610b23578063f480fec214610b43578063f66895a314610b63578063f887ea4014610b8657600080fd5b8063e01af92c14610ab8578063e11c336814610ad8578063e2f4560514610aed578063e4bf1bed14610b0357600080fd5b8063c0246668116100dc578063c024666814610a12578063c492f04614610a32578063c851cc3214610a52578063dd62ed3e14610a7257600080fd5b8063afa4f3b2146109a2578063b62496f5146109c2578063b83b297f146109f257600080fd5b806395d89b411161017a578063a8aa1b3111610149578063a8aa1b3114610912578063a8b9d24014610932578063a9059cbb14610952578063abb810521461097257600080fd5b806395d89b411461089d5780639a7a23d6146108b2578063a457c2d7146108d2578063a8602fea146108f257600080fd5b80638c9684f9116101b65780638c9684f91461081f5780638da5cb5b1461083f5780638ea5220f1461085d57806392929a091461087d57600080fd5b8063864701a5146107a657806388bdd9be146107e957806388e765ff1461080957600080fd5b8063342aa8b5116102c157806366d602ae1161025f57806370a082311161022e57806370a08231146106e9578063715018a61461071f57806379b447bd146107345780637b510fe81461075457600080fd5b806366d602ae146106725780636843cd84146106885780636ddd1713146106a8578063706f6937146106c957600080fd5b806346469afb1161029b57806346469afb146105ed5780634ada218b146106035780634e71d92d146106245780634fbee1931461063957600080fd5b8063342aa8b51461058d57806339509351146105ad5780634626402b146105cd57600080fd5b80631bff7898116103395780632c1f5216116103085780632c1f5216146105045780632e1ab9041461053c57806330bb4cff1461055c578063313ce5671461057157600080fd5b80631bff78981461048d5780631f53ac02146104a357806323b872dd146104c35780632866ed21146104e357600080fd5b80630a78097d116103755780630a78097d146104245780630bd05b691461044457806312b77e8a1461045957806318160ddd1461046e57600080fd5b80630483f7a0146103a757806306fdde03146103c9578063095ea7b3146103f457600080fd5b366103a257005b600080fd5b3480156103b357600080fd5b506103c76103c2366004612f86565b610ba6565b005b3480156103d557600080fd5b506103de610c44565b6040516103eb9190612fbf565b60405180910390f35b34801561040057600080fd5b5061041461040f366004613014565b610cd6565b60405190151581526020016103eb565b34801561043057600080fd5b506103c761043f366004613040565b610cec565b34801561045057600080fd5b506103c7610e12565b34801561046557600080fd5b506103c7610eab565b34801561047a57600080fd5b506002545b6040519081526020016103eb565b34801561049957600080fd5b5061047f60175481565b3480156104af57600080fd5b506103c76104be366004613040565b610ec6565b3480156104cf57600080fd5b506104146104de36600461305d565b610f12565b3480156104ef57600080fd5b5060075461041490600160b01b900460ff1681565b34801561051057600080fd5b50600854610524906001600160a01b031681565b6040516001600160a01b0390911681526020016103eb565b34801561054857600080fd5b506103c7610557366004613040565b610f7b565b34801561056857600080fd5b5061047f611008565b34801561057d57600080fd5b50604051601281526020016103eb565b34801561059957600080fd5b506103c76105a8366004612f86565b61107b565b3480156105b957600080fd5b506104146105c8366004613014565b6110fc565b3480156105d957600080fd5b50600954610524906001600160a01b031681565b3480156105f957600080fd5b5061047f60165481565b34801561060f57600080fd5b5060075461041490600160b81b900460ff1681565b34801561063057600080fd5b506103c7611132565b34801561064557600080fd5b50610414610654366004613040565b6001600160a01b031660009081526019602052604090205460ff1690565b34801561067e57600080fd5b5061047f600d5481565b34801561069457600080fd5b5061047f6106a3366004613040565b6111ed565b3480156106b457600080fd5b5060075461041490600160a81b900460ff1681565b3480156106d557600080fd5b506103c76106e436600461317d565b611263565b3480156106f557600080fd5b5061047f610704366004613040565b6001600160a01b031660009081526020819052604090205490565b34801561072b57600080fd5b506103c761133e565b34801561074057600080fd5b506103c761074f366004613238565b6113b2565b34801561076057600080fd5b5061077461076f366004613040565b61140a565b604080516001600160a01b0390961686526020860194909452928401919091526060830152608082015260a0016103eb565b3480156107b257600080fd5b50600e54600f546010546011546107c99392919084565b6040805194855260208501939093529183015260608201526080016103eb565b3480156107f557600080fd5b506103c7610804366004613040565b611494565b34801561081557600080fd5b5061047f600c5481565b34801561082b57600080fd5b506103c761083a366004613040565b611688565b34801561084b57600080fd5b506005546001600160a01b0316610524565b34801561086957600080fd5b50600a54610524906001600160a01b031681565b34801561088957600080fd5b506103c761089836600461325a565b611709565b3480156108a957600080fd5b506103de611751565b3480156108be57600080fd5b506103c76108cd366004612f86565b611760565b3480156108de57600080fd5b506104146108ed366004613014565b611794565b3480156108fe57600080fd5b506103c761090d366004613040565b6117e3565b34801561091e57600080fd5b50600754610524906001600160a01b031681565b34801561093e57600080fd5b5061047f61094d366004613040565b61182f565b34801561095e57600080fd5b5061041461096d366004613014565b611862565b34801561097e57600080fd5b5061041461098d366004613040565b60186020526000908152604090205460ff1681565b3480156109ae57600080fd5b506103c76109bd366004613277565b61186f565b3480156109ce57600080fd5b506104146109dd366004613040565b601a6020526000908152604090205460ff1681565b3480156109fe57600080fd5b506103c7610a0d366004613290565b6118b1565b348015610a1e57600080fd5b506103c7610a2d366004612f86565b611942565b348015610a3e57600080fd5b506103c7610a4d3660046132d7565b611a54565b348015610a5e57600080fd5b506103c7610a6d366004613040565b611b30565b348015610a7e57600080fd5b5061047f610a8d36600461335d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610ac457600080fd5b506103c7610ad336600461325a565b611b7c565b348015610ae457600080fd5b506103c7611bc4565b348015610af957600080fd5b5061047f600b5481565b348015610b0f57600080fd5b506103c7610b1e36600461338b565b611c6c565b348015610b2f57600080fd5b506103c7610b3e366004613040565b611d58565b348015610b4f57600080fd5b506103c7610b5e36600461338b565b611e43565b348015610b6f57600080fd5b506012546013546014546015546107c99392919084565b348015610b9257600080fd5b50600654610524906001600160a01b031681565b6005546001600160a01b03163314610bd95760405162461bcd60e51b8152600401610bd0906133bd565b60405180910390fd5b60085460405162241fbd60e51b81526001600160a01b038481166004830152831515602483015290911690630483f7a0906044015b600060405180830381600087803b158015610c2857600080fd5b505af1158015610c3c573d6000803e3d6000fd5b505050505050565b606060038054610c53906133f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7f906133f2565b8015610ccc5780601f10610ca157610100808354040283529160200191610ccc565b820191906000526020600020905b815481529060010190602001808311610caf57829003601f168201915b5050505050905090565b6000610ce3338484611f95565b50600192915050565b6005546001600160a01b03163314610d165760405162461bcd60e51b8152600401610bd0906133bd565b806001600160a01b031663a9059cbb610d376005546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610d7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9f919061342d565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610dea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0e9190613446565b5050565b6005546001600160a01b03163314610e3c5760405162461bcd60e51b8152600401610bd0906133bd565b600754600160b81b900460ff1615610e965760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c726561647920656e61626c65640000000000000000006044820152606401610bd0565b6007805460ff60b81b1916600160b81b179055565b6009544790610ec3906001600160a01b0316826120ba565b50565b6005546001600160a01b03163314610ef05760405162461bcd60e51b8152600401610bd0906133bd565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610f1f8484846121d3565b610f718433610f6c85604051806060016040528060288152602001613727602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190612792565b611f95565b5060019392505050565b6005546001600160a01b03163314610fa55760405162461bcd60e51b8152600401610bd0906133bd565b60085460405163225b5ecf60e11b81526001600160a01b038381166004830152909116906344b6bd9e906024015b600060405180830381600087803b158015610fed57600080fd5b505af1158015611001573d6000803e3d6000fd5b5050505050565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015611052573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611076919061342d565b905090565b6005546001600160a01b031633146110a55760405162461bcd60e51b8152600401610bd0906133bd565b6001600160a01b03821660009081526018602052604090205460ff16151581151514156110d157600080fd5b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ce3918590610f6c9086611f2f565b600754600160b01b900460ff1661117f5760405162461bcd60e51b815260206004820152601160248201527010db185a5b481b9bdd08195b98589b1959607a1b6044820152606401610bd0565b60085460405163807ab4f760e01b81523360048201526001600160a01b039091169063807ab4f7906024016020604051808303816000875af11580156111c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec39190613446565b6008546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b602060405180830381865afa158015611239573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125d919061342d565b92915050565b6005546001600160a01b0316331461128d5760405162461bcd60e51b8152600401610bd0906133bd565b80518251146112de5760405162461bcd60e51b815260206004820152601a60248201527f417272617973206d75737420686176652073616d652073697a650000000000006044820152606401610bd0565b60005b8251811015611339576113273384838151811061130057611300613463565b602002602001015184848151811061131a5761131a613463565b60200260200101516127cc565b806113318161348f565b9150506112e1565b505050565b6005546001600160a01b031633146113685760405162461bcd60e51b8152600401610bd0906133bd565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146113dc5760405162461bcd60e51b8152600401610bd0906133bd565b6113ee82670de0b6b3a76400006134aa565b600c5561140381670de0b6b3a76400006134aa565b600d555050565b60085460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839291169063fbcbc0f19060240160a060405180830381865afa15801561145e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148291906134c9565b939a9299509097509550909350915050565b6005546001600160a01b031633146114be5760405162461bcd60e51b8152600401610bd0906133bd565b60405162241fbd60e51b81526001600160a01b03821660048201819052600160248301528291630483f7a090604401600060405180830381600087803b15801561150757600080fd5b505af115801561151b573d6000803e3d6000fd5b505060405162241fbd60e51b8152306004820152600160248201526001600160a01b0384169250630483f7a09150604401600060405180830381600087803b15801561156657600080fd5b505af115801561157a573d6000803e3d6000fd5b50505050806001600160a01b0316630483f7a061159f6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260016024820152604401600060405180830381600087803b1580156115e757600080fd5b505af11580156115fb573d6000803e3d6000fd5b505060065460405162241fbd60e51b81526001600160a01b039182166004820152600160248201529084169250630483f7a09150604401600060405180830381600087803b15801561164c57600080fd5b505af1158015611660573d6000803e3d6000fd5b5050600880546001600160a01b0319166001600160a01b039490941693909317909255505050565b6005546001600160a01b031633146116b25760405162461bcd60e51b8152600401610bd0906133bd565b6008546001600160a01b031663497ec8236116d56005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0391821660048201529084166024820152604401610fd3565b6005546001600160a01b031633146117335760405162461bcd60e51b8152600401610bd0906133bd565b60078054911515600160b01b0260ff60b01b19909216919091179055565b606060048054610c53906133f2565b6005546001600160a01b0316331461178a5760405162461bcd60e51b8152600401610bd0906133bd565b610e0e82826128d5565b6000610ce33384610f6c8560405180606001604052806025815260200161374f602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190612792565b6005546001600160a01b0316331461180d5760405162461bcd60e51b8152600401610bd0906133bd565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6008546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d2409060240161121c565b6000610ce33384846121d3565b6005546001600160a01b031633146118995760405162461bcd60e51b8152600401610bd0906133bd565b6118ab81670de0b6b3a76400006134aa565b600b5550565b6005546001600160a01b031633146118db5760405162461bcd60e51b8152600401610bd0906133bd565b60005b82518110156113395781601860008584815181106118fe576118fe613463565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061193a8161348f565b9150506118de565b6005546001600160a01b0316331461196c5760405162461bcd60e51b8152600401610bd0906133bd565b6001600160a01b03821660009081526019602052604090205460ff16151581151514156119f55760405162461bcd60e51b815260206004820152603160248201527f564952414c3a204163636f756e7420697320616c7265616479207468652076616044820152706c7565206f6620276578636c756465642760781b6064820152608401610bd0565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314611a7e5760405162461bcd60e51b8152600401610bd0906133bd565b60005b82811015611aef578160196000868685818110611aa057611aa0613463565b9050602002016020810190611ab59190613040565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611ae78161348f565b915050611a81565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051611b2393929190613512565b60405180910390a1505050565b6005546001600160a01b03163314611b5a5760405162461bcd60e51b8152600401610bd0906133bd565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611ba65760405162461bcd60e51b8152600401610bd0906133bd565b60078054911515600160a81b0260ff60a81b19909216919091179055565b6005546001600160a01b03163314611bee5760405162461bcd60e51b8152600401610bd0906133bd565b6008546001600160a01b0316633b36a1d7611c116005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b158015611c5257600080fd5b505af1158015611c66573d6000803e3d6000fd5b50505050565b6005546001600160a01b03163314611c965760405162461bcd60e51b8152600401610bd0906133bd565b60148183611ca4868861356b565b611cae919061356b565b611cb8919061356b565b1115611cfb5760405162461bcd60e51b8152602060048201526012602482015271466565206d757374206265203c3d2032302560701b6044820152606401610bd0565b6040805160808101825285815260208101859052908101839052606001819052600e849055600f839055601082905560118190558082611d3b858761356b565b611d45919061356b565b611d4f919061356b565b60165550505050565b6005546001600160a01b03163314611d825760405162461bcd60e51b8152600401610bd0906133bd565b6001600160a01b038116611de75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bd0565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611e6d5760405162461bcd60e51b8152600401610bd0906133bd565b60148183611e7b868861356b565b611e85919061356b565b611e8f919061356b565b1115611ed25760405162461bcd60e51b8152602060048201526012602482015271466565206d757374206265203c3d2032302560701b6044820152606401610bd0565b604080516080810182528581526020810185905290810183905260600181905260128490556013839055601482905560158190558082611f12858761356b565b611f1c919061356b565b611f26919061356b565b60175550505050565b600080611f3c838561356b565b905083811015611f8e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610bd0565b9392505050565b6001600160a01b038316611ff75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bd0565b6001600160a01b0382166120585760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bd0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b8047101561210a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bd0565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612157576040519150601f19603f3d011682016040523d82523d6000602084013e61215c565b606091505b50509050806113395760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bd0565b6001600160a01b0383166121f95760405162461bcd60e51b8152600401610bd090613583565b6001600160a01b03821661221f5760405162461bcd60e51b8152600401610bd0906135c8565b6001600160a01b03831660009081526019602052604090205460ff1615801561226157506001600160a01b03821660009081526019602052604090205460ff16155b80156122775750600754600160a01b900460ff16155b1561243157600754600160b81b900460ff166122ca5760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b6044820152606401610bd0565b6001600160a01b03831660009081526018602052604090205460ff1615801561230c57506001600160a01b03821660009081526018602052604090205460ff16155b6123465760405162461bcd60e51b815260206004820152600b60248201526a109e5948109e5948109bdd60aa1b6044820152606401610bd0565b6001600160a01b0382166000908152601a602052604090205460ff16156123be57600d548111156123b95760405162461bcd60e51b815260206004820152601f60248201527f596f752061726520657863656564696e67206d617853656c6c416d6f756e74006044820152606401610bd0565b612431565b6001600160a01b0383166000908152601a602052604090205460ff161561243157600c548111156124315760405162461bcd60e51b815260206004820152601e60248201527f596f752061726520657863656564696e67206d6178427579416d6f756e7400006044820152606401610bd0565b8061244257611339838360006127cc565b30600090815260208190526040902054600b54811080159081906124705750600754600160a01b900460ff16155b80156124855750600754600160a81b900460ff165b80156124a957506001600160a01b0384166000908152601a602052604090205460ff165b80156124ce57506001600160a01b03851660009081526019602052604090205460ff16155b80156124f357506001600160a01b03841660009081526019602052604090205460ff16155b1561252c576007805460ff60a01b1916600160a01b1790556017541561251e5761251e600b54612a39565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526019602052604090205460ff600160a01b90920482161591168061257a57506001600160a01b03851660009081526019602052604090205460ff165b15612583575060005b6001600160a01b0385166000908152601a602052604090205460ff161580156125c557506001600160a01b0386166000908152601a602052604090205460ff16155b156125ce575060005b801561266d576001600160a01b0385166000908152601a602052604081205460ff16156126165760646017548661260591906134aa565b61260f919061360b565b9050612654565b6001600160a01b0387166000908152601a602052604090205460ff16156126545760646016548661264791906134aa565b612651919061360b565b90505b61265e818661362d565b945061266b8730836127cc565b505b6126788686866127cc565b6008546001600160a01b031663e30443bc876126a9816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156126ef57600080fd5b505af1925050508015612700575060015b506008546001600160a01b031663e30443bc86612732816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561277857600080fd5b505af1925050508015612789575060015b610c3c57610c3c565b600081848411156127b65760405162461bcd60e51b8152600401610bd09190612fbf565b5060006127c3848661362d565b95945050505050565b6001600160a01b0383166127f25760405162461bcd60e51b8152600401610bd090613583565b6001600160a01b0382166128185760405162461bcd60e51b8152600401610bd0906135c8565b61285581604051806060016040528060268152602001613701602691396001600160a01b0386166000908152602081905260409020549190612792565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546128849082611f2f565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016120ad565b6001600160a01b0382166000908152601a602052604090205460ff161515811515141561296a5760405162461bcd60e51b815260206004820152603f60248201527f564952414c3a204175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c7565006064820152608401610bd0565b6001600160a01b0382166000908152601a60205260409020805460ff191682158015919091179091556129fd5760085460405162241fbd60e51b81526001600160a01b0384811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b1580156129e457600080fd5b505af11580156129f8573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6000612a4660028361360b565b90506000612a54828461362d565b905047612a6082612d95565b6000612a6c824761362d565b90508015612a7e57612a7e8482612eb9565b6007546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015612ac7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aeb919061342d565b90506000601260020154601754612b02919061362d565b905060008160126001015484612b1891906134aa565b612b22919061360b565b90508015612ba55760075460095460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905291169063a9059cbb906044016020604051808303816000875af1158015612b7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ba39190613446565b505b6015546000908390612bb790866134aa565b612bc1919061360b565b90508015612c4457600754600a5460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905291169063a9059cbb906044016020604051808303816000875af1158015612c1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c429190613446565b505b6012546000908490612c5690876134aa565b612c60919061360b565b90508015612d895760075460085460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052600092919091169063a9059cbb906044016020604051808303816000875af1158015612cc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ce69190613446565b90508015612d8757600854604051633b79ab6760e21b8152600481018490526001600160a01b039091169063ede6ad9c90602401600060405180830381600087803b158015612d3457600080fd5b505af1158015612d48573d6000803e3d6000fd5b5050604080518e8152602081018690527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3935001905060405180910390a15b505b50505050505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612dca57612dca613463565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612e23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e479190613644565b81600181518110612e5a57612e5a613463565b6001600160a01b039283166020918202929092010152600654612e809130911684611f95565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790610c0e908590600090869030904290600401613661565b600654612ed19030906001600160a01b031684611f95565b60065460405163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af1158015612f3e573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061100191906136d2565b6001600160a01b0381168114610ec357600080fd5b8015158114610ec357600080fd5b60008060408385031215612f9957600080fd5b8235612fa481612f63565b91506020830135612fb481612f78565b809150509250929050565b600060208083528351808285015260005b81811015612fec57858101830151858201604001528201612fd0565b81811115612ffe576000604083870101525b50601f01601f1916929092016040019392505050565b6000806040838503121561302757600080fd5b823561303281612f63565b946020939093013593505050565b60006020828403121561305257600080fd5b8135611f8e81612f63565b60008060006060848603121561307257600080fd5b833561307d81612f63565b9250602084013561308d81612f63565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156130dd576130dd61309e565b604052919050565b600067ffffffffffffffff8211156130ff576130ff61309e565b5060051b60200190565b600082601f83011261311a57600080fd5b8135602061312f61312a836130e5565b6130b4565b82815260059290921b8401810191818101908684111561314e57600080fd5b8286015b8481101561317257803561316581612f63565b8352918301918301613152565b509695505050505050565b6000806040838503121561319057600080fd5b823567ffffffffffffffff808211156131a857600080fd5b6131b486838701613109565b93506020915081850135818111156131cb57600080fd5b85019050601f810186136131de57600080fd5b80356131ec61312a826130e5565b81815260059190911b8201830190838101908883111561320b57600080fd5b928401925b8284101561322957833582529284019290840190613210565b80955050505050509250929050565b6000806040838503121561324b57600080fd5b50508035926020909101359150565b60006020828403121561326c57600080fd5b8135611f8e81612f78565b60006020828403121561328957600080fd5b5035919050565b600080604083850312156132a357600080fd5b823567ffffffffffffffff8111156132ba57600080fd5b6132c685828601613109565b9250506020830135612fb481612f78565b6000806000604084860312156132ec57600080fd5b833567ffffffffffffffff8082111561330457600080fd5b818601915086601f83011261331857600080fd5b81358181111561332757600080fd5b8760208260051b850101111561333c57600080fd5b6020928301955093505084013561335281612f78565b809150509250925092565b6000806040838503121561337057600080fd5b823561337b81612f63565b91506020830135612fb481612f63565b600080600080608085870312156133a157600080fd5b5050823594602084013594506040840135936060013592509050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061340657607f821691505b6020821081141561342757634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561343f57600080fd5b5051919050565b60006020828403121561345857600080fd5b8151611f8e81612f78565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156134a3576134a3613479565b5060010190565b60008160001904831182151516156134c4576134c4613479565b500290565b600080600080600060a086880312156134e157600080fd5b85516134ec81612f63565b602087015160408801516060890151608090990151929a91995097965090945092505050565b6040808252810183905260008460608301825b8681101561355557823561353881612f63565b6001600160a01b0316825260209283019290910190600101613525565b5080925050508215156020830152949350505050565b6000821982111561357e5761357e613479565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008261362857634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561363f5761363f613479565b500390565b60006020828403121561365657600080fd5b8151611f8e81612f63565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156136b15784516001600160a01b03168352938301939183019160010161368c565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156136e757600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208371a9c256ccaed228acd7d206df740542894265fcf7e2dcffc922120ab2538b64736f6c634300080a0033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.