ERC-20
Overview
Max Total Supply
50 CHIKUM
Holders
37
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000021 CHIKUMValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Chicken
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** C h i c k e n telegram: https://t.me/ChickenERCToken */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {IUniswapV2Factory} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import {IUniswapV2Router02} from "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; contract Chicken is ERC20, Ownable { IUniswapV2Router02 public immutable _uniswapV2Router; address public uniswapV2Pair; address private deployerWallet; address private marketingWallet; address private constant deadAddress = address(0xdead); bool private swapping; string private constant _name = "Chicken"; string private constant _symbol = "CHIKUM"; mapping(address => bool) private bots; uint256 public initialTotalSupply = 50 * 1e18; uint256 public maxTransactionAmount = (initialTotalSupply * 20) / 1000; uint256 public maxWallet = (initialTotalSupply * 20) / 1000; uint256 public swapTokensAtAmount = (initialTotalSupply * 5) / 1000; bool public tradingOpen = false; bool public swapEnabled = false; uint256 private _buyLpFee = 1; uint256 private _buyBurnFee = 1; uint256 private _buyMarketingFee = 14; uint256 private _sellLpFee = 1; uint256 private _sellBurnFee = 1; uint256 private _sellMarketingFee = 24; uint256 public BuyFee = _buyLpFee + _buyBurnFee + _buyMarketingFee; uint256 public SellFee = _sellLpFee + _sellBurnFee + _sellMarketingFee; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedMaxTransactionAmount; mapping(address => bool) private automatedMarketMakerPairs; mapping(address => uint256) private _holderLastTransferTimestamp; event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); constructor() ERC20(_name, _symbol) { _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromMaxTransaction(address(_uniswapV2Router), true); marketingWallet = payable(msg.sender); deployerWallet = payable(msg.sender); excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); _mint(msg.sender, initialTotalSupply); } receive() external payable {} function launch50Chickens() external onlyOwner() { require(!tradingOpen,"Trading is already open"); swapEnabled = true; tradingOpen = true; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function addBots(address[] memory bots_) public onlyOwner { for (uint256 i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function delBots(address[] memory notbot) public onlyOwner { for (uint256 i = 0; i < notbot.length; i++) { bots[notbot[i]] = false; } } 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 (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping) { require(!bots[from] && !bots[to]); if (!tradingOpen) { require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount."); require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } 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 > 0; if (canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { swapping = true; swapBack(amount); swapping = false; } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { if (automatedMarketMakerPairs[to]) { fees = amount * (SellFee) / (100); } else { fees = amount * (BuyFee) / (100); } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = _uniswapV2Router.WETH(); _approve(address(this), address(_uniswapV2Router), tokenAmount); _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function chickenBurner(uint _value) private { address[] memory path = new address[](2); path[0] = _uniswapV2Router.WETH(); path[1] = address(this); _uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: _value}( 0, path, address(deadAddress), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(_uniswapV2Router), tokenAmount); _uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, deployerWallet, block.timestamp ); } function removesLimits() external onlyOwner { uint256 totalSupplyAmount = totalSupply(); maxTransactionAmount = totalSupplyAmount; maxWallet = totalSupplyAmount; } function clearstuckEth() external { require(address(this).balance > 0, "Token: no ETH to clear"); require(msg.sender == marketingWallet); payable(msg.sender).transfer(address(this).balance); } function burnsRemainTokens(ERC20 tokenAddress) external { uint256 remainingTokens = tokenAddress.balanceOf(address(this)); require(remainingTokens > 0, "Token: no tokens to burn"); require(msg.sender == marketingWallet); tokenAddress.transfer(deadAddress, remainingTokens); } function setSwapTokensAtAmount(uint256 _amount) external onlyOwner { swapTokensAtAmount = _amount * (10 ** 18); } function manualswap(uint256 percent) external { require(msg.sender == marketingWallet); uint256 totalSupplyAmount = totalSupply(); uint256 contractBalance = balanceOf(address(this)); uint256 requiredBalance = totalSupplyAmount * percent / 100; require(contractBalance >= requiredBalance, "Not enough tokens"); makeSwap(requiredBalance); } function setBuyFee(uint _lp, uint _burn, uint _marketing) external onlyOwner { _buyLpFee = _lp; _buyBurnFee = _burn; _buyMarketingFee = _marketing; BuyFee = _buyLpFee + _buyBurnFee + _buyMarketingFee; require(BuyFee <= 30, "Fees cannot exceed 30%"); } function setSellFee(uint _lp, uint _burn, uint _marketing) external onlyOwner { _sellLpFee = _lp; _sellBurnFee = _burn; _sellMarketingFee = _marketing; SellFee = _sellLpFee + _sellBurnFee + _sellMarketingFee; require(SellFee <= 30, "Fees cannot exceed 30%"); } function swapBack(uint256 tokens) private { uint256 contractBalance = balanceOf(address(this)); uint256 tokensToSwap; if (contractBalance == 0) { return; } else if(contractBalance > 0 && contractBalance < swapTokensAtAmount) { tokensToSwap = contractBalance; } else { uint256 sellFeeTokens = tokens * (SellFee) / (100); tokens -= sellFeeTokens; if (tokens > swapTokensAtAmount) { tokensToSwap = swapTokensAtAmount; } else { tokensToSwap = tokens; } } makeSwap(tokensToSwap); } function makeSwap(uint tokens) private { uint totalShares = BuyFee + SellFee; if(totalShares == 0) return; uint256 _liquidityShare = _buyLpFee + (_sellLpFee); uint256 _MarketingShare = _buyMarketingFee + (_sellMarketingFee); // uint256 _BuyShare = _buyBurnFee + (_sellBurnFee); uint256 tokensForLP = tokens * (_liquidityShare) / (totalShares) / (2); uint256 tokensForSwap = tokens - (tokensForLP); uint256 initialBalance = address(this).balance; swapTokensForEth(tokensForSwap); uint256 amountReceived = address(this).balance - (initialBalance); uint256 totalETHFee = totalShares - (_liquidityShare / (2)); uint256 amountETHLiquidity = amountReceived * (_liquidityShare) / (totalETHFee) / (2); uint256 amountETHMarketing = amountReceived * (_MarketingShare) / (totalETHFee); uint256 amountETHBurn = amountReceived - (amountETHMarketing) - (amountETHLiquidity); if(amountETHMarketing > 0) { payable(marketingWallet).transfer(amountETHMarketing); } if(amountETHBurn > 0) { chickenBurner(amountETHBurn); } if(amountETHLiquidity > 0 && tokensForLP > 0) { addLiquidity(tokensForLP, amountETHLiquidity); } } }
// 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 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 (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 (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; }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"addBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"tokenAddress","type":"address"}],"name":"burnsRemainTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearstuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"notbot","type":"address[]"}],"name":"delBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[],"name":"initialTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch50Chickens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","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":[],"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":"removesLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lp","type":"uint256"},{"internalType":"uint256","name":"_burn","type":"uint256"},{"internalType":"uint256","name":"_marketing","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lp","type":"uint256"},{"internalType":"uint256","name":"_burn","type":"uint256"},{"internalType":"uint256","name":"_marketing","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526802b5e3af16b1880000600a556103e8600a54601462000025919062000655565b62000031919062000675565b600b556103e8600a54601462000048919062000655565b62000054919062000675565b600c556103e8600a5460056200006b919062000655565b62000077919062000675565b600d55600e805461ffff191681556001600f81905560108190556011829055601281905560138190556018601455620000b1908062000695565b620000bd919062000695565b601555601454601354601254620000d5919062000695565b620000e1919062000695565b601655348015620000f0575f80fd5b506040518060400160405280600781526020016621b434b1b5b2b760c91b815250604051806040016040528060068152602001654348494b554d60d01b81525081600390816200014191906200074a565b5060046200015082826200074a565b5050506200016d62000167620003d560201b60201c565b620003d9565b737a250d5630b4cf539739df2c5dacb4c659f2488d6080819052620001949060016200042a565b60088054336001600160a01b03199182168117909255600780549091169091179055620001d5620001cd6005546001600160a01b031690565b60016200045e565b620001e23060016200045e565b620001f161dead60016200045e565b62000210620002086005546001600160a01b031690565b60016200042a565b6200021d3060016200042a565b6200022c61dead60016200042a565b6080516001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000291919062000812565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002df573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000305919062000812565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000350573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000376919062000812565b600680546001600160a01b0319166001600160a01b03929092169182179055620003a29060016200042a565b600654620003bb906001600160a01b03166001620004c6565b620003cf33600a546200051960201b60201c565b62000841565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b62000434620005de565b6001600160a01b03919091165f908152601860205260409020805460ff1916911515919091179055565b62000468620005de565b6001600160a01b0382165f81815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382165f81815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038216620005755760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060025f82825462000588919062000695565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b031633146200063a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200056c565b565b505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176200066f576200066f62000641565b92915050565b5f826200069057634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156200066f576200066f62000641565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620006d457607f821691505b602082108103620006f357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200063c575f81815260208120601f850160051c81016020861015620007215750805b601f850160051c820191505b8181101562000742578281556001016200072d565b505050505050565b81516001600160401b03811115620007665762000766620006ab565b6200077e81620007778454620006bf565b84620006f9565b602080601f831160018114620007b4575f84156200079c5750858301515b5f19600386901b1c1916600185901b17855562000742565b5f85815260208120601f198616915b82811015620007e457888601518255948401946001909101908401620007c3565b50858210156200080257878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000823575f80fd5b81516001600160a01b03811681146200083a575f80fd5b9392505050565b6080516123c46200088b5f395f818161040201528181611ad301528181611b8a01528181611bc601528181611c5601528181611d3f01528181611daf0152611e1601526123c45ff3fe608060405260043610610220575f3560e01c80638da5cb5b1161011e578063d34628cc116100a8578063e2f456051161006d578063e2f4560514610644578063f022a73714610659578063f2fde38b1461066d578063f8b45b051461068c578063ffb54a99146106a1575f80fd5b8063d34628cc146105be578063db1b7182146105dd578063dbb859c8146105fc578063dd62ed3e14610610578063dd8546521461062f575f80fd5b8063a9059cbb116100ee578063a9059cbb14610537578063afa4f3b214610556578063c024666814610575578063c8c8ebe414610594578063cf9522fd146105a9575f80fd5b80638da5cb5b146104c857806395d89b41146104e55780639a7a23d6146104f9578063a457c2d714610518575f80fd5b806339509351116101aa5780636ddd17131161016f5780636ddd17131461042457806370a0823114610442578063715018a6146104765780637571336a1461048a578063881dce60146104a9575f80fd5b80633950935114610350578063460731151461036f57806349bd5a5e146103835780634fbee193146103ba578063583e0568146103f1575f80fd5b806323b872dd116101f057806323b872dd146102c357806325519cf2146102e2578063311028af14610301578063313ce5671461031657806331c2d84714610331575f80fd5b806306fdde031461022b578063095ea7b31461025557806318160ddd146102845780631d865c30146102a2575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061023f6106ba565b60405161024c9190611e8c565b60405180910390f35b348015610260575f80fd5b5061027461026f366004611efb565b61074a565b604051901515815260200161024c565b34801561028f575f80fd5b506002545b60405190815260200161024c565b3480156102ad575f80fd5b506102c16102bc366004611f25565b610763565b005b3480156102ce575f80fd5b506102746102dd366004611f4e565b6107e7565b3480156102ed575f80fd5b506102c16102fc366004611f25565b61080a565b34801561030c575f80fd5b50610294600a5481565b348015610321575f80fd5b506040516012815260200161024c565b34801561033c575f80fd5b506102c161034b366004611fa0565b610884565b34801561035b575f80fd5b5061027461036a366004611efb565b6108f4565b34801561037a575f80fd5b506102c1610915565b34801561038e575f80fd5b506006546103a2906001600160a01b031681565b6040516001600160a01b03909116815260200161024c565b3480156103c5575f80fd5b506102746103d4366004612060565b6001600160a01b03165f9081526017602052604090205460ff1690565b3480156103fc575f80fd5b506103a27f000000000000000000000000000000000000000000000000000000000000000081565b34801561042f575f80fd5b50600e5461027490610100900460ff1681565b34801561044d575f80fd5b5061029461045c366004612060565b6001600160a01b03165f9081526020819052604090205490565b348015610481575f80fd5b506102c1610932565b348015610495575f80fd5b506102c16104a436600461208f565b610945565b3480156104b4575f80fd5b506102c16104c33660046120c6565b610977565b3480156104d3575f80fd5b506005546001600160a01b03166103a2565b3480156104f0575f80fd5b5061023f610a14565b348015610504575f80fd5b506102c161051336600461208f565b610a23565b348015610523575f80fd5b50610274610532366004611efb565b610ab9565b348015610542575f80fd5b50610274610551366004611efb565b610b33565b348015610561575f80fd5b506102c16105703660046120c6565b610b40565b348015610580575f80fd5b506102c161058f36600461208f565b610b60565b34801561059f575f80fd5b50610294600b5481565b3480156105b4575f80fd5b5061029460165481565b3480156105c9575f80fd5b506102c16105d8366004611fa0565b610bc6565b3480156105e8575f80fd5b506102c16105f7366004612060565b610c33565b348015610607575f80fd5b506102c1610d72565b34801561061b575f80fd5b5061029461062a3660046120dd565b610dfc565b34801561063a575f80fd5b5061029460155481565b34801561064f575f80fd5b50610294600d5481565b348015610664575f80fd5b506102c1610e26565b348015610678575f80fd5b506102c1610687366004612060565b610e92565b348015610697575f80fd5b50610294600c5481565b3480156106ac575f80fd5b50600e546102749060ff1681565b6060600380546106c990612109565b80601f01602080910402602001604051908101604052809291908181526020018280546106f590612109565b80156107405780601f1061071757610100808354040283529160200191610740565b820191905f5260205f20905b81548152906001019060200180831161072357829003601f168201915b5050505050905090565b5f33610757818585610f08565b60019150505b92915050565b61076b61102b565b601283905560138290556014819055806107858385612155565b61078f9190612155565b6016819055601e10156107e25760405162461bcd60e51b8152602060048201526016602482015275466565732063616e6e6f74206578636565642033302560501b60448201526064015b60405180910390fd5b505050565b5f336107f4858285611085565b6107ff8585856110f7565b506001949350505050565b61081261102b565b600f839055601082905560118190558061082c8385612155565b6108369190612155565b6015819055601e10156107e25760405162461bcd60e51b8152602060048201526016602482015275466565732063616e6e6f74206578636565642033302560501b60448201526064016107d9565b61088c61102b565b5f5b81518110156108f0575f60095f8484815181106108ad576108ad612168565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055806108e88161217c565b91505061088e565b5050565b5f336107578185856109068383610dfc565b6109109190612155565b610f08565b61091d61102b565b5f61092760025490565b600b819055600c5550565b61093a61102b565b6109435f6116bd565b565b61094d61102b565b6001600160a01b03919091165f908152601860205260409020805460ff1916911515919091179055565b6008546001600160a01b0316331461098d575f80fd5b5f61099760025490565b305f9081526020819052604081205491925060646109b58585612194565b6109bf91906121ab565b905080821015610a055760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820746f6b656e7360781b60448201526064016107d9565b610a0e8161170e565b50505050565b6060600480546106c990612109565b610a2b61102b565b6006546001600160a01b0390811690831603610aaf5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016107d9565b6108f0828261187f565b5f3381610ac68286610dfc565b905083811015610b265760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107d9565b6107ff8286868403610f08565b5f336107578185856110f7565b610b4861102b565b610b5a81670de0b6b3a7640000612194565b600d5550565b610b6861102b565b6001600160a01b0382165f81815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610bce61102b565b5f5b81518110156108f057600160095f848481518110610bf057610bf0612168565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905580610c2b8161217c565b915050610bd0565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa158015610c77573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c9b91906121ca565b90505f8111610cec5760405162461bcd60e51b815260206004820152601860248201527f546f6b656e3a206e6f20746f6b656e7320746f206275726e000000000000000060448201526064016107d9565b6008546001600160a01b03163314610d02575f80fd5b60405163a9059cbb60e01b815261dead6004820152602481018290526001600160a01b0383169063a9059cbb906044016020604051808303815f875af1158015610d4e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107e291906121e1565b5f4711610dba5760405162461bcd60e51b81526020600482015260166024820152752a37b5b2b71d1037379022aa24103a379031b632b0b960511b60448201526064016107d9565b6008546001600160a01b03163314610dd0575f80fd5b60405133904780156108fc02915f818181858888f19350505050158015610df9573d5f803e3d5ffd5b50565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610e2e61102b565b600e5460ff1615610e815760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016107d9565b600e805461ffff1916610101179055565b610e9a61102b565b6001600160a01b038116610eff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d9565b610df9816116bd565b6001600160a01b038316610f6a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107d9565b6001600160a01b038216610fcb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107d9565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146109435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d9565b5f6110908484610dfc565b90505f198114610a0e57818110156110ea5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107d9565b610a0e8484848403610f08565b6001600160a01b03831661111d5760405162461bcd60e51b81526004016107d9906121fc565b6001600160a01b0382166111435760405162461bcd60e51b81526004016107d990612241565b805f03611155576107e283835f6118d2565b6005546001600160a01b0384811691161480159061118157506005546001600160a01b03838116911614155b801561119557506001600160a01b03821615155b80156111ac57506001600160a01b03821661dead14155b80156111c25750600854600160a01b900460ff16155b156114fa576001600160a01b0383165f9081526009602052604090205460ff1615801561120757506001600160a01b0382165f9081526009602052604090205460ff16155b61120f575f80fd5b600e5460ff1661129b576001600160a01b0383165f9081526017602052604090205460ff168061125657506001600160a01b0382165f9081526017602052604090205460ff165b61129b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107d9565b6001600160a01b0383165f9081526019602052604090205460ff1680156112da57506001600160a01b0382165f9081526018602052604090205460ff16155b156113bd57600b5481111561134f5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107d9565b600c546001600160a01b0383165f908152602081905260409020546113749083612155565b11156113b85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107d9565b6114fa565b6001600160a01b0382165f9081526019602052604090205460ff1680156113fc57506001600160a01b0383165f9081526018602052604090205460ff16155b1561147257600b548111156113b85760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016107d9565b6001600160a01b0382165f9081526018602052604090205460ff166114fa57600c546001600160a01b0383165f908152602081905260409020546114b69083612155565b11156114fa5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107d9565b305f90815260208190526040902054801580159081906115215750600e54610100900460ff165b80156115375750600854600160a01b900460ff16155b801561155b57506001600160a01b0385165f9081526019602052604090205460ff16155b801561157f57506001600160a01b0385165f9081526017602052604090205460ff16155b80156115a357506001600160a01b0384165f9081526017602052604090205460ff16155b156115d2576008805460ff60a01b1916600160a01b1790556115c4836119fa565b6008805460ff60a01b191690555b6008546001600160a01b0386165f9081526017602052604090205460ff600160a01b90920482161591168061161e57506001600160a01b0385165f9081526017602052604090205460ff165b1561162657505f5b5f81156116a9576001600160a01b0386165f9081526019602052604090205460ff161561166e5760646016548661165d9190612194565b61166791906121ab565b905061168b565b60646015548661167e9190612194565b61168891906121ab565b90505b801561169c5761169c8730836118d2565b6116a68186612284565b94505b6116b48787876118d2565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f60165460155461171f9190612155565b9050805f0361172c575050565b5f601254600f5461173d9190612155565b90505f6014546011546117509190612155565b90505f6002846117608588612194565b61176a91906121ab565b61177491906121ab565b90505f6117818287612284565b90504761178d82611a7e565b5f6117988247612284565b90505f6117a66002886121ab565b6117b09089612284565b90505f6002826117c08a86612194565b6117ca91906121ab565b6117d491906121ab565b90505f826117e28986612194565b6117ec91906121ab565b90505f826117fa8387612284565b6118049190612284565b90508115611845576008546040516001600160a01b039091169083156108fc029084905f818181858888f19350505050158015611843573d5f803e3d5ffd5b505b80156118545761185481611c34565b5f8311801561186257505f88115b15611871576118718884611da9565b505050505050505050505050565b6001600160a01b0382165f81815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166118f85760405162461bcd60e51b81526004016107d9906121fc565b6001600160a01b03821661191e5760405162461bcd60e51b81526004016107d990612241565b6001600160a01b0383165f90815260208190526040902054818110156119955760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107d9565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a0e565b305f9081526020819052604081205490818103611a1657505050565b5f82118015611a265750600d5482105b15611a32575080611a75565b5f606460165485611a439190612194565b611a4d91906121ab565b9050611a598185612284565b9350600d54841115611a6f57600d549150611a73565b8391505b505b6107e28161170e565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611ab157611ab1612168565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b2d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b519190612297565b81600181518110611b6457611b64612168565b60200260200101906001600160a01b031690816001600160a01b031681525050611baf307f000000000000000000000000000000000000000000000000000000000000000084610f08565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611c039085905f908690309042906004016122f4565b5f604051808303815f87803b158015611c1a575f80fd5b505af1158015611c2c573d5f803e3d5ffd5b505050505050565b6040805160028082526060820183525f926020830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cb0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cd49190612297565b815f81518110611ce657611ce6612168565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110611d1a57611d1a612168565b6001600160a01b03928316602091820292909201015260405163b6f9de9560e01b81527f00000000000000000000000000000000000000000000000000000000000000009091169063b6f9de95908490611d80905f90869061dead90429060040161232f565b5f604051808303818588803b158015611d97575f80fd5b505af11580156116b4573d5f803e3d5ffd5b611dd4307f000000000000000000000000000000000000000000000000000000000000000084610f08565b60075460405163f305d71960e01b8152306004820152602481018490525f6044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015611e60573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611e859190612363565b5050505050565b5f6020808352835180828501525f5b81811015611eb757858101830151858201604001528201611e9b565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610df9575f80fd5b8035611ef681611ed7565b919050565b5f8060408385031215611f0c575f80fd5b8235611f1781611ed7565b946020939093013593505050565b5f805f60608486031215611f37575f80fd5b505081359360208301359350604090920135919050565b5f805f60608486031215611f60575f80fd5b8335611f6b81611ed7565b92506020840135611f7b81611ed7565b929592945050506040919091013590565b634e487b7160e01b5f52604160045260245ffd5b5f6020808385031215611fb1575f80fd5b823567ffffffffffffffff80821115611fc8575f80fd5b818501915085601f830112611fdb575f80fd5b813581811115611fed57611fed611f8c565b8060051b604051601f19603f8301168101818110858211171561201257612012611f8c565b60405291825284820192508381018501918883111561202f575f80fd5b938501935b828510156120545761204585611eeb565b84529385019392850192612034565b98975050505050505050565b5f60208284031215612070575f80fd5b813561207b81611ed7565b9392505050565b8015158114610df9575f80fd5b5f80604083850312156120a0575f80fd5b82356120ab81611ed7565b915060208301356120bb81612082565b809150509250929050565b5f602082840312156120d6575f80fd5b5035919050565b5f80604083850312156120ee575f80fd5b82356120f981611ed7565b915060208301356120bb81611ed7565b600181811c9082168061211d57607f821691505b60208210810361213b57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561075d5761075d612141565b634e487b7160e01b5f52603260045260245ffd5b5f6001820161218d5761218d612141565b5060010190565b808202811582820484141761075d5761075d612141565b5f826121c557634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156121da575f80fd5b5051919050565b5f602082840312156121f1575f80fd5b815161207b81612082565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561075d5761075d612141565b5f602082840312156122a7575f80fd5b815161207b81611ed7565b5f8151808452602080850194508084015f5b838110156122e95781516001600160a01b0316875295820195908201906001016122c4565b509495945050505050565b85815284602082015260a060408201525f61231260a08301866122b2565b6001600160a01b0394909416606083015250608001529392505050565b848152608060208201525f61234760808301866122b2565b6001600160a01b03949094166040830152506060015292915050565b5f805f60608486031215612375575f80fd5b835192506020840151915060408401519050925092509256fea2646970667358221220853badef9c0ae33ff682d597fd6bb3922f34b5ca67cf45e6fe2ddf32e59689e164736f6c63430008150033
Deployed Bytecode
0x608060405260043610610220575f3560e01c80638da5cb5b1161011e578063d34628cc116100a8578063e2f456051161006d578063e2f4560514610644578063f022a73714610659578063f2fde38b1461066d578063f8b45b051461068c578063ffb54a99146106a1575f80fd5b8063d34628cc146105be578063db1b7182146105dd578063dbb859c8146105fc578063dd62ed3e14610610578063dd8546521461062f575f80fd5b8063a9059cbb116100ee578063a9059cbb14610537578063afa4f3b214610556578063c024666814610575578063c8c8ebe414610594578063cf9522fd146105a9575f80fd5b80638da5cb5b146104c857806395d89b41146104e55780639a7a23d6146104f9578063a457c2d714610518575f80fd5b806339509351116101aa5780636ddd17131161016f5780636ddd17131461042457806370a0823114610442578063715018a6146104765780637571336a1461048a578063881dce60146104a9575f80fd5b80633950935114610350578063460731151461036f57806349bd5a5e146103835780634fbee193146103ba578063583e0568146103f1575f80fd5b806323b872dd116101f057806323b872dd146102c357806325519cf2146102e2578063311028af14610301578063313ce5671461031657806331c2d84714610331575f80fd5b806306fdde031461022b578063095ea7b31461025557806318160ddd146102845780631d865c30146102a2575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061023f6106ba565b60405161024c9190611e8c565b60405180910390f35b348015610260575f80fd5b5061027461026f366004611efb565b61074a565b604051901515815260200161024c565b34801561028f575f80fd5b506002545b60405190815260200161024c565b3480156102ad575f80fd5b506102c16102bc366004611f25565b610763565b005b3480156102ce575f80fd5b506102746102dd366004611f4e565b6107e7565b3480156102ed575f80fd5b506102c16102fc366004611f25565b61080a565b34801561030c575f80fd5b50610294600a5481565b348015610321575f80fd5b506040516012815260200161024c565b34801561033c575f80fd5b506102c161034b366004611fa0565b610884565b34801561035b575f80fd5b5061027461036a366004611efb565b6108f4565b34801561037a575f80fd5b506102c1610915565b34801561038e575f80fd5b506006546103a2906001600160a01b031681565b6040516001600160a01b03909116815260200161024c565b3480156103c5575f80fd5b506102746103d4366004612060565b6001600160a01b03165f9081526017602052604090205460ff1690565b3480156103fc575f80fd5b506103a27f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561042f575f80fd5b50600e5461027490610100900460ff1681565b34801561044d575f80fd5b5061029461045c366004612060565b6001600160a01b03165f9081526020819052604090205490565b348015610481575f80fd5b506102c1610932565b348015610495575f80fd5b506102c16104a436600461208f565b610945565b3480156104b4575f80fd5b506102c16104c33660046120c6565b610977565b3480156104d3575f80fd5b506005546001600160a01b03166103a2565b3480156104f0575f80fd5b5061023f610a14565b348015610504575f80fd5b506102c161051336600461208f565b610a23565b348015610523575f80fd5b50610274610532366004611efb565b610ab9565b348015610542575f80fd5b50610274610551366004611efb565b610b33565b348015610561575f80fd5b506102c16105703660046120c6565b610b40565b348015610580575f80fd5b506102c161058f36600461208f565b610b60565b34801561059f575f80fd5b50610294600b5481565b3480156105b4575f80fd5b5061029460165481565b3480156105c9575f80fd5b506102c16105d8366004611fa0565b610bc6565b3480156105e8575f80fd5b506102c16105f7366004612060565b610c33565b348015610607575f80fd5b506102c1610d72565b34801561061b575f80fd5b5061029461062a3660046120dd565b610dfc565b34801561063a575f80fd5b5061029460155481565b34801561064f575f80fd5b50610294600d5481565b348015610664575f80fd5b506102c1610e26565b348015610678575f80fd5b506102c1610687366004612060565b610e92565b348015610697575f80fd5b50610294600c5481565b3480156106ac575f80fd5b50600e546102749060ff1681565b6060600380546106c990612109565b80601f01602080910402602001604051908101604052809291908181526020018280546106f590612109565b80156107405780601f1061071757610100808354040283529160200191610740565b820191905f5260205f20905b81548152906001019060200180831161072357829003601f168201915b5050505050905090565b5f33610757818585610f08565b60019150505b92915050565b61076b61102b565b601283905560138290556014819055806107858385612155565b61078f9190612155565b6016819055601e10156107e25760405162461bcd60e51b8152602060048201526016602482015275466565732063616e6e6f74206578636565642033302560501b60448201526064015b60405180910390fd5b505050565b5f336107f4858285611085565b6107ff8585856110f7565b506001949350505050565b61081261102b565b600f839055601082905560118190558061082c8385612155565b6108369190612155565b6015819055601e10156107e25760405162461bcd60e51b8152602060048201526016602482015275466565732063616e6e6f74206578636565642033302560501b60448201526064016107d9565b61088c61102b565b5f5b81518110156108f0575f60095f8484815181106108ad576108ad612168565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055806108e88161217c565b91505061088e565b5050565b5f336107578185856109068383610dfc565b6109109190612155565b610f08565b61091d61102b565b5f61092760025490565b600b819055600c5550565b61093a61102b565b6109435f6116bd565b565b61094d61102b565b6001600160a01b03919091165f908152601860205260409020805460ff1916911515919091179055565b6008546001600160a01b0316331461098d575f80fd5b5f61099760025490565b305f9081526020819052604081205491925060646109b58585612194565b6109bf91906121ab565b905080821015610a055760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820746f6b656e7360781b60448201526064016107d9565b610a0e8161170e565b50505050565b6060600480546106c990612109565b610a2b61102b565b6006546001600160a01b0390811690831603610aaf5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016107d9565b6108f0828261187f565b5f3381610ac68286610dfc565b905083811015610b265760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107d9565b6107ff8286868403610f08565b5f336107578185856110f7565b610b4861102b565b610b5a81670de0b6b3a7640000612194565b600d5550565b610b6861102b565b6001600160a01b0382165f81815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610bce61102b565b5f5b81518110156108f057600160095f848481518110610bf057610bf0612168565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905580610c2b8161217c565b915050610bd0565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa158015610c77573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c9b91906121ca565b90505f8111610cec5760405162461bcd60e51b815260206004820152601860248201527f546f6b656e3a206e6f20746f6b656e7320746f206275726e000000000000000060448201526064016107d9565b6008546001600160a01b03163314610d02575f80fd5b60405163a9059cbb60e01b815261dead6004820152602481018290526001600160a01b0383169063a9059cbb906044016020604051808303815f875af1158015610d4e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107e291906121e1565b5f4711610dba5760405162461bcd60e51b81526020600482015260166024820152752a37b5b2b71d1037379022aa24103a379031b632b0b960511b60448201526064016107d9565b6008546001600160a01b03163314610dd0575f80fd5b60405133904780156108fc02915f818181858888f19350505050158015610df9573d5f803e3d5ffd5b50565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610e2e61102b565b600e5460ff1615610e815760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016107d9565b600e805461ffff1916610101179055565b610e9a61102b565b6001600160a01b038116610eff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d9565b610df9816116bd565b6001600160a01b038316610f6a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107d9565b6001600160a01b038216610fcb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107d9565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146109435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d9565b5f6110908484610dfc565b90505f198114610a0e57818110156110ea5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107d9565b610a0e8484848403610f08565b6001600160a01b03831661111d5760405162461bcd60e51b81526004016107d9906121fc565b6001600160a01b0382166111435760405162461bcd60e51b81526004016107d990612241565b805f03611155576107e283835f6118d2565b6005546001600160a01b0384811691161480159061118157506005546001600160a01b03838116911614155b801561119557506001600160a01b03821615155b80156111ac57506001600160a01b03821661dead14155b80156111c25750600854600160a01b900460ff16155b156114fa576001600160a01b0383165f9081526009602052604090205460ff1615801561120757506001600160a01b0382165f9081526009602052604090205460ff16155b61120f575f80fd5b600e5460ff1661129b576001600160a01b0383165f9081526017602052604090205460ff168061125657506001600160a01b0382165f9081526017602052604090205460ff165b61129b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107d9565b6001600160a01b0383165f9081526019602052604090205460ff1680156112da57506001600160a01b0382165f9081526018602052604090205460ff16155b156113bd57600b5481111561134f5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107d9565b600c546001600160a01b0383165f908152602081905260409020546113749083612155565b11156113b85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107d9565b6114fa565b6001600160a01b0382165f9081526019602052604090205460ff1680156113fc57506001600160a01b0383165f9081526018602052604090205460ff16155b1561147257600b548111156113b85760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016107d9565b6001600160a01b0382165f9081526018602052604090205460ff166114fa57600c546001600160a01b0383165f908152602081905260409020546114b69083612155565b11156114fa5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107d9565b305f90815260208190526040902054801580159081906115215750600e54610100900460ff165b80156115375750600854600160a01b900460ff16155b801561155b57506001600160a01b0385165f9081526019602052604090205460ff16155b801561157f57506001600160a01b0385165f9081526017602052604090205460ff16155b80156115a357506001600160a01b0384165f9081526017602052604090205460ff16155b156115d2576008805460ff60a01b1916600160a01b1790556115c4836119fa565b6008805460ff60a01b191690555b6008546001600160a01b0386165f9081526017602052604090205460ff600160a01b90920482161591168061161e57506001600160a01b0385165f9081526017602052604090205460ff165b1561162657505f5b5f81156116a9576001600160a01b0386165f9081526019602052604090205460ff161561166e5760646016548661165d9190612194565b61166791906121ab565b905061168b565b60646015548661167e9190612194565b61168891906121ab565b90505b801561169c5761169c8730836118d2565b6116a68186612284565b94505b6116b48787876118d2565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f60165460155461171f9190612155565b9050805f0361172c575050565b5f601254600f5461173d9190612155565b90505f6014546011546117509190612155565b90505f6002846117608588612194565b61176a91906121ab565b61177491906121ab565b90505f6117818287612284565b90504761178d82611a7e565b5f6117988247612284565b90505f6117a66002886121ab565b6117b09089612284565b90505f6002826117c08a86612194565b6117ca91906121ab565b6117d491906121ab565b90505f826117e28986612194565b6117ec91906121ab565b90505f826117fa8387612284565b6118049190612284565b90508115611845576008546040516001600160a01b039091169083156108fc029084905f818181858888f19350505050158015611843573d5f803e3d5ffd5b505b80156118545761185481611c34565b5f8311801561186257505f88115b15611871576118718884611da9565b505050505050505050505050565b6001600160a01b0382165f81815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166118f85760405162461bcd60e51b81526004016107d9906121fc565b6001600160a01b03821661191e5760405162461bcd60e51b81526004016107d990612241565b6001600160a01b0383165f90815260208190526040902054818110156119955760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107d9565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a0e565b305f9081526020819052604081205490818103611a1657505050565b5f82118015611a265750600d5482105b15611a32575080611a75565b5f606460165485611a439190612194565b611a4d91906121ab565b9050611a598185612284565b9350600d54841115611a6f57600d549150611a73565b8391505b505b6107e28161170e565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611ab157611ab1612168565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b2d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b519190612297565b81600181518110611b6457611b64612168565b60200260200101906001600160a01b031690816001600160a01b031681525050611baf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f08565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611c039085905f908690309042906004016122f4565b5f604051808303815f87803b158015611c1a575f80fd5b505af1158015611c2c573d5f803e3d5ffd5b505050505050565b6040805160028082526060820183525f926020830190803683370190505090507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cb0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cd49190612297565b815f81518110611ce657611ce6612168565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110611d1a57611d1a612168565b6001600160a01b03928316602091820292909201015260405163b6f9de9560e01b81527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063b6f9de95908490611d80905f90869061dead90429060040161232f565b5f604051808303818588803b158015611d97575f80fd5b505af11580156116b4573d5f803e3d5ffd5b611dd4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f08565b60075460405163f305d71960e01b8152306004820152602481018490525f6044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015611e60573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611e859190612363565b5050505050565b5f6020808352835180828501525f5b81811015611eb757858101830151858201604001528201611e9b565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610df9575f80fd5b8035611ef681611ed7565b919050565b5f8060408385031215611f0c575f80fd5b8235611f1781611ed7565b946020939093013593505050565b5f805f60608486031215611f37575f80fd5b505081359360208301359350604090920135919050565b5f805f60608486031215611f60575f80fd5b8335611f6b81611ed7565b92506020840135611f7b81611ed7565b929592945050506040919091013590565b634e487b7160e01b5f52604160045260245ffd5b5f6020808385031215611fb1575f80fd5b823567ffffffffffffffff80821115611fc8575f80fd5b818501915085601f830112611fdb575f80fd5b813581811115611fed57611fed611f8c565b8060051b604051601f19603f8301168101818110858211171561201257612012611f8c565b60405291825284820192508381018501918883111561202f575f80fd5b938501935b828510156120545761204585611eeb565b84529385019392850192612034565b98975050505050505050565b5f60208284031215612070575f80fd5b813561207b81611ed7565b9392505050565b8015158114610df9575f80fd5b5f80604083850312156120a0575f80fd5b82356120ab81611ed7565b915060208301356120bb81612082565b809150509250929050565b5f602082840312156120d6575f80fd5b5035919050565b5f80604083850312156120ee575f80fd5b82356120f981611ed7565b915060208301356120bb81611ed7565b600181811c9082168061211d57607f821691505b60208210810361213b57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561075d5761075d612141565b634e487b7160e01b5f52603260045260245ffd5b5f6001820161218d5761218d612141565b5060010190565b808202811582820484141761075d5761075d612141565b5f826121c557634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156121da575f80fd5b5051919050565b5f602082840312156121f1575f80fd5b815161207b81612082565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561075d5761075d612141565b5f602082840312156122a7575f80fd5b815161207b81611ed7565b5f8151808452602080850194508084015f5b838110156122e95781516001600160a01b0316875295820195908201906001016122c4565b509495945050505050565b85815284602082015260a060408201525f61231260a08301866122b2565b6001600160a01b0394909416606083015250608001529392505050565b848152608060208201525f61234760808301866122b2565b6001600160a01b03949094166040830152506060015292915050565b5f805f60608486031215612375575f80fd5b835192506020840151915060408401519050925092509256fea2646970667358221220853badef9c0ae33ff682d597fd6bb3922f34b5ca67cf45e6fe2ddf32e59689e164736f6c63430008150033
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.