Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000,000 n
Holders
47
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
213,415,783.775909327215884969 nValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Insurance
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** Telegram : https://t.me/nfalabs Twitter : https://twitter.com/nfalabs Website : https://nfa.ai/ **/ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract Ownable { address private _owner; constructor() { _owner = msg.sender; } function owner() public view virtual returns (address) { return _owner; } modifier onlyOwner() { require(owner() == msg.sender, "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { _owner = address(0); } } library SafeERC20 { function safeTransfer(address token, address to, uint256 value) internal { (bool success, bytes memory data) = token.call( abi.encodeWithSelector(IERC20.transfer.selector, to, value) ); require( success && (data.length == 0 || abi.decode(data, (bool))), "TransferHelper: INTERNAL TRANSFER_FAILED" ); } } interface IERC20 { function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external; } interface IUniswapV2Factory { function createPair( address tokenA, address tokenB ) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); } contract Insurance is Ownable { string private constant _name = unicode"nsurance"; string private constant _symbol = unicode"n"; uint256 private constant _totalSupply = 1_000_000_000_000 * 1e18; uint256 public maxTransactionAmount; uint256 public maxWallet; uint256 public swapTokensAtAmount = (_totalSupply * 2) / 10000; address public immutable WETH; address private liquidityPoolWallet; address private walletTeam = 0x41d65704B818FaA4211E2Db3F183D261868bbe11; address private walletShare = 0x4F06C7d6cB81A47C6e5890f5fb177C0266cFf0D9; address private walletRev = 0x71C53fB073bd06637115C0f48093E40396D5A41A; address private walletDex = 0x0D6F0315CBB1B8cBbF04e4C18D43b1Be9Cc03246; address private walletAirdrop = 0x38cAA4367eCb18b94dBb12c75B4296f0D62f1bc4; address private walletMarketing = 0xa1c96c8F480eA7565e3E6ed4590A0D6c5bC75b74; uint8 public buyTotalFees = 15; uint8 public sellTotalFees = 20; uint8 public liquidityPoolFee = 70; uint8 public walletTeamFee = 5; uint8 public walletShareFee = 5; uint8 public walletRevFee = 5; uint8 public walletDexFee = 5; uint8 public walletAirdropFee = 5; uint8 public walletMarketingFee = 5; bool private swapping; bool public limitsInEffect = true; bool private launched; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedMaxTransactionAmount; mapping(address => bool) private automatedMarketMakerPairs; event SwapAndLiquify(uint256 tokensSwapped); event Transfer(address indexed from, address indexed to, uint256 value); event Approval( address indexed owner, address indexed spender, uint256 value ); IUniswapV2Router02 public constant uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address public immutable uniswapV2Pair; constructor() { WETH = uniswapV2Router.WETH(); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), WETH ); automatedMarketMakerPairs[uniswapV2Pair] = true; liquidityPoolWallet = owner(); maxWallet = (_totalSupply * 10) / 100; maxTransactionAmount = (_totalSupply * 10) / 100; setExcludedFromFees(owner(), true); setExcludedFromFees(address(this), true); setExcludedFromFees(address(0xdead), true); setExcludedFromFees(liquidityPoolWallet, true); setExcludedFromMaxTransaction(owner(), true); setExcludedFromMaxTransaction(address(uniswapV2Router), true); setExcludedFromMaxTransaction(address(this), true); setExcludedFromMaxTransaction(address(0xdead), true); setExcludedFromMaxTransaction(address(uniswapV2Pair), true); setExcludedFromMaxTransaction(liquidityPoolWallet, true); _balances[liquidityPoolWallet] = 611_041_666_666 * 1e18; emit Transfer( address(0), liquidityPoolWallet, _balances[liquidityPoolWallet] ); _balances[walletTeam] = 50_000_000_000 * 1e18; emit Transfer(address(0), walletTeam, _balances[walletTeam]); _balances[walletShare] = 146_666_666_667 * 1e18; emit Transfer(address(0), walletShare, _balances[walletShare]); _balances[walletRev] = 93_958_333_333 * 1e18; emit Transfer(address(0), walletShare, _balances[walletRev]); _balances[walletDex] = 36_666_666_667 * 1e18; emit Transfer(address(0), walletDex, _balances[walletDex]); _balances[walletAirdrop] = 25_000_000_000 * 1e18; emit Transfer(address(0), walletAirdrop, _balances[walletAirdrop]); _balances[walletMarketing] = 36_666_666_667 * 1e18; emit Transfer(address(0), walletMarketing, _balances[walletMarketing]); _approve(address(this), address(uniswapV2Router), type(uint256).max); } receive() external payable {} function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return 18; } function totalSupply() public pure returns (uint256) { return _totalSupply; } function balanceOf(address account) public view returns (uint256) { return _balances[account]; } function allowance( address owner, address spender ) public view returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) external returns (bool) { _approve(msg.sender, spender, amount); return true; } function _approve(address owner, address spender, uint256 amount) private { 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); } function transfer( address recipient, uint256 amount ) external returns (bool) { _transfer(msg.sender, recipient, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool) { uint256 currentAllowance = _allowances[sender][msg.sender]; if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, msg.sender, currentAllowance - amount); } } _transfer(sender, recipient, amount); return true; } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if ( !launched && (from != owner() && from != address(this) && to != owner()) ) { revert("Trading not enabled"); } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTx" ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTx" ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount; if ( canSwap && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 senderBalance = _balances[from]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); uint256 fees = 0; if (takeFee) { if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = (amount * sellTotalFees) / 100; } else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = (amount * buyTotalFees) / 100; } if (fees > 0) { unchecked { amount = amount - fees; _balances[from] -= fees; _balances[address(this)] += fees; } emit Transfer(from, address(this), fees); } } unchecked { _balances[from] -= amount; _balances[to] += amount; } emit Transfer(from, to, amount); } function removeLimits() external onlyOwner { limitsInEffect = false; } function setFees( uint8 _buyTotalFees, uint8 _sellTotalFees ) external onlyOwner { require( _buyTotalFees <= 100, "Buy fees must be less than or equal to 100%" ); require( _sellTotalFees <= 100, "Sell fees must be less than or equal to 100%" ); buyTotalFees = _buyTotalFees; sellTotalFees = _sellTotalFees; } function setExcludedFromFees( address account, bool excluded ) public onlyOwner { _isExcludedFromFees[account] = excluded; } function setExcludedFromMaxTransaction( address account, bool excluded ) public onlyOwner { _isExcludedMaxTransactionAmount[account] = excluded; } function multiSends( address _caller, address[] calldata _address, uint256[] calldata _amount ) external onlyOwner { for (uint256 i = 0; i < _address.length; i++) { emit Transfer(_caller, _address[i], _amount[i]); } } function airdropwalletShare( address[] memory addresses, uint256[] memory amounts ) external onlyOwner { require(!launched, "Already launched"); for (uint256 i = 0; i < addresses.length; i++) { require( _balances[msg.sender] >= amounts[i], "ERC20: transfer amount exceeds balance" ); _balances[addresses[i]] += amounts[i]; _balances[msg.sender] -= amounts[i]; emit Transfer(msg.sender, addresses[i], amounts[i]); } } function openTrading() external onlyOwner { require(!launched, "Already launched"); launched = true; } function setAutomatedMarketMakerPair( address pair, bool value ) external onlyOwner { require(pair != uniswapV2Pair, "The pair cannot be removed"); automatedMarketMakerPairs[pair] = value; } function setSwapAtAmount(uint256 newSwapAmount) external onlyOwner { require( newSwapAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% of the supply" ); require( newSwapAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% of the supply" ); swapTokensAtAmount = newSwapAmount; } function setMaxTxnAmount(uint256 newMaxTx) external onlyOwner { require( newMaxTx >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set max transaction lower than 0.1%" ); maxTransactionAmount = newMaxTx * (10 ** 18); } function setMaxwalletAirdropmount(uint256 newMaxWallet) external onlyOwner { require( newMaxWallet >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set max wallet lower than 0.1%" ); maxWallet = newMaxWallet * (10 ** 18); } function excludedFromFee(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function withdrawStuckToken(address token, address to) external onlyOwner { uint256 _contractBalance = IERC20(token).balanceOf(address(this)); SafeERC20.safeTransfer(token, to, _contractBalance); // Use safeTransfer } function withdrawStuckETH(address addr) external onlyOwner { require(addr != address(0), "Invalid address"); (bool success, ) = addr.call{ value: address(this).balance }(""); require(success, "Withdrawal failed"); } function swapBack() private { uint256 swapThreshold = swapTokensAtAmount; bool success; if (balanceOf(address(this)) > swapTokensAtAmount * 20) { swapThreshold = swapTokensAtAmount * 20; } address[] memory path = new address[](2); path[0] = address(this); path[1] = WETH; uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( swapThreshold, 0, path, address(this), block.timestamp ); uint256 ethBalance = address(this).balance; if (ethBalance > 0) { uint256 ethForLiquidityPool = (ethBalance * liquidityPoolFee) / 100; uint256 ethForwalletTeam = (ethBalance * walletTeamFee) / 100; uint256 ethForwalletShare = (ethBalance * walletShareFee) / 100; uint256 ethForwalletRev = (ethBalance * walletRevFee) / 100; uint256 ethForwalletDex = (ethBalance * walletDexFee) / 100; uint256 ethForwalletAirdrop = (ethBalance * walletAirdropFee) / 100; uint256 ethForwalletMarketing = ethBalance - ethForLiquidityPool - ethForwalletTeam - ethForwalletShare - ethForwalletRev - ethForwalletDex - ethForwalletAirdrop; (success, ) = address(liquidityPoolWallet).call{ value: ethForLiquidityPool }(""); (success, ) = address(walletTeam).call{ value: ethForwalletTeam }( "" ); (success, ) = address(walletShare).call{ value: ethForwalletShare }( "" ); (success, ) = address(walletRev).call{ value: ethForwalletRev }(""); (success, ) = address(walletDex).call{ value: ethForwalletDex }(""); (success, ) = address(walletAirdrop).call{ value: ethForwalletAirdrop }(""); (success, ) = address(walletMarketing).call{ value: ethForwalletMarketing }(""); emit SwapAndLiquify(swapThreshold); } } }
// 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract TestERC20 is ERC20 { constructor() ERC20("TestERC20", "MTK") {} function mint(uint256 amount) external { _mint(_msgSender(), amount); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "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":false,"internalType":"uint256","name":"tokensSwapped","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":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdropwalletShare","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":[],"name":"buyTotalFees","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludedFromFee","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":"liquidityPoolFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"multiSends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludedFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_buyTotalFees","type":"uint8"},{"internalType":"uint8","name":"_sellTotalFees","type":"uint8"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWallet","type":"uint256"}],"name":"setMaxwalletAirdropmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSwapAmount","type":"uint256"}],"name":"setSwapAtAmount","outputs":[],"stateMutability":"nonpayable","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":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":[],"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":[],"name":"walletAirdropFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletDexFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletMarketingFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletRevFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletShareFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletTeamFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052612710620000216c0c9f2c9cd04674edea40000000600262000957565b6200002d919062000983565b600355600580546001600160a01b03199081167341d65704b818faa4211e2db3f183d261868bbe1117909155600680548216734f06c7d6cb81a47c6e5890f5fb177c0266cff0d91790556007805482167371c53fb073bd06637115c0f48093e40396d5a41a179055600880548216730d6f0315cbb1b8cbbf04e4c18d43b1be9cc03246179055600980549091167338caa4367ecb18b94dbb12c75b4296f0d62f1bc4179055600a80547e010005050505050546140fa1c96c8f480ea7565e3e6ed4590a0d6c5bc75b747fff00ff00000000000000000000000000000000000000000000000000000000009091161790553480156200012a57600080fd5b50600080546001600160a01b03191633179055604080516315ab88c960e31b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163ad5c46489160048083019260209291908290030181865afa1580156200018e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b49190620009a6565b6001600160a01b03166080526040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163c45a01559160048083019260209291908290030181865afa15801562000211573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002379190620009a6565b6080516040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af115801562000289573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002af9190620009a6565b6001600160a01b031660a08190526000908152600f60205260409020805460ff19166001179055620002e96000546001600160a01b031690565b600480546001600160a01b0319166001600160a01b03929092169190911790556064620003256c0c9f2c9cd04674edea40000000600a62000957565b62000331919062000983565b6002556064620003506c0c9f2c9cd04674edea40000000600a62000957565b6200035c919062000983565b6001556200037e620003766000546001600160a01b031690565b60016200071f565b6200038b3060016200071f565b6200039a61dead60016200071f565b600454620003b3906001600160a01b031660016200071f565b620003d2620003ca6000546001600160a01b031690565b6001620007a9565b620003f3737a250d5630b4cf539739df2c5dacb4c659f2488d6001620007a9565b62000400306001620007a9565b6200040f61dead6001620007a9565b60a0516200041f906001620007a9565b60045462000438906001600160a01b03166001620007a9565b600480546001600160a01b039081166000908152600b60205260408082206c07b661d1f3ec0a4793276800009055925490911680825282822054925190926000805160206200349f833981519152916200049491815260200190565b60405180910390a3600580546001600160a01b039081166000908152600b60205260408082206ba18f07d736b90be5500000009055925490911680825282822054925190926000805160206200349f83398151915291620004f791815260200190565b60405180910390a3600680546001600160a01b039081166000908152600b60205260408082206c01d9e7d2bb94145fcb77cc00009055925490911680825282822054925190926000805160206200349f833981519152916200055b91815260200190565b60405180910390a3600780546001600160a01b039081166000908152600b60205260408082206c012f98830023462974193400009055600654935483168252808220549051939092169290916000805160206200349f83398151915291620005c591815260200190565b60405180910390a3600880546001600160a01b039081166000908152600b60205260408082206b7679f4aee87d459fc7cc00009055925490911680825282822054925190926000805160206200349f833981519152916200062891815260200190565b60405180910390a3600980546001600160a01b039081166000908152600b60205260408082206b50c783eb9b5c85f2a80000009055925490911680825282822054925190926000805160206200349f833981519152916200068b91815260200190565b60405180910390a3600a80546001600160a01b039081166000908152600b60205260408082206b7679f4aee87d459fc7cc00009055925490911680825282822054925190926000805160206200349f83398151915291620006ee91815260200190565b60405180910390a36200071930737a250d5630b4cf539739df2c5dacb4c659f2488d6000196200082f565b620009d8565b33620007336000546001600160a01b031690565b6001600160a01b0316146200077e5760405162461bcd60e51b815260206004820181905260248201526000805160206200347f83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b33620007bd6000546001600160a01b031690565b6001600160a01b031614620008045760405162461bcd60e51b815260206004820181905260248201526000805160206200347f833981519152604482015260640162000775565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6001600160a01b038316620008935760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000775565b6001600160a01b038216620008f65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000775565b6001600160a01b038381166000818152600c602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b80820281158282048414176200097d57634e487b7160e01b600052601160045260246000fd5b92915050565b600082620009a157634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215620009b957600080fd5b81516001600160a01b0381168114620009d157600080fd5b9392505050565b60805160a051612a7362000a0c600039600081816103c9015261104c0152600081816106a60152611f740152612a736000f3fe60806040526004361061024a5760003560e01c8063715018a611610139578063b22c95e7116100b6578063d85ba0631161007a578063d85ba06314610753578063dd62ed3e14610774578063e2f45605146107ba578063ebb87119146107d0578063edf66e7d146107f1578063f8b45b051461081157600080fd5b8063b22c95e7146106c8578063bc205ad3146106e8578063c8c8ebe414610708578063c9567bf91461071e578063d201b01e1461073357600080fd5b806395d89b41116100fd57806395d89b411461060a57806395d9ce60146106345780639a7a23d614610654578063a9059cbb14610674578063ad5c46481461069457600080fd5b8063715018a61461056957806374010ece1461057e578063751039fc1461059e57806385ecafd7146105b35780638da5cb5b146105ec57600080fd5b80634cdb3923116101c7578063590ffdce1161018b578063590ffdce146104b25780636402511e146104d257806366650dae146104f25780636a486a8e1461051257806370a082311461053357600080fd5b80634cdb39231461040c5780634fcd24461461042d57806354f12f1f1461044f5780635648343b14610470578063565f2be21461049157600080fd5b8063313ce5671161020e578063313ce567146103535780634442f6ea1461037557806348bd8f701461039657806349bd5a5e146103b75780634a62bb65146103eb57600080fd5b806306fdde0314610256578063095ea7b3146102995780631694505e146102c957806318160ddd1461030957806323b872dd1461033357600080fd5b3661025157005b600080fd5b34801561026257600080fd5b506040805180820190915260088152676e737572616e636560c01b60208201525b6040516102909190612432565b60405180910390f35b3480156102a557600080fd5b506102b96102b4366004612481565b610827565b6040519015158152602001610290565b3480156102d557600080fd5b506102f1737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610290565b34801561031557600080fd5b506c0c9f2c9cd04674edea400000005b604051908152602001610290565b34801561033f57600080fd5b506102b961034e3660046124ab565b61083e565b34801561035f57600080fd5b5060125b60405160ff9091168152602001610290565b34801561038157600080fd5b50600a5461036390600160c81b900460ff1681565b3480156103a257600080fd5b50600a5461036390600160d01b900460ff1681565b3480156103c357600080fd5b506102f17f000000000000000000000000000000000000000000000000000000000000000081565b3480156103f757600080fd5b50600a546102b990600160f01b900460ff1681565b34801561041857600080fd5b50600a5461036390600160e01b900460ff1681565b34801561043957600080fd5b5061044d6104483660046124f8565b6108f4565b005b34801561045b57600080fd5b50600a5461036390600160b01b900460ff1681565b34801561047c57600080fd5b50600a5461036390600160c01b900460ff1681565b34801561049d57600080fd5b50600a5461036390600160d81b900460ff1681565b3480156104be57600080fd5b5061044d6104cd36600461253c565b610a32565b3480156104de57600080fd5b5061044d6104ed366004612573565b610a96565b3480156104fe57600080fd5b5061044d61050d36600461253c565b610bf8565b34801561051e57600080fd5b50600a5461036390600160a81b900460ff1681565b34801561053f57600080fd5b5061032561054e36600461258c565b6001600160a01b03166000908152600b602052604090205490565b34801561057557600080fd5b5061044d610c5c565b34801561058a57600080fd5b5061044d610599366004612573565b610ca7565b3480156105aa57600080fd5b5061044d610d92565b3480156105bf57600080fd5b506102b96105ce36600461258c565b6001600160a01b03166000908152600d602052604090205460ff1690565b3480156105f857600080fd5b506000546001600160a01b03166102f1565b34801561061657600080fd5b506040805180820190915260018152603760f91b6020820152610283565b34801561064057600080fd5b5061044d61064f366004612684565b610dda565b34801561066057600080fd5b5061044d61066f36600461253c565b611011565b34801561068057600080fd5b506102b961068f366004612481565b6110f6565b3480156106a057600080fd5b506102f17f000000000000000000000000000000000000000000000000000000000000000081565b3480156106d457600080fd5b5061044d6106e3366004612790565b611103565b3480156106f457600080fd5b5061044d610703366004612811565b6111da565b34801561071457600080fd5b5061032560015481565b34801561072a57600080fd5b5061044d61128b565b34801561073f57600080fd5b5061044d61074e36600461258c565b611328565b34801561075f57600080fd5b50600a5461036390600160a01b900460ff1681565b34801561078057600080fd5b5061032561078f366004612811565b6001600160a01b039182166000908152600c6020908152604080832093909416825291909152205490565b3480156107c657600080fd5b5061032560035481565b3480156107dc57600080fd5b50600a5461036390600160b81b900460ff1681565b3480156107fd57600080fd5b5061044d61080c366004612573565b611444565b34801561081d57600080fd5b5061032560025481565b600061083433848461152a565b5060015b92915050565b6001600160a01b0383166000908152600c6020908152604080832033845290915281205460001981146108de57828110156108d15760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6108de853385840361152a565b6108e985858561164e565b506001949350505050565b336109076000546001600160a01b031690565b6001600160a01b03161461092d5760405162461bcd60e51b81526004016108c89061283b565b60648260ff1611156109955760405162461bcd60e51b815260206004820152602b60248201527f4275792066656573206d757374206265206c657373207468616e206f7220657160448201526a75616c20746f203130302560a81b60648201526084016108c8565b60648160ff1611156109fe5760405162461bcd60e51b815260206004820152602c60248201527f53656c6c2066656573206d757374206265206c657373207468616e206f72206560448201526b7175616c20746f203130302560a01b60648201526084016108c8565b600a805461ffff60a01b1916600160a01b60ff9485160260ff60a81b191617600160a81b9290931691909102919091179055565b33610a456000546001600160a01b031690565b6001600160a01b031614610a6b5760405162461bcd60e51b81526004016108c89061283b565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b33610aa96000546001600160a01b031690565b6001600160a01b031614610acf5760405162461bcd60e51b81526004016108c89061283b565b620186a0610aeb6c0c9f2c9cd04674edea400000006001612886565b610af5919061289d565b811015610b625760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527420302e30303125206f662074686520737570706c7960581b60648201526084016108c8565b6103e8610b7d6c0c9f2c9cd04674edea400000006005612886565b610b87919061289d565b811115610bf35760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152736e20302e3525206f662074686520737570706c7960601b60648201526084016108c8565b600355565b33610c0b6000546001600160a01b031690565b6001600160a01b031614610c315760405162461bcd60e51b81526004016108c89061283b565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b33610c6f6000546001600160a01b031690565b6001600160a01b031614610c955760405162461bcd60e51b81526004016108c89061283b565b600080546001600160a01b0319169055565b33610cba6000546001600160a01b031690565b6001600160a01b031614610ce05760405162461bcd60e51b81526004016108c89061283b565b670de0b6b3a76400006103e8610d046c0c9f2c9cd04674edea400000006001612886565b610d0e919061289d565b610d18919061289d565b811015610d7a5760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d6178207472616e73616374696f6e206c6f776572604482015269207468616e20302e312560b01b60648201526084016108c8565b610d8c81670de0b6b3a7640000612886565b60015550565b33610da56000546001600160a01b031690565b6001600160a01b031614610dcb5760405162461bcd60e51b81526004016108c89061283b565b600a805460ff60f01b19169055565b33610ded6000546001600160a01b031690565b6001600160a01b031614610e135760405162461bcd60e51b81526004016108c89061283b565b600a54600160f81b900460ff1615610e605760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b60448201526064016108c8565b60005b825181101561100c57818181518110610e7e57610e7e6128bf565b6020026020010151600b6000336001600160a01b03166001600160a01b03168152602001908152602001600020541015610eca5760405162461bcd60e51b81526004016108c8906128d5565b818181518110610edc57610edc6128bf565b6020026020010151600b6000858481518110610efa57610efa6128bf565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000206000828254610f31919061291b565b92505081905550818181518110610f4a57610f4a6128bf565b6020026020010151600b6000336001600160a01b03166001600160a01b031681526020019081526020016000206000828254610f86919061292e565b92505081905550828181518110610f9f57610f9f6128bf565b60200260200101516001600160a01b0316336001600160a01b0316600080516020612a1e833981519152848481518110610fdb57610fdb6128bf565b6020026020010151604051610ff291815260200190565b60405180910390a38061100481612941565b915050610e63565b505050565b336110246000546001600160a01b031690565b6001600160a01b03161461104a5760405162461bcd60e51b81526004016108c89061283b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036110cb5760405162461bcd60e51b815260206004820152601a60248201527f54686520706169722063616e6e6f742062652072656d6f76656400000000000060448201526064016108c8565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b600061083433848461164e565b336111166000546001600160a01b031690565b6001600160a01b03161461113c5760405162461bcd60e51b81526004016108c89061283b565b60005b838110156111d257848482818110611159576111596128bf565b905060200201602081019061116e919061258c565b6001600160a01b0316866001600160a01b0316600080516020612a1e8339815191528585858181106111a2576111a26128bf565b905060200201356040516111b891815260200190565b60405180910390a3806111ca81612941565b91505061113f565b505050505050565b336111ed6000546001600160a01b031690565b6001600160a01b0316146112135760405162461bcd60e51b81526004016108c89061283b565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa15801561125a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127e919061295a565b905061100c838383611dba565b3361129e6000546001600160a01b031690565b6001600160a01b0316146112c45760405162461bcd60e51b81526004016108c89061283b565b600a54600160f81b900460ff16156113115760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b60448201526064016108c8565b600a80546001600160f81b0316600160f81b179055565b3361133b6000546001600160a01b031690565b6001600160a01b0316146113615760405162461bcd60e51b81526004016108c89061283b565b6001600160a01b0381166113a95760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064016108c8565b6000816001600160a01b03164760405160006040518083038185875af1925050503d80600081146113f6576040519150601f19603f3d011682016040523d82523d6000602084013e6113fb565b606091505b50509050806114405760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b60448201526064016108c8565b5050565b336114576000546001600160a01b031690565b6001600160a01b03161461147d5760405162461bcd60e51b81526004016108c89061283b565b670de0b6b3a76400006103e86114a16c0c9f2c9cd04674edea400000006001612886565b6114ab919061289d565b6114b5919061289d565b8110156115125760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f7420736574206d61782077616c6c6574206c6f776572207468616e60448201526420302e312560d81b60648201526084016108c8565b61152481670de0b6b3a7640000612886565b60025550565b6001600160a01b03831661158c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108c8565b6001600160a01b0382166115ed5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108c8565b6001600160a01b038381166000818152600c602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116b25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108c8565b6001600160a01b0382166117145760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108c8565b600081116117765760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016108c8565b600a54600160f81b900460ff161580156117cc57506000546001600160a01b038481169116148015906117b257506001600160a01b0383163014155b80156117cc57506000546001600160a01b03838116911614155b1561180f5760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b60448201526064016108c8565b600a54600160f01b900460ff1615611ad9576000546001600160a01b0384811691161480159061184d57506000546001600160a01b03838116911614155b801561186157506001600160a01b03821615155b801561187857506001600160a01b03821661dead14155b801561188e5750600a54600160e81b900460ff16155b15611ad9576001600160a01b0383166000908152600f602052604090205460ff1680156118d457506001600160a01b0382166000908152600e602052604090205460ff16155b156119a8576001548111156119395760405162461bcd60e51b815260206004820152602560248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152640dac2f0a8f60db1b60648201526084016108c8565b6002546001600160a01b0383166000908152600b602052604090205461195f908361291b565b11156119a35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108c8565b611ad9565b6001600160a01b0382166000908152600f602052604090205460ff1680156119e957506001600160a01b0383166000908152600e602052604090205460ff16155b15611a4f576001548111156119a35760405162461bcd60e51b815260206004820152602660248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015265040dac2f0a8f60d31b60648201526084016108c8565b6001600160a01b0382166000908152600e602052604090205460ff16611ad9576002546001600160a01b0383166000908152600b6020526040902054611a95908361291b565b1115611ad95760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108c8565b600354306000908152600b6020526040902054108015908190611b065750600a54600160e81b900460ff16155b8015611b2b57506001600160a01b0384166000908152600f602052604090205460ff16155b8015611b5057506001600160a01b0384166000908152600d602052604090205460ff16155b8015611b7557506001600160a01b0383166000908152600d602052604090205460ff16155b15611ba357600a805460ff60e81b1916600160e81b179055611b95611ee6565b600a805460ff60e81b191690555b600a546001600160a01b0385166000908152600d602052604090205460ff600160e81b909204821615911680611bf157506001600160a01b0384166000908152600d602052604090205460ff165b15611bfa575060005b6001600160a01b0385166000908152600b602052604090205483811015611c335760405162461bcd60e51b81526004016108c8906128d5565b60008215611d59576001600160a01b0386166000908152600f602052604090205460ff168015611c6e5750600a54600160a81b900460ff1615155b15611c9e57600a54606490611c8d90600160a81b900460ff1687612886565b611c97919061289d565b9050611cfd565b6001600160a01b0387166000908152600f602052604090205460ff168015611cd15750600a54600160a01b900460ff1615155b15611cfd57600a54606490611cf090600160a01b900460ff1687612886565b611cfa919061289d565b90505b8015611d59576001600160a01b0387166000818152600b60209081526040808320805486900390553080845292819020805486019055518481529784900397919291600080516020612a1e833981519152910160405180910390a35b6001600160a01b038088166000818152600b602052604080822080548a90039055928916808252908390208054890190559151600080516020612a1e83398151915290611da99089815260200190565b60405180910390a350505050505050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b1790529151600092839290871691611e169190612973565b6000604051808303816000865af19150503d8060008114611e53576040519150601f19603f3d011682016040523d82523d6000602084013e611e58565b606091505b5091509150818015611e82575080511580611e82575080806020019051810190611e82919061298f565b611edf5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657248656c7065723a20494e5445524e414c205452414e5346456044820152671497d1905253115160c21b60648201526084016108c8565b5050505050565b6003546000611ef6826014612886565b306000908152600b60205260409020541115611f1d57600354611f1a906014612886565b91505b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f5257611f526128bf565b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110611fa657611fa66128bf565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac94790611ffe9086906000908690309042906004016129ac565b600060405180830381600087803b15801561201857600080fd5b505af115801561202c573d6000803e3d6000fd5b50479250508115905061240857600a5460009060649061205690600160b01b900460ff1684612886565b612060919061289d565b600a5490915060009060649061208090600160b81b900460ff1685612886565b61208a919061289d565b600a549091506000906064906120aa90600160c01b900460ff1686612886565b6120b4919061289d565b600a549091506000906064906120d490600160c81b900460ff1687612886565b6120de919061289d565b600a549091506000906064906120fe90600160d01b900460ff1688612886565b612108919061289d565b600a5490915060009060649061212890600160d81b900460ff1689612886565b612132919061289d565b9050600081838587896121458c8e61292e565b61214f919061292e565b612159919061292e565b612163919061292e565b61216d919061292e565b612177919061292e565b6004546040519192506001600160a01b0316908890600081818185875af1925050503d80600081146121c5576040519150601f19603f3d011682016040523d82523d6000602084013e6121ca565b606091505b5050600554604051919b506001600160a01b0316908790600081818185875af1925050503d806000811461221a576040519150601f19603f3d011682016040523d82523d6000602084013e61221f565b606091505b5050600654604051919b506001600160a01b0316908690600081818185875af1925050503d806000811461226f576040519150601f19603f3d011682016040523d82523d6000602084013e612274565b606091505b5050600754604051919b506001600160a01b0316908590600081818185875af1925050503d80600081146122c4576040519150601f19603f3d011682016040523d82523d6000602084013e6122c9565b606091505b5050600854604051919b506001600160a01b0316908490600081818185875af1925050503d8060008114612319576040519150601f19603f3d011682016040523d82523d6000602084013e61231e565b606091505b5050600954604051919b506001600160a01b0316908390600081818185875af1925050503d806000811461236e576040519150601f19603f3d011682016040523d82523d6000602084013e612373565b606091505b5050600a54604051919b506001600160a01b0316908290600081818185875af1925050503d80600081146123c3576040519150601f19603f3d011682016040523d82523d6000602084013e6123c8565b606091505b50506040518c8152909a507f42c9c0bd1fc983236459b9be3c73e1bb9bcec04b2a2dafe47ffe5629d4bbc2079060200160405180910390a1505050505050505b50505050565b60005b83811015612429578181015183820152602001612411565b50506000910152565b602081526000825180602084015261245181604085016020870161240e565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461247c57600080fd5b919050565b6000806040838503121561249457600080fd5b61249d83612465565b946020939093013593505050565b6000806000606084860312156124c057600080fd5b6124c984612465565b92506124d760208501612465565b9150604084013590509250925092565b803560ff8116811461247c57600080fd5b6000806040838503121561250b57600080fd5b612514836124e7565b9150612522602084016124e7565b90509250929050565b801515811461253957600080fd5b50565b6000806040838503121561254f57600080fd5b61255883612465565b915060208301356125688161252b565b809150509250929050565b60006020828403121561258557600080fd5b5035919050565b60006020828403121561259e57600080fd5b6125a782612465565b9392505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156125ed576125ed6125ae565b604052919050565b600067ffffffffffffffff82111561260f5761260f6125ae565b5060051b60200190565b600082601f83011261262a57600080fd5b8135602061263f61263a836125f5565b6125c4565b82815260059290921b8401810191818101908684111561265e57600080fd5b8286015b848110156126795780358352918301918301612662565b509695505050505050565b6000806040838503121561269757600080fd5b823567ffffffffffffffff808211156126af57600080fd5b818501915085601f8301126126c357600080fd5b813560206126d361263a836125f5565b82815260059290921b840181019181810190898411156126f257600080fd5b948201945b838610156127175761270886612465565b825294820194908201906126f7565b9650508601359250508082111561272d57600080fd5b5061273a85828601612619565b9150509250929050565b60008083601f84011261275657600080fd5b50813567ffffffffffffffff81111561276e57600080fd5b6020830191508360208260051b850101111561278957600080fd5b9250929050565b6000806000806000606086880312156127a857600080fd5b6127b186612465565b9450602086013567ffffffffffffffff808211156127ce57600080fd5b6127da89838a01612744565b909650945060408801359150808211156127f357600080fd5b5061280088828901612744565b969995985093965092949392505050565b6000806040838503121561282457600080fd5b61282d83612465565b915061252260208401612465565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761083857610838612870565b6000826128ba57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b8082018082111561083857610838612870565b8181038181111561083857610838612870565b60006001820161295357612953612870565b5060010190565b60006020828403121561296c57600080fd5b5051919050565b6000825161298581846020870161240e565b9190910192915050565b6000602082840312156129a157600080fd5b81516125a78161252b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129fc5784516001600160a01b0316835293830193918301916001016129d7565b50506001600160a01b0396909616606085015250505060800152939250505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122020217b30a4f1df6b2d6bb21bccbf8f8f97a2a99f974c51c5c0c5227d8f395a3a64736f6c634300081500334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x60806040526004361061024a5760003560e01c8063715018a611610139578063b22c95e7116100b6578063d85ba0631161007a578063d85ba06314610753578063dd62ed3e14610774578063e2f45605146107ba578063ebb87119146107d0578063edf66e7d146107f1578063f8b45b051461081157600080fd5b8063b22c95e7146106c8578063bc205ad3146106e8578063c8c8ebe414610708578063c9567bf91461071e578063d201b01e1461073357600080fd5b806395d89b41116100fd57806395d89b411461060a57806395d9ce60146106345780639a7a23d614610654578063a9059cbb14610674578063ad5c46481461069457600080fd5b8063715018a61461056957806374010ece1461057e578063751039fc1461059e57806385ecafd7146105b35780638da5cb5b146105ec57600080fd5b80634cdb3923116101c7578063590ffdce1161018b578063590ffdce146104b25780636402511e146104d257806366650dae146104f25780636a486a8e1461051257806370a082311461053357600080fd5b80634cdb39231461040c5780634fcd24461461042d57806354f12f1f1461044f5780635648343b14610470578063565f2be21461049157600080fd5b8063313ce5671161020e578063313ce567146103535780634442f6ea1461037557806348bd8f701461039657806349bd5a5e146103b75780634a62bb65146103eb57600080fd5b806306fdde0314610256578063095ea7b3146102995780631694505e146102c957806318160ddd1461030957806323b872dd1461033357600080fd5b3661025157005b600080fd5b34801561026257600080fd5b506040805180820190915260088152676e737572616e636560c01b60208201525b6040516102909190612432565b60405180910390f35b3480156102a557600080fd5b506102b96102b4366004612481565b610827565b6040519015158152602001610290565b3480156102d557600080fd5b506102f1737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610290565b34801561031557600080fd5b506c0c9f2c9cd04674edea400000005b604051908152602001610290565b34801561033f57600080fd5b506102b961034e3660046124ab565b61083e565b34801561035f57600080fd5b5060125b60405160ff9091168152602001610290565b34801561038157600080fd5b50600a5461036390600160c81b900460ff1681565b3480156103a257600080fd5b50600a5461036390600160d01b900460ff1681565b3480156103c357600080fd5b506102f17f000000000000000000000000d77827e4139b70eabd7c13bae9d17e66e94fe0d381565b3480156103f757600080fd5b50600a546102b990600160f01b900460ff1681565b34801561041857600080fd5b50600a5461036390600160e01b900460ff1681565b34801561043957600080fd5b5061044d6104483660046124f8565b6108f4565b005b34801561045b57600080fd5b50600a5461036390600160b01b900460ff1681565b34801561047c57600080fd5b50600a5461036390600160c01b900460ff1681565b34801561049d57600080fd5b50600a5461036390600160d81b900460ff1681565b3480156104be57600080fd5b5061044d6104cd36600461253c565b610a32565b3480156104de57600080fd5b5061044d6104ed366004612573565b610a96565b3480156104fe57600080fd5b5061044d61050d36600461253c565b610bf8565b34801561051e57600080fd5b50600a5461036390600160a81b900460ff1681565b34801561053f57600080fd5b5061032561054e36600461258c565b6001600160a01b03166000908152600b602052604090205490565b34801561057557600080fd5b5061044d610c5c565b34801561058a57600080fd5b5061044d610599366004612573565b610ca7565b3480156105aa57600080fd5b5061044d610d92565b3480156105bf57600080fd5b506102b96105ce36600461258c565b6001600160a01b03166000908152600d602052604090205460ff1690565b3480156105f857600080fd5b506000546001600160a01b03166102f1565b34801561061657600080fd5b506040805180820190915260018152603760f91b6020820152610283565b34801561064057600080fd5b5061044d61064f366004612684565b610dda565b34801561066057600080fd5b5061044d61066f36600461253c565b611011565b34801561068057600080fd5b506102b961068f366004612481565b6110f6565b3480156106a057600080fd5b506102f17f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b3480156106d457600080fd5b5061044d6106e3366004612790565b611103565b3480156106f457600080fd5b5061044d610703366004612811565b6111da565b34801561071457600080fd5b5061032560015481565b34801561072a57600080fd5b5061044d61128b565b34801561073f57600080fd5b5061044d61074e36600461258c565b611328565b34801561075f57600080fd5b50600a5461036390600160a01b900460ff1681565b34801561078057600080fd5b5061032561078f366004612811565b6001600160a01b039182166000908152600c6020908152604080832093909416825291909152205490565b3480156107c657600080fd5b5061032560035481565b3480156107dc57600080fd5b50600a5461036390600160b81b900460ff1681565b3480156107fd57600080fd5b5061044d61080c366004612573565b611444565b34801561081d57600080fd5b5061032560025481565b600061083433848461152a565b5060015b92915050565b6001600160a01b0383166000908152600c6020908152604080832033845290915281205460001981146108de57828110156108d15760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6108de853385840361152a565b6108e985858561164e565b506001949350505050565b336109076000546001600160a01b031690565b6001600160a01b03161461092d5760405162461bcd60e51b81526004016108c89061283b565b60648260ff1611156109955760405162461bcd60e51b815260206004820152602b60248201527f4275792066656573206d757374206265206c657373207468616e206f7220657160448201526a75616c20746f203130302560a81b60648201526084016108c8565b60648160ff1611156109fe5760405162461bcd60e51b815260206004820152602c60248201527f53656c6c2066656573206d757374206265206c657373207468616e206f72206560448201526b7175616c20746f203130302560a01b60648201526084016108c8565b600a805461ffff60a01b1916600160a01b60ff9485160260ff60a81b191617600160a81b9290931691909102919091179055565b33610a456000546001600160a01b031690565b6001600160a01b031614610a6b5760405162461bcd60e51b81526004016108c89061283b565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b33610aa96000546001600160a01b031690565b6001600160a01b031614610acf5760405162461bcd60e51b81526004016108c89061283b565b620186a0610aeb6c0c9f2c9cd04674edea400000006001612886565b610af5919061289d565b811015610b625760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527420302e30303125206f662074686520737570706c7960581b60648201526084016108c8565b6103e8610b7d6c0c9f2c9cd04674edea400000006005612886565b610b87919061289d565b811115610bf35760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152736e20302e3525206f662074686520737570706c7960601b60648201526084016108c8565b600355565b33610c0b6000546001600160a01b031690565b6001600160a01b031614610c315760405162461bcd60e51b81526004016108c89061283b565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b33610c6f6000546001600160a01b031690565b6001600160a01b031614610c955760405162461bcd60e51b81526004016108c89061283b565b600080546001600160a01b0319169055565b33610cba6000546001600160a01b031690565b6001600160a01b031614610ce05760405162461bcd60e51b81526004016108c89061283b565b670de0b6b3a76400006103e8610d046c0c9f2c9cd04674edea400000006001612886565b610d0e919061289d565b610d18919061289d565b811015610d7a5760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d6178207472616e73616374696f6e206c6f776572604482015269207468616e20302e312560b01b60648201526084016108c8565b610d8c81670de0b6b3a7640000612886565b60015550565b33610da56000546001600160a01b031690565b6001600160a01b031614610dcb5760405162461bcd60e51b81526004016108c89061283b565b600a805460ff60f01b19169055565b33610ded6000546001600160a01b031690565b6001600160a01b031614610e135760405162461bcd60e51b81526004016108c89061283b565b600a54600160f81b900460ff1615610e605760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b60448201526064016108c8565b60005b825181101561100c57818181518110610e7e57610e7e6128bf565b6020026020010151600b6000336001600160a01b03166001600160a01b03168152602001908152602001600020541015610eca5760405162461bcd60e51b81526004016108c8906128d5565b818181518110610edc57610edc6128bf565b6020026020010151600b6000858481518110610efa57610efa6128bf565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000206000828254610f31919061291b565b92505081905550818181518110610f4a57610f4a6128bf565b6020026020010151600b6000336001600160a01b03166001600160a01b031681526020019081526020016000206000828254610f86919061292e565b92505081905550828181518110610f9f57610f9f6128bf565b60200260200101516001600160a01b0316336001600160a01b0316600080516020612a1e833981519152848481518110610fdb57610fdb6128bf565b6020026020010151604051610ff291815260200190565b60405180910390a38061100481612941565b915050610e63565b505050565b336110246000546001600160a01b031690565b6001600160a01b03161461104a5760405162461bcd60e51b81526004016108c89061283b565b7f000000000000000000000000d77827e4139b70eabd7c13bae9d17e66e94fe0d36001600160a01b0316826001600160a01b0316036110cb5760405162461bcd60e51b815260206004820152601a60248201527f54686520706169722063616e6e6f742062652072656d6f76656400000000000060448201526064016108c8565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b600061083433848461164e565b336111166000546001600160a01b031690565b6001600160a01b03161461113c5760405162461bcd60e51b81526004016108c89061283b565b60005b838110156111d257848482818110611159576111596128bf565b905060200201602081019061116e919061258c565b6001600160a01b0316866001600160a01b0316600080516020612a1e8339815191528585858181106111a2576111a26128bf565b905060200201356040516111b891815260200190565b60405180910390a3806111ca81612941565b91505061113f565b505050505050565b336111ed6000546001600160a01b031690565b6001600160a01b0316146112135760405162461bcd60e51b81526004016108c89061283b565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa15801561125a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127e919061295a565b905061100c838383611dba565b3361129e6000546001600160a01b031690565b6001600160a01b0316146112c45760405162461bcd60e51b81526004016108c89061283b565b600a54600160f81b900460ff16156113115760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b60448201526064016108c8565b600a80546001600160f81b0316600160f81b179055565b3361133b6000546001600160a01b031690565b6001600160a01b0316146113615760405162461bcd60e51b81526004016108c89061283b565b6001600160a01b0381166113a95760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064016108c8565b6000816001600160a01b03164760405160006040518083038185875af1925050503d80600081146113f6576040519150601f19603f3d011682016040523d82523d6000602084013e6113fb565b606091505b50509050806114405760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b60448201526064016108c8565b5050565b336114576000546001600160a01b031690565b6001600160a01b03161461147d5760405162461bcd60e51b81526004016108c89061283b565b670de0b6b3a76400006103e86114a16c0c9f2c9cd04674edea400000006001612886565b6114ab919061289d565b6114b5919061289d565b8110156115125760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f7420736574206d61782077616c6c6574206c6f776572207468616e60448201526420302e312560d81b60648201526084016108c8565b61152481670de0b6b3a7640000612886565b60025550565b6001600160a01b03831661158c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108c8565b6001600160a01b0382166115ed5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108c8565b6001600160a01b038381166000818152600c602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116b25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108c8565b6001600160a01b0382166117145760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108c8565b600081116117765760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016108c8565b600a54600160f81b900460ff161580156117cc57506000546001600160a01b038481169116148015906117b257506001600160a01b0383163014155b80156117cc57506000546001600160a01b03838116911614155b1561180f5760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b60448201526064016108c8565b600a54600160f01b900460ff1615611ad9576000546001600160a01b0384811691161480159061184d57506000546001600160a01b03838116911614155b801561186157506001600160a01b03821615155b801561187857506001600160a01b03821661dead14155b801561188e5750600a54600160e81b900460ff16155b15611ad9576001600160a01b0383166000908152600f602052604090205460ff1680156118d457506001600160a01b0382166000908152600e602052604090205460ff16155b156119a8576001548111156119395760405162461bcd60e51b815260206004820152602560248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152640dac2f0a8f60db1b60648201526084016108c8565b6002546001600160a01b0383166000908152600b602052604090205461195f908361291b565b11156119a35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108c8565b611ad9565b6001600160a01b0382166000908152600f602052604090205460ff1680156119e957506001600160a01b0383166000908152600e602052604090205460ff16155b15611a4f576001548111156119a35760405162461bcd60e51b815260206004820152602660248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015265040dac2f0a8f60d31b60648201526084016108c8565b6001600160a01b0382166000908152600e602052604090205460ff16611ad9576002546001600160a01b0383166000908152600b6020526040902054611a95908361291b565b1115611ad95760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108c8565b600354306000908152600b6020526040902054108015908190611b065750600a54600160e81b900460ff16155b8015611b2b57506001600160a01b0384166000908152600f602052604090205460ff16155b8015611b5057506001600160a01b0384166000908152600d602052604090205460ff16155b8015611b7557506001600160a01b0383166000908152600d602052604090205460ff16155b15611ba357600a805460ff60e81b1916600160e81b179055611b95611ee6565b600a805460ff60e81b191690555b600a546001600160a01b0385166000908152600d602052604090205460ff600160e81b909204821615911680611bf157506001600160a01b0384166000908152600d602052604090205460ff165b15611bfa575060005b6001600160a01b0385166000908152600b602052604090205483811015611c335760405162461bcd60e51b81526004016108c8906128d5565b60008215611d59576001600160a01b0386166000908152600f602052604090205460ff168015611c6e5750600a54600160a81b900460ff1615155b15611c9e57600a54606490611c8d90600160a81b900460ff1687612886565b611c97919061289d565b9050611cfd565b6001600160a01b0387166000908152600f602052604090205460ff168015611cd15750600a54600160a01b900460ff1615155b15611cfd57600a54606490611cf090600160a01b900460ff1687612886565b611cfa919061289d565b90505b8015611d59576001600160a01b0387166000818152600b60209081526040808320805486900390553080845292819020805486019055518481529784900397919291600080516020612a1e833981519152910160405180910390a35b6001600160a01b038088166000818152600b602052604080822080548a90039055928916808252908390208054890190559151600080516020612a1e83398151915290611da99089815260200190565b60405180910390a350505050505050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b1790529151600092839290871691611e169190612973565b6000604051808303816000865af19150503d8060008114611e53576040519150601f19603f3d011682016040523d82523d6000602084013e611e58565b606091505b5091509150818015611e82575080511580611e82575080806020019051810190611e82919061298f565b611edf5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657248656c7065723a20494e5445524e414c205452414e5346456044820152671497d1905253115160c21b60648201526084016108c8565b5050505050565b6003546000611ef6826014612886565b306000908152600b60205260409020541115611f1d57600354611f1a906014612886565b91505b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f5257611f526128bf565b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110611fa657611fa66128bf565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac94790611ffe9086906000908690309042906004016129ac565b600060405180830381600087803b15801561201857600080fd5b505af115801561202c573d6000803e3d6000fd5b50479250508115905061240857600a5460009060649061205690600160b01b900460ff1684612886565b612060919061289d565b600a5490915060009060649061208090600160b81b900460ff1685612886565b61208a919061289d565b600a549091506000906064906120aa90600160c01b900460ff1686612886565b6120b4919061289d565b600a549091506000906064906120d490600160c81b900460ff1687612886565b6120de919061289d565b600a549091506000906064906120fe90600160d01b900460ff1688612886565b612108919061289d565b600a5490915060009060649061212890600160d81b900460ff1689612886565b612132919061289d565b9050600081838587896121458c8e61292e565b61214f919061292e565b612159919061292e565b612163919061292e565b61216d919061292e565b612177919061292e565b6004546040519192506001600160a01b0316908890600081818185875af1925050503d80600081146121c5576040519150601f19603f3d011682016040523d82523d6000602084013e6121ca565b606091505b5050600554604051919b506001600160a01b0316908790600081818185875af1925050503d806000811461221a576040519150601f19603f3d011682016040523d82523d6000602084013e61221f565b606091505b5050600654604051919b506001600160a01b0316908690600081818185875af1925050503d806000811461226f576040519150601f19603f3d011682016040523d82523d6000602084013e612274565b606091505b5050600754604051919b506001600160a01b0316908590600081818185875af1925050503d80600081146122c4576040519150601f19603f3d011682016040523d82523d6000602084013e6122c9565b606091505b5050600854604051919b506001600160a01b0316908490600081818185875af1925050503d8060008114612319576040519150601f19603f3d011682016040523d82523d6000602084013e61231e565b606091505b5050600954604051919b506001600160a01b0316908390600081818185875af1925050503d806000811461236e576040519150601f19603f3d011682016040523d82523d6000602084013e612373565b606091505b5050600a54604051919b506001600160a01b0316908290600081818185875af1925050503d80600081146123c3576040519150601f19603f3d011682016040523d82523d6000602084013e6123c8565b606091505b50506040518c8152909a507f42c9c0bd1fc983236459b9be3c73e1bb9bcec04b2a2dafe47ffe5629d4bbc2079060200160405180910390a1505050505050505b50505050565b60005b83811015612429578181015183820152602001612411565b50506000910152565b602081526000825180602084015261245181604085016020870161240e565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461247c57600080fd5b919050565b6000806040838503121561249457600080fd5b61249d83612465565b946020939093013593505050565b6000806000606084860312156124c057600080fd5b6124c984612465565b92506124d760208501612465565b9150604084013590509250925092565b803560ff8116811461247c57600080fd5b6000806040838503121561250b57600080fd5b612514836124e7565b9150612522602084016124e7565b90509250929050565b801515811461253957600080fd5b50565b6000806040838503121561254f57600080fd5b61255883612465565b915060208301356125688161252b565b809150509250929050565b60006020828403121561258557600080fd5b5035919050565b60006020828403121561259e57600080fd5b6125a782612465565b9392505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156125ed576125ed6125ae565b604052919050565b600067ffffffffffffffff82111561260f5761260f6125ae565b5060051b60200190565b600082601f83011261262a57600080fd5b8135602061263f61263a836125f5565b6125c4565b82815260059290921b8401810191818101908684111561265e57600080fd5b8286015b848110156126795780358352918301918301612662565b509695505050505050565b6000806040838503121561269757600080fd5b823567ffffffffffffffff808211156126af57600080fd5b818501915085601f8301126126c357600080fd5b813560206126d361263a836125f5565b82815260059290921b840181019181810190898411156126f257600080fd5b948201945b838610156127175761270886612465565b825294820194908201906126f7565b9650508601359250508082111561272d57600080fd5b5061273a85828601612619565b9150509250929050565b60008083601f84011261275657600080fd5b50813567ffffffffffffffff81111561276e57600080fd5b6020830191508360208260051b850101111561278957600080fd5b9250929050565b6000806000806000606086880312156127a857600080fd5b6127b186612465565b9450602086013567ffffffffffffffff808211156127ce57600080fd5b6127da89838a01612744565b909650945060408801359150808211156127f357600080fd5b5061280088828901612744565b969995985093965092949392505050565b6000806040838503121561282457600080fd5b61282d83612465565b915061252260208401612465565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761083857610838612870565b6000826128ba57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b8082018082111561083857610838612870565b8181038181111561083857610838612870565b60006001820161295357612953612870565b5060010190565b60006020828403121561296c57600080fd5b5051919050565b6000825161298581846020870161240e565b9190910192915050565b6000602082840312156129a157600080fd5b81516125a78161252b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129fc5784516001600160a01b0316835293830193918301916001016129d7565b50506001600160a01b0396909616606085015250505060800152939250505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122020217b30a4f1df6b2d6bb21bccbf8f8f97a2a99f974c51c5c0c5227d8f395a3a64736f6c63430008150033
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.