ERC-20
Overview
Max Total Supply
1,000,000,000 IJ
Holders
75
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
13,204,282.094777854737470374 IJValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
InsideJob
Compiler Version
v0.8.26+commit.8a97fa7a
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// https://t.me/insidejobeth // https://x.com/InsideJobDJT // https://www.insidejob.exposed/ // SPDX-License-Identifier: MIT pragma solidity =0.8.26; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } interface IUniswapV2Router02 is IUniswapV2Router01 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } 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); } contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) _balances; mapping(address => mapping(address => uint256)) _allowances; uint256 _totalSupply; string _name; string _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { require(_allowances[sender][msg.sender] >= amount, "ERC20: transfer amount exceeds allowance"); _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender] - 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 tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address 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"); 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); } /** * @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"); 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); } /** * @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); } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract InsideJob is ERC20, Ownable { IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); address public deployer; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public swapEnabled = true; uint256 public buyTotalFees; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForLiquidity; uint256 public tokensForDev; bool private tradingActive; uint256 private launchBlock; bool private swapping; /******************/ // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; // exlcude from fees and max transaction amount mapping (address => bool) _isExcludedFromFees; mapping (address => bool) _isExcludedMaxTransactionAmount; event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("Inside Job", "IJ") { _totalSupply = 1_000_000_000 * 1e18; maxTransactionAmount = _totalSupply * 2 / 100; // 2% maxTransactionAmountTxn maxWallet = _totalSupply * 2 / 100; // 2% maxWallet swapTokensAtAmount = _totalSupply * 1 / 1000; // 0.1% swap wallet uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 30; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 30; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyLiquidityFee + buyDevFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellLiquidityFee + sellDevFee; deployer = address(_msgSender()); // set as deployer devWallet = address(_msgSender()); // set as dev wallet IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); excludeFromMaxTransaction(address(uniswapV2Pair), true); // exclude from paying fees or having max transaction amount excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromFees(devWallet, true); excludeFromFees(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); _balances[deployer] = _totalSupply; emit Transfer(address(0), deployer, _totalSupply); } receive() external payable {} // remove limits after token is stable function removeLimits() external onlyOwner returns (bool){ maxWallet = totalSupply(); return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){ require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply."); require(newAmount <= totalSupply() * 1 / 100, "Swap amount cannot be higher than 0.5% total supply."); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require(newNum >= totalSupply() / 100, "Cannot set maxTransactionAmount lower than 1%"); maxTransactionAmount = newNum; } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require(newNum >= totalSupply() * 2 / 100, "Cannot set maxWallet lower than 2%"); maxWallet = newNum; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner{ swapEnabled = enabled; } function openTrading() external onlyOwner { tradingActive = true; } function updateBuyFees(uint256 _liquidityFee, uint256 _devFee) external onlyOwner { buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyLiquidityFee + buyDevFee; require(buyTotalFees <= 35, "Must keep fees at 35% or less"); } function updateSellFees(uint256 _liquidityFee, uint256 _devFee) external onlyOwner { sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellLiquidityFee + sellDevFee; require(sellTotalFees <= 35, "Must keep fees at 35% or less"); } 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 _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 ( !swapping && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ){ if(!tradingActive){ require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } //when buy if (automatedMarketMakerPairs[from]) { require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount."); require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } else if (automatedMarketMakerPairs[to]) { require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount."); require(maxTransactionAmount < totalSupply(), "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 = swappable(contractTokenBalance); 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 buy if (automatedMarketMakerPairs[to] && sellTotalFees > 0){ fees = amount * sellTotalFees / 100; tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees; tokensForDev += fees * sellDevFee / sellTotalFees; } // on sell else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount * buyTotalFees / 100; tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees; tokensForDev += fees * buyDevFee / buyTotalFees; } if(fees > 0){ super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swappable(uint256 contractTokenBalance) private view returns (bool) { return contractTokenBalance >= swapTokensAtAmount; } function swapTokensForEth(uint256 tokenAmount) private { // 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 ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // 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 deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForDev; bool success; if(contractBalance == 0 || totalTokensToSwap == 0) {return;} if(contractBalance > swapTokensAtAmount * 22){ contractBalance = swapTokensAtAmount * 22; } // 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 ethForDev = ethBalance * tokensForDev / totalTokensToSwap; uint256 ethForLiquidity = ethBalance - ethForDev; tokensForLiquidity = 0; tokensForDev = 0; (success,) = address(devWallet).call{value: ethForDev}(""); if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
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":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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","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":"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":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","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":"sellDevFee","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":"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":[],"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":"tokensForDev","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","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":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600b805461ffff191661010117905534801561001e575f80fd5b506040518060400160405280600a81526020016924b739b4b232902537b160b11b8152506040518060400160405280600281526020016124a560f11b815250816003908161006c9190610610565b5060046100798282610610565b5050505f61008b61040660201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250905f907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506b033b2e3c9fd0803ce800000060028181556064916100f6916106de565b61010091906106fb565b6008556002805460649161011491906106de565b61011e91906106fb565b600a556002546103e8906101339060016106de565b61013d91906106fb565b6009555f600d819055601e600e8190558181610159818361071a565b600c5560108290556011819055610170818361071a565b600f5560068054336001600160a01b03199182168117909255600780549091169091179055737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526101ba81600161040a565b806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101f6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061021a919061072d565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610265573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610289919061072d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156102d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102f7919061072d565b6001600160a01b031660a0819052610310906001610480565b60a05161031e90600161040a565b6103293060016104d3565b61033661dead60016104d3565b60075461034d906001600160a01b031660016104d3565b61036c737a250d5630b4cf539739df2c5dacb4c659f2488d60016104d3565b6103886103816005546001600160a01b031690565b600161040a565b61039330600161040a565b6103a061dead600161040a565b600254600680546001600160a01b039081165f9081526020818152604080832086905593549351948552929091169290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050505061075a565b3390565b6005546001600160a01b031633146104565760405162461bcd60e51b815260206004820181905260248201525f80516020612a8d83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b0316331461051a5760405162461bcd60e51b815260206004820181905260248201525f80516020612a8d833981519152604482015260640161044d565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806105a057607f821691505b6020821081036105be57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561060b57805f5260205f20601f840160051c810160208510156105e95750805b601f840160051c820191505b81811015610608575f81556001016105f5565b50505b505050565b81516001600160401b0381111561062957610629610578565b61063d81610637845461058c565b846105c4565b6020601f82116001811461066f575f83156106585750848201515b5f19600385901b1c1916600184901b178455610608565b5f84815260208120601f198516915b8281101561069e578785015182556020948501946001909201910161067e565b50848210156106bb57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176106f5576106f56106ca565b92915050565b5f8261071557634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156106f5576106f56106ca565b5f6020828403121561073d575f80fd5b81516001600160a01b0381168114610753575f80fd5b9392505050565b60805160a0516122e86107a55f395f818161040e0152610cc001525f818161030301528181611c4f01528181611d0601528181611d4201528181611db60152611e1201526122e85ff3fe60806040526004361061026d575f3560e01c80638ea5220f1161014a578063c18bc195116100be578063dd62ed3e11610078578063dd62ed3e14610740578063e2f456051461075f578063f11a24d314610774578063f2fde38b14610789578063f6374342146107a8578063f8b45b05146107bd575f80fd5b8063c18bc195146106a5578063c8c8ebe4146106c4578063c9567bf9146106d9578063d257b34f146106ed578063d5f394881461070c578063d85ba0631461072b575f80fd5b80639fccce321161010f5780639fccce32146105f0578063a0d82dc514610605578063a457c2d71461061a578063a9059cbb14610639578063b62496f514610658578063c024666814610686575f80fd5b80638ea5220f1461056a578063924de9b71461058957806395d89b41146105a85780639a7a23d6146105bc5780639c3b4fdc146105db575f80fd5b806349bd5a5e116101e15780636ddd1713116101a65780636ddd1713146104b457806370a08231146104d2578063715018a614610506578063751039fc1461051a5780637571336a1461052e5780638da5cb5b1461054d575f80fd5b806349bd5a5e146103fd5780634a62bb65146104305780634fbee1931461044957806366ca9b83146104805780636a486a8e1461049f575f80fd5b80631a8145bb116102325780631a8145bb1461035b578063203e727e1461037057806323b872dd1461038f57806327c8f835146103ae578063313ce567146103c357806339509351146103de575f80fd5b806302dbd8f81461027857806306fdde0314610299578063095ea7b3146102c35780631694505e146102f257806318160ddd1461033d575f80fd5b3661027457005b5f80fd5b348015610283575f80fd5b50610297610292366004611e8e565b6107d2565b005b3480156102a4575f80fd5b506102ad610872565b6040516102ba9190611eae565b60405180910390f35b3480156102ce575f80fd5b506102e26102dd366004611efa565b610902565b60405190151581526020016102ba565b3480156102fd575f80fd5b506103257f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102ba565b348015610348575f80fd5b506002545b6040519081526020016102ba565b348015610366575f80fd5b5061034d60125481565b34801561037b575f80fd5b5061029761038a366004611f24565b610918565b34801561039a575f80fd5b506102e26103a9366004611f3b565b6109c1565b3480156103b9575f80fd5b5061032561dead81565b3480156103ce575f80fd5b50604051601281526020016102ba565b3480156103e9575f80fd5b506102e26103f8366004611efa565b610a93565b348015610408575f80fd5b506103257f000000000000000000000000000000000000000000000000000000000000000081565b34801561043b575f80fd5b50600b546102e29060ff1681565b348015610454575f80fd5b506102e2610463366004611f79565b6001600160a01b03165f9081526018602052604090205460ff1690565b34801561048b575f80fd5b5061029761049a366004611e8e565b610aaf565b3480156104aa575f80fd5b5061034d600f5481565b3480156104bf575f80fd5b50600b546102e290610100900460ff1681565b3480156104dd575f80fd5b5061034d6104ec366004611f79565b6001600160a01b03165f9081526020819052604090205490565b348015610511575f80fd5b50610297610b42565b348015610525575f80fd5b506102e2610bb5565b348015610539575f80fd5b50610297610548366004611faa565b610bed565b348015610558575f80fd5b506005546001600160a01b0316610325565b348015610575575f80fd5b50600754610325906001600160a01b031681565b348015610594575f80fd5b506102976105a3366004611fdd565b610c41565b3480156105b3575f80fd5b506102ad610c85565b3480156105c7575f80fd5b506102976105d6366004611faa565b610c94565b3480156105e6575f80fd5b5061034d600e5481565b3480156105fb575f80fd5b5061034d60135481565b348015610610575f80fd5b5061034d60115481565b348015610625575f80fd5b506102e2610634366004611efa565b610d6f565b348015610644575f80fd5b506102e2610653366004611efa565b610df4565b348015610663575f80fd5b506102e2610672366004611f79565b60176020525f908152604090205460ff1681565b348015610691575f80fd5b506102976106a0366004611faa565b610e00565b3480156106b0575f80fd5b506102976106bf366004611f24565b610e88565b3480156106cf575f80fd5b5061034d60085481565b3480156106e4575f80fd5b50610297610f31565b3480156106f8575f80fd5b506102e2610707366004611f24565b610f6a565b348015610717575f80fd5b50600654610325906001600160a01b031681565b348015610736575f80fd5b5061034d600c5481565b34801561074b575f80fd5b5061034d61075a366004611ff6565b6110bf565b34801561076a575f80fd5b5061034d60095481565b34801561077f575f80fd5b5061034d600d5481565b348015610794575f80fd5b506102976107a3366004611f79565b6110e9565b3480156107b3575f80fd5b5061034d60105481565b3480156107c8575f80fd5b5061034d600a5481565b6005546001600160a01b031633146108055760405162461bcd60e51b81526004016107fc9061202d565b60405180910390fd5b601082905560118190556108198183612076565b600f8190556023101561086e5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333525206f72206c65737300000060448201526064016107fc565b5050565b60606003805461088190612089565b80601f01602080910402602001604051908101604052809291908181526020018280546108ad90612089565b80156108f85780601f106108cf576101008083540402835291602001916108f8565b820191905f5260205f20905b8154815290600101906020018083116108db57829003601f168201915b5050505050905090565b5f61090e3384846111d3565b5060015b92915050565b6005546001600160a01b031633146109425760405162461bcd60e51b81526004016107fc9061202d565b606461094d60025490565b61095791906120c1565b8110156109bc5760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526c6c6f776572207468616e20312560981b60648201526084016107fc565b600855565b6001600160a01b0383165f908152600160209081526040808320338452909152812054821115610a445760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107fc565b610a4f8484846112f6565b6001600160a01b0384165f90815260016020908152604080832033808552925290912054610a89918691610a849086906120e0565b6111d3565b5060019392505050565b5f33610a89818585610aa583836110bf565b610a849190612076565b6005546001600160a01b03163314610ad95760405162461bcd60e51b81526004016107fc9061202d565b600d829055600e819055610aed8183612076565b600c8190556023101561086e5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333525206f72206c65737300000060448201526064016107fc565b6005546001600160a01b03163314610b6c5760405162461bcd60e51b81526004016107fc9061202d565b6005546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005545f906001600160a01b03163314610be15760405162461bcd60e51b81526004016107fc9061202d565b600254600a5550600190565b6005546001600160a01b03163314610c175760405162461bcd60e51b81526004016107fc9061202d565b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c6b5760405162461bcd60e51b81526004016107fc9061202d565b600b80549115156101000261ff0019909216919091179055565b60606004805461088190612089565b6005546001600160a01b03163314610cbe5760405162461bcd60e51b81526004016107fc9061202d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610d655760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016107fc565b61086e82826118e0565b5f3381610d7c82866110bf565b905083811015610ddc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107fc565b610de982868684036111d3565b506001949350505050565b5f61090e3384846112f6565b6005546001600160a01b03163314610e2a5760405162461bcd60e51b81526004016107fc9061202d565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610eb25760405162461bcd60e51b81526004016107fc9061202d565b6064610ebd60025490565b610ec89060026120f3565b610ed291906120c1565b811015610f2c5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261322560f01b60648201526084016107fc565b600a55565b6005546001600160a01b03163314610f5b5760405162461bcd60e51b81526004016107fc9061202d565b6014805460ff19166001179055565b6005545f906001600160a01b03163314610f965760405162461bcd60e51b81526004016107fc9061202d565b620186a0610fa360025490565b610fae9060016120f3565b610fb891906120c1565b8210156110255760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107fc565b606461103060025490565b61103b9060016120f3565b61104591906120c1565b8211156110b15760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107fc565b50600981905560015b919050565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146111135760405162461bcd60e51b81526004016107fc9061202d565b6001600160a01b0381166111785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107fc565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166112355760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107fc565b6001600160a01b0382166112965760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107fc565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661131c5760405162461bcd60e51b81526004016107fc9061210a565b6001600160a01b0382166113425760405162461bcd60e51b81526004016107fc9061214f565b805f036113595761135483835f611933565b505050565b600b5460ff161561162f5760165460ff1615801561138f57506001600160a01b0383165f9081526018602052604090205460ff16155b80156113b357506001600160a01b0382165f9081526018602052604090205460ff16155b1561162f5760145460ff16611444576001600160a01b0383165f9081526018602052604090205460ff16806113ff57506001600160a01b0382165f9081526018602052604090205460ff165b6114445760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107fc565b6001600160a01b0383165f9081526017602052604090205460ff1615611542576008548111156114d45760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107fc565b600a546001600160a01b0383165f908152602081905260409020546114f99083612076565b111561153d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107fc565b61162f565b6001600160a01b0382165f9081526017602052604090205460ff16156115a7576008548111156115845760405162461bcd60e51b81526004016107fc90612192565b6002546008541061153d5760405162461bcd60e51b81526004016107fc90612192565b6001600160a01b0382165f9081526019602052604090205460ff1661162f57600a546001600160a01b0383165f908152602081905260409020546115eb9083612076565b111561162f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107fc565b305f9081526020819052604081205490505f61164d82600954111590565b90508080156116635750600b54610100900460ff165b8015611672575060165460ff16155b801561169657506001600160a01b0385165f9081526017602052604090205460ff16155b80156116ba57506001600160a01b0385165f9081526018602052604090205460ff16155b80156116de57506001600160a01b0384165f9081526018602052604090205460ff16155b15611703576016805460ff191660011790556116f8611a5c565b6016805460ff191690555b6016546001600160a01b0386165f9081526018602052604090205460ff9182161591168061174857506001600160a01b0385165f9081526018602052604090205460ff165b1561175057505f5b5f81156118cc576001600160a01b0386165f9081526017602052604090205460ff16801561177f57505f600f54115b15611805576064600f548661179491906120f3565b61179e91906120c1565b9050600f54601054826117b191906120f3565b6117bb91906120c1565b60125f8282546117cb9190612076565b9091555050600f546011546117e090836120f3565b6117ea91906120c1565b60135f8282546117fa9190612076565b909155506118ae9050565b6001600160a01b0387165f9081526017602052604090205460ff16801561182d57505f600c54115b156118ae576064600c548661184291906120f3565b61184c91906120c1565b9050600c54600d548261185f91906120f3565b61186991906120c1565b60125f8282546118799190612076565b9091555050600c54600e5461188e90836120f3565b61189891906120c1565b60135f8282546118a89190612076565b90915550505b80156118bf576118bf873083611933565b6118c981866120e0565b94505b6118d7878787611933565b50505050505050565b6001600160a01b0382165f81815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166119595760405162461bcd60e51b81526004016107fc9061210a565b6001600160a01b03821661197f5760405162461bcd60e51b81526004016107fc9061214f565b6001600160a01b0383165f90815260208190526040902054818110156119f65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107fc565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b305f9081526020819052604081205490505f601354601254611a7e9190612076565b90505f821580611a8c575081155b15611a9657505050565b600954611aa49060166120f3565b831115611abc57600954611ab99060166120f3565b92505b5f60028360125486611ace91906120f3565b611ad891906120c1565b611ae291906120c1565b90505f611aef82866120e0565b905047611afb82611bfa565b5f611b0682476120e0565b90505f8660135483611b1891906120f3565b611b2291906120c1565b90505f611b2f82846120e0565b5f601281905560138190556007546040519293506001600160a01b031691849181818185875af1925050503d805f8114611b84576040519150601f19603f3d011682016040523d82523d5f602084013e611b89565b606091505b50909750508515801590611b9c57505f81115b15611bef57611bab8682611db0565b601254604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611c2d57611c2d6121e8565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ca9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ccd91906121fc565b81600181518110611ce057611ce06121e8565b60200260200101906001600160a01b031690816001600160a01b031681525050611d2b307f0000000000000000000000000000000000000000000000000000000000000000846111d3565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611d7f9085905f90869030904290600401612217565b5f604051808303815f87803b158015611d96575f80fd5b505af1158015611da8573d5f803e3d5ffd5b505050505050565b611ddb307f0000000000000000000000000000000000000000000000000000000000000000846111d3565b60405163f305d71960e01b8152306004820152602481018390525f60448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611e62573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611e879190612287565b5050505050565b5f8060408385031215611e9f575f80fd5b50508035926020909101359150565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114611ef7575f80fd5b50565b5f8060408385031215611f0b575f80fd5b8235611f1681611ee3565b946020939093013593505050565b5f60208284031215611f34575f80fd5b5035919050565b5f805f60608486031215611f4d575f80fd5b8335611f5881611ee3565b92506020840135611f6881611ee3565b929592945050506040919091013590565b5f60208284031215611f89575f80fd5b8135611f9481611ee3565b9392505050565b803580151581146110ba575f80fd5b5f8060408385031215611fbb575f80fd5b8235611fc681611ee3565b9150611fd460208401611f9b565b90509250929050565b5f60208284031215611fed575f80fd5b611f9482611f9b565b5f8060408385031215612007575f80fd5b823561201281611ee3565b9150602083013561202281611ee3565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561091257610912612062565b600181811c9082168061209d57607f821691505b6020821081036120bb57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f826120db57634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561091257610912612062565b808202811582820484141761091257610912612062565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526036908201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656040820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606082015260800190565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561220c575f80fd5b8151611f9481611ee3565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156122675783516001600160a01b0316835260209384019390920191600101612240565b50506001600160a01b039590951660608401525050608001529392505050565b5f805f60608486031215612299575f80fd5b505081516020830151604090930151909492935091905056fea2646970667358221220e4a44ea41296cdeed8b21b9000c9e67af458cd744d2c70a3604542de1242486464736f6c634300081a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x60806040526004361061026d575f3560e01c80638ea5220f1161014a578063c18bc195116100be578063dd62ed3e11610078578063dd62ed3e14610740578063e2f456051461075f578063f11a24d314610774578063f2fde38b14610789578063f6374342146107a8578063f8b45b05146107bd575f80fd5b8063c18bc195146106a5578063c8c8ebe4146106c4578063c9567bf9146106d9578063d257b34f146106ed578063d5f394881461070c578063d85ba0631461072b575f80fd5b80639fccce321161010f5780639fccce32146105f0578063a0d82dc514610605578063a457c2d71461061a578063a9059cbb14610639578063b62496f514610658578063c024666814610686575f80fd5b80638ea5220f1461056a578063924de9b71461058957806395d89b41146105a85780639a7a23d6146105bc5780639c3b4fdc146105db575f80fd5b806349bd5a5e116101e15780636ddd1713116101a65780636ddd1713146104b457806370a08231146104d2578063715018a614610506578063751039fc1461051a5780637571336a1461052e5780638da5cb5b1461054d575f80fd5b806349bd5a5e146103fd5780634a62bb65146104305780634fbee1931461044957806366ca9b83146104805780636a486a8e1461049f575f80fd5b80631a8145bb116102325780631a8145bb1461035b578063203e727e1461037057806323b872dd1461038f57806327c8f835146103ae578063313ce567146103c357806339509351146103de575f80fd5b806302dbd8f81461027857806306fdde0314610299578063095ea7b3146102c35780631694505e146102f257806318160ddd1461033d575f80fd5b3661027457005b5f80fd5b348015610283575f80fd5b50610297610292366004611e8e565b6107d2565b005b3480156102a4575f80fd5b506102ad610872565b6040516102ba9190611eae565b60405180910390f35b3480156102ce575f80fd5b506102e26102dd366004611efa565b610902565b60405190151581526020016102ba565b3480156102fd575f80fd5b506103257f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102ba565b348015610348575f80fd5b506002545b6040519081526020016102ba565b348015610366575f80fd5b5061034d60125481565b34801561037b575f80fd5b5061029761038a366004611f24565b610918565b34801561039a575f80fd5b506102e26103a9366004611f3b565b6109c1565b3480156103b9575f80fd5b5061032561dead81565b3480156103ce575f80fd5b50604051601281526020016102ba565b3480156103e9575f80fd5b506102e26103f8366004611efa565b610a93565b348015610408575f80fd5b506103257f00000000000000000000000037aa0e77b867ee18c5a55e9b2741259e55fc703781565b34801561043b575f80fd5b50600b546102e29060ff1681565b348015610454575f80fd5b506102e2610463366004611f79565b6001600160a01b03165f9081526018602052604090205460ff1690565b34801561048b575f80fd5b5061029761049a366004611e8e565b610aaf565b3480156104aa575f80fd5b5061034d600f5481565b3480156104bf575f80fd5b50600b546102e290610100900460ff1681565b3480156104dd575f80fd5b5061034d6104ec366004611f79565b6001600160a01b03165f9081526020819052604090205490565b348015610511575f80fd5b50610297610b42565b348015610525575f80fd5b506102e2610bb5565b348015610539575f80fd5b50610297610548366004611faa565b610bed565b348015610558575f80fd5b506005546001600160a01b0316610325565b348015610575575f80fd5b50600754610325906001600160a01b031681565b348015610594575f80fd5b506102976105a3366004611fdd565b610c41565b3480156105b3575f80fd5b506102ad610c85565b3480156105c7575f80fd5b506102976105d6366004611faa565b610c94565b3480156105e6575f80fd5b5061034d600e5481565b3480156105fb575f80fd5b5061034d60135481565b348015610610575f80fd5b5061034d60115481565b348015610625575f80fd5b506102e2610634366004611efa565b610d6f565b348015610644575f80fd5b506102e2610653366004611efa565b610df4565b348015610663575f80fd5b506102e2610672366004611f79565b60176020525f908152604090205460ff1681565b348015610691575f80fd5b506102976106a0366004611faa565b610e00565b3480156106b0575f80fd5b506102976106bf366004611f24565b610e88565b3480156106cf575f80fd5b5061034d60085481565b3480156106e4575f80fd5b50610297610f31565b3480156106f8575f80fd5b506102e2610707366004611f24565b610f6a565b348015610717575f80fd5b50600654610325906001600160a01b031681565b348015610736575f80fd5b5061034d600c5481565b34801561074b575f80fd5b5061034d61075a366004611ff6565b6110bf565b34801561076a575f80fd5b5061034d60095481565b34801561077f575f80fd5b5061034d600d5481565b348015610794575f80fd5b506102976107a3366004611f79565b6110e9565b3480156107b3575f80fd5b5061034d60105481565b3480156107c8575f80fd5b5061034d600a5481565b6005546001600160a01b031633146108055760405162461bcd60e51b81526004016107fc9061202d565b60405180910390fd5b601082905560118190556108198183612076565b600f8190556023101561086e5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333525206f72206c65737300000060448201526064016107fc565b5050565b60606003805461088190612089565b80601f01602080910402602001604051908101604052809291908181526020018280546108ad90612089565b80156108f85780601f106108cf576101008083540402835291602001916108f8565b820191905f5260205f20905b8154815290600101906020018083116108db57829003601f168201915b5050505050905090565b5f61090e3384846111d3565b5060015b92915050565b6005546001600160a01b031633146109425760405162461bcd60e51b81526004016107fc9061202d565b606461094d60025490565b61095791906120c1565b8110156109bc5760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526c6c6f776572207468616e20312560981b60648201526084016107fc565b600855565b6001600160a01b0383165f908152600160209081526040808320338452909152812054821115610a445760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107fc565b610a4f8484846112f6565b6001600160a01b0384165f90815260016020908152604080832033808552925290912054610a89918691610a849086906120e0565b6111d3565b5060019392505050565b5f33610a89818585610aa583836110bf565b610a849190612076565b6005546001600160a01b03163314610ad95760405162461bcd60e51b81526004016107fc9061202d565b600d829055600e819055610aed8183612076565b600c8190556023101561086e5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333525206f72206c65737300000060448201526064016107fc565b6005546001600160a01b03163314610b6c5760405162461bcd60e51b81526004016107fc9061202d565b6005546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005545f906001600160a01b03163314610be15760405162461bcd60e51b81526004016107fc9061202d565b600254600a5550600190565b6005546001600160a01b03163314610c175760405162461bcd60e51b81526004016107fc9061202d565b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c6b5760405162461bcd60e51b81526004016107fc9061202d565b600b80549115156101000261ff0019909216919091179055565b60606004805461088190612089565b6005546001600160a01b03163314610cbe5760405162461bcd60e51b81526004016107fc9061202d565b7f00000000000000000000000037aa0e77b867ee18c5a55e9b2741259e55fc70376001600160a01b0316826001600160a01b031603610d655760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016107fc565b61086e82826118e0565b5f3381610d7c82866110bf565b905083811015610ddc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107fc565b610de982868684036111d3565b506001949350505050565b5f61090e3384846112f6565b6005546001600160a01b03163314610e2a5760405162461bcd60e51b81526004016107fc9061202d565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610eb25760405162461bcd60e51b81526004016107fc9061202d565b6064610ebd60025490565b610ec89060026120f3565b610ed291906120c1565b811015610f2c5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261322560f01b60648201526084016107fc565b600a55565b6005546001600160a01b03163314610f5b5760405162461bcd60e51b81526004016107fc9061202d565b6014805460ff19166001179055565b6005545f906001600160a01b03163314610f965760405162461bcd60e51b81526004016107fc9061202d565b620186a0610fa360025490565b610fae9060016120f3565b610fb891906120c1565b8210156110255760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107fc565b606461103060025490565b61103b9060016120f3565b61104591906120c1565b8211156110b15760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107fc565b50600981905560015b919050565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146111135760405162461bcd60e51b81526004016107fc9061202d565b6001600160a01b0381166111785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107fc565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166112355760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107fc565b6001600160a01b0382166112965760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107fc565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661131c5760405162461bcd60e51b81526004016107fc9061210a565b6001600160a01b0382166113425760405162461bcd60e51b81526004016107fc9061214f565b805f036113595761135483835f611933565b505050565b600b5460ff161561162f5760165460ff1615801561138f57506001600160a01b0383165f9081526018602052604090205460ff16155b80156113b357506001600160a01b0382165f9081526018602052604090205460ff16155b1561162f5760145460ff16611444576001600160a01b0383165f9081526018602052604090205460ff16806113ff57506001600160a01b0382165f9081526018602052604090205460ff165b6114445760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107fc565b6001600160a01b0383165f9081526017602052604090205460ff1615611542576008548111156114d45760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107fc565b600a546001600160a01b0383165f908152602081905260409020546114f99083612076565b111561153d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107fc565b61162f565b6001600160a01b0382165f9081526017602052604090205460ff16156115a7576008548111156115845760405162461bcd60e51b81526004016107fc90612192565b6002546008541061153d5760405162461bcd60e51b81526004016107fc90612192565b6001600160a01b0382165f9081526019602052604090205460ff1661162f57600a546001600160a01b0383165f908152602081905260409020546115eb9083612076565b111561162f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107fc565b305f9081526020819052604081205490505f61164d82600954111590565b90508080156116635750600b54610100900460ff165b8015611672575060165460ff16155b801561169657506001600160a01b0385165f9081526017602052604090205460ff16155b80156116ba57506001600160a01b0385165f9081526018602052604090205460ff16155b80156116de57506001600160a01b0384165f9081526018602052604090205460ff16155b15611703576016805460ff191660011790556116f8611a5c565b6016805460ff191690555b6016546001600160a01b0386165f9081526018602052604090205460ff9182161591168061174857506001600160a01b0385165f9081526018602052604090205460ff165b1561175057505f5b5f81156118cc576001600160a01b0386165f9081526017602052604090205460ff16801561177f57505f600f54115b15611805576064600f548661179491906120f3565b61179e91906120c1565b9050600f54601054826117b191906120f3565b6117bb91906120c1565b60125f8282546117cb9190612076565b9091555050600f546011546117e090836120f3565b6117ea91906120c1565b60135f8282546117fa9190612076565b909155506118ae9050565b6001600160a01b0387165f9081526017602052604090205460ff16801561182d57505f600c54115b156118ae576064600c548661184291906120f3565b61184c91906120c1565b9050600c54600d548261185f91906120f3565b61186991906120c1565b60125f8282546118799190612076565b9091555050600c54600e5461188e90836120f3565b61189891906120c1565b60135f8282546118a89190612076565b90915550505b80156118bf576118bf873083611933565b6118c981866120e0565b94505b6118d7878787611933565b50505050505050565b6001600160a01b0382165f81815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166119595760405162461bcd60e51b81526004016107fc9061210a565b6001600160a01b03821661197f5760405162461bcd60e51b81526004016107fc9061214f565b6001600160a01b0383165f90815260208190526040902054818110156119f65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107fc565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b305f9081526020819052604081205490505f601354601254611a7e9190612076565b90505f821580611a8c575081155b15611a9657505050565b600954611aa49060166120f3565b831115611abc57600954611ab99060166120f3565b92505b5f60028360125486611ace91906120f3565b611ad891906120c1565b611ae291906120c1565b90505f611aef82866120e0565b905047611afb82611bfa565b5f611b0682476120e0565b90505f8660135483611b1891906120f3565b611b2291906120c1565b90505f611b2f82846120e0565b5f601281905560138190556007546040519293506001600160a01b031691849181818185875af1925050503d805f8114611b84576040519150601f19603f3d011682016040523d82523d5f602084013e611b89565b606091505b50909750508515801590611b9c57505f81115b15611bef57611bab8682611db0565b601254604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611c2d57611c2d6121e8565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ca9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ccd91906121fc565b81600181518110611ce057611ce06121e8565b60200260200101906001600160a01b031690816001600160a01b031681525050611d2b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846111d3565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611d7f9085905f90869030904290600401612217565b5f604051808303815f87803b158015611d96575f80fd5b505af1158015611da8573d5f803e3d5ffd5b505050505050565b611ddb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846111d3565b60405163f305d71960e01b8152306004820152602481018390525f60448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611e62573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611e879190612287565b5050505050565b5f8060408385031215611e9f575f80fd5b50508035926020909101359150565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114611ef7575f80fd5b50565b5f8060408385031215611f0b575f80fd5b8235611f1681611ee3565b946020939093013593505050565b5f60208284031215611f34575f80fd5b5035919050565b5f805f60608486031215611f4d575f80fd5b8335611f5881611ee3565b92506020840135611f6881611ee3565b929592945050506040919091013590565b5f60208284031215611f89575f80fd5b8135611f9481611ee3565b9392505050565b803580151581146110ba575f80fd5b5f8060408385031215611fbb575f80fd5b8235611fc681611ee3565b9150611fd460208401611f9b565b90509250929050565b5f60208284031215611fed575f80fd5b611f9482611f9b565b5f8060408385031215612007575f80fd5b823561201281611ee3565b9150602083013561202281611ee3565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561091257610912612062565b600181811c9082168061209d57607f821691505b6020821081036120bb57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f826120db57634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561091257610912612062565b808202811582820484141761091257610912612062565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526036908201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656040820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606082015260800190565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561220c575f80fd5b8151611f9481611ee3565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156122675783516001600160a01b0316835260209384019390920191600101612240565b50506001600160a01b039590951660608401525050608001529392505050565b5f805f60608486031215612299575f80fd5b505081516020830151604090930151909492935091905056fea2646970667358221220e4a44ea41296cdeed8b21b9000c9e67af458cd744d2c70a3604542de1242486464736f6c634300081a0033
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.