Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
569,000,000,000,000 NARCO
Holders
689
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
4,931,806,167.075220445731690284 NARCOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Token
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-26 */ // SPDX-License-Identifier: MIT pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // 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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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 {} } // File: narco.sol pragma solidity 0.8.20; contract Token is Context, IERC20Metadata, ERC20, Ownable { IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; address public _feesWallet; mapping(address => bool) private _notAllowed; bool private _tradingEnabled; bool private _isInFeeTransfer; mapping(address => uint256) private _walletLastTxBlock; mapping(address => bool) private _earlyWallets; event TradingEnabled(bool enabled); event EarlyWallet(address indexed wallet); constructor() ERC20("Mr. Narco", "NARCO") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); IUniswapV2Factory _uniswapV2Factory = IUniswapV2Factory(_uniswapV2Router.factory()); uniswapV2Pair = _uniswapV2Factory.createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; _feesWallet = msg.sender; //mev bots _notAllowed[0x00000000A991C429eE2Ec6df19d40fe0c80088B8] = true; _notAllowed[0x2d2A7d56773ae7d5c7b9f1B57f7Be05039447B4D] = true; _notAllowed[0x0000Cd00001700b10049DfC947103E00E1C62683] = true; _notAllowed[0x5093013aaAEe47c868FA3c317fE7840A3D8F8804] = true; _notAllowed[0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13] = true; _notAllowed[0x6b75d8AF000000e20B7a7DDf000Ba900b4009A80] = true; _notAllowed[0x4D521577f820525964C392352bB220482F1Aa63b] = true; _notAllowed[0xE8c060F8052E07423f71D445277c61AC5138A2e5] = true; _notAllowed[0x025050C351452d8738fc6ac8792a4B87883Ca055] = true; _notAllowed[0xeC634e1bD59BD3c57376AFd1Eb65dA710117d021] = true; _notAllowed[0xcF46410c12a9FE76c563d991AB1e8b28BD0E1b85] = true; _notAllowed[0x7E3adCA78A9DA982363C27CE556AFa7934B9Bc1b] = true; _notAllowed[0x463D06149E73cba191D1b4cab446c60fC7658513] = true; _notAllowed[0xE16D4e4e3AD1e151E1977bB89fcd3E8791F98210] = true; _notAllowed[0x2259D78c01d58AE40A104f81bFb1152Ec46206F5] = true; _notAllowed[0x4206dB5B280263877F5374304d226B0b69605868] = true; _notAllowed[0x899E5A6E122B2eB0c88531D47eC577A43c29c086] = true; _earlyWallets[_msgSender()] = true; _earlyWallets[address(this)] = true; _earlyWallets[_feesWallet] = true; _mint(_msgSender(), 569_000_000_000_000 ether); // mint all tokens to the deployer wallet } function enableTrading() external onlyOwner { _tradingEnabled = true; emit TradingEnabled(true); } function setEarlyWallets(address[] memory addresses) public onlyOwner { for (uint i=0; i<addresses.length; i++) { _earlyWallets[addresses[i]] = true; emit EarlyWallet(addresses[i]); } } function isEarly(address account) public view returns (bool) { return _earlyWallets[account]; } function _beforeTokenTransfer( address sender, address recipient, uint256 amount ) override internal virtual { require(isEarly(sender) || isEarly(recipient) || _tradingEnabled, "Trading has not started"); super._beforeTokenTransfer(sender, recipient, amount); } function _transfer(address sender, address recipient, uint256 amount) internal virtual override { require (!_notAllowed[recipient], "bot not allowed"); require (!_notAllowed[sender], "bot not allowed"); if (isBuy(sender)) { _walletLastTxBlock[recipient] = block.number; } if(isSale(recipient) && isSecondTxInSameBlock(sender)) { transferWithFees(sender, recipient, amount, 5); return; } super._transfer(sender, recipient, amount); } function manageBots (address _newBot, bool value) external onlyOwner { _notAllowed[_newBot] = value; } function updateFeeWallet (address _newWallet) external onlyOwner { require (_newWallet != address(0), "zero address is not allowed"); _feesWallet = _newWallet; } function transferWithFees(address sender, address recipient, uint amount, uint8 _percentage) internal { if (_isInFeeTransfer) { return; } uint256 tax = amount * _percentage / 100; uint256 netAmount = amount - tax; _isInFeeTransfer = true; if(netAmount > 0){ super._transfer(sender, recipient, netAmount); } super._transfer(sender, _feesWallet, tax); _isInFeeTransfer = false; } function burn (uint256 amount) external { _burn(msg.sender, amount); } function isBuy(address _from) internal view returns(bool) { return uniswapV2Pair == _from; } function isSale(address _to) internal view returns(bool) { return uniswapV2Pair == _to; } function isSecondTxInSameBlock(address _from) internal view returns(bool) { return _walletLastTxBlock[_from] == block.number; } }
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":"wallet","type":"address"}],"name":"EarlyWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"TradingEnabled","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":"_feesWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"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":"isEarly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newBot","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"manageBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setEarlyWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newWallet","type":"address"}],"name":"updateFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801562000010575f80fd5b50604051806040016040528060098152602001684d722e204e6172636f60b81b815250604051806040016040528060058152602001644e4152434f60d81b81525081600390816200006291906200080e565b5060046200007182826200080e565b5050506200008e620000886200059660201b60201c565b6200059a565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90505f816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620000e4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200010a9190620008d6565b9050806001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000159573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200017f9190620008d6565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001ca573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001f09190620008d6565b600780546001600160a01b039283166001600160a01b0319918216179091556006805492851692821692909217909155600880549091163317905560096020527f915c6bdf4c2915e2f0a1d91befa4b7dea214b33982a76dd9929e04ed09346bfb805460ff1990811660019081179092557f01971d511bf4829b65843999aef123abed8d1b57ee4b8ca76ad3b50428a9f68c80548216831790557f4684ba7520fff2e58acf1e206140c93f976ae375092649eaa74ad5eb7db016f780548216831790557fc0a7bac0444f1df716ddd7ad7ff817988b27d7a628ca7b2f1f3db033eb4a105b80548216831790557faf6e1eb9989fb6707941aefd27052008b34991f16bf4ca6e1870736a19871b2b80548216831790557f154bb98efc83b034ad81fbf23cc88c9737739df170c146ea18e8113dac89366580548216831790557fd7877a251e9047bda3f556dc779577938ad271773caf7bc52699eab93da63daa80548216831790557f6cf689b4189fada6ad37b52fdfb86896ae91e5f7a16394260bd60de09dec954d80548216831790557f9c0e9ffafcb12c94ad8b4e5af77e5acdb4338c8f27e0a6a9283cd34ff0760b0180548216831790557fbe1ee539aef6545b132a5d80997cc00520e2aabbd771188eae3a422b005e4bf080548216831790557fb2c510ff37385f7292a1f779c8cad68247c29fde011e9e4131fe7e26957d9e3880548216831790557fa52f12efe1e15315c01f2034269eceba25a5e850d70372dc3beb27484fbb6e3480548216831790557fdfa9b1a038f3c77c21278b20a69ab1535e99a481748cfbdc8cf753215464428c80548216831790557f7bbe713f988fb762473b1d89f5b4870563173a59e8cc2d272f5e3d7237318d0280548216831790557f482947256d171082240018b4315544b32cba97ab22d2929537df18556612fd7980548216831790557f8918f499b00255ff254bc9d594b3cde68fab228e58e8d80c62a3ab68b7542edd805482168317905573899e5a6e122b2eb0c88531d47ec577a43c29c0865f9081527fb10702e9d13fb2297f5736ee053d348da8a924196dd05beb39daf917d10c771b80549092168317909155600c90620005173390565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff19968716179055308152600c9093528183208054851660019081179091556008549091168352912080549092161790556200058e620005793390565b6d1c0dca288aec99e4cda840000000620005eb565b50506200092b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620006475760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620006545f8383620006bd565b8060025f82825462000667919062000905565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383165f908152600c602052604090205460ff1680620006fb57506001600160a01b0382165f908152600c602052604090205460ff165b80620007095750600a5460ff165b620007575760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720686173206e6f74207374617274656400000000000000000060448201526064016200063e565b6200076a8383836001600160e01b038416565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200079857607f821691505b602082108103620007b757634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200076a575f81815260208120601f850160051c81016020861015620007e55750805b601f850160051c820191505b818110156200080657828155600101620007f1565b505050505050565b81516001600160401b038111156200082a576200082a6200076f565b62000842816200083b845462000783565b84620007bd565b602080601f83116001811462000878575f8415620008605750858301515b5f19600386901b1c1916600185901b17855562000806565b5f85815260208120601f198616915b82811015620008a85788860151825594840194600190910190840162000887565b5085821015620008c657878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f60208284031215620008e7575f80fd5b81516001600160a01b0381168114620008fe575f80fd5b9392505050565b808201808211156200092557634e487b7160e01b5f52601160045260245ffd5b92915050565b61121480620009395f395ff3fe608060405234801561000f575f80fd5b5060043610610148575f3560e01c806370a08231116100bf578063a457c2d711610079578063a457c2d7146102b1578063a9059cbb146102c4578063b72ae3be146102d7578063dd62ed3e14610302578063efe23e8614610315578063f2fde38b14610328575f80fd5b806370a082311461024d578063715018a61461027557806389e2587f1461027d5780638a8c523c146102905780638da5cb5b1461029857806395d89b41146102a9575f80fd5b806323b872dd1161011057806323b872dd146101df578063313ce567146101f2578063395093511461020157806342966c681461021457806349bd5a5e14610227578063667185241461023a575f80fd5b806306fdde031461014c578063095ea7b31461016a57806313bed0301461018d5780631694505e146101a257806318160ddd146101cd575b5f80fd5b61015461033b565b6040516101619190610ece565b60405180910390f35b61017d610178366004610f34565b6103cb565b6040519015158152602001610161565b6101a061019b366004610f70565b6103e4565b005b6006546101b5906001600160a01b031681565b6040516001600160a01b039091168152602001610161565b6002545b604051908152602001610161565b61017d6101ed366004611030565b6104b0565b60405160128152602001610161565b61017d61020f366004610f34565b6104d3565b6101a0610222366004611069565b6104f4565b6007546101b5906001600160a01b031681565b6101a0610248366004611080565b610501565b6101d161025b366004611080565b6001600160a01b03165f9081526020819052604090205490565b6101a0610586565b6008546101b5906001600160a01b031681565b6101a0610599565b6005546001600160a01b03166101b5565b6101546105e6565b61017d6102bf366004610f34565b6105f5565b61017d6102d2366004610f34565b61066f565b61017d6102e5366004611080565b6001600160a01b03165f908152600c602052604090205460ff1690565b6101d16103103660046110a0565b61067c565b6101a06103233660046110d1565b6106a6565b6101a0610336366004611080565b6106d8565b60606003805461034a9061110a565b80601f01602080910402602001604051908101604052809291908181526020018280546103769061110a565b80156103c15780601f10610398576101008083540402835291602001916103c1565b820191905f5260205f20905b8154815290600101906020018083116103a457829003601f168201915b5050505050905090565b5f336103d881858561074e565b60019150505b92915050565b6103ec610871565b5f5b81518110156104ac576001600c5f84848151811061040e5761040e611142565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff02191690831515021790555081818151811061045d5761045d611142565b60200260200101516001600160a01b03167fa135d8a89f8ad3cc5f7286bb47694daf0a71ab3358dc6927bf1164b3e05e6abc60405160405180910390a2806104a48161116a565b9150506103ee565b5050565b5f336104bd8582856108cb565b6104c8858585610943565b506001949350505050565b5f336103d88185856104e5838361067c565b6104ef9190611182565b61074e565b6104fe3382610a7c565b50565b610509610871565b6001600160a01b0381166105645760405162461bcd60e51b815260206004820152601b60248201527f7a65726f2061646472657373206973206e6f7420616c6c6f776564000000000060448201526064015b60405180910390fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b61058e610871565b6105975f610bb7565b565b6105a1610871565b600a805460ff191660019081179091556040519081527fbeda7dca7bc1b3e80b871f4818129ec73b771581f803d553aeb3484098e5f65a9060200160405180910390a1565b60606004805461034a9061110a565b5f3381610602828661067c565b9050838110156106625760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161055b565b6104c8828686840361074e565b5f336103d8818585610943565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6106ae610871565b6001600160a01b03919091165f908152600960205260409020805460ff1916911515919091179055565b6106e0610871565b6001600160a01b0381166107455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161055b565b6104fe81610bb7565b6001600160a01b0383166107b05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161055b565b6001600160a01b0382166108115760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161055b565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146105975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055b565b5f6108d6848461067c565b90505f19811461093d57818110156109305760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161055b565b61093d848484840361074e565b50505050565b6001600160a01b0382165f9081526009602052604090205460ff161561099d5760405162461bcd60e51b815260206004820152600f60248201526e189bdd081b9bdd08185b1b1bddd959608a1b604482015260640161055b565b6001600160a01b0383165f9081526009602052604090205460ff16156109f75760405162461bcd60e51b815260206004820152600f60248201526e189bdd081b9bdd08185b1b1bddd959608a1b604482015260640161055b565b6007546001600160a01b03808516911603610a27576001600160a01b0382165f908152600b602052604090204390555b6007546001600160a01b038084169116148015610a5a57506001600160a01b0383165f908152600b602052604090205443145b15610a7157610a6c8383836005610c08565b505050565b610a6c838383610c8b565b6001600160a01b038216610adc5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161055b565b610ae7825f83610e38565b6001600160a01b0382165f9081526020819052604090205481811015610b5a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161055b565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b600a54610100900460ff1661093d575f6064610c2760ff841685611195565b610c3191906111ac565b90505f610c3e82856111cb565b600a805461ff00191661010017905590508015610c6057610c60868683610c8b565b600854610c789087906001600160a01b031684610c8b565b5050600a805461ff001916905550505050565b6001600160a01b038316610cef5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161055b565b6001600160a01b038216610d515760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161055b565b610d5c838383610e38565b6001600160a01b0383165f9081526020819052604090205481811015610dd35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161055b565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361093d565b6001600160a01b0383165f908152600c602052604090205460ff1680610e7557506001600160a01b0382165f908152600c602052604090205460ff165b80610e825750600a5460ff165b610a6c5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720686173206e6f742073746172746564000000000000000000604482015260640161055b565b5f6020808352835180828501525f5b81811015610ef957858101830151858201604001528201610edd565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f2f575f80fd5b919050565b5f8060408385031215610f45575f80fd5b610f4e83610f19565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b5f6020808385031215610f81575f80fd5b823567ffffffffffffffff80821115610f98575f80fd5b818501915085601f830112610fab575f80fd5b813581811115610fbd57610fbd610f5c565b8060051b604051601f19603f83011681018181108582111715610fe257610fe2610f5c565b604052918252848201925083810185019188831115610fff575f80fd5b938501935b828510156110245761101585610f19565b84529385019392850192611004565b98975050505050505050565b5f805f60608486031215611042575f80fd5b61104b84610f19565b925061105960208501610f19565b9150604084013590509250925092565b5f60208284031215611079575f80fd5b5035919050565b5f60208284031215611090575f80fd5b61109982610f19565b9392505050565b5f80604083850312156110b1575f80fd5b6110ba83610f19565b91506110c860208401610f19565b90509250929050565b5f80604083850312156110e2575f80fd5b6110eb83610f19565b9150602083013580151581146110ff575f80fd5b809150509250929050565b600181811c9082168061111e57607f821691505b60208210810361113c57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f6001820161117b5761117b611156565b5060010190565b808201808211156103de576103de611156565b80820281158282048414176103de576103de611156565b5f826111c657634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156103de576103de61115656fea264697066735822122046b4b1b76ba847b0f6f5beeddd9fe01184bc6925180a105d52b292df1898ef5764736f6c63430008140033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610148575f3560e01c806370a08231116100bf578063a457c2d711610079578063a457c2d7146102b1578063a9059cbb146102c4578063b72ae3be146102d7578063dd62ed3e14610302578063efe23e8614610315578063f2fde38b14610328575f80fd5b806370a082311461024d578063715018a61461027557806389e2587f1461027d5780638a8c523c146102905780638da5cb5b1461029857806395d89b41146102a9575f80fd5b806323b872dd1161011057806323b872dd146101df578063313ce567146101f2578063395093511461020157806342966c681461021457806349bd5a5e14610227578063667185241461023a575f80fd5b806306fdde031461014c578063095ea7b31461016a57806313bed0301461018d5780631694505e146101a257806318160ddd146101cd575b5f80fd5b61015461033b565b6040516101619190610ece565b60405180910390f35b61017d610178366004610f34565b6103cb565b6040519015158152602001610161565b6101a061019b366004610f70565b6103e4565b005b6006546101b5906001600160a01b031681565b6040516001600160a01b039091168152602001610161565b6002545b604051908152602001610161565b61017d6101ed366004611030565b6104b0565b60405160128152602001610161565b61017d61020f366004610f34565b6104d3565b6101a0610222366004611069565b6104f4565b6007546101b5906001600160a01b031681565b6101a0610248366004611080565b610501565b6101d161025b366004611080565b6001600160a01b03165f9081526020819052604090205490565b6101a0610586565b6008546101b5906001600160a01b031681565b6101a0610599565b6005546001600160a01b03166101b5565b6101546105e6565b61017d6102bf366004610f34565b6105f5565b61017d6102d2366004610f34565b61066f565b61017d6102e5366004611080565b6001600160a01b03165f908152600c602052604090205460ff1690565b6101d16103103660046110a0565b61067c565b6101a06103233660046110d1565b6106a6565b6101a0610336366004611080565b6106d8565b60606003805461034a9061110a565b80601f01602080910402602001604051908101604052809291908181526020018280546103769061110a565b80156103c15780601f10610398576101008083540402835291602001916103c1565b820191905f5260205f20905b8154815290600101906020018083116103a457829003601f168201915b5050505050905090565b5f336103d881858561074e565b60019150505b92915050565b6103ec610871565b5f5b81518110156104ac576001600c5f84848151811061040e5761040e611142565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff02191690831515021790555081818151811061045d5761045d611142565b60200260200101516001600160a01b03167fa135d8a89f8ad3cc5f7286bb47694daf0a71ab3358dc6927bf1164b3e05e6abc60405160405180910390a2806104a48161116a565b9150506103ee565b5050565b5f336104bd8582856108cb565b6104c8858585610943565b506001949350505050565b5f336103d88185856104e5838361067c565b6104ef9190611182565b61074e565b6104fe3382610a7c565b50565b610509610871565b6001600160a01b0381166105645760405162461bcd60e51b815260206004820152601b60248201527f7a65726f2061646472657373206973206e6f7420616c6c6f776564000000000060448201526064015b60405180910390fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b61058e610871565b6105975f610bb7565b565b6105a1610871565b600a805460ff191660019081179091556040519081527fbeda7dca7bc1b3e80b871f4818129ec73b771581f803d553aeb3484098e5f65a9060200160405180910390a1565b60606004805461034a9061110a565b5f3381610602828661067c565b9050838110156106625760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161055b565b6104c8828686840361074e565b5f336103d8818585610943565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6106ae610871565b6001600160a01b03919091165f908152600960205260409020805460ff1916911515919091179055565b6106e0610871565b6001600160a01b0381166107455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161055b565b6104fe81610bb7565b6001600160a01b0383166107b05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161055b565b6001600160a01b0382166108115760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161055b565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146105975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055b565b5f6108d6848461067c565b90505f19811461093d57818110156109305760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161055b565b61093d848484840361074e565b50505050565b6001600160a01b0382165f9081526009602052604090205460ff161561099d5760405162461bcd60e51b815260206004820152600f60248201526e189bdd081b9bdd08185b1b1bddd959608a1b604482015260640161055b565b6001600160a01b0383165f9081526009602052604090205460ff16156109f75760405162461bcd60e51b815260206004820152600f60248201526e189bdd081b9bdd08185b1b1bddd959608a1b604482015260640161055b565b6007546001600160a01b03808516911603610a27576001600160a01b0382165f908152600b602052604090204390555b6007546001600160a01b038084169116148015610a5a57506001600160a01b0383165f908152600b602052604090205443145b15610a7157610a6c8383836005610c08565b505050565b610a6c838383610c8b565b6001600160a01b038216610adc5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161055b565b610ae7825f83610e38565b6001600160a01b0382165f9081526020819052604090205481811015610b5a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161055b565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b600a54610100900460ff1661093d575f6064610c2760ff841685611195565b610c3191906111ac565b90505f610c3e82856111cb565b600a805461ff00191661010017905590508015610c6057610c60868683610c8b565b600854610c789087906001600160a01b031684610c8b565b5050600a805461ff001916905550505050565b6001600160a01b038316610cef5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161055b565b6001600160a01b038216610d515760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161055b565b610d5c838383610e38565b6001600160a01b0383165f9081526020819052604090205481811015610dd35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161055b565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361093d565b6001600160a01b0383165f908152600c602052604090205460ff1680610e7557506001600160a01b0382165f908152600c602052604090205460ff165b80610e825750600a5460ff165b610a6c5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720686173206e6f742073746172746564000000000000000000604482015260640161055b565b5f6020808352835180828501525f5b81811015610ef957858101830151858201604001528201610edd565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f2f575f80fd5b919050565b5f8060408385031215610f45575f80fd5b610f4e83610f19565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b5f6020808385031215610f81575f80fd5b823567ffffffffffffffff80821115610f98575f80fd5b818501915085601f830112610fab575f80fd5b813581811115610fbd57610fbd610f5c565b8060051b604051601f19603f83011681018181108582111715610fe257610fe2610f5c565b604052918252848201925083810185019188831115610fff575f80fd5b938501935b828510156110245761101585610f19565b84529385019392850192611004565b98975050505050505050565b5f805f60608486031215611042575f80fd5b61104b84610f19565b925061105960208501610f19565b9150604084013590509250925092565b5f60208284031215611079575f80fd5b5035919050565b5f60208284031215611090575f80fd5b61109982610f19565b9392505050565b5f80604083850312156110b1575f80fd5b6110ba83610f19565b91506110c860208401610f19565b90509250929050565b5f80604083850312156110e2575f80fd5b6110eb83610f19565b9150602083013580151581146110ff575f80fd5b809150509250929050565b600181811c9082168061111e57607f821691505b60208210810361113c57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f6001820161117b5761117b611156565b5060010190565b808201808211156103de576103de611156565b80820281158282048414176103de576103de611156565b5f826111c657634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156103de576103de61115656fea264697066735822122046b4b1b76ba847b0f6f5beeddd9fe01184bc6925180a105d52b292df1898ef5764736f6c63430008140033
Deployed Bytecode Sourcemap
28712:5175:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17654:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20014:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;20014:201:0;1004:187:1;31388:222:0;;;;;;:::i;:::-;;:::i;:::-;;28777:41;;;;;-1:-1:-1;;;;;28777:41:0;;;;;;-1:-1:-1;;;;;2644:32:1;;;2626:51;;2614:2;2599:18;28777:41:0;2454:229:1;18783:108:0;18871:12;;18783:108;;;2834:25:1;;;2822:2;2807:18;18783:108:0;2688:177:1;20795:261:0;;;;;;:::i;:::-;;:::i;18625:93::-;;;18708:2;3345:36:1;;3333:2;3318:18;18625:93:0;3203:184:1;21465:238:0;;;;;;:::i;:::-;;:::i;33426:82::-;;;;;;:::i;:::-;;:::i;28825:28::-;;;;;-1:-1:-1;;;;;28825:28:0;;;32741:180;;;;;;:::i;:::-;;:::i;18954:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;19055:18:0;19028:7;19055:18;;;;;;;;;;;;18954:127;11109:103;;;:::i;28862:26::-;;;;;-1:-1:-1;;;;;28862:26:0;;;31259:121;;;:::i;10468:87::-;10541:6;;-1:-1:-1;;;;;10541:6:0;10468:87;;17873:104;;;:::i;22206:436::-;;;;;;:::i;:::-;;:::i;19287:193::-;;;;;;:::i;:::-;;:::i;31618:109::-;;;;;;:::i;:::-;-1:-1:-1;;;;;31697:22:0;31673:4;31697:22;;;:13;:22;;;;;;;;;31618:109;19543:151;;;;;;:::i;:::-;;:::i;32619:114::-;;;;;;:::i;:::-;;:::i;11367:201::-;;;;;;:::i;:::-;;:::i;17654:100::-;17708:13;17741:5;17734:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17654:100;:::o;20014:201::-;20097:4;9099:10;20153:32;9099:10;20169:7;20178:6;20153:8;:32::i;:::-;20203:4;20196:11;;;20014:201;;;;;:::o;31388:222::-;10354:13;:11;:13::i;:::-;31472:6:::1;31467:136;31484:9;:16;31482:1;:18;31467:136;;;31548:4;31518:13;:27;31532:9;31542:1;31532:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;31518:27:0::1;-1:-1:-1::0;;;;;31518:27:0::1;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;31580:9;31590:1;31580:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;31568:25:0::1;;;;;;;;;;;31502:3:::0;::::1;::::0;::::1;:::i;:::-;;;;31467:136;;;;31388:222:::0;:::o;20795:261::-;20892:4;9099:10;20950:38;20966:4;9099:10;20981:6;20950:15;:38::i;:::-;20999:27;21009:4;21015:2;21019:6;20999:9;:27::i;:::-;-1:-1:-1;21044:4:0;;20795:261;-1:-1:-1;;;;20795:261:0:o;21465:238::-;21553:4;9099:10;21609:64;9099:10;21625:7;21662:10;21634:25;9099:10;21625:7;21634:9;:25::i;:::-;:38;;;;:::i;:::-;21609:8;:64::i;33426:82::-;33475:25;33481:10;33493:6;33475:5;:25::i;:::-;33426:82;:::o;32741:180::-;10354:13;:11;:13::i;:::-;-1:-1:-1;;;;;32824:24:0;::::1;32815:65;;;::::0;-1:-1:-1;;;32815:65:0;;5714:2:1;32815:65:0::1;::::0;::::1;5696:21:1::0;5753:2;5733:18;;;5726:30;5792:29;5772:18;;;5765:57;5839:18;;32815:65:0::1;;;;;;;;;32889:11;:24:::0;;-1:-1:-1;;;;;;32889:24:0::1;-1:-1:-1::0;;;;;32889:24:0;;;::::1;::::0;;;::::1;::::0;;32741:180::o;11109:103::-;10354:13;:11;:13::i;:::-;11174:30:::1;11201:1;11174:18;:30::i;:::-;11109:103::o:0;31259:121::-;10354:13;:11;:13::i;:::-;31314:15:::1;:22:::0;;-1:-1:-1;;31314:22:0::1;31332:4;31314:22:::0;;::::1;::::0;;;31352:20:::1;::::0;1144:41:1;;;31352:20:0::1;::::0;1132:2:1;1117:18;31352:20:0::1;;;;;;;31259:121::o:0;17873:104::-;17929:13;17962:7;17955:14;;;;;:::i;22206:436::-;22299:4;9099:10;22299:4;22382:25;9099:10;22399:7;22382:9;:25::i;:::-;22355:52;;22446:15;22426:16;:35;;22418:85;;;;-1:-1:-1;;;22418:85:0;;6070:2:1;22418:85:0;;;6052:21:1;6109:2;6089:18;;;6082:30;6148:34;6128:18;;;6121:62;-1:-1:-1;;;6199:18:1;;;6192:35;6244:19;;22418:85:0;5868:401:1;22418:85:0;22539:60;22548:5;22555:7;22583:15;22564:16;:34;22539:8;:60::i;19287:193::-;19366:4;9099:10;19422:28;9099:10;19439:2;19443:6;19422:9;:28::i;19543:151::-;-1:-1:-1;;;;;19659:18:0;;;19632:7;19659:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19543:151::o;32619:114::-;10354:13;:11;:13::i;:::-;-1:-1:-1;;;;;32697:20:0;;;::::1;;::::0;;;:11:::1;:20;::::0;;;;:28;;-1:-1:-1;;32697:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32619:114::o;11367:201::-;10354:13;:11;:13::i;:::-;-1:-1:-1;;;;;11456:22:0;::::1;11448:73;;;::::0;-1:-1:-1;;;11448:73:0;;6476:2:1;11448:73:0::1;::::0;::::1;6458:21:1::0;6515:2;6495:18;;;6488:30;6554:34;6534:18;;;6527:62;-1:-1:-1;;;6605:18:1;;;6598:36;6651:19;;11448:73:0::1;6274:402:1::0;11448:73:0::1;11532:28;11551:8;11532:18;:28::i;26199:346::-:0;-1:-1:-1;;;;;26301:19:0;;26293:68;;;;-1:-1:-1;;;26293:68:0;;6883:2:1;26293:68:0;;;6865:21:1;6922:2;6902:18;;;6895:30;6961:34;6941:18;;;6934:62;-1:-1:-1;;;7012:18:1;;;7005:34;7056:19;;26293:68:0;6681:400:1;26293:68:0;-1:-1:-1;;;;;26380:21:0;;26372:68;;;;-1:-1:-1;;;26372:68:0;;7288:2:1;26372:68:0;;;7270:21:1;7327:2;7307:18;;;7300:30;7366:34;7346:18;;;7339:62;-1:-1:-1;;;7417:18:1;;;7410:32;7459:19;;26372:68:0;7086:398:1;26372:68:0;-1:-1:-1;;;;;26453:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;26505:32;;2834:25:1;;;26505:32:0;;2807:18:1;26505:32:0;;;;;;;26199:346;;;:::o;10633:132::-;10541:6;;-1:-1:-1;;;;;10541:6:0;9099:10;10697:23;10689:68;;;;-1:-1:-1;;;10689:68:0;;7691:2:1;10689:68:0;;;7673:21:1;;;7710:18;;;7703:30;7769:34;7749:18;;;7742:62;7821:18;;10689:68:0;7489:356:1;26836:419:0;26937:24;26964:25;26974:5;26981:7;26964:9;:25::i;:::-;26937:52;;-1:-1:-1;;27004:16:0;:37;27000:248;;27086:6;27066:16;:26;;27058:68;;;;-1:-1:-1;;;27058:68:0;;8052:2:1;27058:68:0;;;8034:21:1;8091:2;8071:18;;;8064:30;8130:31;8110:18;;;8103:59;8179:18;;27058:68:0;7850:353:1;27058:68:0;27170:51;27179:5;27186:7;27214:6;27195:16;:25;27170:8;:51::i;:::-;26926:329;26836:419;;;:::o;32061:550::-;-1:-1:-1;;;;;32179:22:0;;;;;;:11;:22;;;;;;;;32178:23;32169:52;;;;-1:-1:-1;;;32169:52:0;;8410:2:1;32169:52:0;;;8392:21:1;8449:2;8429:18;;;8422:30;-1:-1:-1;;;8468:18:1;;;8461:45;8523:18;;32169:52:0;8208:339:1;32169:52:0;-1:-1:-1;;;;;32243:19:0;;;;;;:11;:19;;;;;;;;32242:20;32233:49;;;;-1:-1:-1;;;32233:49:0;;8410:2:1;32233:49:0;;;8392:21:1;8449:2;8429:18;;;8422:30;-1:-1:-1;;;8468:18:1;;;8461:45;8523:18;;32233:49:0;8208:339:1;32233:49:0;33592:13;;-1:-1:-1;;;;;33592:22:0;;;:13;;:22;32293:88;;-1:-1:-1;;;;;32325:29:0;;;;;;:18;:29;;;;;32357:12;32325:44;;32293:88;33592:13;;-1:-1:-1;;;;;33592:22:0;;;:13;;:22;32394:50;;;;-1:-1:-1;;;;;;33833:25:0;;33809:4;33833:25;;;:18;:25;;;;;;33862:12;33833:41;32415:29;32391:145;;;32459:46;32476:6;32484:9;32495:6;32503:1;32459:16;:46::i;:::-;32061:550;;;:::o;32391:145::-;32552:42;32568:6;32576:9;32587:6;32552:15;:42::i;25086:675::-;-1:-1:-1;;;;;25170:21:0;;25162:67;;;;-1:-1:-1;;;25162:67:0;;8754:2:1;25162:67:0;;;8736:21:1;8793:2;8773:18;;;8766:30;8832:34;8812:18;;;8805:62;-1:-1:-1;;;8883:18:1;;;8876:31;8924:19;;25162:67:0;8552:397:1;25162:67:0;25242:49;25263:7;25280:1;25284:6;25242:20;:49::i;:::-;-1:-1:-1;;;;;25329:18:0;;25304:22;25329:18;;;;;;;;;;;25366:24;;;;25358:71;;;;-1:-1:-1;;;25358:71:0;;9156:2:1;25358:71:0;;;9138:21:1;9195:2;9175:18;;;9168:30;9234:34;9214:18;;;9207:62;-1:-1:-1;;;9285:18:1;;;9278:32;9327:19;;25358:71:0;8954:398:1;25358:71:0;-1:-1:-1;;;;;25465:18:0;;:9;:18;;;;;;;;;;;25486:23;;;25465:44;;25604:12;:22;;;;;;;25655:37;2834:25:1;;;25465:9:0;;:18;25655:37;;2807:18:1;25655:37:0;;;;;;;32061:550;;;:::o;11728:191::-;11821:6;;;-1:-1:-1;;;;;11838:17:0;;;-1:-1:-1;;;;;;11838:17:0;;;;;;;11871:40;;11821:6;;;11838:17;11821:6;;11871:40;;11802:16;;11871:40;11791:128;11728:191;:::o;32935:483::-;33052:16;;;;;;;33083:7;33048:53;33111:11;33148:3;33125:20;;;;:6;:20;:::i;:::-;:26;;;;:::i;:::-;33111:40;-1:-1:-1;33162:17:0;33182:12;33111:40;33182:6;:12;:::i;:::-;33205:16;:23;;-1:-1:-1;;33205:23:0;;;;;33162:32;-1:-1:-1;33242:13:0;;33239:85;;33267:45;33283:6;33291:9;33302;33267:15;:45::i;:::-;33358:11;;33334:41;;33350:6;;-1:-1:-1;;;;;33358:11:0;33371:3;33334:15;:41::i;:::-;-1:-1:-1;;33386:16:0;:24;;-1:-1:-1;;33386:24:0;;;32935:483;;;;:::o;23112:806::-;-1:-1:-1;;;;;23209:18:0;;23201:68;;;;-1:-1:-1;;;23201:68:0;;10087:2:1;23201:68:0;;;10069:21:1;10126:2;10106:18;;;10099:30;10165:34;10145:18;;;10138:62;-1:-1:-1;;;10216:18:1;;;10209:35;10261:19;;23201:68:0;9885:401:1;23201:68:0;-1:-1:-1;;;;;23288:16:0;;23280:64;;;;-1:-1:-1;;;23280:64:0;;10493:2:1;23280:64:0;;;10475:21:1;10532:2;10512:18;;;10505:30;10571:34;10551:18;;;10544:62;-1:-1:-1;;;10622:18:1;;;10615:33;10665:19;;23280:64:0;10291:399:1;23280:64:0;23357:38;23378:4;23384:2;23388:6;23357:20;:38::i;:::-;-1:-1:-1;;;;;23430:15:0;;23408:19;23430:15;;;;;;;;;;;23464:21;;;;23456:72;;;;-1:-1:-1;;;23456:72:0;;10897:2:1;23456:72:0;;;10879:21:1;10936:2;10916:18;;;10909:30;10975:34;10955:18;;;10948:62;-1:-1:-1;;;11026:18:1;;;11019:36;11072:19;;23456:72:0;10695:402:1;23456:72:0;-1:-1:-1;;;;;23564:15:0;;;:9;:15;;;;;;;;;;;23582:20;;;23564:38;;23782:13;;;;;;;;;;:23;;;;;;23834:26;;2834:25:1;;;23782:13:0;;23834:26;;2807:18:1;23834:26:0;;;;;;;23873:37;32061:550;31737:316;-1:-1:-1;;;;;31697:22:0;;31673:4;31697:22;;;:13;:22;;;;;;;;31897:37;;;-1:-1:-1;;;;;;31697:22:0;;31673:4;31697:22;;;:13;:22;;;;;;;;31916:18;31897:56;;;-1:-1:-1;31938:15:0;;;;31897:56;31889:92;;;;-1:-1:-1;;;31889:92:0;;11304:2:1;31889:92:0;;;11286:21:1;11343:2;11323:18;;;11316:30;11382:25;11362:18;;;11355:53;11425:18;;31889:92:0;11102:347:1;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:127::-;1257:10;1252:3;1248:20;1245:1;1238:31;1288:4;1285:1;1278:15;1312:4;1309:1;1302:15;1328:1121;1412:6;1443:2;1486;1474:9;1465:7;1461:23;1457:32;1454:52;;;1502:1;1499;1492:12;1454:52;1542:9;1529:23;1571:18;1612:2;1604:6;1601:14;1598:34;;;1628:1;1625;1618:12;1598:34;1666:6;1655:9;1651:22;1641:32;;1711:7;1704:4;1700:2;1696:13;1692:27;1682:55;;1733:1;1730;1723:12;1682:55;1769:2;1756:16;1791:2;1787;1784:10;1781:36;;;1797:18;;:::i;:::-;1843:2;1840:1;1836:10;1875:2;1869:9;1938:2;1934:7;1929:2;1925;1921:11;1917:25;1909:6;1905:38;1993:6;1981:10;1978:22;1973:2;1961:10;1958:18;1955:46;1952:72;;;2004:18;;:::i;:::-;2040:2;2033:22;2090:18;;;2124:15;;;;-1:-1:-1;2166:11:1;;;2162:20;;;2194:19;;;2191:39;;;2226:1;2223;2216:12;2191:39;2250:11;;;;2270:148;2286:6;2281:3;2278:15;2270:148;;;2352:23;2371:3;2352:23;:::i;:::-;2340:36;;2303:12;;;;2396;;;;2270:148;;;2437:6;1328:1121;-1:-1:-1;;;;;;;;1328:1121:1:o;2870:328::-;2947:6;2955;2963;3016:2;3004:9;2995:7;2991:23;2987:32;2984:52;;;3032:1;3029;3022:12;2984:52;3055:29;3074:9;3055:29;:::i;:::-;3045:39;;3103:38;3137:2;3126:9;3122:18;3103:38;:::i;:::-;3093:48;;3188:2;3177:9;3173:18;3160:32;3150:42;;2870:328;;;;;:::o;3392:180::-;3451:6;3504:2;3492:9;3483:7;3479:23;3475:32;3472:52;;;3520:1;3517;3510:12;3472:52;-1:-1:-1;3543:23:1;;3392:180;-1:-1:-1;3392:180:1:o;3785:186::-;3844:6;3897:2;3885:9;3876:7;3872:23;3868:32;3865:52;;;3913:1;3910;3903:12;3865:52;3936:29;3955:9;3936:29;:::i;:::-;3926:39;3785:186;-1:-1:-1;;;3785:186:1:o;3976:260::-;4044:6;4052;4105:2;4093:9;4084:7;4080:23;4076:32;4073:52;;;4121:1;4118;4111:12;4073:52;4144:29;4163:9;4144:29;:::i;:::-;4134:39;;4192:38;4226:2;4215:9;4211:18;4192:38;:::i;:::-;4182:48;;3976:260;;;;;:::o;4241:347::-;4306:6;4314;4367:2;4355:9;4346:7;4342:23;4338:32;4335:52;;;4383:1;4380;4373:12;4335:52;4406:29;4425:9;4406:29;:::i;:::-;4396:39;;4485:2;4474:9;4470:18;4457:32;4532:5;4525:13;4518:21;4511:5;4508:32;4498:60;;4554:1;4551;4544:12;4498:60;4577:5;4567:15;;;4241:347;;;;;:::o;4593:380::-;4672:1;4668:12;;;;4715;;;4736:61;;4790:4;4782:6;4778:17;4768:27;;4736:61;4843:2;4835:6;4832:14;4812:18;4809:38;4806:161;;4889:10;4884:3;4880:20;4877:1;4870:31;4924:4;4921:1;4914:15;4952:4;4949:1;4942:15;4806:161;;4593:380;;;:::o;4978:127::-;5039:10;5034:3;5030:20;5027:1;5020:31;5070:4;5067:1;5060:15;5094:4;5091:1;5084:15;5110:127;5171:10;5166:3;5162:20;5159:1;5152:31;5202:4;5199:1;5192:15;5226:4;5223:1;5216:15;5242:135;5281:3;5302:17;;;5299:43;;5322:18;;:::i;:::-;-1:-1:-1;5369:1:1;5358:13;;5242:135::o;5382:125::-;5447:9;;;5468:10;;;5465:36;;;5481:18;;:::i;9357:168::-;9430:9;;;9461;;9478:15;;;9472:22;;9458:37;9448:71;;9499:18;;:::i;9530:217::-;9570:1;9596;9586:132;;9640:10;9635:3;9631:20;9628:1;9621:31;9675:4;9672:1;9665:15;9703:4;9700:1;9693:15;9586:132;-1:-1:-1;9732:9:1;;9530:217::o;9752:128::-;9819:9;;;9840:11;;;9837:37;;;9854:18;;:::i
Swarm Source
ipfs://46b4b1b76ba847b0f6f5beeddd9fe01184bc6925180a105d52b292df1898ef57
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.