ERC-20
Overview
Max Total Supply
58,682,226.655195736 KONG
Holders
241
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
0.000000001 KONGValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Token
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; pragma experimental ABIEncoderV2; /* (Website) https://xxx.xxx (Telegram) https://t.me/xxx (Twitter) https://twitter.com/xxx */ import "./Interfaces.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IWETH.sol"; contract Token is ERC20, Ownable { /// STATE VARIABLES /// /// @notice Address of UniswapV2Router IUniswapV2Router02 public immutable uniswapV2Router; /// @notice Address of /ETH LP - cannot be immutable as we only want to define it when enabling trading. address public uniswapV2Pair; /// @notice Burn address address public constant deadAddress = address(0xdead); /// @notice treasury address public treasury; /// @notice Team wallet address address public teamWallet; bool private swapping; /// @notice Bool if trading is active bool public tradingActive = false; /// @notice Bool if swap is enabled bool public swapEnabled = false; /// @notice Bool if limits are in effect bool public limitsInEffect = true; /// @notice Current max wallet amount (If limits in effect) uint256 public maxWallet; /// @notice Current max transaction amount (If limits in effect) uint256 public maxTransactionAmount; /// @notice Current percent of supply to swap tokens at (i.e. 5 = 0.05%) uint256 public swapPercent; /// @notice Current buy side total fees uint256 public buyTotalFees; /// @notice Current buy side backing fee uint256 public buyBackingFee; /// @notice Current buy side liquidity fee uint256 public buyLiquidityFee; /// @notice Current buy side team fee uint256 public buyTeamFee; /// @notice Current sell side total fees uint256 public sellTotalFees; /// @notice Current sell side backing fee uint256 public sellBackingFee; /// @notice Current sell side liquidity fee uint256 public sellLiquidityFee; /// @notice Current sell side team fee uint256 public sellTeamFee; /// @notice Current tokens going for backing uint256 public tokensForBacking; /// @notice Current tokens going for liquidity uint256 public tokensForLiquidity; /// @notice Current tokens going for tean uint256 public tokensForTeam; /// MAPPINGS /// /// @dev Bool if address is excluded from fees mapping(address => bool) private _isExcludedFromFees; /// @notice Bool if address is excluded from max transaction amount mapping(address => bool) public _isExcludedMaxTransactionAmount; /// @notice Bool if address is AMM pair mapping(address => bool) public automatedMarketMakerPairs; /// EVENTS /// event TradingStarted(address indexed pair, uint256 liquidityTokens, uint256 liquidityWeth); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event teamWalletUpdated(address indexed newWallet, address indexed oldWallet); event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity); /// CONSTRUCTOR /// /// @param _teamWallet Address of team wallet constructor(address _teamWallet) ERC20("KONG Token", "KONG") { address _uniAddr; if (block.chainid == 1 || block.chainid == 31337) { _uniAddr = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // Ethereum: Uniswap V2 } else if (block.chainid == 11155111) { _uniAddr = 0xC532a74256D3Db42D0Bf7a0400fEFDbad7694008; // Ethereum: Uniswap V2 } else { revert("Chain cannot work with Uniswap"); } uniswapV2Router = IUniswapV2Router02(_uniAddr); uint256 startingSupply_ = 1_000_000 * 10 ** 9; maxWallet = 10_000 * 1e9; // 1% maxTransactionAmount = 10_000 * 1e9; // 1% swapPercent = 10; // 0.10% buyBackingFee = 3; buyLiquidityFee = 0; buyTeamFee = 7; buyTotalFees = buyBackingFee + buyLiquidityFee + buyTeamFee; sellBackingFee = 10; sellLiquidityFee = 0; sellTeamFee = 25; sellTotalFees = sellBackingFee + sellLiquidityFee + sellTeamFee; teamWallet = _teamWallet; // set as team wallet treasury = _teamWallet; // until we deploy the treasury // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(teamWallet, true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(teamWallet, true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); _mint(address(this), startingSupply_); _transfer(address(this), msg.sender, (totalSupply() * 10) / 100); } receive() external payable {} /// AMM PAIR /// /// @notice Sets if address is AMM pair /// @param pair Address of pair /// @param value Bool if AMM pair function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } /// @dev Internal function to set `vlaue` of `pair` function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } /// INTERNAL TRANSFER /// /// @dev Internal function to burn `amount` from `account` function _burnFrom(address account, uint256 amount) internal { uint256 decreasedAllowance_ = allowance(account, msg.sender) - amount; _approve(account, msg.sender, decreasedAllowance_); _burn(account, amount); } /// @dev Internal function to transfer - handles fee logic 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 (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping) { if (!tradingActive) { require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) { require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount."); require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } //when sell else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) { require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount."); } else if (!_isExcludedMaxTransactionAmount[to]) { require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount(); if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = (amount * sellTotalFees) / 100; tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForTeam += (fees * sellTeamFee) / sellTotalFees; tokensForBacking += (fees * sellBackingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = (amount * buyTotalFees) / 100; tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForTeam += (fees * buyTeamFee) / buyTotalFees; tokensForBacking += (fees * buyBackingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } // #region INTERNAL FUNCTION /// @dev INTERNAL function to swap `tokenAmount` for ETH /// @dev Invoked in `swapBack()` function swapTokensForEth(uint256 tokenAmount) internal { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } /// @dev INTERNAL function to add `tokenAmount` and `ethAmount` to LP /// @dev Invoked in `swapBack()` function addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable treasury, block.timestamp ); } /// @dev INTERNAL function to transfer fees properly /// @dev Invoked in `_transfer()` function swapBack() internal { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForBacking + tokensForTeam; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount() * 20) { contractBalance = swapTokensAtAmount() * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance - liquidityTokens; uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance - initialETHBalance; uint256 ethForBacking = (ethBalance * tokensForBacking) / totalTokensToSwap - (tokensForLiquidity / 2); uint256 ethForTeam = (ethBalance * tokensForTeam) / totalTokensToSwap - (tokensForLiquidity / 2); uint256 ethForLiquidity = ethBalance - ethForBacking - ethForTeam; tokensForLiquidity = 0; tokensForBacking = 0; tokensForTeam = 0; (success, ) = address(teamWallet).call{value: ethForTeam}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } uint256 _balance = address(this).balance; IWETH(uniswapV2Router.WETH()).deposit{value: _balance}(); IERC20(uniswapV2Router.WETH()).transfer(treasury, _balance); } /// VIEW FUNCTION /// /// @notice Returns decimals function decimals() public view virtual override returns (uint8) { return 9; } /// @notice Returns if address is excluded from fees function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } /// @notice Returns at what percent of supply to swap tokens at function swapTokensAtAmount() public view returns (uint256 amount_) { amount_ = (totalSupply() * swapPercent) / 10000; } /// TREASURY FUNCTION /// /// @notice Mint (Only by treasury) /// @param account Address to mint to /// @param amount Amount to mint function mint(address account, uint256 amount) external { require(msg.sender == treasury, "msg.sender not treasury"); _mint(account, amount); } /// USER FUNCTIONS /// /// @notice Burn /// @param account Address to burn from /// @param amount Amount to to burn function burnFrom(address account, uint256 amount) external { _burnFrom(account, amount); } /// @notice Burn /// @param amount Amount to to burn function burn(uint256 amount) external { _burn(msg.sender, amount); } /// OWNER FUNCTIONS /// /// @notice Set address of treasury function setTreasury(address _treasury) external onlyOwner { treasury = _treasury; excludeFromFees(_treasury, true); excludeFromMaxTransaction(_treasury, true); } /// @notice Enable trading - once enabled, can never be turned off. Send in LP amount here and mint so you don't get rekt. function enableTrading() external payable onlyOwner { require(!tradingActive, "Trading is active already"); require(msg.value > 0, "Send liquidity eth"); uint256 liquidityTokens = balanceOf(address(this)); // 100% of the balance assigned to this contract require(liquidityTokens > 0, "No tokens!"); // create pair and pool uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); IERC20Metadata weth = IERC20Metadata(uniswapV2Router.WETH()); weth.approve(address(uniswapV2Router), type(uint256).max); _approve(address(this), address(uniswapV2Router), type(uint256).max); // add the liquidity uniswapV2Router.addLiquidityETH{value: msg.value}( address(this), liquidityTokens, 0, 0, owner(), block.timestamp ); tradingActive = true; swapEnabled = true; emit TradingStarted(uniswapV2Pair, liquidityTokens, msg.value); } /// @notice Update percent of supply to swap tokens at function updateSwapTokensAtPercent(uint256 newPercent) external onlyOwner returns (bool) { require(newPercent >= 1, "Swap amount cannot be lower than 0.01% total supply."); require(newPercent <= 50, "Swap amount cannot be higher than 0.50% total supply."); swapPercent = newPercent; return true; } /// @notice Update swap enabled /// @dev Only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } /// @notice Update buy side fees function updateBuyFees(uint256 _backingFee, uint256 _liquidityFee, uint256 _teamFee) external onlyOwner { buyBackingFee = _backingFee; buyLiquidityFee = _liquidityFee; buyTeamFee = _teamFee; buyTotalFees = buyBackingFee + buyLiquidityFee + buyTeamFee; } /// @notice Update sell side fees function updateSellFees(uint256 _backingFee, uint256 _liquidityFee, uint256 _teamFee) external onlyOwner { sellBackingFee = _backingFee; sellLiquidityFee = _liquidityFee; sellTeamFee = _teamFee; sellTotalFees = sellBackingFee + sellLiquidityFee + sellTeamFee; } /// @notice Set if an address is excluded from fees function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } /// @notice Set if an address is excluded from max transaction function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } /// @notice Update team wallet function updateTeamWallet(address newWallet) external onlyOwner { teamWallet = newWallet; excludeFromFees(newWallet, true); excludeFromMaxTransaction(newWallet, true); emit teamWalletUpdated(newWallet, teamWallet); } /// @notice Remove limits in palce function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } /// @notice Withdraw stuck tokens from contract function withdrawStuck() external onlyOwner { uint256 balance = IERC20(address(this)).balanceOf(address(this)); IERC20(address(this)).transfer(msg.sender, balance); payable(msg.sender).transfer(address(this).balance); } /// @notice Withdraw stuck token from contract function withdrawStuckToken(address _token, address _to) external onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } /// @notice Withdraw stuck ETH from contract function withdrawStuckEth(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{value: address(this).balance}(""); require(success); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
pragma solidity >=0.5.0; interface IWETH { function deposit() external payable; function transfer(address to, uint value) external returns (bool); function withdraw(uint) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; interface ITreasury { function mint(address to_, uint256 amount_) external; function TOKEN() external view returns (address); function excessReserves() external view returns (uint256); } interface IDistributor { function distribute() external; function nextRewardAt(uint256 _rate) external view returns (uint256); function nextReward() external view returns (uint256); } interface IStaking { function stake(address _to, uint256 _amount) external; function unstake(address _to, uint256 _amount, bool _rebase) external; function rebase() external; function index() external view returns (uint256); } interface ITOKEN is IERC20Metadata { function mint(address to_, uint256 amount_) external; function burnFrom(address account_, uint256 amount_) external; function burn(uint256 amount_) external; function uniswapV2Pair() external view returns (address); } interface IsStakingProtocol is IERC20 { function rebase(uint256 amount_, uint epoch_) external returns (uint256); function circulatingSupply() external view returns (uint256); function gonsForBalance(uint amount) external view returns (uint); function balanceForGons(uint gons) external view returns (uint); function index() external view returns (uint); }
{ "evmVersion": "paris", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 1000000 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_teamWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"uint256","name":"liquidityTokens","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidityWeth","type":"uint256"}],"name":"TradingStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyBackingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"enableTrading","outputs":[],"stateMutability":"payable","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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBackingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBacking","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","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":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_backingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_backingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercent","type":"uint256"}],"name":"updateSwapTokensAtPercent","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526008805462ffffff60a81b1916600160b81b1790553480156200002657600080fd5b50604051620057b5380380620057b58339810160408190526200004991620015fe565b6040518060400160405280600a81526020016925a7a723902a37b5b2b760b11b815250604051806040016040528060048152602001634b4f4e4760e01b81525081600390816200009a9190620016cc565b506004620000a98282620016cc565b505050620000c6620000c06200030660201b60201c565b6200030a565b60004660011480620000d9575046617a69145b15620000fb5750737a250d5630b4cf539739df2c5dacb4c659f2488d6200016f565b4662aa36a70362000122575073c532a74256d3db42d0bf7a0400fefdbad76940086200016f565b60405162461bcd60e51b815260206004820152601e60248201527f436861696e2063616e6e6f7420776f726b207769746820556e6973776170000060448201526064015b60405180910390fd5b6001600160a01b0381166080526509184e72a0006009819055600a908155600b556003600d8190556000600e8190556007600f81905566038d7ea4c68000929091620001bb91620017ae565b620001c79190620017ae565b600c55600a6011819055600060128190556019601381905591620001ec9190620017ae565b620001f89190620017ae565b601055600880546001600160a01b03199081166001600160a01b038681169182179093556007805490921617905560055462000237911660016200035c565b60085462000250906001600160a01b031660016200035c565b6200025d3060016200035c565b6200026c61dead60016200035c565b6200028b620002836005546001600160a01b031690565b6001620003c5565b600854620002a4906001600160a01b03166001620003c5565b620002b1306001620003c5565b620002c061dead6001620003c5565b620002cc3082620003fa565b620002fd30336064620002de60025490565b620002eb90600a620017ca565b620002f79190620017e4565b620004b2565b505050620018f9565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200036662000ca3565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b620003cf62000ca3565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6001600160a01b038216620004525760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000166565b8060026000828254620004669190620017ae565b90915550506001600160a01b0382166000818152602081815260408083208054860190555184815260008051602062005795833981519152910160405180910390a35050565b60025490565b6001600160a01b038316620005075760405162461bcd60e51b8152602060048201526025602482015260008051602062005775833981519152604482015264647265737360d81b606482015260840162000166565b6001600160a01b0382166200055a5760405162461bcd60e51b815260206004820152602360248201526000805160206200575583398151915260448201526265737360e81b606482015260840162000166565b806000036200057657620005718383600062000d01565b505050565b600854600160b81b900460ff161562000927576005546001600160a01b03848116911614801590620005b657506005546001600160a01b03838116911614155b8015620005cb57506001600160a01b03821615155b8015620005e357506001600160a01b03821661dead14155b8015620005fa5750600854600160a01b900460ff16155b156200092757600854600160a81b900460ff16620006a0576001600160a01b03831660009081526017602052604090205460ff16806200065257506001600160a01b03821660009081526017602052604090205460ff165b620006a05760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e00000000000000000000604482015260640162000166565b6001600160a01b03831660009081526019602052604090205460ff168015620006e257506001600160a01b03821660009081526018602052604090205460ff16155b15620007d657600a54811115620007625760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000606482015260840162000166565b6009546001600160a01b0383166000908152602081905260409020546200078a9083620017ae565b1115620007d05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640162000166565b62000927565b6001600160a01b03821660009081526019602052604090205460ff1680156200081857506001600160a01b03831660009081526018602052604090205460ff16155b156200089857600a54811115620007d05760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000606482015260840162000166565b6001600160a01b03821660009081526018602052604090205460ff1662000927576009546001600160a01b038316600090815260208190526040902054620008e19083620017ae565b1115620009275760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640162000166565b30600090815260208190526040812054906200094262000e79565b82101590508080156200095e5750600854600160b01b900460ff165b8015620009755750600854600160a01b900460ff16155b80156200099b57506001600160a01b03851660009081526019602052604090205460ff16155b8015620009c157506001600160a01b03851660009081526017602052604090205460ff16155b8015620009e757506001600160a01b03841660009081526017602052604090205460ff16155b1562000a18576008805460ff60a01b1916600160a01b17905562000a0a62000eae565b6008805460ff60a01b191690555b6008546001600160a01b03861660009081526017602052604090205460ff600160a01b90920482161591168062000a6757506001600160a01b03851660009081526017602052604090205460ff165b1562000a71575060005b6000811562000c8d576001600160a01b03861660009081526019602052604090205460ff16801562000aa557506000601054115b1562000b755760646010548662000abd9190620017ca565b62000ac99190620017e4565b90506010546012548262000ade9190620017ca565b62000aea9190620017e4565b6015600082825462000afd9190620017ae565b909155505060105460135462000b149083620017ca565b62000b209190620017e4565b6016600082825462000b339190620017ae565b909155505060105460115462000b4a9083620017ca565b62000b569190620017e4565b6014600082825462000b699190620017ae565b9091555062000c6a9050565b6001600160a01b03871660009081526019602052604090205460ff16801562000ba057506000600c54115b1562000c6a576064600c548662000bb89190620017ca565b62000bc49190620017e4565b9050600c54600e548262000bd99190620017ca565b62000be59190620017e4565b6015600082825462000bf89190620017ae565b9091555050600c54600f5462000c0f9083620017ca565b62000c1b9190620017e4565b6016600082825462000c2e9190620017ae565b9091555050600c54600d5462000c459083620017ca565b62000c519190620017e4565b6014600082825462000c649190620017ae565b90915550505b801562000c7e5762000c7e87308362000d01565b62000c8a818662001807565b94505b62000c9a87878762000d01565b50505050505050565b6005546001600160a01b0316331462000cff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000166565b565b6001600160a01b03831662000d565760405162461bcd60e51b8152602060048201526025602482015260008051602062005775833981519152604482015264647265737360d81b606482015260840162000166565b6001600160a01b03821662000da95760405162461bcd60e51b815260206004820152602360248201526000805160206200575583398151915260448201526265737360e81b606482015260840162000166565b6001600160a01b0383166000908152602081905260409020548181101562000e235760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840162000166565b6001600160a01b038481166000818152602081815260408083208787039055938716808352918490208054870190559251858152909260008051602062005795833981519152910160405180910390a350505050565b6000612710600b5462000e91620004ac60201b60201c565b62000e9d9190620017ca565b62000ea99190620017e4565b905090565b306000908152602081905260408120549050600060165460145460155462000ed79190620017ae565b62000ee39190620017ae565b9050600082158062000ef3575081155b1562000efe57505050565b62000f0862000e79565b62000f15906014620017ca565b83111562000f375762000f2762000e79565b62000f34906014620017ca565b92505b60006002836015548662000f4c9190620017ca565b62000f589190620017e4565b62000f649190620017e4565b9050600062000f74828662001807565b90504762000f8282620012a7565b600062000f90824762001807565b90506000600260155462000fa59190620017e4565b876014548462000fb69190620017ca565b62000fc29190620017e4565b62000fce919062001807565b90506000600260155462000fe39190620017e4565b886016548562000ff49190620017ca565b620010009190620017e4565b6200100c919062001807565b90506000816200101d848662001807565b62001029919062001807565b60006015819055601481905560168190556008546040519293506001600160a01b031691849181818185875af1925050503d806000811462001088576040519150601f19603f3d011682016040523d82523d6000602084013e6200108d565b606091505b50909850508615801590620010a25750600081115b15620010f857620010b4878262001422565b601554604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60004790506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200113e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620011649190620015fe565b6001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b1580156200119f57600080fd5b505af1158015620011b4573d6000803e3d6000fd5b50505050506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620011fa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620012209190620015fe565b60075460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905291169063a9059cbb906044016020604051808303816000875af115801562001273573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200129991906200181d565b505050505050505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110620012df57620012df62001841565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001340573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620013669190620015fe565b816001815181106200137c576200137c62001841565b60200260200101906001600160a01b031690816001600160a01b031681525050620013b13060805184620014d660201b60201c565b6080516001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b8152600401620013ea95949392919062001857565b600060405180830381600087803b1580156200140557600080fd5b505af11580156200141a573d6000803e3d6000fd5b505050505050565b620014373060805184620014d660201b60201c565b60805160075460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af1158015620014a8573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190620014cf9190620018ca565b5050505050565b6001600160a01b0383166200153a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000166565b6001600160a01b0382166200159d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000166565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000602082840312156200161157600080fd5b81516001600160a01b03811681146200162957600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200165b57607f821691505b6020821081036200167c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200057157600081815260208120601f850160051c81016020861015620016ab5750805b601f850160051c820191505b818110156200141a57828155600101620016b7565b81516001600160401b03811115620016e857620016e862001630565b6200170081620016f9845462001646565b8462001682565b602080601f8311600181146200173857600084156200171f5750858301515b600019600386901b1c1916600185901b1785556200141a565b600085815260208120601f198616915b82811015620017695788860151825594840194600190910190840162001748565b5085821015620017885787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820180821115620017c457620017c462001798565b92915050565b8082028115828204841417620017c457620017c462001798565b6000826200180257634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115620017c457620017c462001798565b6000602082840312156200183057600080fd5b815180151581146200162957600080fd5b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015620018a95784516001600160a01b03168352938301939183019160010162001882565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215620018e057600080fd5b8351925060208401519150604084015190509250925092565b608051613de56200197060003960008181610423015281816111840152818161122f015281816113c90152818161149301528181611539015281816115800152818161342b0152818161351a015281816136c2015281816137a2015281816138040152818161387e015261390c0152613de56000f3fe60806040526004361061037a5760003560e01c80637cb332bb116101d1578063bc205ad311610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610aba578063f637434214610ada578063f8b45b0514610af0578063fde83a3414610b0657600080fd5b8063dd62ed3e14610a1c578063e2f4560514610a6f578063f0f4426014610a84578063f11a24d314610aa457600080fd5b8063c17b5b8c116100dc578063c17b5b8c146109ba578063c8c8ebe4146109da578063d729715f146109f0578063d85ba06314610a0657600080fd5b8063bc205ad314610964578063be1512f314610984578063c02466681461099a57600080fd5b80639a7a23d61161016f578063a9059cbb11610149578063a9059cbb146108c1578063b62496f5146108e1578063ba22abc314610911578063bbc0c7421461093157600080fd5b80639a7a23d61461086b5780639c2e4ac61461088b578063a457c2d7146108a157600080fd5b80638a8c523c116101ab5780638a8c523c146108035780638da5cb5b1461080b578063924de9b71461083657806395d89b411461085657600080fd5b80637cb332bb146107ad5780637f6bf20a146107cd5780638095d564146107e357600080fd5b80634ac1126a116102ab5780636f33037f11610249578063751039fc11610223578063751039fc146107385780637571336a1461074d57806379cc67901461076d5780637ca8448a1461078d57600080fd5b80636f33037f146106ca57806370a08231146106e0578063715018a61461072357600080fd5b806361d027b31161028557806361d027b31461063e57806367a1bd551461066b5780636a486a8e146106805780636ddd17131461069657600080fd5b80634ac1126a146105b55780634fbee193146105cb578063599270441461061157600080fd5b806327c8f8351161031857806340c10f19116102f257806340c10f191461051157806342966c681461053357806349bd5a5e146105535780634a62bb651461058057600080fd5b806327c8f835146104bf578063313ce567146104d557806339509351146104f157600080fd5b80631694505e116103545780631694505e1461041157806318160ddd1461046a5780631a8145bb1461048957806323b872dd1461049f57600080fd5b806306fdde0314610386578063095ea7b3146103b157806310d5de53146103e157600080fd5b3661038157005b600080fd5b34801561039257600080fd5b5061039b610b1c565b6040516103a89190613984565b60405180910390f35b3480156103bd57600080fd5b506103d16103cc366004613a12565b610bae565b60405190151581526020016103a8565b3480156103ed57600080fd5b506103d16103fc366004613a3e565b60186020526000908152604090205460ff1681565b34801561041d57600080fd5b506104457f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103a8565b34801561047657600080fd5b506002545b6040519081526020016103a8565b34801561049557600080fd5b5061047b60155481565b3480156104ab57600080fd5b506103d16104ba366004613a62565b610bc8565b3480156104cb57600080fd5b5061044561dead81565b3480156104e157600080fd5b50604051600981526020016103a8565b3480156104fd57600080fd5b506103d161050c366004613a12565b610bec565b34801561051d57600080fd5b5061053161052c366004613a12565b610c38565b005b34801561053f57600080fd5b5061053161054e366004613aa3565b610ccc565b34801561055f57600080fd5b506006546104459073ffffffffffffffffffffffffffffffffffffffff1681565b34801561058c57600080fd5b506008546103d19077010000000000000000000000000000000000000000000000900460ff1681565b3480156105c157600080fd5b5061047b600b5481565b3480156105d757600080fd5b506103d16105e6366004613a3e565b73ffffffffffffffffffffffffffffffffffffffff1660009081526017602052604090205460ff1690565b34801561061d57600080fd5b506008546104459073ffffffffffffffffffffffffffffffffffffffff1681565b34801561064a57600080fd5b506007546104459073ffffffffffffffffffffffffffffffffffffffff1681565b34801561067757600080fd5b50610531610cd9565b34801561068c57600080fd5b5061047b60105481565b3480156106a257600080fd5b506008546103d190760100000000000000000000000000000000000000000000900460ff1681565b3480156106d657600080fd5b5061047b60115481565b3480156106ec57600080fd5b5061047b6106fb366004613a3e565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561072f57600080fd5b50610531610e0d565b34801561074457600080fd5b506103d1610e21565b34801561075957600080fd5b50610531610768366004613aca565b610e59565b34801561077957600080fd5b50610531610788366004613a12565b610eb7565b34801561079957600080fd5b506105316107a8366004613a3e565b610ec1565b3480156107b957600080fd5b506105316107c8366004613a3e565b610f36565b3480156107d957600080fd5b5061047b60145481565b3480156107ef57600080fd5b506105316107fe366004613b03565b610fdf565b610531611013565b34801561081757600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610445565b34801561084257600080fd5b50610531610851366004613b2f565b61172e565b34801561086257600080fd5b5061039b611782565b34801561087757600080fd5b50610531610886366004613aca565b611791565b34801561089757600080fd5b5061047b600f5481565b3480156108ad57600080fd5b506103d16108bc366004613a12565b61184e565b3480156108cd57600080fd5b506103d16108dc366004613a12565b61191f565b3480156108ed57600080fd5b506103d16108fc366004613a3e565b60196020526000908152604090205460ff1681565b34801561091d57600080fd5b506103d161092c366004613aa3565b61192d565b34801561093d57600080fd5b506008546103d1907501000000000000000000000000000000000000000000900460ff1681565b34801561097057600080fd5b5061053161097f366004613b4c565b611a62565b34801561099057600080fd5b5061047b600d5481565b3480156109a657600080fd5b506105316109b5366004613aca565b611c1b565b3480156109c657600080fd5b506105316109d5366004613b03565b611ca6565b3480156109e657600080fd5b5061047b600a5481565b3480156109fc57600080fd5b5061047b60135481565b348015610a1257600080fd5b5061047b600c5481565b348015610a2857600080fd5b5061047b610a37366004613b4c565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610a7b57600080fd5b5061047b611cda565b348015610a9057600080fd5b50610531610a9f366004613a3e565b611d04565b348015610ab057600080fd5b5061047b600e5481565b348015610ac657600080fd5b50610531610ad5366004613a3e565b611d62565b348015610ae657600080fd5b5061047b60125481565b348015610afc57600080fd5b5061047b60095481565b348015610b1257600080fd5b5061047b60165481565b606060038054610b2b90613b7a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5790613b7a565b8015610ba45780601f10610b7957610100808354040283529160200191610ba4565b820191906000526020600020905b815481529060010190602001808311610b8757829003601f168201915b5050505050905090565b600033610bbc818585611e16565b60019150505b92915050565b600033610bd6858285611fc9565b610be185858561209a565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610bbc9082908690610c33908790613bfc565b611e16565b60075473ffffffffffffffffffffffffffffffffffffffff163314610cbe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f6d73672e73656e646572206e6f7420747265617375727900000000000000000060448201526064015b60405180910390fd5b610cc88282612b12565b5050565b610cd63382612c05565b50565b610ce1612dc9565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482018190526000916370a0823190602401602060405180830381865afa158015610d38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5c9190613c0f565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015610dbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de09190613c28565b5060405133904780156108fc02916000818181858888f19350505050158015610cc8573d6000803e3d6000fd5b610e15612dc9565b610e1f6000612e4a565b565b6000610e2b612dc9565b50600880547fffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffff169055600190565b610e61612dc9565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260186020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b610cc88282612ec1565b610ec9612dc9565b60008173ffffffffffffffffffffffffffffffffffffffff164760405160006040518083038185875af1925050503d8060008114610f23576040519150601f19603f3d011682016040523d82523d6000602084013e610f28565b606091505b5050905080610cc857600080fd5b610f3e612dc9565b600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316179055610f89816001611c1b565b610f94816001610e59565b60085460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166890600090a350565b610fe7612dc9565b600d839055600e829055600f819055806110018385613bfc565b61100b9190613bfc565b600c55505050565b61101b612dc9565b6008547501000000000000000000000000000000000000000000900460ff16156110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f54726164696e672069732061637469766520616c7265616479000000000000006044820152606401610cb5565b6000341161110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f53656e64206c69717569646974792065746800000000000000000000000000006044820152606401610cb5565b3060009081526020819052604090205480611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4e6f20746f6b656e7321000000000000000000000000000000000000000000006044820152606401610cb5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112119190613c45565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611298573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112bc9190613c45565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303816000875af115801561132e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113529190613c45565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9290921691821790556113a1906001610e59565b6006546113c59073ffffffffffffffffffffffffffffffffffffffff166001612f14565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611432573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114569190613c45565b6040517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000811660048301527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60248301529192509082169063095ea7b3906044016020604051808303816000875af115801561150e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115329190613c28565b5061157e307f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611e16565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7193430856000806115df60055473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561166c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906116919190613c62565b5050600880547fffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffff16760101000000000000000000000000000000000000000000179055506006546040805184815234602082015273ffffffffffffffffffffffffffffffffffffffff909216917f102f2b2e0e616d5265ade25857ea806f7468dcdf53a7b89c85090cf4dcd2195b91015b60405180910390a25050565b611736612dc9565b60088054911515760100000000000000000000000000000000000000000000027fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b606060048054610b2b90613b7a565b611799612dc9565b60065473ffffffffffffffffffffffffffffffffffffffff90811690831603611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610cb5565b610cc88282612f14565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015611912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610cb5565b610be18286868403611e16565b600033610bbc81858561209a565b6000611937612dc9565b60018210156119c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e30312520746f74616c20737570706c792e0000000000000000000000006064820152608401610cb5565b6032821115611a59576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e35302520746f74616c20737570706c792e00000000000000000000006064820152608401610cb5565b50600b55600190565b611a6a612dc9565b73ffffffffffffffffffffffffffffffffffffffff8216611ae7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610cb5565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8416906370a0823190602401602060405180830381865afa158015611b54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b789190613c0f565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af1158015611bf1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c159190613c28565b50505050565b611c23612dc9565b73ffffffffffffffffffffffffffffffffffffffff821660008181526017602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101611722565b611cae612dc9565b60118390556012829055601381905580611cc88385613bfc565b611cd29190613bfc565b601055505050565b6000612710600b54611ceb60025490565b611cf59190613c90565b611cff9190613ca7565b905090565b611d0c612dc9565b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316179055611d57816001611c1b565b610cd6816001610e59565b611d6a612dc9565b73ffffffffffffffffffffffffffffffffffffffff8116611e0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610cb5565b610cd681612e4a565b73ffffffffffffffffffffffffffffffffffffffff8316611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff8216611f5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611c15578181101561208d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610cb5565b611c158484848403611e16565b73ffffffffffffffffffffffffffffffffffffffff831661213d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff82166121e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610cb5565b806000036121f9576121f483836000612f93565b505050565b60085477010000000000000000000000000000000000000000000000900460ff16156127045760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590612265575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015612286575073ffffffffffffffffffffffffffffffffffffffff821615155b80156122aa575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b80156122d1575060085474010000000000000000000000000000000000000000900460ff16155b15612704576008547501000000000000000000000000000000000000000000900460ff166123b85773ffffffffffffffffffffffffffffffffffffffff831660009081526017602052604090205460ff1680612352575073ffffffffffffffffffffffffffffffffffffffff821660009081526017602052604090205460ff165b6123b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610cb5565b73ffffffffffffffffffffffffffffffffffffffff831660009081526019602052604090205460ff168015612413575073ffffffffffffffffffffffffffffffffffffffff821660009081526018602052604090205460ff16155b1561254a57600a548111156124aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610cb5565b60095473ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020546124dd9083613bfc565b1115612545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610cb5565b612704565b73ffffffffffffffffffffffffffffffffffffffff821660009081526019602052604090205460ff1680156125a5575073ffffffffffffffffffffffffffffffffffffffff831660009081526018602052604090205460ff16155b1561263c57600a54811115612545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff821660009081526018602052604090205460ff166127045760095473ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205461269c9083613bfc565b1115612704576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610cb5565b306000908152602081905260408120549061271d611cda565b821015905080801561274b5750600854760100000000000000000000000000000000000000000000900460ff165b8015612772575060085474010000000000000000000000000000000000000000900460ff16155b80156127a4575073ffffffffffffffffffffffffffffffffffffffff851660009081526019602052604090205460ff16155b80156127d6575073ffffffffffffffffffffffffffffffffffffffff851660009081526017602052604090205460ff16155b8015612808575073ffffffffffffffffffffffffffffffffffffffff841660009081526017602052604090205460ff16155b1561287d57600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055612854613202565b600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60085473ffffffffffffffffffffffffffffffffffffffff861660009081526017602052604090205460ff740100000000000000000000000000000000000000009092048216159116806128f6575073ffffffffffffffffffffffffffffffffffffffff851660009081526017602052604090205460ff165b156128ff575060005b60008115612afe5773ffffffffffffffffffffffffffffffffffffffff861660009081526019602052604090205460ff16801561293e57506000601054115b156129f6576064601054866129539190613c90565b61295d9190613ca7565b9050601054601254826129709190613c90565b61297a9190613ca7565b6015600082825461298b9190613bfc565b90915550506010546013546129a09083613c90565b6129aa9190613ca7565b601660008282546129bb9190613bfc565b90915550506010546011546129d09083613c90565b6129da9190613ca7565b601460008282546129eb9190613bfc565b90915550612ae09050565b73ffffffffffffffffffffffffffffffffffffffff871660009081526019602052604090205460ff168015612a2d57506000600c54115b15612ae0576064600c5486612a429190613c90565b612a4c9190613ca7565b9050600c54600e5482612a5f9190613c90565b612a699190613ca7565b60156000828254612a7a9190613bfc565b9091555050600c54600f54612a8f9083613c90565b612a999190613ca7565b60166000828254612aaa9190613bfc565b9091555050600c54600d54612abf9083613c90565b612ac99190613ca7565b60146000828254612ada9190613bfc565b90915550505b8015612af157612af1873083612f93565b612afb8186613ce2565b94505b612b09878787612f93565b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff8216612b8f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610cb5565b8060026000828254612ba19190613bfc565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff8216612ca8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015612d5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610e1f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600160209081526040808320338452909152812054612efd908390613ce2565b9050612f0a833383611e16565b6121f48383612c05565b73ffffffffffffffffffffffffffffffffffffffff821660008181526019602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b73ffffffffffffffffffffffffffffffffffffffff8316613036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff82166130d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020548181101561318f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611c15565b30600090815260208190526040812054905060006016546014546015546132299190613bfc565b6132339190613bfc565b90506000821580613242575081155b1561324c57505050565b613254611cda565b61325f906014613c90565b83111561327c5761326e611cda565b613279906014613c90565b92505b60006002836015548661328f9190613c90565b6132999190613ca7565b6132a39190613ca7565b905060006132b18286613ce2565b9050476132bd82613651565b60006132c98247613ce2565b9050600060026015546132dc9190613ca7565b87601454846132eb9190613c90565b6132f59190613ca7565b6132ff9190613ce2565b9050600060026015546133129190613ca7565b88601654856133219190613c90565b61332b9190613ca7565b6133359190613ce2565b90506000816133448486613ce2565b61334e9190613ce2565b600060158190556014819055601681905560085460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d80600081146133b8576040519150601f19603f3d011682016040523d82523d6000602084013e6133bd565b606091505b509098505086158015906133d15750600081115b15613424576133e08782613878565b601554604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60004790507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613494573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134b89190613c45565b73ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b1580156134ff57600080fd5b505af1158015613513573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613583573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135a79190613c45565b6007546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff91821660048201526024810184905291169063a9059cbb906044016020604051808303816000875af115801561361f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136439190613c28565b505050505050505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061368657613686613cf5565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561372b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061374f9190613c45565b8160018151811061376257613762613cf5565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506137c7307f000000000000000000000000000000000000000000000000000000000000000084611e16565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790613842908590600090869030904290600401613d24565b600060405180830381600087803b15801561385c57600080fd5b505af1158015613870573d6000803e3d6000fd5b505050505050565b6138a3307f000000000000000000000000000000000000000000000000000000000000000084611e16565b6007546040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101849052600060448201819052606482015273ffffffffffffffffffffffffffffffffffffffff91821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015613958573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061397d9190613c62565b5050505050565b600060208083528351808285015260005b818110156139b157858101830151858201604001528201613995565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114610cd657600080fd5b60008060408385031215613a2557600080fd5b8235613a30816139f0565b946020939093013593505050565b600060208284031215613a5057600080fd5b8135613a5b816139f0565b9392505050565b600080600060608486031215613a7757600080fd5b8335613a82816139f0565b92506020840135613a92816139f0565b929592945050506040919091013590565b600060208284031215613ab557600080fd5b5035919050565b8015158114610cd657600080fd5b60008060408385031215613add57600080fd5b8235613ae8816139f0565b91506020830135613af881613abc565b809150509250929050565b600080600060608486031215613b1857600080fd5b505081359360208301359350604090920135919050565b600060208284031215613b4157600080fd5b8135613a5b81613abc565b60008060408385031215613b5f57600080fd5b8235613b6a816139f0565b91506020830135613af8816139f0565b600181811c90821680613b8e57607f821691505b602082108103613bc7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610bc257610bc2613bcd565b600060208284031215613c2157600080fd5b5051919050565b600060208284031215613c3a57600080fd5b8151613a5b81613abc565b600060208284031215613c5757600080fd5b8151613a5b816139f0565b600080600060608486031215613c7757600080fd5b8351925060208401519150604084015190509250925092565b8082028115828204841417610bc257610bc2613bcd565b600082613cdd577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b81810381811115610bc257610bc2613bcd565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015613d8157845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101613d4f565b505073ffffffffffffffffffffffffffffffffffffffff96909616606085015250505060800152939250505056fea26469706673582212207d95b95503a3dfef929200a5ac94f66526e21c2792d8943f76355423eb9b0d2464736f6c6343000813003345524332303a207472616e7366657220746f20746865207a65726f206164647245524332303a207472616e736665722066726f6d20746865207a65726f206164ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000f87ad9f026471847cf834becc87279c4a4adda12
Deployed Bytecode
0x60806040526004361061037a5760003560e01c80637cb332bb116101d1578063bc205ad311610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610aba578063f637434214610ada578063f8b45b0514610af0578063fde83a3414610b0657600080fd5b8063dd62ed3e14610a1c578063e2f4560514610a6f578063f0f4426014610a84578063f11a24d314610aa457600080fd5b8063c17b5b8c116100dc578063c17b5b8c146109ba578063c8c8ebe4146109da578063d729715f146109f0578063d85ba06314610a0657600080fd5b8063bc205ad314610964578063be1512f314610984578063c02466681461099a57600080fd5b80639a7a23d61161016f578063a9059cbb11610149578063a9059cbb146108c1578063b62496f5146108e1578063ba22abc314610911578063bbc0c7421461093157600080fd5b80639a7a23d61461086b5780639c2e4ac61461088b578063a457c2d7146108a157600080fd5b80638a8c523c116101ab5780638a8c523c146108035780638da5cb5b1461080b578063924de9b71461083657806395d89b411461085657600080fd5b80637cb332bb146107ad5780637f6bf20a146107cd5780638095d564146107e357600080fd5b80634ac1126a116102ab5780636f33037f11610249578063751039fc11610223578063751039fc146107385780637571336a1461074d57806379cc67901461076d5780637ca8448a1461078d57600080fd5b80636f33037f146106ca57806370a08231146106e0578063715018a61461072357600080fd5b806361d027b31161028557806361d027b31461063e57806367a1bd551461066b5780636a486a8e146106805780636ddd17131461069657600080fd5b80634ac1126a146105b55780634fbee193146105cb578063599270441461061157600080fd5b806327c8f8351161031857806340c10f19116102f257806340c10f191461051157806342966c681461053357806349bd5a5e146105535780634a62bb651461058057600080fd5b806327c8f835146104bf578063313ce567146104d557806339509351146104f157600080fd5b80631694505e116103545780631694505e1461041157806318160ddd1461046a5780631a8145bb1461048957806323b872dd1461049f57600080fd5b806306fdde0314610386578063095ea7b3146103b157806310d5de53146103e157600080fd5b3661038157005b600080fd5b34801561039257600080fd5b5061039b610b1c565b6040516103a89190613984565b60405180910390f35b3480156103bd57600080fd5b506103d16103cc366004613a12565b610bae565b60405190151581526020016103a8565b3480156103ed57600080fd5b506103d16103fc366004613a3e565b60186020526000908152604090205460ff1681565b34801561041d57600080fd5b506104457f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103a8565b34801561047657600080fd5b506002545b6040519081526020016103a8565b34801561049557600080fd5b5061047b60155481565b3480156104ab57600080fd5b506103d16104ba366004613a62565b610bc8565b3480156104cb57600080fd5b5061044561dead81565b3480156104e157600080fd5b50604051600981526020016103a8565b3480156104fd57600080fd5b506103d161050c366004613a12565b610bec565b34801561051d57600080fd5b5061053161052c366004613a12565b610c38565b005b34801561053f57600080fd5b5061053161054e366004613aa3565b610ccc565b34801561055f57600080fd5b506006546104459073ffffffffffffffffffffffffffffffffffffffff1681565b34801561058c57600080fd5b506008546103d19077010000000000000000000000000000000000000000000000900460ff1681565b3480156105c157600080fd5b5061047b600b5481565b3480156105d757600080fd5b506103d16105e6366004613a3e565b73ffffffffffffffffffffffffffffffffffffffff1660009081526017602052604090205460ff1690565b34801561061d57600080fd5b506008546104459073ffffffffffffffffffffffffffffffffffffffff1681565b34801561064a57600080fd5b506007546104459073ffffffffffffffffffffffffffffffffffffffff1681565b34801561067757600080fd5b50610531610cd9565b34801561068c57600080fd5b5061047b60105481565b3480156106a257600080fd5b506008546103d190760100000000000000000000000000000000000000000000900460ff1681565b3480156106d657600080fd5b5061047b60115481565b3480156106ec57600080fd5b5061047b6106fb366004613a3e565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561072f57600080fd5b50610531610e0d565b34801561074457600080fd5b506103d1610e21565b34801561075957600080fd5b50610531610768366004613aca565b610e59565b34801561077957600080fd5b50610531610788366004613a12565b610eb7565b34801561079957600080fd5b506105316107a8366004613a3e565b610ec1565b3480156107b957600080fd5b506105316107c8366004613a3e565b610f36565b3480156107d957600080fd5b5061047b60145481565b3480156107ef57600080fd5b506105316107fe366004613b03565b610fdf565b610531611013565b34801561081757600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610445565b34801561084257600080fd5b50610531610851366004613b2f565b61172e565b34801561086257600080fd5b5061039b611782565b34801561087757600080fd5b50610531610886366004613aca565b611791565b34801561089757600080fd5b5061047b600f5481565b3480156108ad57600080fd5b506103d16108bc366004613a12565b61184e565b3480156108cd57600080fd5b506103d16108dc366004613a12565b61191f565b3480156108ed57600080fd5b506103d16108fc366004613a3e565b60196020526000908152604090205460ff1681565b34801561091d57600080fd5b506103d161092c366004613aa3565b61192d565b34801561093d57600080fd5b506008546103d1907501000000000000000000000000000000000000000000900460ff1681565b34801561097057600080fd5b5061053161097f366004613b4c565b611a62565b34801561099057600080fd5b5061047b600d5481565b3480156109a657600080fd5b506105316109b5366004613aca565b611c1b565b3480156109c657600080fd5b506105316109d5366004613b03565b611ca6565b3480156109e657600080fd5b5061047b600a5481565b3480156109fc57600080fd5b5061047b60135481565b348015610a1257600080fd5b5061047b600c5481565b348015610a2857600080fd5b5061047b610a37366004613b4c565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610a7b57600080fd5b5061047b611cda565b348015610a9057600080fd5b50610531610a9f366004613a3e565b611d04565b348015610ab057600080fd5b5061047b600e5481565b348015610ac657600080fd5b50610531610ad5366004613a3e565b611d62565b348015610ae657600080fd5b5061047b60125481565b348015610afc57600080fd5b5061047b60095481565b348015610b1257600080fd5b5061047b60165481565b606060038054610b2b90613b7a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5790613b7a565b8015610ba45780601f10610b7957610100808354040283529160200191610ba4565b820191906000526020600020905b815481529060010190602001808311610b8757829003601f168201915b5050505050905090565b600033610bbc818585611e16565b60019150505b92915050565b600033610bd6858285611fc9565b610be185858561209a565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610bbc9082908690610c33908790613bfc565b611e16565b60075473ffffffffffffffffffffffffffffffffffffffff163314610cbe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f6d73672e73656e646572206e6f7420747265617375727900000000000000000060448201526064015b60405180910390fd5b610cc88282612b12565b5050565b610cd63382612c05565b50565b610ce1612dc9565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482018190526000916370a0823190602401602060405180830381865afa158015610d38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5c9190613c0f565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015610dbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de09190613c28565b5060405133904780156108fc02916000818181858888f19350505050158015610cc8573d6000803e3d6000fd5b610e15612dc9565b610e1f6000612e4a565b565b6000610e2b612dc9565b50600880547fffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffff169055600190565b610e61612dc9565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260186020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b610cc88282612ec1565b610ec9612dc9565b60008173ffffffffffffffffffffffffffffffffffffffff164760405160006040518083038185875af1925050503d8060008114610f23576040519150601f19603f3d011682016040523d82523d6000602084013e610f28565b606091505b5050905080610cc857600080fd5b610f3e612dc9565b600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316179055610f89816001611c1b565b610f94816001610e59565b60085460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166890600090a350565b610fe7612dc9565b600d839055600e829055600f819055806110018385613bfc565b61100b9190613bfc565b600c55505050565b61101b612dc9565b6008547501000000000000000000000000000000000000000000900460ff16156110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f54726164696e672069732061637469766520616c7265616479000000000000006044820152606401610cb5565b6000341161110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f53656e64206c69717569646974792065746800000000000000000000000000006044820152606401610cb5565b3060009081526020819052604090205480611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4e6f20746f6b656e7321000000000000000000000000000000000000000000006044820152606401610cb5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112119190613c45565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611298573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112bc9190613c45565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303816000875af115801561132e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113529190613c45565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9290921691821790556113a1906001610e59565b6006546113c59073ffffffffffffffffffffffffffffffffffffffff166001612f14565b60007f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611432573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114569190613c45565b6040517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811660048301527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60248301529192509082169063095ea7b3906044016020604051808303816000875af115801561150e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115329190613c28565b5061157e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611e16565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7193430856000806115df60055473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561166c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906116919190613c62565b5050600880547fffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffff16760101000000000000000000000000000000000000000000179055506006546040805184815234602082015273ffffffffffffffffffffffffffffffffffffffff909216917f102f2b2e0e616d5265ade25857ea806f7468dcdf53a7b89c85090cf4dcd2195b91015b60405180910390a25050565b611736612dc9565b60088054911515760100000000000000000000000000000000000000000000027fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b606060048054610b2b90613b7a565b611799612dc9565b60065473ffffffffffffffffffffffffffffffffffffffff90811690831603611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610cb5565b610cc88282612f14565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015611912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610cb5565b610be18286868403611e16565b600033610bbc81858561209a565b6000611937612dc9565b60018210156119c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e30312520746f74616c20737570706c792e0000000000000000000000006064820152608401610cb5565b6032821115611a59576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e35302520746f74616c20737570706c792e00000000000000000000006064820152608401610cb5565b50600b55600190565b611a6a612dc9565b73ffffffffffffffffffffffffffffffffffffffff8216611ae7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610cb5565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8416906370a0823190602401602060405180830381865afa158015611b54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b789190613c0f565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af1158015611bf1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c159190613c28565b50505050565b611c23612dc9565b73ffffffffffffffffffffffffffffffffffffffff821660008181526017602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101611722565b611cae612dc9565b60118390556012829055601381905580611cc88385613bfc565b611cd29190613bfc565b601055505050565b6000612710600b54611ceb60025490565b611cf59190613c90565b611cff9190613ca7565b905090565b611d0c612dc9565b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316179055611d57816001611c1b565b610cd6816001610e59565b611d6a612dc9565b73ffffffffffffffffffffffffffffffffffffffff8116611e0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610cb5565b610cd681612e4a565b73ffffffffffffffffffffffffffffffffffffffff8316611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff8216611f5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611c15578181101561208d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610cb5565b611c158484848403611e16565b73ffffffffffffffffffffffffffffffffffffffff831661213d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff82166121e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610cb5565b806000036121f9576121f483836000612f93565b505050565b60085477010000000000000000000000000000000000000000000000900460ff16156127045760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590612265575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015612286575073ffffffffffffffffffffffffffffffffffffffff821615155b80156122aa575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b80156122d1575060085474010000000000000000000000000000000000000000900460ff16155b15612704576008547501000000000000000000000000000000000000000000900460ff166123b85773ffffffffffffffffffffffffffffffffffffffff831660009081526017602052604090205460ff1680612352575073ffffffffffffffffffffffffffffffffffffffff821660009081526017602052604090205460ff165b6123b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610cb5565b73ffffffffffffffffffffffffffffffffffffffff831660009081526019602052604090205460ff168015612413575073ffffffffffffffffffffffffffffffffffffffff821660009081526018602052604090205460ff16155b1561254a57600a548111156124aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610cb5565b60095473ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020546124dd9083613bfc565b1115612545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610cb5565b612704565b73ffffffffffffffffffffffffffffffffffffffff821660009081526019602052604090205460ff1680156125a5575073ffffffffffffffffffffffffffffffffffffffff831660009081526018602052604090205460ff16155b1561263c57600a54811115612545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff821660009081526018602052604090205460ff166127045760095473ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205461269c9083613bfc565b1115612704576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610cb5565b306000908152602081905260408120549061271d611cda565b821015905080801561274b5750600854760100000000000000000000000000000000000000000000900460ff165b8015612772575060085474010000000000000000000000000000000000000000900460ff16155b80156127a4575073ffffffffffffffffffffffffffffffffffffffff851660009081526019602052604090205460ff16155b80156127d6575073ffffffffffffffffffffffffffffffffffffffff851660009081526017602052604090205460ff16155b8015612808575073ffffffffffffffffffffffffffffffffffffffff841660009081526017602052604090205460ff16155b1561287d57600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055612854613202565b600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60085473ffffffffffffffffffffffffffffffffffffffff861660009081526017602052604090205460ff740100000000000000000000000000000000000000009092048216159116806128f6575073ffffffffffffffffffffffffffffffffffffffff851660009081526017602052604090205460ff165b156128ff575060005b60008115612afe5773ffffffffffffffffffffffffffffffffffffffff861660009081526019602052604090205460ff16801561293e57506000601054115b156129f6576064601054866129539190613c90565b61295d9190613ca7565b9050601054601254826129709190613c90565b61297a9190613ca7565b6015600082825461298b9190613bfc565b90915550506010546013546129a09083613c90565b6129aa9190613ca7565b601660008282546129bb9190613bfc565b90915550506010546011546129d09083613c90565b6129da9190613ca7565b601460008282546129eb9190613bfc565b90915550612ae09050565b73ffffffffffffffffffffffffffffffffffffffff871660009081526019602052604090205460ff168015612a2d57506000600c54115b15612ae0576064600c5486612a429190613c90565b612a4c9190613ca7565b9050600c54600e5482612a5f9190613c90565b612a699190613ca7565b60156000828254612a7a9190613bfc565b9091555050600c54600f54612a8f9083613c90565b612a999190613ca7565b60166000828254612aaa9190613bfc565b9091555050600c54600d54612abf9083613c90565b612ac99190613ca7565b60146000828254612ada9190613bfc565b90915550505b8015612af157612af1873083612f93565b612afb8186613ce2565b94505b612b09878787612f93565b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff8216612b8f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610cb5565b8060026000828254612ba19190613bfc565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff8216612ca8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015612d5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610e1f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600160209081526040808320338452909152812054612efd908390613ce2565b9050612f0a833383611e16565b6121f48383612c05565b73ffffffffffffffffffffffffffffffffffffffff821660008181526019602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b73ffffffffffffffffffffffffffffffffffffffff8316613036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff82166130d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020548181101561318f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611c15565b30600090815260208190526040812054905060006016546014546015546132299190613bfc565b6132339190613bfc565b90506000821580613242575081155b1561324c57505050565b613254611cda565b61325f906014613c90565b83111561327c5761326e611cda565b613279906014613c90565b92505b60006002836015548661328f9190613c90565b6132999190613ca7565b6132a39190613ca7565b905060006132b18286613ce2565b9050476132bd82613651565b60006132c98247613ce2565b9050600060026015546132dc9190613ca7565b87601454846132eb9190613c90565b6132f59190613ca7565b6132ff9190613ce2565b9050600060026015546133129190613ca7565b88601654856133219190613c90565b61332b9190613ca7565b6133359190613ce2565b90506000816133448486613ce2565b61334e9190613ce2565b600060158190556014819055601681905560085460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d80600081146133b8576040519150601f19603f3d011682016040523d82523d6000602084013e6133bd565b606091505b509098505086158015906133d15750600081115b15613424576133e08782613878565b601554604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60004790507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613494573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134b89190613c45565b73ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b1580156134ff57600080fd5b505af1158015613513573d6000803e3d6000fd5b50505050507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613583573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135a79190613c45565b6007546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff91821660048201526024810184905291169063a9059cbb906044016020604051808303816000875af115801561361f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136439190613c28565b505050505050505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061368657613686613cf5565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561372b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061374f9190613c45565b8160018151811061376257613762613cf5565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506137c7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611e16565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790613842908590600090869030904290600401613d24565b600060405180830381600087803b15801561385c57600080fd5b505af1158015613870573d6000803e3d6000fd5b505050505050565b6138a3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611e16565b6007546040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101849052600060448201819052606482015273ffffffffffffffffffffffffffffffffffffffff91821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015613958573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061397d9190613c62565b5050505050565b600060208083528351808285015260005b818110156139b157858101830151858201604001528201613995565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114610cd657600080fd5b60008060408385031215613a2557600080fd5b8235613a30816139f0565b946020939093013593505050565b600060208284031215613a5057600080fd5b8135613a5b816139f0565b9392505050565b600080600060608486031215613a7757600080fd5b8335613a82816139f0565b92506020840135613a92816139f0565b929592945050506040919091013590565b600060208284031215613ab557600080fd5b5035919050565b8015158114610cd657600080fd5b60008060408385031215613add57600080fd5b8235613ae8816139f0565b91506020830135613af881613abc565b809150509250929050565b600080600060608486031215613b1857600080fd5b505081359360208301359350604090920135919050565b600060208284031215613b4157600080fd5b8135613a5b81613abc565b60008060408385031215613b5f57600080fd5b8235613b6a816139f0565b91506020830135613af8816139f0565b600181811c90821680613b8e57607f821691505b602082108103613bc7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610bc257610bc2613bcd565b600060208284031215613c2157600080fd5b5051919050565b600060208284031215613c3a57600080fd5b8151613a5b81613abc565b600060208284031215613c5757600080fd5b8151613a5b816139f0565b600080600060608486031215613c7757600080fd5b8351925060208401519150604084015190509250925092565b8082028115828204841417610bc257610bc2613bcd565b600082613cdd577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b81810381811115610bc257610bc2613bcd565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015613d8157845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101613d4f565b505073ffffffffffffffffffffffffffffffffffffffff96909616606085015250505060800152939250505056fea26469706673582212207d95b95503a3dfef929200a5ac94f66526e21c2792d8943f76355423eb9b0d2464736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f87ad9f026471847cf834becc87279c4a4adda12
-----Decoded View---------------
Arg [0] : _teamWallet (address): 0xf87AD9f026471847cf834becC87279C4A4ADDA12
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f87ad9f026471847cf834becc87279c4a4adda12
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.