ERC-20
Overview
Max Total Supply
1,000,000 KITTEN
Holders
150
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.637469860448897115 KITTENValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
KITTEN
Compiler Version
v0.8.22+commit.4fc1097e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** Website: https://kittencoineth.xyz/ Twitter: https://twitter.com/KittenCoinEth Telegram: https://t.me/kittenerc20 **/ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.20; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; bytes32 constant INIT_CODE_HASH = hex"96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f"; address constant FACTORY = 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f; library UniswapV2Library { function pairFor( address tokenA, address tokenB ) internal pure returns (address pair) { (address token0, address token1) = sortTokens(tokenA, tokenB); pair = address( uint160( uint256( keccak256( abi.encodePacked( hex"ff", FACTORY, keccak256(abi.encodePacked(token0, token1)), INIT_CODE_HASH ) ) ) ) ); } function sortTokens( address tokenA, address tokenB ) internal pure returns (address token0, address token1) { (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA); } } contract KITTEN is Context, IERC20, Ownable { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) private bots; mapping(address => uint256) private _holderLastTransferTimestamp; bool public transferDelayEnabled = true; address payable private _taxWallet; uint256 private _initialBuyTax; uint256 private _initialSellTax; uint256 private _finalBuyTax; uint256 private _finalSellTax; uint256 private _reduceBuyTaxAt = 50; uint256 private _reduceSellTaxAt = 50; uint256 private _preventSwapBefore = 25; uint256 private _buyCount; uint8 private constant _decimals = 18; uint256 private constant _tTotal = 1_000_000 * 10 ** _decimals; string private constant _name = unicode"Discord Kitten"; string private constant _symbol = unicode"KITTEN"; uint256 public _maxTxAmount = 20_000 * 10 ** _decimals; uint256 public _maxWalletSize = 20_000 * 10 ** _decimals; uint256 public _taxSwapThreshold = 2_000 * 10 ** _decimals; uint256 public _maxTaxSwap = 5_000 * 10 ** _decimals; IUniswapV2Router02 private constant UNISWAP_V2_ROUTER = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address private immutable UNISWAP_V2_PAIR; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; event MaxTxAmountUpdated(uint256 _maxTxAmount); modifier lockTheSwap() { inSwap = true; _; inSwap = false; } constructor() Ownable(msg.sender) { _taxWallet = payable(msg.sender); _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_taxWallet] = true; UNISWAP_V2_PAIR = UniswapV2Library.pairFor( address(this), UNISWAP_V2_ROUTER.WETH() ); _balances[_msgSender()] = _tTotal; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer( address recipient, uint256 amount ) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance( address owner, address spender ) public view override returns (uint256) { return _allowances[owner][spender]; } function approve( address spender, uint256 amount ) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); uint256 taxAmount = 0; if (from != owner() && to != owner()) { taxAmount = amount .mul( (_buyCount > _reduceBuyTaxAt) ? _finalBuyTax : _initialBuyTax ) .div(100); if (transferDelayEnabled) { if (to != address(UNISWAP_V2_ROUTER) && to != UNISWAP_V2_PAIR) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } if ( from == UNISWAP_V2_PAIR && to != address(UNISWAP_V2_ROUTER) && !_isExcludedFromFee[to] ) { require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount."); require( balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize." ); if (_buyCount <= 100) { _buyCount++; } } if (to == UNISWAP_V2_PAIR && from != address(this)) { taxAmount = amount .mul( (_buyCount > _reduceSellTaxAt) ? _finalSellTax : _initialSellTax ) .div(100); } uint256 contractTokenBalance = balanceOf(address(this)); if ( !inSwap && to == UNISWAP_V2_PAIR && swapEnabled && contractTokenBalance > _taxSwapThreshold && _buyCount > _preventSwapBefore ) { swapTokensForEth( min(amount, min(contractTokenBalance, _maxTaxSwap)) ); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 50000000000000000) { sendETHToFee(address(this).balance); } } } if (taxAmount > 0) { _balances[address(this)] = _balances[address(this)].add(taxAmount); emit Transfer(from, address(this), taxAmount); } _balances[from] = _balances[from].sub(amount); _balances[to] = _balances[to].add(amount.sub(taxAmount)); emit Transfer(from, to, amount.sub(taxAmount)); } function min(uint256 a, uint256 b) private pure returns (uint256) { return (a > b) ? b : a; } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = UNISWAP_V2_ROUTER.WETH(); UNISWAP_V2_ROUTER.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, _taxWallet, block.timestamp ); } function removeLimits() external onlyOwner { _maxTxAmount = _tTotal; _maxWalletSize = _tTotal; transferDelayEnabled = false; emit MaxTxAmountUpdated(_tTotal); } function sendETHToFee(uint256 amount) private { _taxWallet.transfer(amount); } function openTrading() external payable onlyOwner { require(!tradingOpen, "trading is already open"); _approve(address(this), address(UNISWAP_V2_ROUTER), type(uint256).max); UNISWAP_V2_ROUTER.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); _initialBuyTax = 30; _initialSellTax = 30; _finalBuyTax = 3; _finalSellTax = 3; swapEnabled = true; tradingOpen = true; } receive() external payable {} function manualSwap() external { require(_msgSender() == _taxWallet); uint256 tokenBalance = balanceOf(address(this)); if (tokenBalance > 0) { swapTokensForEth(tokenBalance); } uint256 ethBalance = address(this).balance; if (ethBalance > 0) { sendETHToFee(ethBalance); } } function excludeFromFee(address addy) external onlyOwner { _isExcludedFromFee[addy] = true; } function setTaxes( uint256 finalBuyTax, uint256 finalSellTax ) external onlyOwner { _finalBuyTax = finalBuyTax; _finalSellTax = finalSellTax; } }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @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 subtraction 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; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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); } }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"finalBuyTax","type":"uint256"},{"internalType":"uint256","name":"finalSellTax","type":"uint256"}],"name":"setTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052600160065f6101000a81548160ff0219169083151502179055506032600b556032600c556019600d556012600a6200003d919062000841565b614e206200004c919062000891565b600f556012600a6200005f919062000841565b614e206200006e919062000891565b6010556012600a62000081919062000841565b6107d062000090919062000891565b6011556012600a620000a3919062000841565b611388620000b2919062000891565b6012555f601360016101000a81548160ff0219169083151502179055505f601360026101000a81548160ff021916908315150217905550348015620000f5575f80fd5b50335f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200016a575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200016191906200091e565b60405180910390fd5b6200017b81620004c060201b60201c565b5033600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160035f620001d26200058160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160035f600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506200038230737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000350573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200037691906200096c565b620005a860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506012600a620003c5919062000841565b620f4240620003d5919062000891565b60015f620003e86200065860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550620004356200065860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6012600a62000493919062000841565b620f4240620004a3919062000891565b604051620004b29190620009ad565b60405180910390a362000b18565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f805f620005bd85856200065f60201b60201c565b91509150735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f8282604051602001620005eb92919062000a15565b604051602081830303815290604052805190602001207f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f604051602001620006369392919062000ac9565b604051602081830303815290604052805190602001205f1c9250505092915050565b5f33905090565b5f808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16106200069d578284620006a0565b83835b80925081935050509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200073957808604811115620007115762000710620006af565b5b6001851615620007215780820291505b80810290506200073185620006dc565b9450620006f1565b94509492505050565b5f8262000753576001905062000825565b8162000762575f905062000825565b81600181146200077b57600281146200078657620007bc565b600191505062000825565b60ff8411156200079b576200079a620006af565b5b8360020a915084821115620007b557620007b4620006af565b5b5062000825565b5060208310610133831016604e8410600b8410161715620007f65782820a905083811115620007f057620007ef620006af565b5b62000825565b620008058484846001620006e8565b925090508184048111156200081f576200081e620006af565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f6200084d826200082c565b91506200085a8362000835565b9250620008897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000742565b905092915050565b5f6200089d826200082c565b9150620008aa836200082c565b9250828202620008ba816200082c565b91508282048414831517620008d457620008d3620006af565b5b5092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200090682620008db565b9050919050565b6200091881620008fa565b82525050565b5f602082019050620009335f8301846200090d565b92915050565b5f80fd5b6200094881620008fa565b811462000953575f80fd5b50565b5f8151905062000966816200093d565b92915050565b5f6020828403121562000984576200098362000939565b5b5f620009938482850162000956565b91505092915050565b620009a7816200082c565b82525050565b5f602082019050620009c25f8301846200099c565b92915050565b5f8160601b9050919050565b5f620009e082620009c8565b9050919050565b5f620009f382620009d4565b9050919050565b62000a0f62000a0982620008fa565b620009e7565b82525050565b5f62000a228285620009fa565b60148201915062000a348284620009fa565b6014820191508190509392505050565b5f81905092915050565b7fff000000000000000000000000000000000000000000000000000000000000005f82015250565b5f62000a8460018362000a44565b915062000a918262000a4e565b600182019050919050565b5f819050919050565b5f819050919050565b62000ac362000abd8262000a9c565b62000aa5565b82525050565b5f62000ad58262000a76565b915062000ae38286620009fa565b60148201915062000af5828562000aae565b60208201915062000b07828462000aae565b602082019150819050949350505050565b6080516129ae62000b465f395f8181610f9f015281816110b80152818161126b015261135a01526129ae5ff3fe608060405260043610610138575f3560e01c80637d1db4a5116100aa578063bf474bed1161006e578063bf474bed146103ed578063c647b20e14610417578063c876d0b91461043f578063c9567bf914610469578063dd62ed3e14610473578063f2fde38b146104af5761013f565b80637d1db4a5146103095780638da5cb5b146103335780638f9a55c01461035d57806395d89b4114610387578063a9059cbb146103b15761013f565b8063313ce567116100fc578063313ce56714610239578063437823ec1461026357806351bc3c851461028b57806370a08231146102a1578063715018a6146102dd578063751039fc146102f35761013f565b806306fdde0314610143578063095ea7b31461016d5780630faee56f146101a957806318160ddd146101d357806323b872dd146101fd5761013f565b3661013f57005b5f80fd5b34801561014e575f80fd5b506101576104d7565b6040516101649190611c11565b60405180910390f35b348015610178575f80fd5b50610193600480360381019061018e9190611cc2565b610514565b6040516101a09190611d1a565b60405180910390f35b3480156101b4575f80fd5b506101bd610531565b6040516101ca9190611d42565b60405180910390f35b3480156101de575f80fd5b506101e7610537565b6040516101f49190611d42565b60405180910390f35b348015610208575f80fd5b50610223600480360381019061021e9190611d5b565b610559565b6040516102309190611d1a565b60405180910390f35b348015610244575f80fd5b5061024d61062d565b60405161025a9190611dc6565b60405180910390f35b34801561026e575f80fd5b5061028960048036038101906102849190611ddf565b610635565b005b348015610296575f80fd5b5061029f610695565b005b3480156102ac575f80fd5b506102c760048036038101906102c29190611ddf565b61072d565b6040516102d49190611d42565b60405180910390f35b3480156102e8575f80fd5b506102f1610773565b005b3480156102fe575f80fd5b50610307610786565b005b348015610314575f80fd5b5061031d61083f565b60405161032a9190611d42565b60405180910390f35b34801561033e575f80fd5b50610347610845565b6040516103549190611e19565b60405180910390f35b348015610368575f80fd5b5061037161086c565b60405161037e9190611d42565b60405180910390f35b348015610392575f80fd5b5061039b610872565b6040516103a89190611c11565b60405180910390f35b3480156103bc575f80fd5b506103d760048036038101906103d29190611cc2565b6108af565b6040516103e49190611d1a565b60405180910390f35b3480156103f8575f80fd5b506104016108cc565b60405161040e9190611d42565b60405180910390f35b348015610422575f80fd5b5061043d60048036038101906104389190611e32565b6108d2565b005b34801561044a575f80fd5b506104536108ec565b6040516104609190611d1a565b60405180910390f35b6104716108fe565b005b34801561047e575f80fd5b5061049960048036038101906104949190611e70565b610a96565b6040516104a69190611d42565b60405180910390f35b3480156104ba575f80fd5b506104d560048036038101906104d09190611ddf565b610b18565b005b60606040518060400160405280600e81526020017f446973636f7264204b697474656e000000000000000000000000000000000000815250905090565b5f610527610520610b9c565b8484610ba3565b6001905092915050565b60125481565b5f6012600a610546919061200a565b620f42406105549190612054565b905090565b5f610565848484610d66565b61062284610571610b9c565b61061d856040518060600160405280602881526020016129516028913960025f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6105d4610b9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546116cf9092919063ffffffff16565b610ba3565b600190509392505050565b5f6012905090565b61063d611723565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166106d6610b9c565b73ffffffffffffffffffffffffffffffffffffffff16146106f5575f80fd5b5f6106ff3061072d565b90505f81111561071357610712816117aa565b5b5f4790505f81111561072957610728816119f1565b5b5050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61077b611723565b6107845f611a5a565b565b61078e611723565b6012600a61079c919061200a565b620f42406107aa9190612054565b600f819055506012600a6107be919061200a565b620f42406107cc9190612054565b6010819055505f60065f6101000a81548160ff0219169083151502179055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6012600a61081a919061200a565b620f42406108289190612054565b6040516108359190611d42565b60405180910390a1565b600f5481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b60606040518060400160405280600681526020017f4b495454454e0000000000000000000000000000000000000000000000000000815250905090565b5f6108c26108bb610b9c565b8484610d66565b6001905092915050565b60115481565b6108da611723565b8160098190555080600a819055505050565b60065f9054906101000a900460ff1681565b610906611723565b60135f9054906101000a900460ff1615610955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094c906120df565b60405180910390fd5b61099430737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610ba3565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71947306109cf3061072d565b5f806109d9610845565b426040518863ffffffff1660e01b81526004016109fb9695949392919061213f565b60606040518083038185885af1158015610a17573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610a3c91906121b2565b505050601e600781905550601e60088190555060036009819055506003600a819055506001601360026101000a81548160ff021916908315150217905550600160135f6101000a81548160ff021916908315150217905550565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b20611723565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b90575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b879190611e19565b60405180910390fd5b610b9981611a5a565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0890612272565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690612300565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d599190611d42565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb9061238e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e399061241c565b60405180910390fd5b5f8111610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b906124aa565b60405180910390fd5b5f610e8d610845565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015610efb5750610ecb610845565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561141f57610f3c6064610f2e600b54600e5411610f1b57600754610f1f565b6009545b85611b1b90919063ffffffff16565b611b3090919063ffffffff16565b905060065f9054906101000a900460ff16156110b657737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610fee57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156110b5574360055f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410611072576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110699061255e565b60405180910390fd5b4360055f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156111515750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156111a4575060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561126957600f548211156111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e5906125c6565b60405180910390fd5b601054826111fb8561072d565b61120591906125e4565b1115611246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123d90612661565b60405180910390fd5b6064600e541161126857600e5f8154809291906112629061267f565b91905055505b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156112f057503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611334576113316064611323600c54600e541161131057600854611314565b600a545b85611b1b90919063ffffffff16565b611b3090919063ffffffff16565b90505b5f61133e3061072d565b9050601360019054906101000a900460ff161580156113a857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156113c05750601360029054906101000a900460ff165b80156113cd575060115481115b80156113dc5750600d54600e54115b1561141d576113fe6113f9846113f484601254611b45565b611b45565b6117aa565b5f47905066b1a2bc2ec5000081111561141b5761141a476119f1565b5b505b505b5f81111561151e576114778160015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b5d90919063ffffffff16565b60015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115159190611d42565b60405180910390a35b61156e8260015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b7290919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506116116115c58284611b7290919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b5d90919063ffffffff16565b60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6116b48486611b7290919063ffffffff16565b6040516116c19190611d42565b60405180910390a350505050565b5f838311158290611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d9190611c11565b60405180910390fd5b5082840390509392505050565b61172b610b9c565b73ffffffffffffffffffffffffffffffffffffffff16611749610845565b73ffffffffffffffffffffffffffffffffffffffff16146117a85761176c610b9c565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161179f9190611e19565b60405180910390fd5b565b6001601360016101000a81548160ff0219169083151502179055505f600267ffffffffffffffff8111156117e1576117e06126c6565b5b60405190808252806020026020018201604052801561180f5781602001602082028036833780820191505090505b50905030815f81518110611826576118256126f3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118bd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118e19190612734565b816001815181106118f5576118f46126f3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f84600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016119a6959493929190612868565b5f604051808303815f87803b1580156119bd575f80fd5b505af11580156119cf573d5f803e3d5ffd5b50505050505f601360016101000a81548160ff02191690831515021790555050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015611a56573d5f803e3d5ffd5b5050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8183611b289190612054565b905092915050565b5f8183611b3d91906128ed565b905092915050565b5f818311611b535782611b55565b815b905092915050565b5f8183611b6a91906125e4565b905092915050565b5f8183611b7f919061291d565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611bbe578082015181840152602081019050611ba3565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611be382611b87565b611bed8185611b91565b9350611bfd818560208601611ba1565b611c0681611bc9565b840191505092915050565b5f6020820190508181035f830152611c298184611bd9565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c5e82611c35565b9050919050565b611c6e81611c54565b8114611c78575f80fd5b50565b5f81359050611c8981611c65565b92915050565b5f819050919050565b611ca181611c8f565b8114611cab575f80fd5b50565b5f81359050611cbc81611c98565b92915050565b5f8060408385031215611cd857611cd7611c31565b5b5f611ce585828601611c7b565b9250506020611cf685828601611cae565b9150509250929050565b5f8115159050919050565b611d1481611d00565b82525050565b5f602082019050611d2d5f830184611d0b565b92915050565b611d3c81611c8f565b82525050565b5f602082019050611d555f830184611d33565b92915050565b5f805f60608486031215611d7257611d71611c31565b5b5f611d7f86828701611c7b565b9350506020611d9086828701611c7b565b9250506040611da186828701611cae565b9150509250925092565b5f60ff82169050919050565b611dc081611dab565b82525050565b5f602082019050611dd95f830184611db7565b92915050565b5f60208284031215611df457611df3611c31565b5b5f611e0184828501611c7b565b91505092915050565b611e1381611c54565b82525050565b5f602082019050611e2c5f830184611e0a565b92915050565b5f8060408385031215611e4857611e47611c31565b5b5f611e5585828601611cae565b9250506020611e6685828601611cae565b9150509250929050565b5f8060408385031215611e8657611e85611c31565b5b5f611e9385828601611c7b565b9250506020611ea485828601611c7b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115611f3057808604811115611f0c57611f0b611eae565b5b6001851615611f1b5780820291505b8081029050611f2985611edb565b9450611ef0565b94509492505050565b5f82611f485760019050612003565b81611f55575f9050612003565b8160018114611f6b5760028114611f7557611fa4565b6001915050612003565b60ff841115611f8757611f86611eae565b5b8360020a915084821115611f9e57611f9d611eae565b5b50612003565b5060208310610133831016604e8410600b8410161715611fd95782820a905083811115611fd457611fd3611eae565b5b612003565b611fe68484846001611ee7565b92509050818404811115611ffd57611ffc611eae565b5b81810290505b9392505050565b5f61201482611c8f565b915061201f83611dab565b925061204c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611f39565b905092915050565b5f61205e82611c8f565b915061206983611c8f565b925082820261207781611c8f565b9150828204841483151761208e5761208d611eae565b5b5092915050565b7f74726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f6120c9601783611b91565b91506120d482612095565b602082019050919050565b5f6020820190508181035f8301526120f6816120bd565b9050919050565b5f819050919050565b5f819050919050565b5f61212961212461211f846120fd565b612106565b611c8f565b9050919050565b6121398161210f565b82525050565b5f60c0820190506121525f830189611e0a565b61215f6020830188611d33565b61216c6040830187612130565b6121796060830186612130565b6121866080830185611e0a565b61219360a0830184611d33565b979650505050505050565b5f815190506121ac81611c98565b92915050565b5f805f606084860312156121c9576121c8611c31565b5b5f6121d68682870161219e565b93505060206121e78682870161219e565b92505060406121f88682870161219e565b9150509250925092565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61225c602483611b91565b915061226782612202565b604082019050919050565b5f6020820190508181035f83015261228981612250565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6122ea602283611b91565b91506122f582612290565b604082019050919050565b5f6020820190508181035f830152612317816122de565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612378602583611b91565b91506123838261231e565b604082019050919050565b5f6020820190508181035f8301526123a58161236c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612406602383611b91565b9150612411826123ac565b604082019050919050565b5f6020820190508181035f830152612433816123fa565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f612494602983611b91565b915061249f8261243a565b604082019050919050565b5f6020820190508181035f8301526124c181612488565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f612548604983611b91565b9150612553826124c8565b606082019050919050565b5f6020820190508181035f8301526125758161253c565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e000000000000005f82015250565b5f6125b0601983611b91565b91506125bb8261257c565b602082019050919050565b5f6020820190508181035f8301526125dd816125a4565b9050919050565b5f6125ee82611c8f565b91506125f983611c8f565b925082820190508082111561261157612610611eae565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e0000000000005f82015250565b5f61264b601a83611b91565b915061265682612617565b602082019050919050565b5f6020820190508181035f8301526126788161263f565b9050919050565b5f61268982611c8f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036126bb576126ba611eae565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061272e81611c65565b92915050565b5f6020828403121561274957612748611c31565b5b5f61275684828501612720565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61279181611c54565b82525050565b5f6127a28383612788565b60208301905092915050565b5f602082019050919050565b5f6127c48261275f565b6127ce8185612769565b93506127d983612779565b805f5b838110156128095781516127f08882612797565b97506127fb836127ae565b9250506001810190506127dc565b5085935050505092915050565b5f61283061282b61282684611c35565b612106565b611c35565b9050919050565b5f61284182612816565b9050919050565b5f61285282612837565b9050919050565b61286281612848565b82525050565b5f60a08201905061287b5f830188611d33565b6128886020830187612130565b818103604083015261289a81866127ba565b90506128a96060830185612859565b6128b66080830184611d33565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6128f782611c8f565b915061290283611c8f565b925082612912576129116128c0565b5b828204905092915050565b5f61292782611c8f565b915061293283611c8f565b925082820390508181111561294a57612949611eae565b5b9291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220fc459b4517d58cb0b5a457440986693d4460689dfe797c9105e442130838b0bb64736f6c63430008160033
Deployed Bytecode
0x608060405260043610610138575f3560e01c80637d1db4a5116100aa578063bf474bed1161006e578063bf474bed146103ed578063c647b20e14610417578063c876d0b91461043f578063c9567bf914610469578063dd62ed3e14610473578063f2fde38b146104af5761013f565b80637d1db4a5146103095780638da5cb5b146103335780638f9a55c01461035d57806395d89b4114610387578063a9059cbb146103b15761013f565b8063313ce567116100fc578063313ce56714610239578063437823ec1461026357806351bc3c851461028b57806370a08231146102a1578063715018a6146102dd578063751039fc146102f35761013f565b806306fdde0314610143578063095ea7b31461016d5780630faee56f146101a957806318160ddd146101d357806323b872dd146101fd5761013f565b3661013f57005b5f80fd5b34801561014e575f80fd5b506101576104d7565b6040516101649190611c11565b60405180910390f35b348015610178575f80fd5b50610193600480360381019061018e9190611cc2565b610514565b6040516101a09190611d1a565b60405180910390f35b3480156101b4575f80fd5b506101bd610531565b6040516101ca9190611d42565b60405180910390f35b3480156101de575f80fd5b506101e7610537565b6040516101f49190611d42565b60405180910390f35b348015610208575f80fd5b50610223600480360381019061021e9190611d5b565b610559565b6040516102309190611d1a565b60405180910390f35b348015610244575f80fd5b5061024d61062d565b60405161025a9190611dc6565b60405180910390f35b34801561026e575f80fd5b5061028960048036038101906102849190611ddf565b610635565b005b348015610296575f80fd5b5061029f610695565b005b3480156102ac575f80fd5b506102c760048036038101906102c29190611ddf565b61072d565b6040516102d49190611d42565b60405180910390f35b3480156102e8575f80fd5b506102f1610773565b005b3480156102fe575f80fd5b50610307610786565b005b348015610314575f80fd5b5061031d61083f565b60405161032a9190611d42565b60405180910390f35b34801561033e575f80fd5b50610347610845565b6040516103549190611e19565b60405180910390f35b348015610368575f80fd5b5061037161086c565b60405161037e9190611d42565b60405180910390f35b348015610392575f80fd5b5061039b610872565b6040516103a89190611c11565b60405180910390f35b3480156103bc575f80fd5b506103d760048036038101906103d29190611cc2565b6108af565b6040516103e49190611d1a565b60405180910390f35b3480156103f8575f80fd5b506104016108cc565b60405161040e9190611d42565b60405180910390f35b348015610422575f80fd5b5061043d60048036038101906104389190611e32565b6108d2565b005b34801561044a575f80fd5b506104536108ec565b6040516104609190611d1a565b60405180910390f35b6104716108fe565b005b34801561047e575f80fd5b5061049960048036038101906104949190611e70565b610a96565b6040516104a69190611d42565b60405180910390f35b3480156104ba575f80fd5b506104d560048036038101906104d09190611ddf565b610b18565b005b60606040518060400160405280600e81526020017f446973636f7264204b697474656e000000000000000000000000000000000000815250905090565b5f610527610520610b9c565b8484610ba3565b6001905092915050565b60125481565b5f6012600a610546919061200a565b620f42406105549190612054565b905090565b5f610565848484610d66565b61062284610571610b9c565b61061d856040518060600160405280602881526020016129516028913960025f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6105d4610b9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546116cf9092919063ffffffff16565b610ba3565b600190509392505050565b5f6012905090565b61063d611723565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166106d6610b9c565b73ffffffffffffffffffffffffffffffffffffffff16146106f5575f80fd5b5f6106ff3061072d565b90505f81111561071357610712816117aa565b5b5f4790505f81111561072957610728816119f1565b5b5050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61077b611723565b6107845f611a5a565b565b61078e611723565b6012600a61079c919061200a565b620f42406107aa9190612054565b600f819055506012600a6107be919061200a565b620f42406107cc9190612054565b6010819055505f60065f6101000a81548160ff0219169083151502179055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6012600a61081a919061200a565b620f42406108289190612054565b6040516108359190611d42565b60405180910390a1565b600f5481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b60606040518060400160405280600681526020017f4b495454454e0000000000000000000000000000000000000000000000000000815250905090565b5f6108c26108bb610b9c565b8484610d66565b6001905092915050565b60115481565b6108da611723565b8160098190555080600a819055505050565b60065f9054906101000a900460ff1681565b610906611723565b60135f9054906101000a900460ff1615610955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094c906120df565b60405180910390fd5b61099430737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610ba3565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71947306109cf3061072d565b5f806109d9610845565b426040518863ffffffff1660e01b81526004016109fb9695949392919061213f565b60606040518083038185885af1158015610a17573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610a3c91906121b2565b505050601e600781905550601e60088190555060036009819055506003600a819055506001601360026101000a81548160ff021916908315150217905550600160135f6101000a81548160ff021916908315150217905550565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b20611723565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b90575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b879190611e19565b60405180910390fd5b610b9981611a5a565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0890612272565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690612300565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d599190611d42565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb9061238e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e399061241c565b60405180910390fd5b5f8111610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b906124aa565b60405180910390fd5b5f610e8d610845565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015610efb5750610ecb610845565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561141f57610f3c6064610f2e600b54600e5411610f1b57600754610f1f565b6009545b85611b1b90919063ffffffff16565b611b3090919063ffffffff16565b905060065f9054906101000a900460ff16156110b657737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610fee57507f000000000000000000000000814c44c7ee2d3554de972b5e5c92c65f848571c973ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156110b5574360055f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410611072576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110699061255e565b60405180910390fd5b4360055f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b7f000000000000000000000000814c44c7ee2d3554de972b5e5c92c65f848571c973ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156111515750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156111a4575060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561126957600f548211156111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e5906125c6565b60405180910390fd5b601054826111fb8561072d565b61120591906125e4565b1115611246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123d90612661565b60405180910390fd5b6064600e541161126857600e5f8154809291906112629061267f565b91905055505b5b7f000000000000000000000000814c44c7ee2d3554de972b5e5c92c65f848571c973ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156112f057503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611334576113316064611323600c54600e541161131057600854611314565b600a545b85611b1b90919063ffffffff16565b611b3090919063ffffffff16565b90505b5f61133e3061072d565b9050601360019054906101000a900460ff161580156113a857507f000000000000000000000000814c44c7ee2d3554de972b5e5c92c65f848571c973ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156113c05750601360029054906101000a900460ff165b80156113cd575060115481115b80156113dc5750600d54600e54115b1561141d576113fe6113f9846113f484601254611b45565b611b45565b6117aa565b5f47905066b1a2bc2ec5000081111561141b5761141a476119f1565b5b505b505b5f81111561151e576114778160015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b5d90919063ffffffff16565b60015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115159190611d42565b60405180910390a35b61156e8260015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b7290919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506116116115c58284611b7290919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b5d90919063ffffffff16565b60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6116b48486611b7290919063ffffffff16565b6040516116c19190611d42565b60405180910390a350505050565b5f838311158290611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d9190611c11565b60405180910390fd5b5082840390509392505050565b61172b610b9c565b73ffffffffffffffffffffffffffffffffffffffff16611749610845565b73ffffffffffffffffffffffffffffffffffffffff16146117a85761176c610b9c565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161179f9190611e19565b60405180910390fd5b565b6001601360016101000a81548160ff0219169083151502179055505f600267ffffffffffffffff8111156117e1576117e06126c6565b5b60405190808252806020026020018201604052801561180f5781602001602082028036833780820191505090505b50905030815f81518110611826576118256126f3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118bd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118e19190612734565b816001815181106118f5576118f46126f3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f84600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016119a6959493929190612868565b5f604051808303815f87803b1580156119bd575f80fd5b505af11580156119cf573d5f803e3d5ffd5b50505050505f601360016101000a81548160ff02191690831515021790555050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015611a56573d5f803e3d5ffd5b5050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8183611b289190612054565b905092915050565b5f8183611b3d91906128ed565b905092915050565b5f818311611b535782611b55565b815b905092915050565b5f8183611b6a91906125e4565b905092915050565b5f8183611b7f919061291d565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611bbe578082015181840152602081019050611ba3565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611be382611b87565b611bed8185611b91565b9350611bfd818560208601611ba1565b611c0681611bc9565b840191505092915050565b5f6020820190508181035f830152611c298184611bd9565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c5e82611c35565b9050919050565b611c6e81611c54565b8114611c78575f80fd5b50565b5f81359050611c8981611c65565b92915050565b5f819050919050565b611ca181611c8f565b8114611cab575f80fd5b50565b5f81359050611cbc81611c98565b92915050565b5f8060408385031215611cd857611cd7611c31565b5b5f611ce585828601611c7b565b9250506020611cf685828601611cae565b9150509250929050565b5f8115159050919050565b611d1481611d00565b82525050565b5f602082019050611d2d5f830184611d0b565b92915050565b611d3c81611c8f565b82525050565b5f602082019050611d555f830184611d33565b92915050565b5f805f60608486031215611d7257611d71611c31565b5b5f611d7f86828701611c7b565b9350506020611d9086828701611c7b565b9250506040611da186828701611cae565b9150509250925092565b5f60ff82169050919050565b611dc081611dab565b82525050565b5f602082019050611dd95f830184611db7565b92915050565b5f60208284031215611df457611df3611c31565b5b5f611e0184828501611c7b565b91505092915050565b611e1381611c54565b82525050565b5f602082019050611e2c5f830184611e0a565b92915050565b5f8060408385031215611e4857611e47611c31565b5b5f611e5585828601611cae565b9250506020611e6685828601611cae565b9150509250929050565b5f8060408385031215611e8657611e85611c31565b5b5f611e9385828601611c7b565b9250506020611ea485828601611c7b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115611f3057808604811115611f0c57611f0b611eae565b5b6001851615611f1b5780820291505b8081029050611f2985611edb565b9450611ef0565b94509492505050565b5f82611f485760019050612003565b81611f55575f9050612003565b8160018114611f6b5760028114611f7557611fa4565b6001915050612003565b60ff841115611f8757611f86611eae565b5b8360020a915084821115611f9e57611f9d611eae565b5b50612003565b5060208310610133831016604e8410600b8410161715611fd95782820a905083811115611fd457611fd3611eae565b5b612003565b611fe68484846001611ee7565b92509050818404811115611ffd57611ffc611eae565b5b81810290505b9392505050565b5f61201482611c8f565b915061201f83611dab565b925061204c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611f39565b905092915050565b5f61205e82611c8f565b915061206983611c8f565b925082820261207781611c8f565b9150828204841483151761208e5761208d611eae565b5b5092915050565b7f74726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f6120c9601783611b91565b91506120d482612095565b602082019050919050565b5f6020820190508181035f8301526120f6816120bd565b9050919050565b5f819050919050565b5f819050919050565b5f61212961212461211f846120fd565b612106565b611c8f565b9050919050565b6121398161210f565b82525050565b5f60c0820190506121525f830189611e0a565b61215f6020830188611d33565b61216c6040830187612130565b6121796060830186612130565b6121866080830185611e0a565b61219360a0830184611d33565b979650505050505050565b5f815190506121ac81611c98565b92915050565b5f805f606084860312156121c9576121c8611c31565b5b5f6121d68682870161219e565b93505060206121e78682870161219e565b92505060406121f88682870161219e565b9150509250925092565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61225c602483611b91565b915061226782612202565b604082019050919050565b5f6020820190508181035f83015261228981612250565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6122ea602283611b91565b91506122f582612290565b604082019050919050565b5f6020820190508181035f830152612317816122de565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612378602583611b91565b91506123838261231e565b604082019050919050565b5f6020820190508181035f8301526123a58161236c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612406602383611b91565b9150612411826123ac565b604082019050919050565b5f6020820190508181035f830152612433816123fa565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f612494602983611b91565b915061249f8261243a565b604082019050919050565b5f6020820190508181035f8301526124c181612488565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f612548604983611b91565b9150612553826124c8565b606082019050919050565b5f6020820190508181035f8301526125758161253c565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e000000000000005f82015250565b5f6125b0601983611b91565b91506125bb8261257c565b602082019050919050565b5f6020820190508181035f8301526125dd816125a4565b9050919050565b5f6125ee82611c8f565b91506125f983611c8f565b925082820190508082111561261157612610611eae565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e0000000000005f82015250565b5f61264b601a83611b91565b915061265682612617565b602082019050919050565b5f6020820190508181035f8301526126788161263f565b9050919050565b5f61268982611c8f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036126bb576126ba611eae565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061272e81611c65565b92915050565b5f6020828403121561274957612748611c31565b5b5f61275684828501612720565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61279181611c54565b82525050565b5f6127a28383612788565b60208301905092915050565b5f602082019050919050565b5f6127c48261275f565b6127ce8185612769565b93506127d983612779565b805f5b838110156128095781516127f08882612797565b97506127fb836127ae565b9250506001810190506127dc565b5085935050505092915050565b5f61283061282b61282684611c35565b612106565b611c35565b9050919050565b5f61284182612816565b9050919050565b5f61285282612837565b9050919050565b61286281612848565b82525050565b5f60a08201905061287b5f830188611d33565b6128886020830187612130565b818103604083015261289a81866127ba565b90506128a96060830185612859565b6128b66080830184611d33565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6128f782611c8f565b915061290283611c8f565b925082612912576129116128c0565b5b828204905092915050565b5f61292782611c8f565b915061293283611c8f565b925082820390508181111561294a57612949611eae565b5b9291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220fc459b4517d58cb0b5a457440986693d4460689dfe797c9105e442130838b0bb64736f6c63430008160033
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.