ERC-20
Overview
Max Total Supply
500,000,000 LCAT
Holders
55
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,001,000 LCATValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LongCat
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* Twitter: https://x.com/Longcat_eth Website: https://longcat.lol Telegram: https://t.me/Longcat_eth */ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; pragma experimental ABIEncoderV2; /** * @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 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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, uint256 amount ) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @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.zeppelin.solutions/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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve( _msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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; _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; } _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 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 Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance( address owner, address spender ) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn( address to ) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract LongCat is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public mkt; address public teamWallet; address public devAddress; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; bool public blacklistRenounced = false; // Anti-bot and anti-whale mappings and variables mapping(address => bool) blacklisted; uint256 public buyTotalFees; uint256 public buyLiquidityFee; uint256 public buyTeamFee; uint256 public sellTotalFees; uint256 public sellLiquidityFee; uint256 public sellTeamFee; uint256 public tokensForRevShare; uint256 public tokensForLiquidity; uint256 public tokensForTeam; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; bool public preMigrationPhase = true; mapping(address => bool) public preMigrationTransferrable; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event mktUpdated(address indexed newWallet, address indexed oldWallet); event teamWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor( address _addressOne, address _devAddress ) ERC20("LongCat", "LCAT") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyLiquidityFee = 0; uint256 _buyTeamFee = 2; uint256 _sellLiquidityFee = 0; uint256 _sellTeamFee = 2; uint256 totalSupply = 500_000_000 * 1e18; maxTransactionAmount = 10_000_000 * 1e18; // 1% maxWallet = 25_000_000 * 1e18; // 5% swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% buyLiquidityFee = _buyLiquidityFee; buyTeamFee = _buyTeamFee; buyTotalFees = buyLiquidityFee + buyTeamFee; sellLiquidityFee = _sellLiquidityFee; sellTeamFee = _sellTeamFee; sellTotalFees = sellLiquidityFee + sellTeamFee; mkt = address(0x171F75b18a7419Cdd6e3E3F1f6dCB7F34d9b0B4C); teamWallet = _addressOne; // set as team wallet devAddress = _devAddress; // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); preMigrationTransferrable[owner()] = true; /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function openTrading() external { require( _msgSender() == owner() || _msgSender() == devAddress, "Unauthorized" ); tradingActive = true; swapEnabled = true; preMigrationPhase = false; buyLiquidityFee = 10; buyTeamFee = 20; buyTotalFees = buyLiquidityFee + buyTeamFee; sellLiquidityFee = 20; sellTeamFee = 20; sellTotalFees = sellLiquidityFee + sellTeamFee; } function removeLimitsFee() external onlyOwner { buyLiquidityFee = 2; buyTeamFee = 2; buyTotalFees = buyLiquidityFee + buyTeamFee; sellLiquidityFee = 2; sellTeamFee = 2; sellTotalFees = sellLiquidityFee + sellTeamFee; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount( uint256 newAmount ) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%" ); maxTransactionAmount = newNum * (10 ** 18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 10) / 1000) / 1e18, "Cannot set maxWallet lower than 1.0%" ); maxWallet = newNum * (10 ** 18); } function excludeFromMaxTransaction( address updAds, bool isEx ) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { buyLiquidityFee = _liquidityFee; buyTeamFee = _teamFee; buyTotalFees = buyLiquidityFee + buyTeamFee; require(buyTotalFees <= 5, "Buy fees must be <= 5."); } function updateSellFees( uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { sellLiquidityFee = _liquidityFee; sellTeamFee = _teamFee; sellTotalFees = sellLiquidityFee + sellTeamFee; require(sellTotalFees <= 5, "Sell fees must be <= 5."); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function excludeFromFeesMult( address[] memory accounts, bool[] memory excluded ) public onlyOwner { require( accounts.length == excluded.length, "Arrays of different sizes" ); for (uint256 i = 0; i < accounts.length; i++) { _isExcludedFromFees[accounts[i]] = excluded[i]; emit ExcludeFromFees(accounts[i], excluded[i]); } } function setAutomatedMarketMakerPair( address pair, bool value ) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMktWallet(address newMktWallet) external onlyOwner { emit mktUpdated(newMktWallet, mkt); mkt = newMktWallet; } function updateTeamWallet(address newWallet) external onlyOwner { emit teamWalletUpdated(newWallet, teamWallet); teamWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function isBlacklisted(address account) public view returns (bool) { return blacklisted[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!blacklisted[from], "Sender blacklisted"); require(!blacklisted[to], "Receiver blacklisted"); if (preMigrationPhase) { require( preMigrationTransferrable[from], "Not authorized to transfer pre-migration." ); } if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForTeam += (fees * sellTeamFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForTeam += (fees * buyTeamFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForRevShare + tokensForTeam; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForRevShare = ethBalance.mul(tokensForRevShare).div( totalTokensToSwap - (tokensForLiquidity / 2) ); uint256 ethForTeam = ethBalance.mul(tokensForTeam).div( totalTokensToSwap - (tokensForLiquidity / 2) ); uint256 ethForLiquidity = ethBalance - ethForRevShare - ethForTeam; tokensForLiquidity = 0; tokensForRevShare = 0; tokensForTeam = 0; (success, ) = address(teamWallet).call{value: ethForTeam}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(mkt).call{value: address(this).balance}(""); } function claimStuckTokens(address token) external { require(msg.sender == mkt, "You do not have access to this function"); if (token == address(0x0)) { payable(msg.sender).transfer(address(this).balance); return; } IERC20 ERC20token = IERC20(token); uint256 balance = ERC20token.balanceOf(address(this)); ERC20token.transfer(msg.sender, balance); } function withdrawStuckToken( address _token, address _to ) external onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawStuckEth(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{value: address(this).balance}(""); require(success); } // @dev team renounce blacklist commands function renounceBlacklist() public onlyOwner { blacklistRenounced = true; } function blacklist(address _addr) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[_addr] = true; } // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community function blacklistLiquidityPool(address lpAddress) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[lpAddress] = true; } // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road function unblacklist(address _addr) public onlyOwner { blacklisted[_addr] = false; } function setPreMigrationTransferable( address _addr, bool isAuthorized ) public onlyOwner { preMigrationTransferrable[_addr] = isAuthorized; excludeFromFees(_addr, isAuthorized); excludeFromMaxTransaction(_addr, isAuthorized); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "viaIR": true, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_addressOne","type":"address"},{"internalType":"address","name":"_devAddress","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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"mktUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool[]","name":"excluded","type":"bool[]"}],"name":"excludeFromFeesMult","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mkt","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMigrationPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMigrationTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimitsFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreMigrationTransferable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMktWallet","type":"address"}],"name":"updateMktWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040818152346200081357808262003686803803809162000023828562000847565b833981010312620008135762000039826200086b565b916200004960208092016200086b565b92825193620000588562000817565b6007855266131bdb99d0d85d60ca1b83860152835194620000798662000817565b6004808752631310d05560e21b858801528151909290916001600160401b03808411620008005760038054946001938487811c97168015620007f5575b8a881014620007e2578190601f978881116200078f575b508a908883116001146200072a575f926200071e575b50505f1982841b1c191690841b1781555b89519182116200070b5785548381811c9116801562000700575b89821014620006ed57858111620006a5575b50878583116001146200063c5782939495969798999a5f9362000630575b505082841b925f19911b1c19161784555b600580546001600160a01b03198082163390811784556001600160a01b03939284167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a38363ffffffff19600c541617600c5560ff19948486601a541617601a55737a250d5630b4cf539739df2c5dacb4c659f2488d90815f5260188b528b5f208688825416179055816080528b80519263c45a015560e01b84528c848c81845afa938415620005e2578b918e915f96620005ec575b5083516315ab88c960e31b815292839182905afa908115620005e25787948e938d925f9462000590575b5086604493925f925198899687956364e329cb60e11b87523090870152166024850152165af18015620005865785925f9162000541575b5080839160a0526200027f338388541614620008ae565b165f5260188b528b5f208688825416179055858260a05116805f5260198d528d5f20828a8254161790557fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab5f80a36a084595161401484a0000006009556a14adf4b7320334b9000000600b556934f086f3b33b68400000600a555f600f558160029a8b6010558b600e555f6012558b6013558b60115573171f75b18a7419cdd6e3e3f1f6dcb7f34d9b0b4c8560065416176006551683600754161760075516906008541617600855878282541662000359338214620008ae565b805f52601782528a5f2085878254161790558a518581527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7928391a2620003a5338484541614620008ae565b305f5260178952895f2084868254161790558951848152818a3092a2620003d1338484541614620008ae565b61dead8091815f5260178b528b5f2086888254161790558a8c51878152a28282541662000400338214620008ae565b5f5260188952895f20848682541617905562000421338484541614620008ae565b305f5260188952895f20848682541617905562000443338484541614620008ae565b5f5260188852885f20838582541617905554165f52601b8652865f20918254161790553315620005005750506200047b815462000880565b9055335f525f8152815f2062000492815462000880565b90555f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8351926b019d971e4fe8401e7400000084523393a351612d8b9081620008fb8239608051818181611978015261275f015260a051818181610d1a015281816115bb0152612c460152f35b915091606493519262461bcd60e51b845283015260248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b9192508b82813d83116200057e575b6200055c818362000847565b810103126200057b575090846200057481936200086b565b9062000268565b80fd5b503d62000550565b8c513d5f823e3d90fd5b9492505093945082813d8311620005da575b620005ae818362000847565b810103126200057b57508c60448b5f8f948a9796620005ce89926200086b565b95925092935062000231565b503d620005a2565b82513d5f823e3d90fd5b935094915082813d831162000628575b62000608818362000847565b810103126200057b5750898c620006208f936200086b565b945f62000207565b503d620005fc565b015191505f806200013e565b90601f19831691875f52895f20925f5b8181106200068f57509b84869798999a9b9c9d1062000675575b50505050811b0184556200014f565b01519060f8845f19921b161c191690555f80808062000666565b8d830151855593860193918b01918b016200064c565b865f52885f208680850160051c8201928b8610620006e3575b0160051c019084905b828110620006d757505062000120565b5f8155018490620006c7565b92508192620006be565b602287634e487b7160e01b5f525260245ffd5b90607f16906200010e565b604186634e487b7160e01b5f525260245ffd5b015190505f80620000e3565b5f8581528c8120889550929190601f198516908e5b8282106200077757505084116200075f575b505050811b018155620000f4565b01515f1983861b60f8161c191690555f808062000751565b8385015186558a979095019493840193018e6200073f565b909150835f528a5f208880850160051c8201928d8610620007d8575b918891869594930160051c01915b828110620007c9575050620000cd565b5f8155859450889101620007b9565b92508192620007ab565b602288634e487b7160e01b5f525260245ffd5b96607f1696620000b6565b604185634e487b7160e01b5f525260245ffd5b5f80fd5b604081019081106001600160401b038211176200083357604052565b634e487b7160e01b5f52604160045260245ffd5b601f909101601f19168101906001600160401b038211908210176200083357604052565b51906001600160a01b03821682036200081357565b906b019d971e4fe8401e7400000082018092116200089a57565b634e487b7160e01b5f52601160045260245ffd5b15620008b657565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fdfe6040608081526004908136101561001f575b5050361561001d575f80fd5b005b5f91823560e01c90816302dbd8f814611b2857816306fdde0314611a33578163095ea7b314611a095781630e922ca7146119e557816310d5de53146119a75781631694505e1461196357816318160ddd146119445781631a8145bb146119255781631d0f6547146118e0578163203e727e1461181357816323b872dd1461175557816324b9f3c11461173657816327c8f83514611719578163313ce567146116fd57816339509351146116ad5781633ad10ef6146116845781633dc599ff1461165d578163437f7815146115ea57816349bd5a5e146115a65781634a62bb65146115825781634e29e523146115445781634fbee1931461150657816359927044146114dd5781635f189361146114a157816366ca9b83146114205781636a486a8e146114015781636ddd1713146113da57816370a08231146113a3578163715018a61461134357816374d2d3021461112b578163751039fc146110f05781637571336a1461109357816375e3661e146110495781637ca8448a146110015781637cb332bb14610f8e5781637cc5b1e614610f655781638da5cb5b14610f3c578163924de9b714610eef57816395d89b4114610dec5781639a7a23d614610cda5781639c2e4ac614610cbb578163a457c2d714610c16578163a9059cbb14610be5578163aa0e438814610b00578163b62496f514610ac2578163bbc0c74214610a9b578163bc205ad31461091f578163c024666814610894578163c18bc195146107ad578163c8c8ebe41461078e578163c9567bf9146106e0578163d257b34f14610585578163d729715f14610566578163d85ba06314610547578163dd62ed3e146104fe578163e19b2823146104e1578163e2f45605146104c2578163f11a24d3146104a3578163f2fde38b146103d657508063f6374342146103b8578063f8b45b051461039a578063f9d0831a14610378578063f9f92be414610350578063fde83a34146103325763fe575a8703610011573461032e57602036600319011261032e5760209160ff9082906001600160a01b0361031b611c11565b168152600d855220541690519015158152f35b5080fd5b503461032e578160031936011261032e576020906016549051908152f35b82346103755760203660031901126103755761037261036d611c11565b612c1a565b80f35b80fd5b823461037557602036600319011261037557610372610395611c11565b612ad5565b503461032e578160031936011261032e57602090600b549051908152f35b503461032e578160031936011261032e576020906012549051908152f35b90503461049f57602036600319011261049f576103f1611c11565b6005546001600160a01b0380821693919261040d338614611c9a565b1693841561044d5750506001600160a01b03191682176005557f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b8280fd5b50503461032e578160031936011261032e57602090600f549051908152f35b50503461032e578160031936011261032e57602090600a549051908152f35b83346103755760203660031901126103755761037261036d611c11565b50503461032e578060031936011261032e578060209261051c611c11565b610524611c27565b6001600160a01b0391821683526001865283832091168252845220549051908152f35b50503461032e578160031936011261032e57602090600e549051908152f35b50503461032e578160031936011261032e576020906013549051908152f35b828434610375576020366003190112610375578235906105b060018060a01b03600554163314611c9a565b6002549081158280046001148117156106cd57620186a08304841061066c5760058302928304600514171561065957506103e8900481116105f95760209250600a555160018152f35b815162461bcd60e51b8152602081850152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608490fd5b634e487b7160e01b815260118552602490fd5b845162461bcd60e51b8152602081880152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608490fd5b634e487b7160e01b825260118652602482fd5b9190503461049f578260031936011261049f57600554336001600160a01b0391821614908115610780575b501561074e57826201010062ffff0019600c541617600c5560ff19601a5416601a55600a600f556014601055601e600e5560146012556014601355602860115580f35b906020606492519162461bcd60e51b8352820152600c60248201526b155b985d5d1a1bdc9a5e995960a21b6044820152fd5b90506008541633145f61070b565b50503461032e578160031936011261032e576020906009549051908152f35b8391503461032e57602036600319011261032e5780356107d860018060a01b03600554163314611c9a565b60025493600a850294808604600a1490151715610881576103e89394670de0b6b3a76400009485910404821061083357508281029281840414901517156108205750600b5580f35b634e487b7160e01b835260119052602482fd5b5162461bcd60e51b81526020818401526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608490fd5b634e487b7160e01b845260118352602484fd5b50503461032e578060031936011261032e577f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df760206108d1611c11565b6108d9611c8b565b60055490916001600160a01b03916108f49083163314611c9a565b169384865260178352610915828288209060ff801983541691151516179055565b519015158152a280f35b9190503461049f578060031936011261049f5761093a611c11565b610942611c27565b60055490916001600160a01b039161095d9083163314611c9a565b168015610a5857908291859351916370a0823160e01b835230868401526020958684602481865afa938415610a4e579087949392918794610a15575b50855163a9059cbb60e01b81526001600160a01b03909216908201908152602081019390935294859283919082906040015b03925af1908115610a0c57506109df578280f35b816109fe92903d10610a05575b6109f68183611c3d565b810190612abd565b505f808280f35b503d6109ec565b513d85823e3d90fd5b8581969295503d8311610a47575b610a2d8183611c3d565b81010312610a43579251869390926109cb610999565b8580fd5b503d610a23565b85513d88823e3d90fd5b825162461bcd60e51b8152602081860152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606490fd5b50503461032e578160031936011261032e5760209060ff600c5460081c1690519015158152f35b50503461032e57602036600319011261032e5760209160ff9082906001600160a01b03610aed611c11565b1681526019855220541690519015158152f35b50503461032e578060031936011261032e5761037290610b1e611c11565b90610b27611c8b565b91610bcb60018060a01b038092610b4382600554163314611c9a565b1691828752601b602052610b65858589209060ff801983541691151516179055565b610b7433826005541614611c9a565b8287526017602052610b94858589209060ff801983541691151516179055565b827f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7602086518815158152a2600554163314611c9a565b8452601860205283209060ff801983541691151516179055565b50503461032e578060031936011261032e57602090610c0f610c05611c11565b6024359033611f5e565b5160018152f35b90508234610375578260031936011261037557610c31611c11565b918360243592338152600160205281812060018060a01b0386168252602052205490828210610c6a57602085610c0f8585038733611d06565b608490602086519162461bcd60e51b8352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152fd5b50503461032e578160031936011261032e576020906010549051908152f35b90503461049f578160031936011261049f57610cf4611c11565b91610cfd611c8b565b9160018060a01b038094610d1682600554163314611c9a565b16937f0000000000000000000000000000000000000000000000000000000000000000168414610d84575082845260196020528320805460ff191660ff831515161790551515907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab8380a380f35b6020608492519162461bcd60e51b8352820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152fd5b83833461032e578160031936011261032e57805191809380549160019083821c92828516948515610ee5575b6020958686108114610ed257858952908115610eae5750600114610e56575b610e528787610e48828c0383611c3d565b5191829182611bca565b0390f35b81529295507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410610e9b5750505082610e5294610e4892820101948680610e37565b8054868501880152928601928101610e7d565b60ff19168887015250505050151560051b8301019250610e4882610e528680610e37565b634e487b7160e01b845260228352602484fd5b93607f1693610e18565b83903461032e57602036600319011261032e573580151580910361032e57610f2260018060a01b03600554163314611c9a565b62ff0000600c549160101b169062ff0000191617600c5580f35b50503461032e578160031936011261032e5760055490516001600160a01b039091168152602090f35b50503461032e578160031936011261032e5760065490516001600160a01b039091168152602090f35b833461037557602036600319011261037557610fa8611c11565b6005546001600160a01b039190610fc29083163314611c9a565b816007549116918116827f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f9616688580a36001600160a01b0319161760075580f35b8334610375576020366003190112610375578080808061101f611c11565b61103460018060a01b03600554163314611c9a565b47905af1611040612655565b50156103755780f35b50503461032e57602036600319011261032e57611064611c11565b6005546001600160a01b03919061107e9083163314611c9a565b168252600d6020528120805460ff1916905580f35b50503461032e578060031936011261032e57610372906110b1611c11565b906110ba611c8b565b60055490926001600160a01b03916110d59083163314611c9a565b168452601860205283209060ff801983541691151516179055565b50503461032e578160031936011261032e5760209061111a60018060a01b03600554163314611c9a565b60ff19600c5416600c555160018152f35b82843461037557816003193601126103755782359267ffffffffffffffff80851161049f573660238601121561049f57848201359461116986611c73565b9461117681519687611c3d565b8686526020918287016024809960051b8301019136831161131c578901905b82821061132457505050863592831161132057366023840112156113205782840135926111c184611c73565b936111ce83519586611c3d565b808552888486019160051b8301019136831161131c578901905b8282106113005750506005546001600160a01b03915061120b9082163314611c9a565b86518451036112be57855b87518110156112ba5761125661122c8287611e35565b5115158361123a848c611e35565b51168952601786528489209060ff801983541691151516179055565b81611261828a611e35565b51167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78561128f8489611e35565b5115158651908152a25f1981146112a857600101611216565b634e487b7160e01b8752601186528887fd5b8680f35b815162461bcd60e51b81528086018490526019818a01527f417272617973206f6620646966666572656e742073697a6573000000000000006044820152606490fd5b813580151581036113185781529084019084016111e8565b8880fd5b8780fd5b8480fd5b81356001600160a01b0381168103611318578152908401908401611195565b833461037557806003193601126103755760055481906001600160a01b0381169061136f338314611c9a565b6001600160a01b0319166005557f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b50503461032e57602036600319011261032e5760209181906001600160a01b036113cb611c11565b16815280845220549051908152f35b50503461032e578160031936011261032e5760209060ff600c5460101c1690519015158152f35b50503461032e578160031936011261032e576020906011549051908152f35b9190503461049f57600561145861143636611bb0565b9061144b60018060a01b038554163314611c9a565b80600f5581601055611ce5565b80600e5511611465578280f35b906020606492519162461bcd60e51b83528201526016602482015275213abc903332b2b99036bab9ba103132901e1e901a9760511b6044820152fd5b83346103755780600319360112610375576114c760018060a01b03600554163314611c9a565b630100000063ff00000019600c541617600c5580f35b50503461032e578160031936011261032e5760075490516001600160a01b039091168152602090f35b50503461032e57602036600319011261032e5760209160ff9082906001600160a01b03611531611c11565b1681526017855220541690519015158152f35b50503461032e57602036600319011261032e5760209160ff9082906001600160a01b0361156f611c11565b168152601b855220541690519015158152f35b50503461032e578160031936011261032e5760209060ff600c541690519015158152f35b50503461032e578160031936011261032e57517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b833461037557602036600319011261037557611604611c11565b6005546001600160a01b03919061161e9083163314611c9a565b816006549116918116827f1f49ce16a2f0fb9f3620cc602685eacf0041a97b34102281ca79092782597ffa8580a36001600160a01b0319161760065580f35b50503461032e578160031936011261032e5760209060ff600c5460181c1690519015158152f35b50503461032e578160031936011261032e5760085490516001600160a01b039091168152602090f35b50503461032e578060031936011261032e57610c0f6020926116f66116d0611c11565b338352600186528483206001600160a01b03821684528652918490205460243590611ce5565b9033611d06565b50503461032e578160031936011261032e576020905160128152f35b50503461032e578160031936011261032e576020905161dead8152f35b50503461032e578160031936011261032e576020906014549051908152f35b9050823461037557606036600319011261037557611771611c11565b918361177b611c27565b9261178a604435809587611f5e565b6001600160a01b03851681526001602090815282822033835290522054908282106117bf57602085610c0f8585033388611d06565b608490602086519162461bcd60e51b8352820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152fd5b8391503461032e57602036600319011261032e57803561183e60018060a01b03600554163314611c9a565b60025493600585029480860460051490151715610881576103e89394670de0b6b3a7640000948591040482106118865750828102928184041490151715610820575060095580f35b5162461bcd60e51b8152602081840152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608490fd5b83903461032e578160031936011261032e5761190760018060a01b03600554163314611c9a565b6002600f55600260105580600e556002601255600260135560115580f35b50503461032e578160031936011261032e576020906015549051908152f35b50503461032e578160031936011261032e576020906002549051908152f35b50503461032e578160031936011261032e57517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b50503461032e57602036600319011261032e5760209160ff9082906001600160a01b036119d2611c11565b1681526018855220541690519015158152f35b50503461032e578160031936011261032e5760209060ff601a541690519015158152f35b50503461032e578060031936011261032e57602090610c0f611a29611c11565b6024359033611d06565b9190503461049f578260031936011261049f57805191836003549060019082821c928281168015611b1e575b6020958686108214611b0b5750848852908115611ae95750600114611a90575b610e528686610e48828b0383611c3d565b929550600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828410611ad65750505082610e5294610e4892820101945f611a7f565b8054868501880152928601928101611ab9565b60ff191687860152505050151560051b8301019250610e4882610e525f611a7f565b634e487b7160e01b845260229052602483fd5b93607f1693611a5f565b9190503461049f576005611b60611b3e36611bb0565b90611b5360018060a01b038554163314611c9a565b8060125581601355611ce5565b8060115511611b6d578280f35b906020606492519162461bcd60e51b8352820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152fd5b6040906003190112611bc6576004359060243590565b5f80fd5b602080825282518183018190529093925f5b828110611bfd57505060409293505f838284010152601f8019910116010190565b818101860151848201604001528501611bdc565b600435906001600160a01b0382168203611bc657565b602435906001600160a01b0382168203611bc657565b90601f8019910116810190811067ffffffffffffffff821117611c5f57604052565b634e487b7160e01b5f52604160045260245ffd5b67ffffffffffffffff8111611c5f5760051b60200190565b602435908115158203611bc657565b15611ca157565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b91908201809211611cf257565b634e487b7160e01b5f52601160045260245ffd5b6001600160a01b03908116918215611db35716918215611d635760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591835f526001825260405f20855f5282528060405f2055604051908152a3565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b81810292918115918404141715611cf257565b8115611e21570490565b634e487b7160e01b5f52601260045260245ffd5b8051821015611e495760209160051b010190565b634e487b7160e01b5f52603260045260245ffd5b15611e6457565b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b15611ebe57565b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b15611f1657565b60405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606490fd5b91908203918211611cf257565b6001600160a01b039392919084811680151590611f7a82611e5d565b8684169182151591611f8b83611eb7565b5f908082526020600d815260ff9460409486868620541661254257878552600d83528686862054166125075786601a54166124a0575b8a156124525750600c549b868d166121ed575b5050612047999a3084528382528585852054600a54111591826121e0575b5050806121d1575b806121bd575b806121a9575b80612195575b61216b575b8460055460a01c16159582845260178252858585205416801561215c575b612153575b8396612049575b5050505050505061257b565b565b8392916019916120cd999b979695525283838320541680612148575b156120ea57505050509050601154906120bf6120b760646120868585611e04565b04936120a86120a08261209b60125489611e04565b611e17565b601554611ce5565b60155561209b60135486611e04565b601654611ce5565b6016555b816120da57611f51565b915f80808080808061203b565b6120e582308761257b565b611f51565b81522054168061213d575b156120c357600e5491506121356120b760646121118585611e04565b04936121266120a08261209b600f5489611e04565b60155561209b60105486611e04565b6016556120c3565b50600e5415156120f5565b506011541515612065565b95508295612034565b5080845285858520541661202f565b6005805460ff60a01b19908116600160a01b17909155612189612694565b60055416600555612011565b50858352601781528484842054161561200c565b508183526017815284848420541615612006565b508183526019815284848420541615612000565b508460055460a01c1615611ffa565b60101c169050855f611ff2565b869060055490811692838614159384612447575b508361243f575b5082612432575b82612424575b5050612223575b5f80611fd4565b848b60081c16156123c1575b81835260198152848484205416806123ad575b156122de57600954891161227d57612047999a86845283825261227561226b868620548c611ce5565b600b541015611f0f565b9a995061221c565b60849084519062461bcd60e51b82526004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152fd5b8583526019815284848420541680612399575b1561236b57600954891161230957612047999a612275565b60849084519062461bcd60e51b82526004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152fd5b612047999a868452601882528585852054166122755783825261239461226b868620548c611ce5565b612275565b5081835260188152848484205416156122f1565b508583526018815284848420541615612242565b818352601781528484842054168015612415575b61222f5760649084519062461bcd60e51b8252600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152fd5b508583528484842054166123d5565b60a01c16159050855f612215565b61dead891415925061220f565b92505f612208565b8a141593505f612201565b9197509295999a5061248e9198507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9750612493939450611e5d565b611eb7565b81835285825251908152a3565b838552601b8352868686205416611fc157855162461bcd60e51b815260048101849052602960248201527f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60448201526834b3b930ba34b7b71760b91b6064820152608490fd5b855162461bcd60e51b8152600481018490526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606490fd5b855162461bcd60e51b815260048101849052601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606490fd5b6001600160a01b0390811691612592831515611e5d565b169161259f831515611eb7565b5f8281528060205260408120549180831061260157604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9587602096528286520382822055868152206125f6828254611ce5565b9055604051908152a3565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b3d1561268f573d9067ffffffffffffffff8211611c5f5760405191612684601f8201601f191660200184611c3d565b82523d5f602084013e565b606090565b5f903082526020918083526040928382205490601554906126c36126ba60145484611ce5565b60165490611ce5565b9183158015612ab5575b612aac57600a54601481029080820460141490151715612a9857808511612a90575b508261209b6126fe9286611e04565b9561270e600197881c8095611f51565b9647948251916060958684019767ffffffffffffffff988581108a821117612a7c578652600285528685019886368b37855115612a6857308a5286516315ab88c960e31b81526001600160a01b039a7f00000000000000000000000000000000000000000000000000000000000000008c169790918a816004818c5afa908115612a5c578e91612a22575b508151871015612a0e578c16818a01526127b48f8930611d06565b873b15612a0a578c908f928b8e95948c5196879463791ac94760e01b865260a4860192600487015286602487015260a06044870152518092528a60c48601949387925b8484106129e55750505050505081903060648301524260848301520381838b5af180156129db576129ac575b505089806128856128649796956120e561287d849761286461286a612849889a47611f51565b9561285660145488611e04565b90601554901c9e8f85611f51565b90611e17565b9c61287760165487611e04565b92611f51565b998a92611f51565b968160155581601455816016558b600754165af1506128a2612655565b50801515806129a3575b6128d2575b505050505050818093945080916006541647905af1506128cf612655565b50565b806128df87928430611d06565b60c4886005541691858751958694859363f305d71960e01b855230600486015260248501528d60448501528d606485015260848401524260a48401525af180156129995761296f575b50928596978695937f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561938796601554928251948552840152820152a19185945f80806128b1565b8490813d8311612992575b6129848183611c3d565b81010312610a43575f612928565b503d61297a565b83513d89823e3d90fd5b508215156128ac565b819b92939695949b116129c757865298919293905f80612823565b634e487b7160e01b82526041600452602482fd5b88513d8e823e3d90fd5b909396508484939692959850511681520194019101908f9391928f938a8f89966127f7565b8c80fd5b634e487b7160e01b8e52603260045260248efd5b90508a81813d8311612a55575b612a398183611c3d565b81010312612a5157518c81168103612a51575f612799565b8d80fd5b503d612a2f565b8e8b51903d90823e3d90fd5b634e487b7160e01b8b52603260045260248bfd5b634e487b7160e01b8b52604160045260248bfd5b9350826126ef565b634e487b7160e01b86526011600452602486fd5b50505050509050565b5082156126cd565b90816020910312611bc657518015158103611bc65790565b6006546001600160a01b03919082163303612bc557168015612ba4576040516370a0823160e01b8152306004820152602091908281602481855afa8015612b6b5783915f91612b76575b5060405163a9059cbb60e01b8152336004820152602481019190915291829060449082905f905af18015612b6b57612b55575050565b816128cf92903d10610a05576109f68183611c3d565b6040513d5f823e3d90fd5b9182813d8311612b9d575b612b8b8183611c3d565b8101031261037557505182905f612b1f565b503d612b81565b505f80808047818115612bbc575b3390f115612b6b57565b506108fc612bb2565b60405162461bcd60e51b815260206004820152602760248201527f596f7520646f206e6f7420686176652061636365737320746f207468697320666044820152663ab731ba34b7b760c91b6064820152608490fd5b6005546001600160a01b039190612c349083163314611c9a565b60ff600c5460181c16612d06578116907f00000000000000000000000000000000000000000000000000000000000000001681141580612ce8575b15612c8c575f52600d60205260405f20600160ff19825416179055565b60405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608490fd5b50737a250d5630b4cf539739df2c5dacb4c659f2488d811415612c6f565b60405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608490fdfea2646970667358221220db11c7875003bdd124d9534edad9ca81c4f878fc684e3f544ad445fd487284ec64736f6c634300081400330000000000000000000000008cac4be28e2e7a2c53fa959361a76dc28cee65e8000000000000000000000000c5c4331037c04c08c56d83e79eedad695915ac2e
Deployed Bytecode
0x6040608081526004908136101561001f575b5050361561001d575f80fd5b005b5f91823560e01c90816302dbd8f814611b2857816306fdde0314611a33578163095ea7b314611a095781630e922ca7146119e557816310d5de53146119a75781631694505e1461196357816318160ddd146119445781631a8145bb146119255781631d0f6547146118e0578163203e727e1461181357816323b872dd1461175557816324b9f3c11461173657816327c8f83514611719578163313ce567146116fd57816339509351146116ad5781633ad10ef6146116845781633dc599ff1461165d578163437f7815146115ea57816349bd5a5e146115a65781634a62bb65146115825781634e29e523146115445781634fbee1931461150657816359927044146114dd5781635f189361146114a157816366ca9b83146114205781636a486a8e146114015781636ddd1713146113da57816370a08231146113a3578163715018a61461134357816374d2d3021461112b578163751039fc146110f05781637571336a1461109357816375e3661e146110495781637ca8448a146110015781637cb332bb14610f8e5781637cc5b1e614610f655781638da5cb5b14610f3c578163924de9b714610eef57816395d89b4114610dec5781639a7a23d614610cda5781639c2e4ac614610cbb578163a457c2d714610c16578163a9059cbb14610be5578163aa0e438814610b00578163b62496f514610ac2578163bbc0c74214610a9b578163bc205ad31461091f578163c024666814610894578163c18bc195146107ad578163c8c8ebe41461078e578163c9567bf9146106e0578163d257b34f14610585578163d729715f14610566578163d85ba06314610547578163dd62ed3e146104fe578163e19b2823146104e1578163e2f45605146104c2578163f11a24d3146104a3578163f2fde38b146103d657508063f6374342146103b8578063f8b45b051461039a578063f9d0831a14610378578063f9f92be414610350578063fde83a34146103325763fe575a8703610011573461032e57602036600319011261032e5760209160ff9082906001600160a01b0361031b611c11565b168152600d855220541690519015158152f35b5080fd5b503461032e578160031936011261032e576020906016549051908152f35b82346103755760203660031901126103755761037261036d611c11565b612c1a565b80f35b80fd5b823461037557602036600319011261037557610372610395611c11565b612ad5565b503461032e578160031936011261032e57602090600b549051908152f35b503461032e578160031936011261032e576020906012549051908152f35b90503461049f57602036600319011261049f576103f1611c11565b6005546001600160a01b0380821693919261040d338614611c9a565b1693841561044d5750506001600160a01b03191682176005557f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b8280fd5b50503461032e578160031936011261032e57602090600f549051908152f35b50503461032e578160031936011261032e57602090600a549051908152f35b83346103755760203660031901126103755761037261036d611c11565b50503461032e578060031936011261032e578060209261051c611c11565b610524611c27565b6001600160a01b0391821683526001865283832091168252845220549051908152f35b50503461032e578160031936011261032e57602090600e549051908152f35b50503461032e578160031936011261032e576020906013549051908152f35b828434610375576020366003190112610375578235906105b060018060a01b03600554163314611c9a565b6002549081158280046001148117156106cd57620186a08304841061066c5760058302928304600514171561065957506103e8900481116105f95760209250600a555160018152f35b815162461bcd60e51b8152602081850152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608490fd5b634e487b7160e01b815260118552602490fd5b845162461bcd60e51b8152602081880152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608490fd5b634e487b7160e01b825260118652602482fd5b9190503461049f578260031936011261049f57600554336001600160a01b0391821614908115610780575b501561074e57826201010062ffff0019600c541617600c5560ff19601a5416601a55600a600f556014601055601e600e5560146012556014601355602860115580f35b906020606492519162461bcd60e51b8352820152600c60248201526b155b985d5d1a1bdc9a5e995960a21b6044820152fd5b90506008541633145f61070b565b50503461032e578160031936011261032e576020906009549051908152f35b8391503461032e57602036600319011261032e5780356107d860018060a01b03600554163314611c9a565b60025493600a850294808604600a1490151715610881576103e89394670de0b6b3a76400009485910404821061083357508281029281840414901517156108205750600b5580f35b634e487b7160e01b835260119052602482fd5b5162461bcd60e51b81526020818401526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608490fd5b634e487b7160e01b845260118352602484fd5b50503461032e578060031936011261032e577f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df760206108d1611c11565b6108d9611c8b565b60055490916001600160a01b03916108f49083163314611c9a565b169384865260178352610915828288209060ff801983541691151516179055565b519015158152a280f35b9190503461049f578060031936011261049f5761093a611c11565b610942611c27565b60055490916001600160a01b039161095d9083163314611c9a565b168015610a5857908291859351916370a0823160e01b835230868401526020958684602481865afa938415610a4e579087949392918794610a15575b50855163a9059cbb60e01b81526001600160a01b03909216908201908152602081019390935294859283919082906040015b03925af1908115610a0c57506109df578280f35b816109fe92903d10610a05575b6109f68183611c3d565b810190612abd565b505f808280f35b503d6109ec565b513d85823e3d90fd5b8581969295503d8311610a47575b610a2d8183611c3d565b81010312610a43579251869390926109cb610999565b8580fd5b503d610a23565b85513d88823e3d90fd5b825162461bcd60e51b8152602081860152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606490fd5b50503461032e578160031936011261032e5760209060ff600c5460081c1690519015158152f35b50503461032e57602036600319011261032e5760209160ff9082906001600160a01b03610aed611c11565b1681526019855220541690519015158152f35b50503461032e578060031936011261032e5761037290610b1e611c11565b90610b27611c8b565b91610bcb60018060a01b038092610b4382600554163314611c9a565b1691828752601b602052610b65858589209060ff801983541691151516179055565b610b7433826005541614611c9a565b8287526017602052610b94858589209060ff801983541691151516179055565b827f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7602086518815158152a2600554163314611c9a565b8452601860205283209060ff801983541691151516179055565b50503461032e578060031936011261032e57602090610c0f610c05611c11565b6024359033611f5e565b5160018152f35b90508234610375578260031936011261037557610c31611c11565b918360243592338152600160205281812060018060a01b0386168252602052205490828210610c6a57602085610c0f8585038733611d06565b608490602086519162461bcd60e51b8352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152fd5b50503461032e578160031936011261032e576020906010549051908152f35b90503461049f578160031936011261049f57610cf4611c11565b91610cfd611c8b565b9160018060a01b038094610d1682600554163314611c9a565b16937f000000000000000000000000ca2f094448344fc1bc8572b96692208ded23617c168414610d84575082845260196020528320805460ff191660ff831515161790551515907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab8380a380f35b6020608492519162461bcd60e51b8352820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152fd5b83833461032e578160031936011261032e57805191809380549160019083821c92828516948515610ee5575b6020958686108114610ed257858952908115610eae5750600114610e56575b610e528787610e48828c0383611c3d565b5191829182611bca565b0390f35b81529295507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410610e9b5750505082610e5294610e4892820101948680610e37565b8054868501880152928601928101610e7d565b60ff19168887015250505050151560051b8301019250610e4882610e528680610e37565b634e487b7160e01b845260228352602484fd5b93607f1693610e18565b83903461032e57602036600319011261032e573580151580910361032e57610f2260018060a01b03600554163314611c9a565b62ff0000600c549160101b169062ff0000191617600c5580f35b50503461032e578160031936011261032e5760055490516001600160a01b039091168152602090f35b50503461032e578160031936011261032e5760065490516001600160a01b039091168152602090f35b833461037557602036600319011261037557610fa8611c11565b6005546001600160a01b039190610fc29083163314611c9a565b816007549116918116827f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f9616688580a36001600160a01b0319161760075580f35b8334610375576020366003190112610375578080808061101f611c11565b61103460018060a01b03600554163314611c9a565b47905af1611040612655565b50156103755780f35b50503461032e57602036600319011261032e57611064611c11565b6005546001600160a01b03919061107e9083163314611c9a565b168252600d6020528120805460ff1916905580f35b50503461032e578060031936011261032e57610372906110b1611c11565b906110ba611c8b565b60055490926001600160a01b03916110d59083163314611c9a565b168452601860205283209060ff801983541691151516179055565b50503461032e578160031936011261032e5760209061111a60018060a01b03600554163314611c9a565b60ff19600c5416600c555160018152f35b82843461037557816003193601126103755782359267ffffffffffffffff80851161049f573660238601121561049f57848201359461116986611c73565b9461117681519687611c3d565b8686526020918287016024809960051b8301019136831161131c578901905b82821061132457505050863592831161132057366023840112156113205782840135926111c184611c73565b936111ce83519586611c3d565b808552888486019160051b8301019136831161131c578901905b8282106113005750506005546001600160a01b03915061120b9082163314611c9a565b86518451036112be57855b87518110156112ba5761125661122c8287611e35565b5115158361123a848c611e35565b51168952601786528489209060ff801983541691151516179055565b81611261828a611e35565b51167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78561128f8489611e35565b5115158651908152a25f1981146112a857600101611216565b634e487b7160e01b8752601186528887fd5b8680f35b815162461bcd60e51b81528086018490526019818a01527f417272617973206f6620646966666572656e742073697a6573000000000000006044820152606490fd5b813580151581036113185781529084019084016111e8565b8880fd5b8780fd5b8480fd5b81356001600160a01b0381168103611318578152908401908401611195565b833461037557806003193601126103755760055481906001600160a01b0381169061136f338314611c9a565b6001600160a01b0319166005557f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b50503461032e57602036600319011261032e5760209181906001600160a01b036113cb611c11565b16815280845220549051908152f35b50503461032e578160031936011261032e5760209060ff600c5460101c1690519015158152f35b50503461032e578160031936011261032e576020906011549051908152f35b9190503461049f57600561145861143636611bb0565b9061144b60018060a01b038554163314611c9a565b80600f5581601055611ce5565b80600e5511611465578280f35b906020606492519162461bcd60e51b83528201526016602482015275213abc903332b2b99036bab9ba103132901e1e901a9760511b6044820152fd5b83346103755780600319360112610375576114c760018060a01b03600554163314611c9a565b630100000063ff00000019600c541617600c5580f35b50503461032e578160031936011261032e5760075490516001600160a01b039091168152602090f35b50503461032e57602036600319011261032e5760209160ff9082906001600160a01b03611531611c11565b1681526017855220541690519015158152f35b50503461032e57602036600319011261032e5760209160ff9082906001600160a01b0361156f611c11565b168152601b855220541690519015158152f35b50503461032e578160031936011261032e5760209060ff600c541690519015158152f35b50503461032e578160031936011261032e57517f000000000000000000000000ca2f094448344fc1bc8572b96692208ded23617c6001600160a01b03168152602090f35b833461037557602036600319011261037557611604611c11565b6005546001600160a01b03919061161e9083163314611c9a565b816006549116918116827f1f49ce16a2f0fb9f3620cc602685eacf0041a97b34102281ca79092782597ffa8580a36001600160a01b0319161760065580f35b50503461032e578160031936011261032e5760209060ff600c5460181c1690519015158152f35b50503461032e578160031936011261032e5760085490516001600160a01b039091168152602090f35b50503461032e578060031936011261032e57610c0f6020926116f66116d0611c11565b338352600186528483206001600160a01b03821684528652918490205460243590611ce5565b9033611d06565b50503461032e578160031936011261032e576020905160128152f35b50503461032e578160031936011261032e576020905161dead8152f35b50503461032e578160031936011261032e576020906014549051908152f35b9050823461037557606036600319011261037557611771611c11565b918361177b611c27565b9261178a604435809587611f5e565b6001600160a01b03851681526001602090815282822033835290522054908282106117bf57602085610c0f8585033388611d06565b608490602086519162461bcd60e51b8352820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152fd5b8391503461032e57602036600319011261032e57803561183e60018060a01b03600554163314611c9a565b60025493600585029480860460051490151715610881576103e89394670de0b6b3a7640000948591040482106118865750828102928184041490151715610820575060095580f35b5162461bcd60e51b8152602081840152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608490fd5b83903461032e578160031936011261032e5761190760018060a01b03600554163314611c9a565b6002600f55600260105580600e556002601255600260135560115580f35b50503461032e578160031936011261032e576020906015549051908152f35b50503461032e578160031936011261032e576020906002549051908152f35b50503461032e578160031936011261032e57517f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03168152602090f35b50503461032e57602036600319011261032e5760209160ff9082906001600160a01b036119d2611c11565b1681526018855220541690519015158152f35b50503461032e578160031936011261032e5760209060ff601a541690519015158152f35b50503461032e578060031936011261032e57602090610c0f611a29611c11565b6024359033611d06565b9190503461049f578260031936011261049f57805191836003549060019082821c928281168015611b1e575b6020958686108214611b0b5750848852908115611ae95750600114611a90575b610e528686610e48828b0383611c3d565b929550600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828410611ad65750505082610e5294610e4892820101945f611a7f565b8054868501880152928601928101611ab9565b60ff191687860152505050151560051b8301019250610e4882610e525f611a7f565b634e487b7160e01b845260229052602483fd5b93607f1693611a5f565b9190503461049f576005611b60611b3e36611bb0565b90611b5360018060a01b038554163314611c9a565b8060125581601355611ce5565b8060115511611b6d578280f35b906020606492519162461bcd60e51b8352820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152fd5b6040906003190112611bc6576004359060243590565b5f80fd5b602080825282518183018190529093925f5b828110611bfd57505060409293505f838284010152601f8019910116010190565b818101860151848201604001528501611bdc565b600435906001600160a01b0382168203611bc657565b602435906001600160a01b0382168203611bc657565b90601f8019910116810190811067ffffffffffffffff821117611c5f57604052565b634e487b7160e01b5f52604160045260245ffd5b67ffffffffffffffff8111611c5f5760051b60200190565b602435908115158203611bc657565b15611ca157565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b91908201809211611cf257565b634e487b7160e01b5f52601160045260245ffd5b6001600160a01b03908116918215611db35716918215611d635760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591835f526001825260405f20855f5282528060405f2055604051908152a3565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b81810292918115918404141715611cf257565b8115611e21570490565b634e487b7160e01b5f52601260045260245ffd5b8051821015611e495760209160051b010190565b634e487b7160e01b5f52603260045260245ffd5b15611e6457565b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b15611ebe57565b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b15611f1657565b60405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606490fd5b91908203918211611cf257565b6001600160a01b039392919084811680151590611f7a82611e5d565b8684169182151591611f8b83611eb7565b5f908082526020600d815260ff9460409486868620541661254257878552600d83528686862054166125075786601a54166124a0575b8a156124525750600c549b868d166121ed575b5050612047999a3084528382528585852054600a54111591826121e0575b5050806121d1575b806121bd575b806121a9575b80612195575b61216b575b8460055460a01c16159582845260178252858585205416801561215c575b612153575b8396612049575b5050505050505061257b565b565b8392916019916120cd999b979695525283838320541680612148575b156120ea57505050509050601154906120bf6120b760646120868585611e04565b04936120a86120a08261209b60125489611e04565b611e17565b601554611ce5565b60155561209b60135486611e04565b601654611ce5565b6016555b816120da57611f51565b915f80808080808061203b565b6120e582308761257b565b611f51565b81522054168061213d575b156120c357600e5491506121356120b760646121118585611e04565b04936121266120a08261209b600f5489611e04565b60155561209b60105486611e04565b6016556120c3565b50600e5415156120f5565b506011541515612065565b95508295612034565b5080845285858520541661202f565b6005805460ff60a01b19908116600160a01b17909155612189612694565b60055416600555612011565b50858352601781528484842054161561200c565b508183526017815284848420541615612006565b508183526019815284848420541615612000565b508460055460a01c1615611ffa565b60101c169050855f611ff2565b869060055490811692838614159384612447575b508361243f575b5082612432575b82612424575b5050612223575b5f80611fd4565b848b60081c16156123c1575b81835260198152848484205416806123ad575b156122de57600954891161227d57612047999a86845283825261227561226b868620548c611ce5565b600b541015611f0f565b9a995061221c565b60849084519062461bcd60e51b82526004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152fd5b8583526019815284848420541680612399575b1561236b57600954891161230957612047999a612275565b60849084519062461bcd60e51b82526004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152fd5b612047999a868452601882528585852054166122755783825261239461226b868620548c611ce5565b612275565b5081835260188152848484205416156122f1565b508583526018815284848420541615612242565b818352601781528484842054168015612415575b61222f5760649084519062461bcd60e51b8252600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152fd5b508583528484842054166123d5565b60a01c16159050855f612215565b61dead891415925061220f565b92505f612208565b8a141593505f612201565b9197509295999a5061248e9198507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9750612493939450611e5d565b611eb7565b81835285825251908152a3565b838552601b8352868686205416611fc157855162461bcd60e51b815260048101849052602960248201527f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60448201526834b3b930ba34b7b71760b91b6064820152608490fd5b855162461bcd60e51b8152600481018490526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606490fd5b855162461bcd60e51b815260048101849052601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606490fd5b6001600160a01b0390811691612592831515611e5d565b169161259f831515611eb7565b5f8281528060205260408120549180831061260157604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9587602096528286520382822055868152206125f6828254611ce5565b9055604051908152a3565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b3d1561268f573d9067ffffffffffffffff8211611c5f5760405191612684601f8201601f191660200184611c3d565b82523d5f602084013e565b606090565b5f903082526020918083526040928382205490601554906126c36126ba60145484611ce5565b60165490611ce5565b9183158015612ab5575b612aac57600a54601481029080820460141490151715612a9857808511612a90575b508261209b6126fe9286611e04565b9561270e600197881c8095611f51565b9647948251916060958684019767ffffffffffffffff988581108a821117612a7c578652600285528685019886368b37855115612a6857308a5286516315ab88c960e31b81526001600160a01b039a7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8c169790918a816004818c5afa908115612a5c578e91612a22575b508151871015612a0e578c16818a01526127b48f8930611d06565b873b15612a0a578c908f928b8e95948c5196879463791ac94760e01b865260a4860192600487015286602487015260a06044870152518092528a60c48601949387925b8484106129e55750505050505081903060648301524260848301520381838b5af180156129db576129ac575b505089806128856128649796956120e561287d849761286461286a612849889a47611f51565b9561285660145488611e04565b90601554901c9e8f85611f51565b90611e17565b9c61287760165487611e04565b92611f51565b998a92611f51565b968160155581601455816016558b600754165af1506128a2612655565b50801515806129a3575b6128d2575b505050505050818093945080916006541647905af1506128cf612655565b50565b806128df87928430611d06565b60c4886005541691858751958694859363f305d71960e01b855230600486015260248501528d60448501528d606485015260848401524260a48401525af180156129995761296f575b50928596978695937f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561938796601554928251948552840152820152a19185945f80806128b1565b8490813d8311612992575b6129848183611c3d565b81010312610a43575f612928565b503d61297a565b83513d89823e3d90fd5b508215156128ac565b819b92939695949b116129c757865298919293905f80612823565b634e487b7160e01b82526041600452602482fd5b88513d8e823e3d90fd5b909396508484939692959850511681520194019101908f9391928f938a8f89966127f7565b8c80fd5b634e487b7160e01b8e52603260045260248efd5b90508a81813d8311612a55575b612a398183611c3d565b81010312612a5157518c81168103612a51575f612799565b8d80fd5b503d612a2f565b8e8b51903d90823e3d90fd5b634e487b7160e01b8b52603260045260248bfd5b634e487b7160e01b8b52604160045260248bfd5b9350826126ef565b634e487b7160e01b86526011600452602486fd5b50505050509050565b5082156126cd565b90816020910312611bc657518015158103611bc65790565b6006546001600160a01b03919082163303612bc557168015612ba4576040516370a0823160e01b8152306004820152602091908281602481855afa8015612b6b5783915f91612b76575b5060405163a9059cbb60e01b8152336004820152602481019190915291829060449082905f905af18015612b6b57612b55575050565b816128cf92903d10610a05576109f68183611c3d565b6040513d5f823e3d90fd5b9182813d8311612b9d575b612b8b8183611c3d565b8101031261037557505182905f612b1f565b503d612b81565b505f80808047818115612bbc575b3390f115612b6b57565b506108fc612bb2565b60405162461bcd60e51b815260206004820152602760248201527f596f7520646f206e6f7420686176652061636365737320746f207468697320666044820152663ab731ba34b7b760c91b6064820152608490fd5b6005546001600160a01b039190612c349083163314611c9a565b60ff600c5460181c16612d06578116907f000000000000000000000000ca2f094448344fc1bc8572b96692208ded23617c1681141580612ce8575b15612c8c575f52600d60205260405f20600160ff19825416179055565b60405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608490fd5b50737a250d5630b4cf539739df2c5dacb4c659f2488d811415612c6f565b60405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608490fdfea2646970667358221220db11c7875003bdd124d9534edad9ca81c4f878fc684e3f544ad445fd487284ec64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008cac4be28e2e7a2c53fa959361a76dc28cee65e8000000000000000000000000c5c4331037c04c08c56d83e79eedad695915ac2e
-----Decoded View---------------
Arg [0] : _addressOne (address): 0x8Cac4BE28e2e7A2c53fA959361a76dc28cEE65e8
Arg [1] : _devAddress (address): 0xc5C4331037C04c08C56D83e79eedAD695915AC2E
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000008cac4be28e2e7a2c53fa959361a76dc28cee65e8
Arg [1] : 000000000000000000000000c5c4331037c04c08c56d83e79eedad695915ac2e
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.