ERC-20
Overview
Max Total Supply
280,000,000,000 FOMC
Holders
211
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,539,542,057.02967929277111109 FOMCValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FomcToken
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-09 */ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.13; // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) /** * @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); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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]. * * 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 {} } // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } 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; } pragma solidity >=0.5.0; interface IPinkAntiBot { function setTokenOwner(address owner) external; function onPreTransferCheck( address from, address to, uint256 amount ) external; } contract FomcToken is ERC20, Ownable { event RecoverFunds(address _token); address public vault = address(0); address public lpPair = address(0); address public taxAddress = address(0); uint16 public lpTax = 300; IUniswapV2Router02 public uniV2Router = IUniswapV2Router02(address(0)); bool public initialDistribution = false; bool public inSwap = false; IPinkAntiBot public pinkAntiBot; bool public antiBotToggle = false; modifier swapping() { require(inSwap == false, "reentrant call"); inSwap = true; _; inSwap = false; } constructor( uint256 totalSupply, address _univ2router, address _antibot, address multisig ) ERC20("FOMC", "FOMC") { _mint(multisig, totalSupply * (1 * 10 ** decimals())); transferOwnership(multisig); pinkAntiBot = IPinkAntiBot(_antibot); pinkAntiBot.setTokenOwner(msg.sender); uniV2Router = IUniswapV2Router02(_univ2router); lpPair = IUniswapV2Factory(uniV2Router.factory()).createPair( address(this), IUniswapV2Router02(uniV2Router).WETH() ); _approve(address(this), _univ2router, type(uint256).max); _approve(address(this), lpPair, type(uint256).max); _approve(address(this), address(this), type(uint256).max); } function disableAntibot() public onlyOwner { require(antiBotToggle, "antibot not enabled"); antiBotToggle = false; } function setup( address _vault, uint16 _lpTax, bool _antibotToggle ) public onlyOwner { require(vault == address(0), "already setup"); vault = _vault; lpTax = _lpTax; antiBotToggle = _antibotToggle; pinkAntiBot.setTokenOwner(owner()); initialDistribution = true; } function recoverToken(address _token) external onlyOwner { if (_token == address(0)) { uint256 balance = address(this).balance; (bool success, ) = payable(msg.sender).call{value: balance}(""); require(success, "balance failed"); } else { IERC20(_token).transfer( msg.sender, IERC20(_token).balanceOf(address(this)) ); } emit RecoverFunds(_token); } function shouldSellTax() internal view returns (bool) { return msg.sender != lpPair && !inSwap && (balanceOf(address(this)) > 1 * 10 ** decimals()); } function _liquidateToken() internal swapping { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniV2Router.WETH(); uniV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens( balanceOf(address(this)), 0, path, vault, block.timestamp ); } function _hasRoundEnded() public view returns (bool) { require(vault != address(0), "invalid vault"); (bool success, bytes memory returnVal) = address(vault).staticcall( abi.encodeWithSignature("hasEnded()") ); require(success, "invalid round end"); return abi.decode(returnVal, (bool)); } function _doTax( address from, address to, uint256 amount ) internal returns (uint256 taxedAmount) { require( initialDistribution || (from == owner() || to == owner()), "trading not started" ); taxedAmount = amount; if (vault == address(0)) { return taxedAmount; } if ((from == address(this) || to == address(this))) return taxedAmount; if ((_hasRoundEnded() == false) && (initialDistribution == true)) { if (shouldSellTax()) { _liquidateToken(); } if ((from == lpPair) || (to == lpPair)) { uint256 tax = (amount * lpTax) / 100_00; taxedAmount = (amount - tax); _transfer(from, address(this), tax); } } } function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { address owner = _msgSender(); if (inSwap) { _transfer(owner, recipient, amount); } else { if (antiBotToggle) { pinkAntiBot.onPreTransferCheck(owner, recipient, amount); } _transfer(owner, recipient, _doTax(owner, recipient, amount)); } return true; } function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); if (inSwap) { _transfer(from, to, amount); } else { if (antiBotToggle) { pinkAntiBot.onPreTransferCheck(from, to, amount); } _transfer(from, to, _doTax(from, to, amount)); } return true; } receive() external payable {} fallback() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"address","name":"_univ2router","type":"address"},{"internalType":"address","name":"_antibot","type":"address"},{"internalType":"address","name":"multisig","type":"address"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_token","type":"address"}],"name":"RecoverFunds","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":"_hasRoundEnded","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":[],"name":"antiBotToggle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"disableAntibot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"inSwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"initialDistribution","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpTax","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pinkAntiBot","outputs":[{"internalType":"contract IPinkAntiBot","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"recoverToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vault","type":"address"},{"internalType":"uint16","name":"_lpTax","type":"uint16"},{"internalType":"bool","name":"_antibotToggle","type":"bool"}],"name":"setup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"uniV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600680546001600160a01b031990811690915560078054909116905560088054604b60a21b6001600160b01b031991821617909155600980549091169055600a805460ff60a01b191690553480156200005c57600080fd5b506040516200286b3803806200286b8339810160408190526200007f91620006b9565b604080518082018252600480825263464f4d4360e01b6020808401829052845180860190955291845290830152906003620000bb8382620007b1565b506004620000ca8282620007b1565b505050620000e7620000e16200037560201b60201c565b62000379565b6200011981620000fa6012600a62000992565b62000107906001620009aa565b620001139087620009aa565b620003cb565b620001248162000492565b600a80546001600160a01b0319166001600160a01b0384169081179091556040516318e02bd960e01b81523360048201526318e02bd990602401600060405180830381600087803b1580156200017957600080fd5b505af11580156200018e573d6000803e3d6000fd5b5050600980546001600160a01b0319166001600160a01b0387169081179091556040805163c45a015560e01b8152905191935063c45a015592506004808201926020929091908290030181865afa158015620001ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002149190620009c4565b6001600160a01b031663c9c6539630600960009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000277573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029d9190620009c4565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002eb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003119190620009c4565b600780546001600160a01b0319166001600160a01b039290921691909117905562000340308460001962000511565b6007546200035c9030906001600160a01b031660001962000511565b6200036b308060001962000511565b50505050620009f8565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004275760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b80600260008282546200043b9190620009e2565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6200049c6200063e565b6001600160a01b038116620005035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016200041e565b6200050e8162000379565b50565b6001600160a01b038316620005755760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016200041e565b6001600160a01b038216620005d85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200041e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b505050565b6005546001600160a01b031633146200069a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200041e565b565b80516001600160a01b0381168114620006b457600080fd5b919050565b60008060008060808587031215620006d057600080fd5b84519350620006e2602086016200069c565b9250620006f2604086016200069c565b915062000702606086016200069c565b905092959194509250565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200073857607f821691505b6020821081036200075957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200063957600081815260208120601f850160051c81016020861015620007885750805b601f850160051c820191505b81811015620007a95782815560010162000794565b505050505050565b81516001600160401b03811115620007cd57620007cd6200070d565b620007e581620007de845462000723565b846200075f565b602080601f8311600181146200081d5760008415620008045750858301515b600019600386901b1c1916600185901b178555620007a9565b600085815260208120601f198616915b828110156200084e578886015182559484019460019091019084016200082d565b50858210156200086d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620008d4578160001904821115620008b857620008b86200087d565b80851615620008c657918102915b93841c939080029062000898565b509250929050565b600082620008ed575060016200098c565b81620008fc575060006200098c565b8160018114620009155760028114620009205762000940565b60019150506200098c565b60ff8411156200093457620009346200087d565b50506001821b6200098c565b5060208310610133831016604e8410600b841016171562000965575081810a6200098c565b62000971838362000893565b80600019048211156200098857620009886200087d565b0290505b92915050565b6000620009a360ff841683620008dc565b9392505050565b80820281158282048414176200098c576200098c6200087d565b600060208284031215620009d757600080fd5b620009a3826200069c565b808201808211156200098c576200098c6200087d565b611e638062000a086000396000f3fe6080604052600436106101985760003560e01c80638da5cb5b116100e0578063a9059cbb11610084578063d830678611610061578063d8306786146104e1578063dd62ed3e14610514578063f2fde38b1461055a578063fbfa77cf1461057a57005b8063a9059cbb14610481578063b7bda68f146104a1578063d1afa2e8146104c157005b806395d89b41116100bd57806395d89b41146104175780639be65a601461042c5780639d27fd671461044c578063a457c2d71461046157005b80638da5cb5b146103a757806395645e34146103c5578063958c2e52146103f757005b8063395093511161014757806370a082311161012457806370a0823114610315578063715018a61461034b57806383f9bcda146103605780638b750c561461039257005b8063395093511461029d578063407133d2146102bd578063452ed4f1146102f557005b80631de3b450116101755780631de3b4501461021b57806323b872dd14610261578063313ce5671461028157005b806306fdde03146101a1578063095ea7b3146101cc57806318160ddd146101fc57005b3661019f57005b005b3480156101ad57600080fd5b506101b661059a565b6040516101c3919061196c565b60405180910390f35b3480156101d857600080fd5b506101ec6101e73660046119d2565b61062c565b60405190151581526020016101c3565b34801561020857600080fd5b506002545b6040519081526020016101c3565b34801561022757600080fd5b5060085461024e9074010000000000000000000000000000000000000000900461ffff1681565b60405161ffff90911681526020016101c3565b34801561026d57600080fd5b506101ec61027c3660046119fe565b610646565b34801561028d57600080fd5b50604051601281526020016101c3565b3480156102a957600080fd5b506101ec6102b83660046119d2565b610755565b3480156102c957600080fd5b50600a546102dd906001600160a01b031681565b6040516001600160a01b0390911681526020016101c3565b34801561030157600080fd5b506007546102dd906001600160a01b031681565b34801561032157600080fd5b5061020d610330366004611a3f565b6001600160a01b031660009081526020819052604090205490565b34801561035757600080fd5b5061019f610794565b34801561036c57600080fd5b50600a546101ec9074010000000000000000000000000000000000000000900460ff1681565b34801561039e57600080fd5b5061019f6107a8565b3480156103b357600080fd5b506005546001600160a01b03166102dd565b3480156103d157600080fd5b506009546101ec9074010000000000000000000000000000000000000000900460ff1681565b34801561040357600080fd5b506009546102dd906001600160a01b031681565b34801561042357600080fd5b506101b6610849565b34801561043857600080fd5b5061019f610447366004611a3f565b610858565b34801561045857600080fd5b506101ec610a62565b34801561046d57600080fd5b506101ec61047c3660046119d2565b610be0565b34801561048d57600080fd5b506101ec61049c3660046119d2565b610c95565b3480156104ad57600080fd5b506008546102dd906001600160a01b031681565b3480156104cd57600080fd5b5061019f6104dc366004611a6a565b610d89565b3480156104ed57600080fd5b506009546101ec907501000000000000000000000000000000000000000000900460ff1681565b34801561052057600080fd5b5061020d61052f366004611abc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561056657600080fd5b5061019f610575366004611a3f565b610f74565b34801561058657600080fd5b506006546102dd906001600160a01b031681565b6060600380546105a990611af5565b80601f01602080910402602001604051908101604052809291908181526020018280546105d590611af5565b80156106225780601f106105f757610100808354040283529160200191610622565b820191906000526020600020905b81548152906001019060200180831161060557829003601f168201915b5050505050905090565b60003361063a818585611004565b60019150505b92915050565b60003361065485828561115c565b6009547501000000000000000000000000000000000000000000900460ff16156106885761068385858561120c565b610748565b600a5474010000000000000000000000000000000000000000900460ff161561073357600a546040517f487608580000000000000000000000000000000000000000000000000000000081526001600160a01b03878116600483015286811660248301526044820186905290911690634876085890606401600060405180830381600087803b15801561071a57600080fd5b505af115801561072e573d6000803e3d6000fd5b505050505b61074885856107438888886113f9565b61120c565b60019150505b9392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061063a908290869061078f908790611b77565b611004565b61079c6115a3565b6107a660006115fd565b565b6107b06115a3565b600a5474010000000000000000000000000000000000000000900460ff1661081f5760405162461bcd60e51b815260206004820152601360248201527f616e7469626f74206e6f7420656e61626c65640000000000000000000000000060448201526064015b60405180910390fd5b600a80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055565b6060600480546105a990611af5565b6108606115a3565b6001600160a01b03811661090f576040514790600090339083908381818185875af1925050503d80600081146108b2576040519150601f19603f3d011682016040523d82523d6000602084013e6108b7565b606091505b50509050806109085760405162461bcd60e51b815260206004820152600e60248201527f62616c616e6365206661696c65640000000000000000000000000000000000006044820152606401610816565b5050610a23565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610976573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099a9190611b8a565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156109fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a219190611ba3565b505b6040516001600160a01b03821681527f1b55aa89925f3b7c6a5dd952eb781d4a95f2ad1906c3c0fbc8cfa5c5f1a3a0a99060200160405180910390a150565b6006546000906001600160a01b0316610abd5760405162461bcd60e51b815260206004820152600d60248201527f696e76616c6964207661756c74000000000000000000000000000000000000006044820152606401610816565b60065460408051600481526024810182526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fecb70fb700000000000000000000000000000000000000000000000000000000179052905160009283926001600160a01b0390911691610b339190611bc0565b600060405180830381855afa9150503d8060008114610b6e576040519150601f19603f3d011682016040523d82523d6000602084013e610b73565b606091505b509150915081610bc55760405162461bcd60e51b815260206004820152601160248201527f696e76616c696420726f756e6420656e640000000000000000000000000000006044820152606401610816565b80806020019051810190610bd99190611ba3565b9250505090565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610c7d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610816565b610c8a8286868403611004565b506001949350505050565b60095460009033907501000000000000000000000000000000000000000000900460ff1615610cce57610cc981858561120c565b61063a565b600a5474010000000000000000000000000000000000000000900460ff1615610d7957600a546040517f487608580000000000000000000000000000000000000000000000000000000081526001600160a01b03838116600483015286811660248301526044820186905290911690634876085890606401600060405180830381600087803b158015610d6057600080fd5b505af1158015610d74573d6000803e3d6000fd5b505050505b61063a81856107438488886113f9565b610d916115a3565b6006546001600160a01b031615610dea5760405162461bcd60e51b815260206004820152600d60248201527f616c7265616479207365747570000000000000000000000000000000000000006044820152606401610816565b600680546001600160a01b038086167fffffffffffffffffffffffff0000000000000000000000000000000000000000909216919091179091556008805461ffff8516740100000000000000000000000000000000000000009081027fffffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffff90921691909117909155600a80548415159092027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8316811790915582169116176318e02bd9610ebf6005546001600160a01b031690565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b158015610f1857600080fd5b505af1158015610f2c573d6000803e3d6000fd5b5050600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790555050505050565b610f7c6115a3565b6001600160a01b038116610ff85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610816565b611001816115fd565b50565b6001600160a01b03831661107f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610816565b6001600160a01b0382166110fb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610816565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461120657818110156111f95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610816565b6112068484848403611004565b50505050565b6001600160a01b0383166112885760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610816565b6001600160a01b0382166113045760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610816565b6001600160a01b038316600090815260208190526040902054818110156113935760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610816565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611206565b60095460009074010000000000000000000000000000000000000000900460ff168061144957506005546001600160a01b038581169116148061144957506005546001600160a01b038481169116145b6114955760405162461bcd60e51b815260206004820152601360248201527f74726164696e67206e6f742073746172746564000000000000000000000000006044820152606401610816565b5060065481906001600160a01b03161561074e576001600160a01b0384163014806114c857506001600160a01b03831630145b61074e576114d4610a62565b158015611500575060095474010000000000000000000000000000000000000000900460ff1615156001145b1561074e5761150d611667565b1561151a5761151a6116d6565b6007546001600160a01b038581169116148061154357506007546001600160a01b038481169116145b1561074e57600854600090612710906115789074010000000000000000000000000000000000000000900461ffff1685611bdc565b6115829190611bf3565b905061158e8184611c2e565b915061159b85308361120c565b509392505050565b6005546001600160a01b031633146107a65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610816565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546000906001600160a01b031633148015906116a157506009547501000000000000000000000000000000000000000000900460ff16155b80156116d157506116b46012600a611d61565b6116bf906001611bdc565b30600090815260208190526040902054115b905090565b6009547501000000000000000000000000000000000000000000900460ff16156117425760405162461bcd60e51b815260206004820152600e60248201527f7265656e7472616e742063616c6c0000000000000000000000000000000000006044820152606401610816565b600980547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16750100000000000000000000000000000000000000000017905560408051600280825260608201835260009260208301908036833701905050905030816000815181106117b7576117b7611d70565b6001600160a01b03928316602091820292909201810191909152600954604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015611829573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184d9190611d9f565b8160018151811061186057611860611d70565b6001600160a01b03928316602091820292909201015260095416635c11d79561189e306001600160a01b031660009081526020819052604090205490565b6006546040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526118eb929160009187916001600160a01b0316904290600401611dbc565b600060405180830381600087803b15801561190557600080fd5b505af1158015611919573d6000803e3d6000fd5b5050600980547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff169055505050565b60005b8381101561196357818101518382015260200161194b565b50506000910152565b602081526000825180602084015261198b816040850160208701611948565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b6001600160a01b038116811461100157600080fd5b600080604083850312156119e557600080fd5b82356119f0816119bd565b946020939093013593505050565b600080600060608486031215611a1357600080fd5b8335611a1e816119bd565b92506020840135611a2e816119bd565b929592945050506040919091013590565b600060208284031215611a5157600080fd5b813561074e816119bd565b801515811461100157600080fd5b600080600060608486031215611a7f57600080fd5b8335611a8a816119bd565b9250602084013561ffff81168114611aa157600080fd5b91506040840135611ab181611a5c565b809150509250925092565b60008060408385031215611acf57600080fd5b8235611ada816119bd565b91506020830135611aea816119bd565b809150509250929050565b600181811c90821680611b0957607f821691505b602082108103611b42577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561064057610640611b48565b600060208284031215611b9c57600080fd5b5051919050565b600060208284031215611bb557600080fd5b815161074e81611a5c565b60008251611bd2818460208701611948565b9190910192915050565b808202811582820484141761064057610640611b48565b600082611c29577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b8181038181111561064057610640611b48565b600181815b80851115611c9a57817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115611c8057611c80611b48565b80851615611c8d57918102915b93841c9390800290611c46565b509250929050565b600082611cb157506001610640565b81611cbe57506000610640565b8160018114611cd45760028114611cde57611cfa565b6001915050610640565b60ff841115611cef57611cef611b48565b50506001821b610640565b5060208310610133831016604e8410600b8410161715611d1d575081810a610640565b611d278383611c41565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115611d5957611d59611b48565b029392505050565b600061074e60ff841683611ca2565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060208284031215611db157600080fd5b815161074e816119bd565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611e0c5784516001600160a01b031683529383019391830191600101611de7565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212205c9f1d22e7545767bb230df9c456c5d00c64eafc88dce4b9970987c7ef7b3afe64736f6c6343000813003300000000000000000000000000000000000000000000000000000041314cf0000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000f4f071eb637b64fc78c9ea87dace4445d119ca35000000000000000000000000c613426833a35471e3cc7b8b347b2b2150533d01
Deployed Bytecode
0x6080604052600436106101985760003560e01c80638da5cb5b116100e0578063a9059cbb11610084578063d830678611610061578063d8306786146104e1578063dd62ed3e14610514578063f2fde38b1461055a578063fbfa77cf1461057a57005b8063a9059cbb14610481578063b7bda68f146104a1578063d1afa2e8146104c157005b806395d89b41116100bd57806395d89b41146104175780639be65a601461042c5780639d27fd671461044c578063a457c2d71461046157005b80638da5cb5b146103a757806395645e34146103c5578063958c2e52146103f757005b8063395093511161014757806370a082311161012457806370a0823114610315578063715018a61461034b57806383f9bcda146103605780638b750c561461039257005b8063395093511461029d578063407133d2146102bd578063452ed4f1146102f557005b80631de3b450116101755780631de3b4501461021b57806323b872dd14610261578063313ce5671461028157005b806306fdde03146101a1578063095ea7b3146101cc57806318160ddd146101fc57005b3661019f57005b005b3480156101ad57600080fd5b506101b661059a565b6040516101c3919061196c565b60405180910390f35b3480156101d857600080fd5b506101ec6101e73660046119d2565b61062c565b60405190151581526020016101c3565b34801561020857600080fd5b506002545b6040519081526020016101c3565b34801561022757600080fd5b5060085461024e9074010000000000000000000000000000000000000000900461ffff1681565b60405161ffff90911681526020016101c3565b34801561026d57600080fd5b506101ec61027c3660046119fe565b610646565b34801561028d57600080fd5b50604051601281526020016101c3565b3480156102a957600080fd5b506101ec6102b83660046119d2565b610755565b3480156102c957600080fd5b50600a546102dd906001600160a01b031681565b6040516001600160a01b0390911681526020016101c3565b34801561030157600080fd5b506007546102dd906001600160a01b031681565b34801561032157600080fd5b5061020d610330366004611a3f565b6001600160a01b031660009081526020819052604090205490565b34801561035757600080fd5b5061019f610794565b34801561036c57600080fd5b50600a546101ec9074010000000000000000000000000000000000000000900460ff1681565b34801561039e57600080fd5b5061019f6107a8565b3480156103b357600080fd5b506005546001600160a01b03166102dd565b3480156103d157600080fd5b506009546101ec9074010000000000000000000000000000000000000000900460ff1681565b34801561040357600080fd5b506009546102dd906001600160a01b031681565b34801561042357600080fd5b506101b6610849565b34801561043857600080fd5b5061019f610447366004611a3f565b610858565b34801561045857600080fd5b506101ec610a62565b34801561046d57600080fd5b506101ec61047c3660046119d2565b610be0565b34801561048d57600080fd5b506101ec61049c3660046119d2565b610c95565b3480156104ad57600080fd5b506008546102dd906001600160a01b031681565b3480156104cd57600080fd5b5061019f6104dc366004611a6a565b610d89565b3480156104ed57600080fd5b506009546101ec907501000000000000000000000000000000000000000000900460ff1681565b34801561052057600080fd5b5061020d61052f366004611abc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561056657600080fd5b5061019f610575366004611a3f565b610f74565b34801561058657600080fd5b506006546102dd906001600160a01b031681565b6060600380546105a990611af5565b80601f01602080910402602001604051908101604052809291908181526020018280546105d590611af5565b80156106225780601f106105f757610100808354040283529160200191610622565b820191906000526020600020905b81548152906001019060200180831161060557829003601f168201915b5050505050905090565b60003361063a818585611004565b60019150505b92915050565b60003361065485828561115c565b6009547501000000000000000000000000000000000000000000900460ff16156106885761068385858561120c565b610748565b600a5474010000000000000000000000000000000000000000900460ff161561073357600a546040517f487608580000000000000000000000000000000000000000000000000000000081526001600160a01b03878116600483015286811660248301526044820186905290911690634876085890606401600060405180830381600087803b15801561071a57600080fd5b505af115801561072e573d6000803e3d6000fd5b505050505b61074885856107438888886113f9565b61120c565b60019150505b9392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061063a908290869061078f908790611b77565b611004565b61079c6115a3565b6107a660006115fd565b565b6107b06115a3565b600a5474010000000000000000000000000000000000000000900460ff1661081f5760405162461bcd60e51b815260206004820152601360248201527f616e7469626f74206e6f7420656e61626c65640000000000000000000000000060448201526064015b60405180910390fd5b600a80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055565b6060600480546105a990611af5565b6108606115a3565b6001600160a01b03811661090f576040514790600090339083908381818185875af1925050503d80600081146108b2576040519150601f19603f3d011682016040523d82523d6000602084013e6108b7565b606091505b50509050806109085760405162461bcd60e51b815260206004820152600e60248201527f62616c616e6365206661696c65640000000000000000000000000000000000006044820152606401610816565b5050610a23565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610976573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099a9190611b8a565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156109fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a219190611ba3565b505b6040516001600160a01b03821681527f1b55aa89925f3b7c6a5dd952eb781d4a95f2ad1906c3c0fbc8cfa5c5f1a3a0a99060200160405180910390a150565b6006546000906001600160a01b0316610abd5760405162461bcd60e51b815260206004820152600d60248201527f696e76616c6964207661756c74000000000000000000000000000000000000006044820152606401610816565b60065460408051600481526024810182526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fecb70fb700000000000000000000000000000000000000000000000000000000179052905160009283926001600160a01b0390911691610b339190611bc0565b600060405180830381855afa9150503d8060008114610b6e576040519150601f19603f3d011682016040523d82523d6000602084013e610b73565b606091505b509150915081610bc55760405162461bcd60e51b815260206004820152601160248201527f696e76616c696420726f756e6420656e640000000000000000000000000000006044820152606401610816565b80806020019051810190610bd99190611ba3565b9250505090565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610c7d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610816565b610c8a8286868403611004565b506001949350505050565b60095460009033907501000000000000000000000000000000000000000000900460ff1615610cce57610cc981858561120c565b61063a565b600a5474010000000000000000000000000000000000000000900460ff1615610d7957600a546040517f487608580000000000000000000000000000000000000000000000000000000081526001600160a01b03838116600483015286811660248301526044820186905290911690634876085890606401600060405180830381600087803b158015610d6057600080fd5b505af1158015610d74573d6000803e3d6000fd5b505050505b61063a81856107438488886113f9565b610d916115a3565b6006546001600160a01b031615610dea5760405162461bcd60e51b815260206004820152600d60248201527f616c7265616479207365747570000000000000000000000000000000000000006044820152606401610816565b600680546001600160a01b038086167fffffffffffffffffffffffff0000000000000000000000000000000000000000909216919091179091556008805461ffff8516740100000000000000000000000000000000000000009081027fffffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffff90921691909117909155600a80548415159092027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8316811790915582169116176318e02bd9610ebf6005546001600160a01b031690565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b158015610f1857600080fd5b505af1158015610f2c573d6000803e3d6000fd5b5050600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790555050505050565b610f7c6115a3565b6001600160a01b038116610ff85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610816565b611001816115fd565b50565b6001600160a01b03831661107f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610816565b6001600160a01b0382166110fb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610816565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461120657818110156111f95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610816565b6112068484848403611004565b50505050565b6001600160a01b0383166112885760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610816565b6001600160a01b0382166113045760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610816565b6001600160a01b038316600090815260208190526040902054818110156113935760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610816565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611206565b60095460009074010000000000000000000000000000000000000000900460ff168061144957506005546001600160a01b038581169116148061144957506005546001600160a01b038481169116145b6114955760405162461bcd60e51b815260206004820152601360248201527f74726164696e67206e6f742073746172746564000000000000000000000000006044820152606401610816565b5060065481906001600160a01b03161561074e576001600160a01b0384163014806114c857506001600160a01b03831630145b61074e576114d4610a62565b158015611500575060095474010000000000000000000000000000000000000000900460ff1615156001145b1561074e5761150d611667565b1561151a5761151a6116d6565b6007546001600160a01b038581169116148061154357506007546001600160a01b038481169116145b1561074e57600854600090612710906115789074010000000000000000000000000000000000000000900461ffff1685611bdc565b6115829190611bf3565b905061158e8184611c2e565b915061159b85308361120c565b509392505050565b6005546001600160a01b031633146107a65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610816565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546000906001600160a01b031633148015906116a157506009547501000000000000000000000000000000000000000000900460ff16155b80156116d157506116b46012600a611d61565b6116bf906001611bdc565b30600090815260208190526040902054115b905090565b6009547501000000000000000000000000000000000000000000900460ff16156117425760405162461bcd60e51b815260206004820152600e60248201527f7265656e7472616e742063616c6c0000000000000000000000000000000000006044820152606401610816565b600980547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16750100000000000000000000000000000000000000000017905560408051600280825260608201835260009260208301908036833701905050905030816000815181106117b7576117b7611d70565b6001600160a01b03928316602091820292909201810191909152600954604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015611829573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184d9190611d9f565b8160018151811061186057611860611d70565b6001600160a01b03928316602091820292909201015260095416635c11d79561189e306001600160a01b031660009081526020819052604090205490565b6006546040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526118eb929160009187916001600160a01b0316904290600401611dbc565b600060405180830381600087803b15801561190557600080fd5b505af1158015611919573d6000803e3d6000fd5b5050600980547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff169055505050565b60005b8381101561196357818101518382015260200161194b565b50506000910152565b602081526000825180602084015261198b816040850160208701611948565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b6001600160a01b038116811461100157600080fd5b600080604083850312156119e557600080fd5b82356119f0816119bd565b946020939093013593505050565b600080600060608486031215611a1357600080fd5b8335611a1e816119bd565b92506020840135611a2e816119bd565b929592945050506040919091013590565b600060208284031215611a5157600080fd5b813561074e816119bd565b801515811461100157600080fd5b600080600060608486031215611a7f57600080fd5b8335611a8a816119bd565b9250602084013561ffff81168114611aa157600080fd5b91506040840135611ab181611a5c565b809150509250925092565b60008060408385031215611acf57600080fd5b8235611ada816119bd565b91506020830135611aea816119bd565b809150509250929050565b600181811c90821680611b0957607f821691505b602082108103611b42577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561064057610640611b48565b600060208284031215611b9c57600080fd5b5051919050565b600060208284031215611bb557600080fd5b815161074e81611a5c565b60008251611bd2818460208701611948565b9190910192915050565b808202811582820484141761064057610640611b48565b600082611c29577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b8181038181111561064057610640611b48565b600181815b80851115611c9a57817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115611c8057611c80611b48565b80851615611c8d57918102915b93841c9390800290611c46565b509250929050565b600082611cb157506001610640565b81611cbe57506000610640565b8160018114611cd45760028114611cde57611cfa565b6001915050610640565b60ff841115611cef57611cef611b48565b50506001821b610640565b5060208310610133831016604e8410600b8410161715611d1d575081810a610640565b611d278383611c41565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115611d5957611d59611b48565b029392505050565b600061074e60ff841683611ca2565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060208284031215611db157600080fd5b815161074e816119bd565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611e0c5784516001600160a01b031683529383019391830191600101611de7565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212205c9f1d22e7545767bb230df9c456c5d00c64eafc88dce4b9970987c7ef7b3afe64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000041314cf0000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000f4f071eb637b64fc78c9ea87dace4445d119ca35000000000000000000000000c613426833a35471e3cc7b8b347b2b2150533d01
-----Decoded View---------------
Arg [0] : totalSupply (uint256): 280000000000
Arg [1] : _univ2router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [2] : _antibot (address): 0xf4f071EB637b64fC78C9eA87DaCE4445D119CA35
Arg [3] : multisig (address): 0xC613426833a35471E3Cc7B8B347B2b2150533d01
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000041314cf000
Arg [1] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [2] : 000000000000000000000000f4f071eb637b64fc78c9ea87dace4445d119ca35
Arg [3] : 000000000000000000000000c613426833a35471e3cc7b8b347b2b2150533d01
Deployed Bytecode Sourcemap
25783:5398:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6318:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8678:201;;;;;;;;;;-1:-1:-1;8678:201:0;;;;;:::i;:::-;;:::i;:::-;;;1373:14:1;;1366:22;1348:41;;1336:2;1321:18;8678:201:0;1208:187:1;7447:108:0;;;;;;;;;;-1:-1:-1;7535:12:0;;7447:108;;;1546:25:1;;;1534:2;1519:18;7447:108:0;1400:177:1;25994:25:0;;;;;;;;;;-1:-1:-1;25994:25:0;;;;;;;;;;;;;;1756:6:1;1744:19;;;1726:38;;1714:2;1699:18;25994:25:0;1582:188:1;30572:531:0;;;;;;;;;;-1:-1:-1;30572:531:0;;;;;:::i;:::-;;:::i;7289:93::-;;;;;;;;;;-1:-1:-1;7289:93:0;;7372:2;2378:36:1;;2366:2;2351:18;7289:93:0;2236:184:1;10129:238:0;;;;;;;;;;-1:-1:-1;10129:238:0;;;;;:::i;:::-;;:::i;26186:31::-;;;;;;;;;;-1:-1:-1;26186:31:0;;;;-1:-1:-1;;;;;26186:31:0;;;;;;-1:-1:-1;;;;;2610:55:1;;;2592:74;;2580:2;2565:18;26186:31:0;2425:247:1;25908:34:0;;;;;;;;;;-1:-1:-1;25908:34:0;;;;-1:-1:-1;;;;;25908:34:0;;;7618:127;;;;;;;;;;-1:-1:-1;7618:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;7719:18:0;7692:7;7719:18;;;;;;;;;;;;7618:127;19103:103;;;;;;;;;;;;;:::i;26224:33::-;;;;;;;;;;-1:-1:-1;26224:33:0;;;;;;;;;;;27203:139;;;;;;;;;;;;;:::i;18462:87::-;;;;;;;;;;-1:-1:-1;18535:6:0;;-1:-1:-1;;;;;18535:6:0;18462:87;;26105:39;;;;;;;;;;-1:-1:-1;26105:39:0;;;;;;;;;;;26026:70;;;;;;;;;;-1:-1:-1;26026:70:0;;;;-1:-1:-1;;;;;26026:70:0;;;6537:104;;;;;;;;;;;;;:::i;27717:490::-;;;;;;;;;;-1:-1:-1;27717:490:0;;;;;:::i;:::-;;:::i;28824:352::-;;;;;;;;;;;;;:::i;10870:436::-;;;;;;;;;;-1:-1:-1;10870:436:0;;;;;:::i;:::-;;:::i;30070:494::-;;;;;;;;;;-1:-1:-1;30070:494:0;;;;;:::i;:::-;;:::i;25949:38::-;;;;;;;;;;-1:-1:-1;25949:38:0;;;;-1:-1:-1;;;;;25949:38:0;;;27350:359;;;;;;;;;;-1:-1:-1;27350:359:0;;;;;:::i;:::-;;:::i;26151:26::-;;;;;;;;;;-1:-1:-1;26151:26:0;;;;;;;;;;;8207:151;;;;;;;;;;-1:-1:-1;8207:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;8323:18:0;;;8296:7;8323:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8207:151;19361:201;;;;;;;;;;-1:-1:-1;19361:201:0;;;;;:::i;:::-;;:::i;25868:33::-;;;;;;;;;;-1:-1:-1;25868:33:0;;;;-1:-1:-1;;;;;25868:33:0;;;6318:100;6372:13;6405:5;6398:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6318:100;:::o;8678:201::-;8761:4;4204:10;8817:32;4204:10;8833:7;8842:6;8817:8;:32::i;:::-;8867:4;8860:11;;;8678:201;;;;;:::o;30572:531::-;30703:4;4204:10;30761:38;30777:4;4204:10;30792:6;30761:15;:38::i;:::-;30816:6;;;;;;;30812:262;;;30839:27;30849:4;30855:2;30859:6;30839:9;:27::i;:::-;30812:262;;;30903:13;;;;;;;30899:102;;;30937:11;;:48;;;;;-1:-1:-1;;;;;5212:15:1;;;30937:48:0;;;5194:34:1;5264:15;;;5244:18;;;5237:43;5296:18;;;5289:34;;;30937:11:0;;;;:30;;5106:18:1;;30937:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30899:102;31017:45;31027:4;31033:2;31037:24;31044:4;31050:2;31054:6;31037;:24::i;:::-;31017:9;:45::i;:::-;31091:4;31084:11;;;30572:531;;;;;;:::o;10129:238::-;4204:10;10217:4;8323:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;8323:27:0;;;;;;;;;;10217:4;;4204:10;10273:64;;4204:10;;8323:27;;10298:38;;10326:10;;10298:38;:::i;:::-;10273:8;:64::i;19103:103::-;18348:13;:11;:13::i;:::-;19168:30:::1;19195:1;19168:18;:30::i;:::-;19103:103::o:0;27203:139::-;18348:13;:11;:13::i;:::-;27265::::1;::::0;;;::::1;;;27257:45;;;::::0;-1:-1:-1;;;27257:45:0;;5855:2:1;27257:45:0::1;::::0;::::1;5837:21:1::0;5894:2;5874:18;;;5867:30;5933:21;5913:18;;;5906:49;5972:18;;27257:45:0::1;;;;;;;;;27313:13;:21:::0;;;::::1;::::0;;27203:139::o;6537:104::-;6593:13;6626:7;6619:14;;;;;:::i;27717:490::-;18348:13;:11;:13::i;:::-;-1:-1:-1;;;;;27789:20:0;::::1;27785:377;;27899:44;::::0;27844:21:::1;::::0;27826:15:::1;::::0;27907:10:::1;::::0;27844:21;;27826:15;27899:44;27826:15;27899:44;27844:21;27907:10;27899:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27880:63;;;27966:7;27958:34;;;::::0;-1:-1:-1;;;27958:34:0;;6413:2:1;27958:34:0::1;::::0;::::1;6395:21:1::0;6452:2;6432:18;;;6425:30;6491:16;6471:18;;;6464:44;6525:18;;27958:34:0::1;6211:338:1::0;27958:34:0::1;27811:193;;27785:377;;;28096:39;::::0;;;;28129:4:::1;28096:39;::::0;::::1;2592:74:1::0;-1:-1:-1;;;;;28025:23:0;::::1;::::0;::::1;::::0;28067:10:::1;::::0;28025:23;;28096:24:::1;::::0;2565:18:1;;28096:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28025:125;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;6935:55:1;;;28025:125:0::1;::::0;::::1;6917:74:1::0;7007:18;;;7000:34;6890:18;;28025:125:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27785:377;28179:20;::::0;-1:-1:-1;;;;;2610:55:1;;2592:74;;28179:20:0::1;::::0;2580:2:1;2565:18;28179:20:0::1;;;;;;;27717:490:::0;:::o;28824:352::-;28896:5;;28871:4;;-1:-1:-1;;;;;28896:5:0;28888:45;;;;-1:-1:-1;;;28888:45:0;;7497:2:1;28888:45:0;;;7479:21:1;7536:2;7516:18;;;7509:30;7575:15;7555:18;;;7548:43;7608:18;;28888:45:0;7295:337:1;28888:45:0;28993:5;;29025:37;;;;;;;;;;;;;;;;;;;;;;28985:88;;28945:12;;;;-1:-1:-1;;;;;28993:5:0;;;;28985:88;;29025:37;28985:88;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28944:129;;;;29092:7;29084:37;;;;-1:-1:-1;;;29084:37:0;;8131:2:1;29084:37:0;;;8113:21:1;8170:2;8150:18;;;8143:30;8209:19;8189:18;;;8182:47;8246:18;;29084:37:0;7929:341:1;29084:37:0;29150:9;29139:29;;;;;;;;;;;;:::i;:::-;29132:36;;;;28824:352;:::o;10870:436::-;4204:10;10963:4;8323:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;8323:27:0;;;;;;;;;;10963:4;;4204:10;11110:15;11090:16;:35;;11082:85;;;;-1:-1:-1;;;11082:85:0;;8477:2:1;11082:85:0;;;8459:21:1;8516:2;8496:18;;;8489:30;8555:34;8535:18;;;8528:62;8626:7;8606:18;;;8599:35;8651:19;;11082:85:0;8275:401:1;11082:85:0;11203:60;11212:5;11219:7;11247:15;11228:16;:34;11203:8;:60::i;:::-;-1:-1:-1;11294:4:0;;10870:436;-1:-1:-1;;;;10870:436:0:o;30070:494::-;30243:6;;30181:4;;4204:10;;30243:6;;;;;30239:294;;;30266:35;30276:5;30283:9;30294:6;30266:9;:35::i;:::-;30239:294;;;30338:13;;;;;;;30334:110;;;30372:11;;:56;;;;;-1:-1:-1;;;;;5212:15:1;;;30372:56:0;;;5194:34:1;5264:15;;;5244:18;;;5237:43;5296:18;;;5289:34;;;30372:11:0;;;;:30;;5106:18:1;;30372:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30334:110;30460:61;30470:5;30477:9;30488:32;30495:5;30502:9;30513:6;30488;:32::i;27350:359::-;18348:13;:11;:13::i;:::-;27487:5:::1;::::0;-1:-1:-1;;;;;27487:5:0::1;:19:::0;27479:45:::1;;;::::0;-1:-1:-1;;;27479:45:0;;8883:2:1;27479:45:0::1;::::0;::::1;8865:21:1::0;8922:2;8902:18;;;8895:30;8961:15;8941:18;;;8934:43;8994:18;;27479:45:0::1;8681:337:1::0;27479:45:0::1;27535:5;:14:::0;;-1:-1:-1;;;;;27535:14:0;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;27560:5:::1;:14:::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;27587:13:::1;:30:::0;;;::::1;;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;27628:11;;;;;:25:::1;27654:7;18535:6:::0;;-1:-1:-1;;;;;18535:6:0;;18462:87;27654:7:::1;27628:34;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;2610:55:1;;;27628:34:0::1;::::0;::::1;2592:74:1::0;2565:18;;27628:34:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;27675:19:0::1;:26:::0;;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;27350:359:0:o;19361:201::-;18348:13;:11;:13::i;:::-;-1:-1:-1;;;;;19450:22:0;::::1;19442:73;;;::::0;-1:-1:-1;;;19442:73:0;;9225:2:1;19442:73:0::1;::::0;::::1;9207:21:1::0;9264:2;9244:18;;;9237:30;9303:34;9283:18;;;9276:62;9374:8;9354:18;;;9347:36;9400:19;;19442:73:0::1;9023:402:1::0;19442:73:0::1;19526:28;19545:8;19526:18;:28::i;:::-;19361:201:::0;:::o;14863:346::-;-1:-1:-1;;;;;14965:19:0;;14957:68;;;;-1:-1:-1;;;14957:68:0;;9632:2:1;14957:68:0;;;9614:21:1;9671:2;9651:18;;;9644:30;9710:34;9690:18;;;9683:62;9781:6;9761:18;;;9754:34;9805:19;;14957:68:0;9430:400:1;14957:68:0;-1:-1:-1;;;;;15044:21:0;;15036:68;;;;-1:-1:-1;;;15036:68:0;;10037:2:1;15036:68:0;;;10019:21:1;10076:2;10056:18;;;10049:30;10115:34;10095:18;;;10088:62;10186:4;10166:18;;;10159:32;10208:19;;15036:68:0;9835:398:1;15036:68:0;-1:-1:-1;;;;;15117:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15169:32;;1546:25:1;;;15169:32:0;;1519:18:1;15169:32:0;;;;;;;14863:346;;;:::o;15500:419::-;-1:-1:-1;;;;;8323:18:0;;;15601:24;8323:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;15688:17;15668:37;;15664:248;;15750:6;15730:16;:26;;15722:68;;;;-1:-1:-1;;;15722:68:0;;10440:2:1;15722:68:0;;;10422:21:1;10479:2;10459:18;;;10452:30;10518:31;10498:18;;;10491:59;10567:18;;15722:68:0;10238:353:1;15722:68:0;15834:51;15843:5;15850:7;15878:6;15859:16;:25;15834:8;:51::i;:::-;15590:329;15500:419;;;:::o;11776:806::-;-1:-1:-1;;;;;11873:18:0;;11865:68;;;;-1:-1:-1;;;11865:68:0;;10798:2:1;11865:68:0;;;10780:21:1;10837:2;10817:18;;;10810:30;10876:34;10856:18;;;10849:62;10947:7;10927:18;;;10920:35;10972:19;;11865:68:0;10596:401:1;11865:68:0;-1:-1:-1;;;;;11952:16:0;;11944:64;;;;-1:-1:-1;;;11944:64:0;;11204:2:1;11944:64:0;;;11186:21:1;11243:2;11223:18;;;11216:30;11282:34;11262:18;;;11255:62;11353:5;11333:18;;;11326:33;11376:19;;11944:64:0;11002:399:1;11944:64:0;-1:-1:-1;;;;;12094:15:0;;12072:19;12094:15;;;;;;;;;;;12128:21;;;;12120:72;;;;-1:-1:-1;;;12120:72:0;;11608:2:1;12120:72:0;;;11590:21:1;11647:2;11627:18;;;11620:30;11686:34;11666:18;;;11659:62;11757:8;11737:18;;;11730:36;11783:19;;12120:72:0;11406:402:1;12120:72:0;-1:-1:-1;;;;;12228:15:0;;;:9;:15;;;;;;;;;;;12246:20;;;12228:38;;12446:13;;;;;;;;;;:23;;;;;;12498:26;;1546:25:1;;;12446:13:0;;12498:26;;1519:18:1;12498:26:0;;;;;;;12537:37;16519:91;29184:878;29348:19;;29294;;29348;;;;;;:57;;-1:-1:-1;18535:6:0;;-1:-1:-1;;;;;29372:15:0;;;18535:6;;29372:15;;:32;;-1:-1:-1;18535:6:0;;-1:-1:-1;;;;;29391:13:0;;;18535:6;;29391:13;29372:32;29326:126;;;;-1:-1:-1;;;29326:126:0;;12015:2:1;29326:126:0;;;11997:21:1;12054:2;12034:18;;;12027:30;12093:21;12073:18;;;12066:49;12132:18;;29326:126:0;11813:343:1;29326:126:0;-1:-1:-1;29500:5:0;;29479:6;;-1:-1:-1;;;;;29500:5:0;29496:70;29536:18;29496:70;-1:-1:-1;;;;;29583:21:0;;29599:4;29583:21;;:44;;-1:-1:-1;;;;;;29608:19:0;;29622:4;29608:19;29583:44;29630:18;29578:70;29666:16;:14;:16::i;:::-;:25;;;29665:60;;-1:-1:-1;29697:19:0;;;;;;;:27;;29720:4;29697:27;29665:60;29661:394;;;29746:15;:13;:15::i;:::-;29742:73;;;29782:17;:15;:17::i;:::-;29842:6;;-1:-1:-1;;;;;29834:14:0;;;29842:6;;29834:14;;29833:34;;-1:-1:-1;29860:6:0;;-1:-1:-1;;;;;29854:12:0;;;29860:6;;29854:12;29833:34;29829:215;;;29912:5;;29888:11;;29921:6;;29903:14;;29912:5;;;;;29903:6;:14;:::i;:::-;29902:25;;;;:::i;:::-;29888:39;-1:-1:-1;29961:12:0;29888:39;29961:6;:12;:::i;:::-;29946:28;;29993:35;30003:4;30017;30024:3;29993:9;:35::i;:::-;29869:175;29184:878;;;;;:::o;18627:132::-;18535:6;;-1:-1:-1;;;;;18535:6:0;4204:10;18691:23;18683:68;;;;-1:-1:-1;;;18683:68:0;;12948:2:1;18683:68:0;;;12930:21:1;;;12967:18;;;12960:30;13026:34;13006:18;;;12999:62;13078:18;;18683:68:0;12746:356:1;19722:191:0;19815:6;;;-1:-1:-1;;;;;19832:17:0;;;;;;;;;;;19865:40;;19815:6;;;19832:17;19815:6;;19865:40;;19796:16;;19865:40;19785:128;19722:191;:::o;28215:203::-;28314:6;;28263:4;;-1:-1:-1;;;;;28314:6:0;28300:10;:20;;;;:44;;-1:-1:-1;28338:6:0;;;;;;;28337:7;28300:44;:110;;;;-1:-1:-1;28393:16:0;7372:2;28393;:16;:::i;:::-;28389:20;;:1;:20;:::i;:::-;28380:4;7692:7;7719:18;;;;;;;;;;;28362:47;28300:110;28280:130;;28215:203;:::o;28426:390::-;26303:6;;;;;;;:15;26295:42;;;;-1:-1:-1;;;26295:42:0;;14812:2:1;26295:42:0;;;14794:21:1;14851:2;14831:18;;;14824:30;14890:16;14870:18;;;14863:44;14924:18;;26295:42:0;14610:338:1;26295:42:0;26348:6;:13;;;;;;;;28506:16:::1;::::0;;28520:1:::1;28506:16:::0;;;;;::::1;::::0;;-1:-1:-1;;28506:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;28506:16:0::1;28482:40;;28551:4;28533;28538:1;28533:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;28533:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;28577:11:::1;::::0;:18:::1;::::0;;;;;;;:11;;;::::1;::::0;:16:::1;::::0;:18:::1;::::0;;::::1;::::0;28533:7;;28577:18;;;;;:11;:18:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28567:4;28572:1;28567:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;28567:28:0;;::::1;:7;::::0;;::::1;::::0;;;;;:28;28608:11:::1;::::0;::::1;:65;28688:24;28706:4;-1:-1:-1::0;;;;;7719:18:0;7692:7;7719:18;;;;;;;;;;;;7618:127;28688:24:::1;28762:5;::::0;28608:200:::1;::::0;;::::1;::::0;;;;;;::::1;::::0;;28727:1:::1;::::0;28743:4;;-1:-1:-1;;;;;28762:5:0::1;::::0;28782:15:::1;::::0;28608:200:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;26384:6:0;:14;;;;;;-1:-1:-1;;;28426:390:0:o;14:250:1:-;99:1;109:113;123:6;120:1;117:13;109:113;;;199:11;;;193:18;180:11;;;173:39;145:2;138:10;109:113;;;-1:-1:-1;;256:1:1;238:16;;231:27;14:250::o;269:455::-;418:2;407:9;400:21;381:4;450:6;444:13;493:6;488:2;477:9;473:18;466:34;509:79;581:6;576:2;565:9;561:18;556:2;548:6;544:15;509:79;:::i;:::-;640:2;628:15;645:66;624:88;609:104;;;;715:2;605:113;;269:455;-1:-1:-1;;269:455:1:o;729:154::-;-1:-1:-1;;;;;808:5:1;804:54;797:5;794:65;784:93;;873:1;870;863:12;888:315;956:6;964;1017:2;1005:9;996:7;992:23;988:32;985:52;;;1033:1;1030;1023:12;985:52;1072:9;1059:23;1091:31;1116:5;1091:31;:::i;:::-;1141:5;1193:2;1178:18;;;;1165:32;;-1:-1:-1;;;888:315:1:o;1775:456::-;1852:6;1860;1868;1921:2;1909:9;1900:7;1896:23;1892:32;1889:52;;;1937:1;1934;1927:12;1889:52;1976:9;1963:23;1995:31;2020:5;1995:31;:::i;:::-;2045:5;-1:-1:-1;2102:2:1;2087:18;;2074:32;2115:33;2074:32;2115:33;:::i;:::-;1775:456;;2167:7;;-1:-1:-1;;;2221:2:1;2206:18;;;;2193:32;;1775:456::o;2908:247::-;2967:6;3020:2;3008:9;2999:7;2995:23;2991:32;2988:52;;;3036:1;3033;3026:12;2988:52;3075:9;3062:23;3094:31;3119:5;3094:31;:::i;3418:118::-;3504:5;3497:13;3490:21;3483:5;3480:32;3470:60;;3526:1;3523;3516:12;3541:550;3614:6;3622;3630;3683:2;3671:9;3662:7;3658:23;3654:32;3651:52;;;3699:1;3696;3689:12;3651:52;3738:9;3725:23;3757:31;3782:5;3757:31;:::i;:::-;3807:5;-1:-1:-1;3864:2:1;3849:18;;3836:32;3912:6;3899:20;;3887:33;;3877:61;;3934:1;3931;3924:12;3877:61;3957:7;-1:-1:-1;4016:2:1;4001:18;;3988:32;4029:30;3988:32;4029:30;:::i;:::-;4078:7;4068:17;;;3541:550;;;;;:::o;4096:388::-;4164:6;4172;4225:2;4213:9;4204:7;4200:23;4196:32;4193:52;;;4241:1;4238;4231:12;4193:52;4280:9;4267:23;4299:31;4324:5;4299:31;:::i;:::-;4349:5;-1:-1:-1;4406:2:1;4391:18;;4378:32;4419:33;4378:32;4419:33;:::i;:::-;4471:7;4461:17;;;4096:388;;;;;:::o;4489:437::-;4568:1;4564:12;;;;4611;;;4632:61;;4686:4;4678:6;4674:17;4664:27;;4632:61;4739:2;4731:6;4728:14;4708:18;4705:38;4702:218;;4776:77;4773:1;4766:88;4877:4;4874:1;4867:15;4905:4;4902:1;4895:15;4702:218;;4489:437;;;:::o;5334:184::-;5386:77;5383:1;5376:88;5483:4;5480:1;5473:15;5507:4;5504:1;5497:15;5523:125;5588:9;;;5609:10;;;5606:36;;;5622:18;;:::i;6554:184::-;6624:6;6677:2;6665:9;6656:7;6652:23;6648:32;6645:52;;;6693:1;6690;6683:12;6645:52;-1:-1:-1;6716:16:1;;6554:184;-1:-1:-1;6554:184:1:o;7045:245::-;7112:6;7165:2;7153:9;7144:7;7140:23;7136:32;7133:52;;;7181:1;7178;7171:12;7133:52;7213:9;7207:16;7232:28;7254:5;7232:28;:::i;7637:287::-;7766:3;7804:6;7798:13;7820:66;7879:6;7874:3;7867:4;7859:6;7855:17;7820:66;:::i;:::-;7902:16;;;;;7637:287;-1:-1:-1;;7637:287:1:o;12161:168::-;12234:9;;;12265;;12282:15;;;12276:22;;12262:37;12252:71;;12303:18;;:::i;12334:274::-;12374:1;12400;12390:189;;12435:77;12432:1;12425:88;12536:4;12533:1;12526:15;12564:4;12561:1;12554:15;12390:189;-1:-1:-1;12593:9:1;;12334:274::o;12613:128::-;12680:9;;;12701:11;;;12698:37;;;12715:18;;:::i;13107:482::-;13196:1;13239:5;13196:1;13253:330;13274:7;13264:8;13261:21;13253:330;;;13393:4;13325:66;13321:77;13315:4;13312:87;13309:113;;;13402:18;;:::i;:::-;13452:7;13442:8;13438:22;13435:55;;;13472:16;;;;13435:55;13551:22;;;;13511:15;;;;13253:330;;;13257:3;13107:482;;;;;:::o;13594:866::-;13643:5;13673:8;13663:80;;-1:-1:-1;13714:1:1;13728:5;;13663:80;13762:4;13752:76;;-1:-1:-1;13799:1:1;13813:5;;13752:76;13844:4;13862:1;13857:59;;;;13930:1;13925:130;;;;13837:218;;13857:59;13887:1;13878:10;;13901:5;;;13925:130;13962:3;13952:8;13949:17;13946:43;;;13969:18;;:::i;:::-;-1:-1:-1;;14025:1:1;14011:16;;14040:5;;13837:218;;14139:2;14129:8;14126:16;14120:3;14114:4;14111:13;14107:36;14101:2;14091:8;14088:16;14083:2;14077:4;14074:12;14070:35;14067:77;14064:159;;;-1:-1:-1;14176:19:1;;;14208:5;;14064:159;14255:34;14280:8;14274:4;14255:34;:::i;:::-;14385:6;14317:66;14313:79;14304:7;14301:92;14298:118;;;14396:18;;:::i;:::-;14434:20;;13594:866;-1:-1:-1;;;13594:866:1:o;14465:140::-;14523:5;14552:47;14593:4;14583:8;14579:19;14573:4;14552:47;:::i;15142:184::-;15194:77;15191:1;15184:88;15291:4;15288:1;15281:15;15315:4;15312:1;15305:15;15331:251;15401:6;15454:2;15442:9;15433:7;15429:23;15425:32;15422:52;;;15470:1;15467;15460:12;15422:52;15502:9;15496:16;15521:31;15546:5;15521:31;:::i;15587:1026::-;15849:4;15897:3;15886:9;15882:19;15928:6;15917:9;15910:25;15954:2;15992:6;15987:2;15976:9;15972:18;15965:34;16035:3;16030:2;16019:9;16015:18;16008:31;16059:6;16094;16088:13;16125:6;16117;16110:22;16163:3;16152:9;16148:19;16141:26;;16202:2;16194:6;16190:15;16176:29;;16223:1;16233:218;16247:6;16244:1;16241:13;16233:218;;;16312:13;;-1:-1:-1;;;;;16308:62:1;16296:75;;16426:15;;;;16391:12;;;;16269:1;16262:9;16233:218;;;-1:-1:-1;;;;;;;16507:55:1;;;;16502:2;16487:18;;16480:83;-1:-1:-1;;;16594:3:1;16579:19;16572:35;16468:3;15587:1026;-1:-1:-1;;;15587:1026:1:o
Swarm Source
ipfs://5c9f1d22e7545767bb230df9c456c5d00c64eafc88dce4b9970987c7ef7b3afe
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.