ERC-20
MEME
Overview
Max Total Supply
1,000,000,000 RICHAI
Holders
363 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
237.841421052631578947 RICHAIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RichAi
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-08 */ // SPDX-License-Identifier: MITs pragma solidity 0.8.19; /** * ____ _ _ _ ___ * | _ \(_) ___| |__ / \ |_ _| * | |_) | |/ __| '_ \ / _ \ | | * | _ <| | (__| | | |/ ___ \ | | * |_| \_\_|\___|_| |_/_/ \_\___| * * AI-powered Image generator & Voice GPT assistant. * We have already established a functional product with our in-house ChatGPT assistant and AI Image Generator. * * Homepage: https://richai.app/ * Twitter: https://twitter.com/richaiApp * Telegram: https://t.me/richaiofficial * Discord: https://discord.gg/VQ9FcnHXXe * * Total Supply: 1 Billion Tokens * Set slippage to 3-4%: 1% to LP, 2% tax for Marketing & AI Development * * Telegram Bot: * - AI Chatbot * - AI image generator with over 10 styles * - Private chat with the bot * - Add the bot to your Telegram channel * * Discord Bot: * - AI Chatbot * - AI image generator with over 10 styles * - Customize images with 6 options * - Add the bot to your Discord community * * Web App: * - AI chatbot with voice commands * - AI image generator * - Visual customizations * - Easy to use interface * * Android App: * - AI chatbot with voice commands * - AI image generator * - Visual customizations */ /** * @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); } /** * @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); } /** * @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; } } /** * @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]. * * 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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 {} } /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } 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); } 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; } 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; } contract RichAi is ERC20Burnable { string private constant _name = "RichAI"; string private constant _symbol = "RICHAI"; uint8 private constant _decimals = 18; uint256 private constant _supply = 1_000_000_000; // 1 billion tokens uint256 public constant TOKENS_TO_SEND = 100000 * 10**_decimals; uint256 public constant TOKENS_TO_SELL_AND_LIQUIFY = 100000 * 10**_decimals; uint256 public constant MAX_TX_AMOUNT = 10000001 * 10**_decimals; uint256 public constant MAX_WALLET_AMOUNT = 10000001 * 10**_decimals; uint256 public constant TAX_FOR_LIQUIDITY = 1; uint256 public constant TAX_FOR_MARKETING = 1; uint256 public constant TAX_FOR_DEVELOPER = 1; uint256 public marketingReserves = 0; uint256 public developerReserves = 0; address public constant MARKETING_WALLET = 0x9da6A12c5F1bE1eD532Fa28354D896781eA971B2; address public constant DEVELOPER_WALLET = 0xF279C263EFbAd7A123866737D1735De837287A0a; address private constant DEAD = 0x000000000000000000000000000000000000dEaD; address private constant ZERO = 0x0000000000000000000000000000000000000000; mapping(address => bool) public _isExcludedFromFee; event PairUpdated(address _address); event ExcludedFromFeeUpdated(address _address, bool _status); IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; bool inSwapAndLiquify; event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); event FeePaid( uint256 tokens, uint256 eth ); modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } // =================================================== // CONSTRUCTOR // =================================================== constructor() ERC20(_name, _symbol) { _mint(msg.sender, (_supply * 10**_decimals)); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); //eth mainnet uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; _isExcludedFromFee[msg.sender] = true; _isExcludedFromFee[MARKETING_WALLET] = true; _isExcludedFromFee[DEVELOPER_WALLET] = true; _isExcludedFromFee[address(uniswapV2Router)] = true; } // =================================================== // INTERNAL // =================================================== function _transfer(address from, address to, uint256 amount) internal override { require(from != ZERO, "ERC20: transfer from the zero address"); require(to != ZERO, "ERC20: transfer to the zero address"); require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance"); if ((from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify) { if (from != uniswapV2Pair) { uint256 contractLiquidityBalance = balanceOf(address(this)) - (marketingReserves + developerReserves); if (contractLiquidityBalance >= TOKENS_TO_SELL_AND_LIQUIFY) { _swapAndLiquify(TOKENS_TO_SELL_AND_LIQUIFY); } if (marketingReserves >= TOKENS_TO_SEND) { _swapFeeAndSend(TOKENS_TO_SEND * 2); marketingReserves -= TOKENS_TO_SEND; developerReserves -= TOKENS_TO_SEND; } } uint256 transferAmount; if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { transferAmount = amount; } else { require(amount <= MAX_TX_AMOUNT, "ERC20: transfer amount exceeds the max transaction amount"); if (from == uniswapV2Pair){ require((amount + balanceOf(to)) <= MAX_WALLET_AMOUNT, "ERC20: balance amount exceeded max wallet amount limit"); } uint256 marketingShare = ((amount * TAX_FOR_MARKETING) / 100); uint256 developersShare = ((amount * TAX_FOR_DEVELOPER) / 100); uint256 liquidityShare = ((amount * TAX_FOR_LIQUIDITY) / 100); marketingReserves += marketingShare; developerReserves += developersShare; transferAmount = amount - (marketingShare + developersShare + liquidityShare); super._transfer(from, address(this), (marketingShare + developersShare + liquidityShare)); } super._transfer(from, to, transferAmount); } else { super._transfer(from, to, amount); } } function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { uint256 half = (contractTokenBalance / 2); uint256 otherHalf = (contractTokenBalance - half); uint256 initialBalance = address(this).balance; _swapTokensForEth(half); uint256 newBalance = (address(this).balance - initialBalance); _addLiquidity(otherHalf, address(this).balance); emit SwapAndLiquify(half, newBalance, otherHalf); } function _swapFeeAndSend(uint256 amount) private lockTheSwap { _swapTokensForEth(amount); bool success; uint256 ethReceived = address(this).balance; (success,) = address(MARKETING_WALLET).call{ value: ethReceived / 2 }(""); (success,) = address(DEVELOPER_WALLET).call{ value: ethReceived / 2 }(""); emit FeePaid(amount, ethReceived); } function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private lockTheSwap { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, MARKETING_WALLET, block.timestamp ); } receive() external payable {} fallback() external payable {} }
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":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"_status","type":"bool"}],"name":"ExcludedFromFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokens","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"eth","type":"uint256"}],"name":"FeePaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"PairUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DEVELOPER_WALLET","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MARKETING_WALLET","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TX_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WALLET_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TAX_FOR_DEVELOPER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TAX_FOR_LIQUIDITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TAX_FOR_MARKETING","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKENS_TO_SELL_AND_LIQUIFY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKENS_TO_SEND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"developerReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052600060055560006006553480156200001b57600080fd5b506040518060400160405280600681526020016552696368414960d01b8152506040518060400160405280600681526020016552494348414960d01b81525081600390816200006b919062000424565b5060046200007a828262000424565b505050620000a8336012600a62000092919062000605565b620000a290633b9aca006200061d565b620002b5565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000100573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000126919062000637565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000174573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200019a919062000637565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001e8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020e919062000637565b600880546001600160a01b0319166001600160a01b0392831617905516608081905233600090815260076020526040808220805460ff1990811660019081179092557f8488ec1f2f4dfe6a78b74c0db516ccd01ea799ca5ee2447c6712ca0b189abf5f80548216831790557f7429988353bb4807259369908a48c48b05c757b233d08118cdca36d51fa6cfea80548216831790559383529120805490921617905562000678565b6001600160a01b038216620003105760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000324919062000662565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003ab57607f821691505b602082108103620003cc57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200037b57600081815260208120601f850160051c81016020861015620003fb5750805b601f850160051c820191505b818110156200041c5782815560010162000407565b505050505050565b81516001600160401b0381111562000440576200044062000380565b620004588162000451845462000396565b84620003d2565b602080601f831160018114620004905760008415620004775750858301515b600019600386901b1c1916600185901b1785556200041c565b600085815260208120601f198616915b82811015620004c157888601518255948401946001909101908401620004a0565b5085821015620004e05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005475781600019048211156200052b576200052b620004f0565b808516156200053957918102915b93841c93908002906200050b565b509250929050565b6000826200056057506001620005ff565b816200056f57506000620005ff565b81600181146200058857600281146200059357620005b3565b6001915050620005ff565b60ff841115620005a757620005a7620004f0565b50506001821b620005ff565b5060208310610133831016604e8410600b8410161715620005d8575081810a620005ff565b620005e4838362000506565b8060001904821115620005fb57620005fb620004f0565b0290505b92915050565b60006200061660ff8416836200054f565b9392505050565b8082028115828204841417620005ff57620005ff620004f0565b6000602082840312156200064a57600080fd5b81516001600160a01b03811681146200061657600080fd5b80820180821115620005ff57620005ff620004f0565b608051611884620006b7600039600081816102010152818161113d015281816111f601528181611232015281816112cc015261133b01526118846000f3fe60806040526004361061018b5760003560e01c8063779fd455116100e0578063a9059cbb11610084578063c74f8e3711610061578063c74f8e3714610388578063d04e496714610464578063dd62ed3e1461048c578063fcb554131461038857005b8063a9059cbb1461041c578063aa8ea6b0146103d2578063c6859d071461043c57005b80638ae2702f116100bd5780638ae2702f146103bd5780638c5e9f74146103d257806395d89b41146103e7578063a457c2d7146103fc57005b8063779fd4551461038857806379cc67901461039d5780637e0ec1d1146103bd57005b8063313ce5671161014757806349bd5a5e1161012457806349bd5a5e146102ec57806358ebb8221461030c57806370a0823114610322578063768dc7101461035857005b8063313ce5671461029057806339509351146102ac57806342966c68146102cc57005b806306fdde0314610194578063095ea7b3146101bf5780631694505e146101ef57806318160ddd1461023b5780631e2ed58c1461025a57806323b872dd1461027057005b3661019257005b005b3480156101a057600080fd5b506101a96104ac565b6040516101b691906113c6565b60405180910390f35b3480156101cb57600080fd5b506101df6101da366004611429565b61053e565b60405190151581526020016101b6565b3480156101fb57600080fd5b506102237f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101b6565b34801561024757600080fd5b506002545b6040519081526020016101b6565b34801561026657600080fd5b5061024c60065481565b34801561027c57600080fd5b506101df61028b366004611455565b610558565b34801561029c57600080fd5b50604051601281526020016101b6565b3480156102b857600080fd5b506101df6102c7366004611429565b61057c565b3480156102d857600080fd5b506101926102e7366004611496565b61059e565b3480156102f857600080fd5b50600854610223906001600160a01b031681565b34801561031857600080fd5b5061024c60055481565b34801561032e57600080fd5b5061024c61033d3660046114af565b6001600160a01b031660009081526020819052604090205490565b34801561036457600080fd5b506101df6103733660046114af565b60076020526000908152604090205460ff1681565b34801561039457600080fd5b5061024c600181565b3480156103a957600080fd5b506101926103b8366004611429565b6105ab565b3480156103c957600080fd5b5061024c6105c4565b3480156103de57600080fd5b5061024c6105e0565b3480156103f357600080fd5b506101a96105f9565b34801561040857600080fd5b506101df610417366004611429565b610608565b34801561042857600080fd5b506101df610437366004611429565b610688565b34801561044857600080fd5b50610223739da6a12c5f1be1ed532fa28354d896781ea971b281565b34801561047057600080fd5b5061022373f279c263efbad7a123866737d1735de837287a0a81565b34801561049857600080fd5b5061024c6104a73660046114d3565b610696565b6060600380546104bb9061150c565b80601f01602080910402602001604051908101604052809291908181526020018280546104e79061150c565b80156105345780601f1061050957610100808354040283529160200191610534565b820191906000526020600020905b81548152906001019060200180831161051757829003601f168201915b5050505050905090565b60003361054c8185856106c1565b60019150505b92915050565b6000336105668582856107e5565b61057185858561085f565b506001949350505050565b60003361054c81858561058f8383610696565b610599919061155c565b6106c1565b6105a83382610cd8565b50565b6105b68233836107e5565b6105c08282610cd8565b5050565b6105d06012600a611653565b6105dd9062989681611662565b81565b6105ec6012600a611653565b6105dd90620186a0611662565b6060600480546104bb9061150c565b600033816106168286610696565b90508381101561067b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61057182868684036106c1565b60003361054c81858561085f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166107235760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610672565b6001600160a01b0382166107845760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610672565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006107f18484610696565b90506000198114610859578181101561084c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610672565b61085984848484036106c1565b50505050565b6001600160a01b0383166108855760405162461bcd60e51b815260040161067290611679565b6001600160a01b0382166108ab5760405162461bcd60e51b8152600401610672906116be565b806108cb846001600160a01b031660009081526020819052604090205490565b10156108e95760405162461bcd60e51b815260040161067290611701565b6008546001600160a01b038481169116148061091257506008546001600160a01b038381169116145b80156109285750600854600160a01b900460ff16155b15610cc8576008546001600160a01b03848116911614610a5f576000600654600554610954919061155c565b3060009081526020819052604090205461096e9190611747565b905061097c6012600a611653565b61098990620186a0611662565b81106109b0576109b061099e6012600a611653565b6109ab90620186a0611662565b610e0a565b6109bc6012600a611653565b6109c990620186a0611662565b60055410610a5d576109fd6109e06012600a611653565b6109ed90620186a0611662565b6109f8906002611662565b610eb1565b610a096012600a611653565b610a1690620186a0611662565b60056000828254610a279190611747565b90915550610a3990506012600a611653565b610a4690620186a0611662565b60066000828254610a579190611747565b90915550505b505b6001600160a01b03831660009081526007602052604081205460ff1680610a9e57506001600160a01b03831660009081526007602052604090205460ff165b15610aaa575080610cbd565b610ab66012600a611653565b610ac39062989681611662565b821115610b385760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610672565b6008546001600160a01b0390811690851603610bf757610b5a6012600a611653565b610b679062989681611662565b6001600160a01b038416600090815260208190526040902054610b8a908461155c565b1115610bf75760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610672565b60006064610c06600185611662565b610c10919061175a565b905060006064610c21600186611662565b610c2b919061175a565b905060006064610c3c600187611662565b610c46919061175a565b90508260056000828254610c5a919061155c565b925050819055508160066000828254610c73919061155c565b90915550819050610c84838561155c565b610c8e919061155c565b610c989086611747565b9350610cb9873083610caa868861155c565b610cb4919061155c565b610fe8565b5050505b610859848483610fe8565b610cd3838383610fe8565b505050565b6001600160a01b038216610d385760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610672565b6001600160a01b03821660009081526020819052604090205481811015610dac5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610672565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6008805460ff60a01b1916600160a01b1790556000610e2a60028361175a565b90506000610e388284611747565b905047610e44836110d3565b6000610e508247611747565b9050610e5c83476112b3565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506008805460ff60a01b19169055505050565b6008805460ff60a01b1916600160a01b179055610ecd816110d3565b600047739da6a12c5f1be1ed532fa28354d896781ea971b2610ef060028361175a565b604051600081818185875af1925050503d8060008114610f2c576040519150601f19603f3d011682016040523d82523d6000602084013e610f31565b606091505b5090925073f279c263efbad7a123866737d1735de837287a0a9050610f5760028361175a565b604051600081818185875af1925050503d8060008114610f93576040519150601f19603f3d011682016040523d82523d6000602084013e610f98565b606091505b505060408051858152602081018490529193507f55ccb2f292ca4178d62a951295205699e52af69c6f447b1b8926abab9ea96616910160405180910390a150506008805460ff60a01b1916905550565b6001600160a01b03831661100e5760405162461bcd60e51b815260040161067290611679565b6001600160a01b0382166110345760405162461bcd60e51b8152600401610672906116be565b6001600160a01b0383166000908152602081905260409020548181101561106d5760405162461bcd60e51b815260040161067290611701565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610859565b6008805460ff60a01b1916600160a01b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061111b5761111b61177c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611199573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111bd9190611792565b816001815181106111d0576111d061177c565b60200260200101906001600160a01b031690816001600160a01b03168152505061121b307f0000000000000000000000000000000000000000000000000000000000000000846106c1565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906112709085906000908690309042906004016117af565b600060405180830381600087803b15801561128a57600080fd5b505af115801561129e573d6000803e3d6000fd5b50506008805460ff60a01b1916905550505050565b6008805460ff60a01b1916600160a01b1790556112f1307f0000000000000000000000000000000000000000000000000000000000000000846106c1565b60405163f305d71960e01b8152306004820152602481018390526000604482018190526064820152739da6a12c5f1be1ed532fa28354d896781ea971b260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af115801561138d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906113b29190611820565b50506008805460ff60a01b19169055505050565b600060208083528351808285015260005b818110156113f3578581018301518582016040015282016113d7565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146105a857600080fd5b6000806040838503121561143c57600080fd5b823561144781611414565b946020939093013593505050565b60008060006060848603121561146a57600080fd5b833561147581611414565b9250602084013561148581611414565b929592945050506040919091013590565b6000602082840312156114a857600080fd5b5035919050565b6000602082840312156114c157600080fd5b81356114cc81611414565b9392505050565b600080604083850312156114e657600080fd5b82356114f181611414565b9150602083013561150181611414565b809150509250929050565b600181811c9082168061152057607f821691505b60208210810361154057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561055257610552611546565b600181815b808511156115aa57816000190482111561159057611590611546565b8085161561159d57918102915b93841c9390800290611574565b509250929050565b6000826115c157506001610552565b816115ce57506000610552565b81600181146115e457600281146115ee5761160a565b6001915050610552565b60ff8411156115ff576115ff611546565b50506001821b610552565b5060208310610133831016604e8410600b841016171561162d575081810a610552565b611637838361156f565b806000190482111561164b5761164b611546565b029392505050565b60006114cc60ff8416836115b2565b808202811582820484141761055257610552611546565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b8181038181111561055257610552611546565b60008261177757634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156117a457600080fd5b81516114cc81611414565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156117ff5784516001600160a01b0316835293830193918301916001016117da565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561183557600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122064530c5852b0b610cec7482525c500459ce34e082817266b0f54eb94ea28697364736f6c63430008130033
Deployed Bytecode
0x60806040526004361061018b5760003560e01c8063779fd455116100e0578063a9059cbb11610084578063c74f8e3711610061578063c74f8e3714610388578063d04e496714610464578063dd62ed3e1461048c578063fcb554131461038857005b8063a9059cbb1461041c578063aa8ea6b0146103d2578063c6859d071461043c57005b80638ae2702f116100bd5780638ae2702f146103bd5780638c5e9f74146103d257806395d89b41146103e7578063a457c2d7146103fc57005b8063779fd4551461038857806379cc67901461039d5780637e0ec1d1146103bd57005b8063313ce5671161014757806349bd5a5e1161012457806349bd5a5e146102ec57806358ebb8221461030c57806370a0823114610322578063768dc7101461035857005b8063313ce5671461029057806339509351146102ac57806342966c68146102cc57005b806306fdde0314610194578063095ea7b3146101bf5780631694505e146101ef57806318160ddd1461023b5780631e2ed58c1461025a57806323b872dd1461027057005b3661019257005b005b3480156101a057600080fd5b506101a96104ac565b6040516101b691906113c6565b60405180910390f35b3480156101cb57600080fd5b506101df6101da366004611429565b61053e565b60405190151581526020016101b6565b3480156101fb57600080fd5b506102237f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016101b6565b34801561024757600080fd5b506002545b6040519081526020016101b6565b34801561026657600080fd5b5061024c60065481565b34801561027c57600080fd5b506101df61028b366004611455565b610558565b34801561029c57600080fd5b50604051601281526020016101b6565b3480156102b857600080fd5b506101df6102c7366004611429565b61057c565b3480156102d857600080fd5b506101926102e7366004611496565b61059e565b3480156102f857600080fd5b50600854610223906001600160a01b031681565b34801561031857600080fd5b5061024c60055481565b34801561032e57600080fd5b5061024c61033d3660046114af565b6001600160a01b031660009081526020819052604090205490565b34801561036457600080fd5b506101df6103733660046114af565b60076020526000908152604090205460ff1681565b34801561039457600080fd5b5061024c600181565b3480156103a957600080fd5b506101926103b8366004611429565b6105ab565b3480156103c957600080fd5b5061024c6105c4565b3480156103de57600080fd5b5061024c6105e0565b3480156103f357600080fd5b506101a96105f9565b34801561040857600080fd5b506101df610417366004611429565b610608565b34801561042857600080fd5b506101df610437366004611429565b610688565b34801561044857600080fd5b50610223739da6a12c5f1be1ed532fa28354d896781ea971b281565b34801561047057600080fd5b5061022373f279c263efbad7a123866737d1735de837287a0a81565b34801561049857600080fd5b5061024c6104a73660046114d3565b610696565b6060600380546104bb9061150c565b80601f01602080910402602001604051908101604052809291908181526020018280546104e79061150c565b80156105345780601f1061050957610100808354040283529160200191610534565b820191906000526020600020905b81548152906001019060200180831161051757829003601f168201915b5050505050905090565b60003361054c8185856106c1565b60019150505b92915050565b6000336105668582856107e5565b61057185858561085f565b506001949350505050565b60003361054c81858561058f8383610696565b610599919061155c565b6106c1565b6105a83382610cd8565b50565b6105b68233836107e5565b6105c08282610cd8565b5050565b6105d06012600a611653565b6105dd9062989681611662565b81565b6105ec6012600a611653565b6105dd90620186a0611662565b6060600480546104bb9061150c565b600033816106168286610696565b90508381101561067b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61057182868684036106c1565b60003361054c81858561085f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166107235760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610672565b6001600160a01b0382166107845760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610672565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006107f18484610696565b90506000198114610859578181101561084c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610672565b61085984848484036106c1565b50505050565b6001600160a01b0383166108855760405162461bcd60e51b815260040161067290611679565b6001600160a01b0382166108ab5760405162461bcd60e51b8152600401610672906116be565b806108cb846001600160a01b031660009081526020819052604090205490565b10156108e95760405162461bcd60e51b815260040161067290611701565b6008546001600160a01b038481169116148061091257506008546001600160a01b038381169116145b80156109285750600854600160a01b900460ff16155b15610cc8576008546001600160a01b03848116911614610a5f576000600654600554610954919061155c565b3060009081526020819052604090205461096e9190611747565b905061097c6012600a611653565b61098990620186a0611662565b81106109b0576109b061099e6012600a611653565b6109ab90620186a0611662565b610e0a565b6109bc6012600a611653565b6109c990620186a0611662565b60055410610a5d576109fd6109e06012600a611653565b6109ed90620186a0611662565b6109f8906002611662565b610eb1565b610a096012600a611653565b610a1690620186a0611662565b60056000828254610a279190611747565b90915550610a3990506012600a611653565b610a4690620186a0611662565b60066000828254610a579190611747565b90915550505b505b6001600160a01b03831660009081526007602052604081205460ff1680610a9e57506001600160a01b03831660009081526007602052604090205460ff165b15610aaa575080610cbd565b610ab66012600a611653565b610ac39062989681611662565b821115610b385760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610672565b6008546001600160a01b0390811690851603610bf757610b5a6012600a611653565b610b679062989681611662565b6001600160a01b038416600090815260208190526040902054610b8a908461155c565b1115610bf75760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610672565b60006064610c06600185611662565b610c10919061175a565b905060006064610c21600186611662565b610c2b919061175a565b905060006064610c3c600187611662565b610c46919061175a565b90508260056000828254610c5a919061155c565b925050819055508160066000828254610c73919061155c565b90915550819050610c84838561155c565b610c8e919061155c565b610c989086611747565b9350610cb9873083610caa868861155c565b610cb4919061155c565b610fe8565b5050505b610859848483610fe8565b610cd3838383610fe8565b505050565b6001600160a01b038216610d385760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610672565b6001600160a01b03821660009081526020819052604090205481811015610dac5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610672565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6008805460ff60a01b1916600160a01b1790556000610e2a60028361175a565b90506000610e388284611747565b905047610e44836110d3565b6000610e508247611747565b9050610e5c83476112b3565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506008805460ff60a01b19169055505050565b6008805460ff60a01b1916600160a01b179055610ecd816110d3565b600047739da6a12c5f1be1ed532fa28354d896781ea971b2610ef060028361175a565b604051600081818185875af1925050503d8060008114610f2c576040519150601f19603f3d011682016040523d82523d6000602084013e610f31565b606091505b5090925073f279c263efbad7a123866737d1735de837287a0a9050610f5760028361175a565b604051600081818185875af1925050503d8060008114610f93576040519150601f19603f3d011682016040523d82523d6000602084013e610f98565b606091505b505060408051858152602081018490529193507f55ccb2f292ca4178d62a951295205699e52af69c6f447b1b8926abab9ea96616910160405180910390a150506008805460ff60a01b1916905550565b6001600160a01b03831661100e5760405162461bcd60e51b815260040161067290611679565b6001600160a01b0382166110345760405162461bcd60e51b8152600401610672906116be565b6001600160a01b0383166000908152602081905260409020548181101561106d5760405162461bcd60e51b815260040161067290611701565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610859565b6008805460ff60a01b1916600160a01b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061111b5761111b61177c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611199573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111bd9190611792565b816001815181106111d0576111d061177c565b60200260200101906001600160a01b031690816001600160a01b03168152505061121b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846106c1565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906112709085906000908690309042906004016117af565b600060405180830381600087803b15801561128a57600080fd5b505af115801561129e573d6000803e3d6000fd5b50506008805460ff60a01b1916905550505050565b6008805460ff60a01b1916600160a01b1790556112f1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846106c1565b60405163f305d71960e01b8152306004820152602481018390526000604482018190526064820152739da6a12c5f1be1ed532fa28354d896781ea971b260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af115801561138d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906113b29190611820565b50506008805460ff60a01b19169055505050565b600060208083528351808285015260005b818110156113f3578581018301518582016040015282016113d7565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146105a857600080fd5b6000806040838503121561143c57600080fd5b823561144781611414565b946020939093013593505050565b60008060006060848603121561146a57600080fd5b833561147581611414565b9250602084013561148581611414565b929592945050506040919091013590565b6000602082840312156114a857600080fd5b5035919050565b6000602082840312156114c157600080fd5b81356114cc81611414565b9392505050565b600080604083850312156114e657600080fd5b82356114f181611414565b9150602083013561150181611414565b809150509250929050565b600181811c9082168061152057607f821691505b60208210810361154057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561055257610552611546565b600181815b808511156115aa57816000190482111561159057611590611546565b8085161561159d57918102915b93841c9390800290611574565b509250929050565b6000826115c157506001610552565b816115ce57506000610552565b81600181146115e457600281146115ee5761160a565b6001915050610552565b60ff8411156115ff576115ff611546565b50506001821b610552565b5060208310610133831016604e8410600b841016171561162d575081810a610552565b611637838361156f565b806000190482111561164b5761164b611546565b029392505050565b60006114cc60ff8416836115b2565b808202811582820484141761055257610552611546565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b8181038181111561055257610552611546565b60008261177757634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156117a457600080fd5b81516114cc81611414565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156117ff5784516001600160a01b0316835293830193918301916001016117da565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561183557600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122064530c5852b0b610cec7482525c500459ce34e082817266b0f54eb94ea28697364736f6c63430008130033
Deployed Bytecode Sourcemap
24926:6779:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7265:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9616:201;;;;;;;;;;-1:-1:-1;9616:201:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;9616:201:0;1023:187:1;26251:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1406:32:1;;;1388:51;;1376:2;1361:18;26251:51:0;1215:230:1;8385:108:0;;;;;;;;;;-1:-1:-1;8473:12:0;;8385:108;;;1596:25:1;;;1584:2;1569:18;8385:108:0;1450:177:1;25686:36:0;;;;;;;;;;;;;;;;10397:295;;;;;;;;;;-1:-1:-1;10397:295:0;;;;;:::i;:::-;;:::i;8227:93::-;;;;;;;;;;-1:-1:-1;8227:93:0;;8310:2;2235:36:1;;2223:2;2208:18;8227:93:0;2093:184:1;11101:238:0;;;;;;;;;;-1:-1:-1;11101:238:0;;;;;:::i;:::-;;:::i;18832:91::-;;;;;;;;;;-1:-1:-1;18832:91:0;;;;;:::i;:::-;;:::i;26309:28::-;;;;;;;;;;-1:-1:-1;26309:28:0;;;;-1:-1:-1;;;;;26309:28:0;;;25643:36;;;;;;;;;;;;;;;;8556:127;;;;;;;;;;-1:-1:-1;8556:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8657:18:0;8630:7;8657:18;;;;;;;;;;;;8556:127;26081:50;;;;;;;;;;-1:-1:-1;26081:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25589:45;;;;;;;;;;;;25633:1;25589:45;;19242:164;;;;;;;;;;-1:-1:-1;19242:164:0;;;;;:::i;:::-;;:::i;25408:68::-;;;;;;;;;;;;;:::i;25183:63::-;;;;;;;;;;;;;:::i;7484:104::-;;;;;;;;;;;;;:::i;11842:436::-;;;;;;;;;;-1:-1:-1;11842:436:0;;;;;:::i;:::-;;:::i;8889:193::-;;;;;;;;;;-1:-1:-1;8889:193:0;;;;;:::i;:::-;;:::i;25731:85::-;;;;;;;;;;;;25774:42;25731:85;;25823;;;;;;;;;;;;25866:42;25823:85;;9145:151;;;;;;;;;;-1:-1:-1;9145:151:0;;;;;:::i;:::-;;:::i;7265:100::-;7319:13;7352:5;7345:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7265:100;:::o;9616:201::-;9699:4;5155:10;9755:32;5155:10;9771:7;9780:6;9755:8;:32::i;:::-;9805:4;9798:11;;;9616:201;;;;;:::o;10397:295::-;10528:4;5155:10;10586:38;10602:4;5155:10;10617:6;10586:15;:38::i;:::-;10635:27;10645:4;10651:2;10655:6;10635:9;:27::i;:::-;-1:-1:-1;10680:4:0;;10397:295;-1:-1:-1;;;;10397:295:0:o;11101:238::-;11189:4;5155:10;11245:64;5155:10;11261:7;11298:10;11270:25;5155:10;11261:7;11270:9;:25::i;:::-;:38;;;;:::i;:::-;11245:8;:64::i;18832:91::-;18888:27;5155:10;18908:6;18888:5;:27::i;:::-;18832:91;:::o;19242:164::-;19319:46;19335:7;5155:10;19358:6;19319:15;:46::i;:::-;19376:22;19382:7;19391:6;19376:5;:22::i;:::-;19242:164;;:::o;25408:68::-;25463:13;25097:2;25463;:13;:::i;:::-;25452:24;;:8;:24;:::i;:::-;25408:68;:::o;25183:63::-;25233:13;25097:2;25233;:13;:::i;:::-;25224:22;;:6;:22;:::i;7484:104::-;7540:13;7573:7;7566:14;;;;;:::i;11842:436::-;11935:4;5155:10;11935:4;12018:25;5155:10;12035:7;12018:9;:25::i;:::-;11991:52;;12082:15;12062:16;:35;;12054:85;;;;-1:-1:-1;;;12054:85:0;;5725:2:1;12054:85:0;;;5707:21:1;5764:2;5744:18;;;5737:30;5803:34;5783:18;;;5776:62;-1:-1:-1;;;5854:18:1;;;5847:35;5899:19;;12054:85:0;;;;;;;;;12175:60;12184:5;12191:7;12219:15;12200:16;:34;12175:8;:60::i;8889:193::-;8968:4;5155:10;9024:28;5155:10;9041:2;9045:6;9024:9;:28::i;9145:151::-;-1:-1:-1;;;;;9261:18:0;;;9234:7;9261:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9145:151::o;15869:380::-;-1:-1:-1;;;;;16005:19:0;;15997:68;;;;-1:-1:-1;;;15997:68:0;;6131:2:1;15997:68:0;;;6113:21:1;6170:2;6150:18;;;6143:30;6209:34;6189:18;;;6182:62;-1:-1:-1;;;6260:18:1;;;6253:34;6304:19;;15997:68:0;5929:400:1;15997:68:0;-1:-1:-1;;;;;16084:21:0;;16076:68;;;;-1:-1:-1;;;16076:68:0;;6536:2:1;16076:68:0;;;6518:21:1;6575:2;6555:18;;;6548:30;6614:34;6594:18;;;6587:62;-1:-1:-1;;;6665:18:1;;;6658:32;6707:19;;16076:68:0;6334:398:1;16076:68:0;-1:-1:-1;;;;;16157:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16209:32;;1596:25:1;;;16209:32:0;;1569:18:1;16209:32:0;;;;;;;15869:380;;;:::o;16540:453::-;16675:24;16702:25;16712:5;16719:7;16702:9;:25::i;:::-;16675:52;;-1:-1:-1;;16742:16:0;:37;16738:248;;16824:6;16804:16;:26;;16796:68;;;;-1:-1:-1;;;16796:68:0;;6939:2:1;16796:68:0;;;6921:21:1;6978:2;6958:18;;;6951:30;7017:31;6997:18;;;6990:59;7066:18;;16796:68:0;6737:353:1;16796:68:0;16908:51;16917:5;16924:7;16952:6;16933:16;:25;16908:8;:51::i;:::-;16664:329;16540:453;;;:::o;27618:2195::-;-1:-1:-1;;;;;27716:12:0;;27708:62;;;;-1:-1:-1;;;27708:62:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27789:10:0;;27781:58;;;;-1:-1:-1;;;27781:58:0;;;;;;;:::i;:::-;27877:6;27858:15;27868:4;-1:-1:-1;;;;;8657:18:0;8630:7;8657:18;;;;;;;;;;;;8556:127;27858:15;:25;;27850:76;;;;-1:-1:-1;;;27850:76:0;;;;;;;:::i;:::-;27952:13;;-1:-1:-1;;;;;27944:21:0;;;27952:13;;27944:21;;:44;;-1:-1:-1;27975:13:0;;-1:-1:-1;;;;;27969:19:0;;;27975:13;;27969:19;27944:44;27943:67;;;;-1:-1:-1;27994:16:0;;-1:-1:-1;;;27994:16:0;;;;27993:17;27943:67;27939:1867;;;28039:13;;-1:-1:-1;;;;;28031:21:0;;;28039:13;;28031:21;28027:582;;28073:32;28156:17;;28136;;:37;;;;:::i;:::-;28126:4;8630:7;8657:18;;;;;;;;;;;28108:66;;;;:::i;:::-;28073:101;-1:-1:-1;25315:13:0;25097:2;25315;:13;:::i;:::-;25306:22;;:6;:22;:::i;:::-;28197:24;:54;28193:146;;28276:43;25315:13;25097:2;25315;:13;:::i;:::-;25306:22;;:6;:22;:::i;:::-;28276:15;:43::i;:::-;25233:13;25097:2;25233;:13;:::i;:::-;25224:22;;:6;:22;:::i;:::-;28363:17;;:35;28359:235;;28423:35;25233:13;25097:2;25233;:13;:::i;:::-;25224:22;;:6;:22;:::i;:::-;28439:18;;28456:1;28439:18;:::i;:::-;28423:15;:35::i;:::-;25233:13;25097:2;25233;:13;:::i;:::-;25224:22;;:6;:22;:::i;:::-;28481:17;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;25233:13:0;;-1:-1:-1;25097:2:0;25233;:13;:::i;:::-;25224:22;;:6;:22;:::i;:::-;28539:17;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;;28359:235:0;28054:555;28027:582;-1:-1:-1;;;;;28666:24:0;;28625:22;28666:24;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;28694:22:0;;;;;;:18;:22;;;;;;;;28666:50;28662:1009;;;-1:-1:-1;28754:6:0;28662:1009;;;25388:13;25097:2;25388;:13;:::i;:::-;25377:24;;:8;:24;:::i;:::-;28809:6;:23;;28801:93;;;;-1:-1:-1;;;28801:93:0;;8647:2:1;28801:93:0;;;8629:21:1;8686:2;8666:18;;;8659:30;8725:34;8705:18;;;8698:62;8796:27;8776:18;;;8769:55;8841:19;;28801:93:0;8445:421:1;28801:93:0;28927:13;;-1:-1:-1;;;;;28927:13:0;;;28919:21;;;;28915:181;;25463:13;25097:2;25463;:13;:::i;:::-;25452:24;;:8;:24;:::i;:::-;-1:-1:-1;;;;;8657:18:0;;8630:7;8657:18;;;;;;;;;;;28973:22;;:6;:22;:::i;:::-;28972:45;;28964:112;;;;-1:-1:-1;;;28964:112:0;;9073:2:1;28964:112:0;;;9055:21:1;9112:2;9092:18;;;9085:30;9151:34;9131:18;;;9124:62;-1:-1:-1;;;9202:18:1;;;9195:52;9264:19;;28964:112:0;8871:418:1;28964:112:0;29116:22;29173:3;29143:26;25581:1;29143:6;:26;:::i;:::-;29142:34;;;;:::i;:::-;29116:61;-1:-1:-1;29196:23:0;29254:3;29224:26;25633:1;29224:6;:26;:::i;:::-;29223:34;;;;:::i;:::-;29196:62;-1:-1:-1;29277:22:0;29334:3;29304:26;25529:1;29304:6;:26;:::i;:::-;29303:34;;;;:::i;:::-;29277:61;;29380:14;29359:17;;:35;;;;;;;:::i;:::-;;;;;;;;29434:15;29413:17;;:36;;;;;;;:::i;:::-;;;;-1:-1:-1;29532:14:0;;-1:-1:-1;29497:32:0;29514:15;29497:14;:32;:::i;:::-;:49;;;;:::i;:::-;29487:60;;:6;:60;:::i;:::-;29470:77;-1:-1:-1;29566:89:0;29582:4;29596;29639:14;29604:32;29621:15;29604:14;:32;:::i;:::-;:49;;;;:::i;:::-;29566:15;:89::i;:::-;28782:889;;;28662:1009;29687:41;29703:4;29709:2;29713:14;29687:15;:41::i;27939:1867::-;29761:33;29777:4;29783:2;29787:6;29761:15;:33::i;:::-;27618:2195;;;:::o;14756:675::-;-1:-1:-1;;;;;14840:21:0;;14832:67;;;;-1:-1:-1;;;14832:67:0;;9718:2:1;14832:67:0;;;9700:21:1;9757:2;9737:18;;;9730:30;9796:34;9776:18;;;9769:62;-1:-1:-1;;;9847:18:1;;;9840:31;9888:19;;14832:67:0;9516:397:1;14832:67:0;-1:-1:-1;;;;;14999:18:0;;14974:22;14999:18;;;;;;;;;;;15036:24;;;;15028:71;;;;-1:-1:-1;;;15028:71:0;;10120:2:1;15028:71:0;;;10102:21:1;10159:2;10139:18;;;10132:30;10198:34;10178:18;;;10171:62;-1:-1:-1;;;10249:18:1;;;10242:32;10291:19;;15028:71:0;9918:398:1;15028:71:0;-1:-1:-1;;;;;15135:18:0;;:9;:18;;;;;;;;;;;15156:23;;;15135:44;;15274:12;:22;;;;;;;15325:37;1596:25:1;;;15135:9:0;;:18;15325:37;;1569:18:1;15325:37:0;;;;;;;27618:2195;;;:::o;29821:485::-;26621:16;:23;;-1:-1:-1;;;;26621:23:0;-1:-1:-1;;;26621:23:0;;;;29923:24:::1;29946:1;29923:20:::0;:24:::1;:::i;:::-;29907:41:::0;-1:-1:-1;29959:17:0::1;29980:27;29907:41:::0;29980:20;:27:::1;:::i;:::-;29959:49:::0;-1:-1:-1;30046:21:0::1;30080:23;30098:4:::0;30080:17:::1;:23::i;:::-;30116:18;30138:38;30162:14:::0;30138:21:::1;:38;:::i;:::-;30116:61;;30190:47;30204:9;30215:21;30190:13;:47::i;:::-;30255:43;::::0;;10523:25:1;;;10579:2;10564:18;;10557:34;;;10607:18;;;10600:34;;;30255:43:0::1;::::0;10511:2:1;10496:18;30255:43:0::1;;;;;;;-1:-1:-1::0;;26667:16:0;:24;;-1:-1:-1;;;;26667:24:0;;;-1:-1:-1;;;29821:485:0:o;30314:400::-;26621:16;:23;;-1:-1:-1;;;;26621:23:0;-1:-1:-1;;;26621:23:0;;;30386:25:::1;30404:6:::0;30386:17:::1;:25::i;:::-;30424:12;30469:21;25774:42;30555:15;30569:1;30469:21:::0;30555:15:::1;:::i;:::-;30516:60;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;30503:73:0;;-1:-1:-1;25866:42:0::1;::::0;-1:-1:-1;30639:15:0::1;30653:1;30639:11:::0;:15:::1;:::i;:::-;30600:60;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;30678:28:0::1;::::0;;11029:25:1;;;11085:2;11070:18;;11063:34;;;30587:73:0;;-1:-1:-1;30678:28:0::1;::::0;11002:18:1;30678:28:0::1;;;;;;;-1:-1:-1::0;;26667:16:0;:24;;-1:-1:-1;;;;26667:24:0;;;-1:-1:-1;30314:400:0:o;12748:840::-;-1:-1:-1;;;;;12879:18:0;;12871:68;;;;-1:-1:-1;;;12871:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12958:16:0;;12950:64;;;;-1:-1:-1;;;12950:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13100:15:0;;13078:19;13100:15;;;;;;;;;;;13134:21;;;;13126:72;;;;-1:-1:-1;;;13126:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13234:15:0;;;:9;:15;;;;;;;;;;;13252:20;;;13234:38;;13452:13;;;;;;;;;;:23;;;;;;13504:26;;1596:25:1;;;13452:13:0;;13504:26;;1569:18:1;13504:26:0;;;;;;;13543:37;27618:2195;30724:488;26621:16;:23;;-1:-1:-1;;;;26621:23:0;-1:-1:-1;;;26621:23:0;;;30827:16:::1;::::0;;30841:1:::1;30827:16:::0;;;;;::::1;::::0;;-1:-1:-1;;30827:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;30827:16:0::1;30803:40;;30872:4;30854;30859:1;30854:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;30854:23:0::1;;;-1:-1:-1::0;;;;;30854:23:0::1;;;::::0;::::1;30898:15;-1:-1:-1::0;;;;;30898:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30888:4;30893:1;30888:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;30888:32:0::1;;;-1:-1:-1::0;;;;;30888:32:0::1;;;::::0;::::1;30933:62;30950:4;30965:15;30983:11;30933:8;:62::i;:::-;31008:196;::::0;-1:-1:-1;;;31008:196:0;;-1:-1:-1;;;;;31008:15:0::1;:66;::::0;::::1;::::0;:196:::1;::::0;31089:11;;31115:1:::1;::::0;31131:4;;31158::::1;::::0;31178:15:::1;::::0;31008:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;26667:16:0;:24;;-1:-1:-1;;;;26667:24:0;;;-1:-1:-1;;;;30724:488:0:o;31220:407::-;26621:16;:23;;-1:-1:-1;;;;26621:23:0;-1:-1:-1;;;26621:23:0;;;31337:62:::1;31354:4;31369:15;31387:11:::0;31337:8:::1;:62::i;:::-;31412:207;::::0;-1:-1:-1;;;31412:207:0;;31484:4:::1;31412:207;::::0;::::1;12954:34:1::0;13004:18;;;12997:34;;;31530:1:0::1;13047:18:1::0;;;13040:34;;;13090:18;;;13083:34;25774:42:0::1;13133:19:1::0;;;13126:44;31593:15:0::1;13186:19:1::0;;;13179:35;31412:15:0::1;-1:-1:-1::0;;;;;31412:31:0::1;::::0;::::1;::::0;31451:9;;12888:19:1;;31412:207:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;26667:16:0;:24;;-1:-1:-1;;;;26667:24:0;;;-1:-1:-1;;;31220:407:0:o;14:548:1:-;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:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1632:456::-;1709:6;1717;1725;1778:2;1766:9;1757:7;1753:23;1749:32;1746:52;;;1794:1;1791;1784:12;1746:52;1833:9;1820:23;1852:31;1877:5;1852:31;:::i;:::-;1902:5;-1:-1:-1;1959:2:1;1944:18;;1931:32;1972:33;1931:32;1972:33;:::i;:::-;1632:456;;2024:7;;-1:-1:-1;;;2078:2:1;2063:18;;;;2050:32;;1632:456::o;2282:180::-;2341:6;2394:2;2382:9;2373:7;2369:23;2365:32;2362:52;;;2410:1;2407;2400:12;2362:52;-1:-1:-1;2433:23:1;;2282:180;-1:-1:-1;2282:180:1:o;2675:247::-;2734:6;2787:2;2775:9;2766:7;2762:23;2758:32;2755:52;;;2803:1;2800;2793:12;2755:52;2842:9;2829:23;2861:31;2886:5;2861:31;:::i;:::-;2911:5;2675:247;-1:-1:-1;;;2675:247:1:o;2927:388::-;2995:6;3003;3056:2;3044:9;3035:7;3031:23;3027:32;3024:52;;;3072:1;3069;3062:12;3024:52;3111:9;3098:23;3130:31;3155:5;3130:31;:::i;:::-;3180:5;-1:-1:-1;3237:2:1;3222:18;;3209:32;3250:33;3209:32;3250:33;:::i;:::-;3302:7;3292:17;;;2927:388;;;;;:::o;3320:380::-;3399:1;3395:12;;;;3442;;;3463:61;;3517:4;3509:6;3505:17;3495:27;;3463:61;3570:2;3562:6;3559:14;3539:18;3536:38;3533:161;;3616:10;3611:3;3607:20;3604:1;3597:31;3651:4;3648:1;3641:15;3679:4;3676:1;3669:15;3533:161;;3320:380;;;:::o;3705:127::-;3766:10;3761:3;3757:20;3754:1;3747:31;3797:4;3794:1;3787:15;3821:4;3818:1;3811:15;3837:125;3902:9;;;3923:10;;;3920:36;;;3936:18;;:::i;3967:422::-;4056:1;4099:5;4056:1;4113:270;4134:7;4124:8;4121:21;4113:270;;;4193:4;4189:1;4185:6;4181:17;4175:4;4172:27;4169:53;;;4202:18;;:::i;:::-;4252:7;4242:8;4238:22;4235:55;;;4272:16;;;;4235:55;4351:22;;;;4311:15;;;;4113:270;;;4117:3;3967:422;;;;;:::o;4394:806::-;4443:5;4473:8;4463:80;;-1:-1:-1;4514:1:1;4528:5;;4463:80;4562:4;4552:76;;-1:-1:-1;4599:1:1;4613:5;;4552:76;4644:4;4662:1;4657:59;;;;4730:1;4725:130;;;;4637:218;;4657:59;4687:1;4678:10;;4701:5;;;4725:130;4762:3;4752:8;4749:17;4746:43;;;4769:18;;:::i;:::-;-1:-1:-1;;4825:1:1;4811:16;;4840:5;;4637:218;;4939:2;4929:8;4926:16;4920:3;4914:4;4911:13;4907:36;4901:2;4891:8;4888:16;4883:2;4877:4;4874:12;4870:35;4867:77;4864:159;;;-1:-1:-1;4976:19:1;;;5008:5;;4864:159;5055:34;5080:8;5074:4;5055:34;:::i;:::-;5125:6;5121:1;5117:6;5113:19;5104:7;5101:32;5098:58;;;5136:18;;:::i;:::-;5174:20;;4394:806;-1:-1:-1;;;4394:806:1:o;5205:140::-;5263:5;5292:47;5333:4;5323:8;5319:19;5313:4;5292:47;:::i;5350:168::-;5423:9;;;5454;;5471:15;;;5465:22;;5451:37;5441:71;;5492:18;;:::i;7095:401::-;7297:2;7279:21;;;7336:2;7316:18;;;7309:30;7375:34;7370:2;7355:18;;7348:62;-1:-1:-1;;;7441:2:1;7426:18;;7419:35;7486:3;7471:19;;7095:401::o;7501:399::-;7703:2;7685:21;;;7742:2;7722:18;;;7715:30;7781:34;7776:2;7761:18;;7754:62;-1:-1:-1;;;7847:2:1;7832:18;;7825:33;7890:3;7875:19;;7501:399::o;7905:402::-;8107:2;8089:21;;;8146:2;8126:18;;;8119:30;8185:34;8180:2;8165:18;;8158:62;-1:-1:-1;;;8251:2:1;8236:18;;8229:36;8297:3;8282:19;;7905:402::o;8312:128::-;8379:9;;;8400:11;;;8397:37;;;8414:18;;:::i;9294:217::-;9334:1;9360;9350:132;;9404:10;9399:3;9395:20;9392:1;9385:31;9439:4;9436:1;9429:15;9467:4;9464:1;9457:15;9350:132;-1:-1:-1;9496:9:1;;9294:217::o;11240:127::-;11301:10;11296:3;11292:20;11289:1;11282:31;11332:4;11329:1;11322:15;11356:4;11353:1;11346:15;11372:251;11442:6;11495:2;11483:9;11474:7;11470:23;11466:32;11463:52;;;11511:1;11508;11501:12;11463:52;11543:9;11537:16;11562:31;11587:5;11562:31;:::i;11628:980::-;11890:4;11938:3;11927:9;11923:19;11969:6;11958:9;11951:25;11995:2;12033:6;12028:2;12017:9;12013:18;12006:34;12076:3;12071:2;12060:9;12056:18;12049:31;12100:6;12135;12129:13;12166:6;12158;12151:22;12204:3;12193:9;12189:19;12182:26;;12243:2;12235:6;12231:15;12217:29;;12264:1;12274:195;12288:6;12285:1;12282:13;12274:195;;;12353:13;;-1:-1:-1;;;;;12349:39:1;12337:52;;12444:15;;;;12409:12;;;;12385:1;12303:9;12274:195;;;-1:-1:-1;;;;;;;12525:32:1;;;;12520:2;12505:18;;12498:60;-1:-1:-1;;;12589:3:1;12574:19;12567:35;12486:3;11628:980;-1:-1:-1;;;11628:980:1:o;13225:306::-;13313:6;13321;13329;13382:2;13370:9;13361:7;13357:23;13353:32;13350:52;;;13398:1;13395;13388:12;13350:52;13427:9;13421:16;13411:26;;13477:2;13466:9;13462:18;13456:25;13446:35;;13521:2;13510:9;13506:18;13500:25;13490:35;;13225:306;;;;;:::o
Swarm Source
ipfs://64530c5852b0b610cec7482525c500459ce34e082817266b0f54eb94ea286973
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.