ETH Price: $3,471.27 (+2.37%)
Gas: 6 Gwei

Token

ACAT (ACAT)
 

Overview

Max Total Supply

1,000,000 ACAT

Holders

450

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
229.496584844164486735 ACAT

Value
$0.00
0x385ce1e2acc629cb20e5a41f583adfed9fc3ad79
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AppleCat

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : TokenContract.sol
/**
Website:    https://applecateth.xyz/
Twitter:    https://twitter.com/tickeracat
Telegram:   https://t.me/TickerACAT
**/
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.22;

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 AppleCat 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 = 25;
    uint256 private _reduceSellTaxAt = 25;
    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"ACAT";
    string private constant _symbol = unicode"ACAT";
    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 = 0;
        _finalSellTax = 0;
        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;
    }
}

File 2 of 9 : IUniswapV2Router02.sol
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;
}

File 3 of 9 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 4 of 9 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 5 of 9 : SafeMath.sol
// 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;
        }
    }
}

File 6 of 9 : Context.sol
// 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;
    }
}

File 7 of 9 : IERC20.sol
// 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);
}

File 8 of 9 : Ownable.sol
// 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);
    }
}

File 9 of 9 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"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":[],"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"}]

60a0604052600160065f6101000a81548160ff0219169083151502179055506019600b556019600c556019600d556012600a6200003d919062000841565b614e206200004c919062000891565b600f556012600a6200005f919062000841565b614e206200006e919062000891565b6010556012600a62000081919062000841565b6107d062000090919062000891565b6011556012600a620000a3919062000841565b611388620000b2919062000891565b6012555f601360016101000a81548160ff0219169083151502179055505f601360026101000a81548160ff021916908315150217905550348015620000f5575f80fd5b50335f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200016a575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200016191906200091e565b60405180910390fd5b6200017b81620004c060201b60201c565b5033600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160035f620001d26200058160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160035f600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506200038230737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000350573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200037691906200096c565b620005a860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506012600a620003c5919062000841565b620f4240620003d5919062000891565b60015f620003e86200065860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550620004356200065860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6012600a62000493919062000841565b620f4240620004a3919062000891565b604051620004b29190620009ad565b60405180910390a362000b18565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f805f620005bd85856200065f60201b60201c565b91509150735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f8282604051602001620005eb92919062000a15565b604051602081830303815290604052805190602001207f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f604051602001620006369392919062000ac9565b604051602081830303815290604052805190602001205f1c9250505092915050565b5f33905090565b5f808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16106200069d578284620006a0565b83835b80925081935050509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200073957808604811115620007115762000710620006af565b5b6001851615620007215780820291505b80810290506200073185620006dc565b9450620006f1565b94509492505050565b5f8262000753576001905062000825565b8162000762575f905062000825565b81600181146200077b57600281146200078657620007bc565b600191505062000825565b60ff8411156200079b576200079a620006af565b5b8360020a915084821115620007b557620007b4620006af565b5b5062000825565b5060208310610133831016604e8410600b8410161715620007f65782820a905083811115620007f057620007ef620006af565b5b62000825565b620008058484846001620006e8565b925090508184048111156200081f576200081e620006af565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f6200084d826200082c565b91506200085a8362000835565b9250620008897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000742565b905092915050565b5f6200089d826200082c565b9150620008aa836200082c565b9250828202620008ba816200082c565b91508282048414831517620008d457620008d3620006af565b5b5092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200090682620008db565b9050919050565b6200091881620008fa565b82525050565b5f602082019050620009335f8301846200090d565b92915050565b5f80fd5b6200094881620008fa565b811462000953575f80fd5b50565b5f8151905062000966816200093d565b92915050565b5f6020828403121562000984576200098362000939565b5b5f620009938482850162000956565b91505092915050565b620009a7816200082c565b82525050565b5f602082019050620009c25f8301846200099c565b92915050565b5f8160601b9050919050565b5f620009e082620009c8565b9050919050565b5f620009f382620009d4565b9050919050565b62000a0f62000a0982620008fa565b620009e7565b82525050565b5f62000a228285620009fa565b60148201915062000a348284620009fa565b6014820191508190509392505050565b5f81905092915050565b7fff000000000000000000000000000000000000000000000000000000000000005f82015250565b5f62000a8460018362000a44565b915062000a918262000a4e565b600182019050919050565b5f819050919050565b5f819050919050565b62000ac362000abd8262000a9c565b62000aa5565b82525050565b5f62000ad58262000a76565b915062000ae38286620009fa565b60148201915062000af5828562000aae565b60208201915062000b07828462000aae565b602082019150819050949350505050565b60805161292162000b465f395f8181610f50015281816110690152818161121c015261130b01526129215ff3fe60806040526004361061012d575f3560e01c8063751039fc116100aa578063a9059cbb1161006e578063a9059cbb146103a6578063bf474bed146103e2578063c876d0b91461040c578063c9567bf914610436578063dd62ed3e14610440578063f2fde38b1461047c57610134565b8063751039fc146102e85780637d1db4a5146102fe5780638da5cb5b146103285780638f9a55c01461035257806395d89b411461037c57610134565b8063313ce567116100f1578063313ce5671461022e578063437823ec1461025857806351bc3c851461028057806370a0823114610296578063715018a6146102d257610134565b806306fdde0314610138578063095ea7b3146101625780630faee56f1461019e57806318160ddd146101c857806323b872dd146101f257610134565b3661013457005b5f80fd5b348015610143575f80fd5b5061014c6104a4565b6040516101599190611bc2565b60405180910390f35b34801561016d575f80fd5b5061018860048036038101906101839190611c73565b6104e1565b6040516101959190611ccb565b60405180910390f35b3480156101a9575f80fd5b506101b26104fe565b6040516101bf9190611cf3565b60405180910390f35b3480156101d3575f80fd5b506101dc610504565b6040516101e99190611cf3565b60405180910390f35b3480156101fd575f80fd5b5061021860048036038101906102139190611d0c565b610526565b6040516102259190611ccb565b60405180910390f35b348015610239575f80fd5b506102426105fa565b60405161024f9190611d77565b60405180910390f35b348015610263575f80fd5b5061027e60048036038101906102799190611d90565b610602565b005b34801561028b575f80fd5b50610294610662565b005b3480156102a1575f80fd5b506102bc60048036038101906102b79190611d90565b6106fa565b6040516102c99190611cf3565b60405180910390f35b3480156102dd575f80fd5b506102e6610740565b005b3480156102f3575f80fd5b506102fc610753565b005b348015610309575f80fd5b5061031261080c565b60405161031f9190611cf3565b60405180910390f35b348015610333575f80fd5b5061033c610812565b6040516103499190611dca565b60405180910390f35b34801561035d575f80fd5b50610366610839565b6040516103739190611cf3565b60405180910390f35b348015610387575f80fd5b5061039061083f565b60405161039d9190611bc2565b60405180910390f35b3480156103b1575f80fd5b506103cc60048036038101906103c79190611c73565b61087c565b6040516103d99190611ccb565b60405180910390f35b3480156103ed575f80fd5b506103f6610899565b6040516104039190611cf3565b60405180910390f35b348015610417575f80fd5b5061042061089f565b60405161042d9190611ccb565b60405180910390f35b61043e6108b1565b005b34801561044b575f80fd5b5061046660048036038101906104619190611de3565b610a47565b6040516104739190611cf3565b60405180910390f35b348015610487575f80fd5b506104a2600480360381019061049d9190611d90565b610ac9565b005b60606040518060400160405280600481526020017f4143415400000000000000000000000000000000000000000000000000000000815250905090565b5f6104f46104ed610b4d565b8484610b54565b6001905092915050565b60125481565b5f6012600a6105139190611f7d565b620f42406105219190611fc7565b905090565b5f610532848484610d17565b6105ef8461053e610b4d565b6105ea856040518060600160405280602881526020016128c46028913960025f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6105a1610b4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546116809092919063ffffffff16565b610b54565b600190509392505050565b5f6012905090565b61060a6116d4565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166106a3610b4d565b73ffffffffffffffffffffffffffffffffffffffff16146106c2575f80fd5b5f6106cc306106fa565b90505f8111156106e0576106df8161175b565b5b5f4790505f8111156106f6576106f5816119a2565b5b5050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107486116d4565b6107515f611a0b565b565b61075b6116d4565b6012600a6107699190611f7d565b620f42406107779190611fc7565b600f819055506012600a61078b9190611f7d565b620f42406107999190611fc7565b6010819055505f60065f6101000a81548160ff0219169083151502179055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6012600a6107e79190611f7d565b620f42406107f59190611fc7565b6040516108029190611cf3565b60405180910390a1565b600f5481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b60606040518060400160405280600481526020017f4143415400000000000000000000000000000000000000000000000000000000815250905090565b5f61088f610888610b4d565b8484610d17565b6001905092915050565b60115481565b60065f9054906101000a900460ff1681565b6108b96116d4565b60135f9054906101000a900460ff1615610908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ff90612052565b60405180910390fd5b61094730737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610b54565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610982306106fa565b5f8061098c610812565b426040518863ffffffff1660e01b81526004016109ae969594939291906120b2565b60606040518083038185885af11580156109ca573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906109ef9190612125565b505050601e600781905550601e6008819055505f6009819055505f600a819055506001601360026101000a81548160ff021916908315150217905550600160135f6101000a81548160ff021916908315150217905550565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610ad16116d4565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b41575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b389190611dca565b60405180910390fd5b610b4a81611a0b565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb9906121e5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2790612273565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d0a9190611cf3565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90612301565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea9061238f565b60405180910390fd5b5f8111610e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2c9061241d565b60405180910390fd5b5f610e3e610812565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015610eac5750610e7c610812565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156113d057610eed6064610edf600b54600e5411610ecc57600754610ed0565b6009545b85611acc90919063ffffffff16565b611ae190919063ffffffff16565b905060065f9054906101000a900460ff161561106757737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610f9f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611066574360055f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a906124d1565b60405180910390fd5b4360055f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156111025750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611155575060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561121a57600f5482111561119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690612539565b60405180910390fd5b601054826111ac856106fa565b6111b69190612557565b11156111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee906125d4565b60405180910390fd5b6064600e541161121957600e5f815480929190611213906125f2565b91905055505b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156112a157503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156112e5576112e260646112d4600c54600e54116112c1576008546112c5565b600a545b85611acc90919063ffffffff16565b611ae190919063ffffffff16565b90505b5f6112ef306106fa565b9050601360019054906101000a900460ff1615801561135957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156113715750601360029054906101000a900460ff165b801561137e575060115481115b801561138d5750600d54600e54115b156113ce576113af6113aa846113a584601254611af6565b611af6565b61175b565b5f47905066b1a2bc2ec500008111156113cc576113cb476119a2565b5b505b505b5f8111156114cf576114288160015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b0e90919063ffffffff16565b60015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114c69190611cf3565b60405180910390a35b61151f8260015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b2390919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506115c26115768284611b2390919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b0e90919063ffffffff16565b60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6116658486611b2390919063ffffffff16565b6040516116729190611cf3565b60405180910390a350505050565b5f8383111582906116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be9190611bc2565b60405180910390fd5b5082840390509392505050565b6116dc610b4d565b73ffffffffffffffffffffffffffffffffffffffff166116fa610812565b73ffffffffffffffffffffffffffffffffffffffff16146117595761171d610b4d565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016117509190611dca565b60405180910390fd5b565b6001601360016101000a81548160ff0219169083151502179055505f600267ffffffffffffffff81111561179257611791612639565b5b6040519080825280602002602001820160405280156117c05781602001602082028036833780820191505090505b50905030815f815181106117d7576117d6612666565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561186e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061189291906126a7565b816001815181106118a6576118a5612666565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f84600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016119579594939291906127db565b5f604051808303815f87803b15801561196e575f80fd5b505af1158015611980573d5f803e3d5ffd5b50505050505f601360016101000a81548160ff02191690831515021790555050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015611a07573d5f803e3d5ffd5b5050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8183611ad99190611fc7565b905092915050565b5f8183611aee9190612860565b905092915050565b5f818311611b045782611b06565b815b905092915050565b5f8183611b1b9190612557565b905092915050565b5f8183611b309190612890565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611b6f578082015181840152602081019050611b54565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611b9482611b38565b611b9e8185611b42565b9350611bae818560208601611b52565b611bb781611b7a565b840191505092915050565b5f6020820190508181035f830152611bda8184611b8a565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c0f82611be6565b9050919050565b611c1f81611c05565b8114611c29575f80fd5b50565b5f81359050611c3a81611c16565b92915050565b5f819050919050565b611c5281611c40565b8114611c5c575f80fd5b50565b5f81359050611c6d81611c49565b92915050565b5f8060408385031215611c8957611c88611be2565b5b5f611c9685828601611c2c565b9250506020611ca785828601611c5f565b9150509250929050565b5f8115159050919050565b611cc581611cb1565b82525050565b5f602082019050611cde5f830184611cbc565b92915050565b611ced81611c40565b82525050565b5f602082019050611d065f830184611ce4565b92915050565b5f805f60608486031215611d2357611d22611be2565b5b5f611d3086828701611c2c565b9350506020611d4186828701611c2c565b9250506040611d5286828701611c5f565b9150509250925092565b5f60ff82169050919050565b611d7181611d5c565b82525050565b5f602082019050611d8a5f830184611d68565b92915050565b5f60208284031215611da557611da4611be2565b5b5f611db284828501611c2c565b91505092915050565b611dc481611c05565b82525050565b5f602082019050611ddd5f830184611dbb565b92915050565b5f8060408385031215611df957611df8611be2565b5b5f611e0685828601611c2c565b9250506020611e1785828601611c2c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115611ea357808604811115611e7f57611e7e611e21565b5b6001851615611e8e5780820291505b8081029050611e9c85611e4e565b9450611e63565b94509492505050565b5f82611ebb5760019050611f76565b81611ec8575f9050611f76565b8160018114611ede5760028114611ee857611f17565b6001915050611f76565b60ff841115611efa57611ef9611e21565b5b8360020a915084821115611f1157611f10611e21565b5b50611f76565b5060208310610133831016604e8410600b8410161715611f4c5782820a905083811115611f4757611f46611e21565b5b611f76565b611f598484846001611e5a565b92509050818404811115611f7057611f6f611e21565b5b81810290505b9392505050565b5f611f8782611c40565b9150611f9283611d5c565b9250611fbf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611eac565b905092915050565b5f611fd182611c40565b9150611fdc83611c40565b9250828202611fea81611c40565b9150828204841483151761200157612000611e21565b5b5092915050565b7f74726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f61203c601783611b42565b915061204782612008565b602082019050919050565b5f6020820190508181035f83015261206981612030565b9050919050565b5f819050919050565b5f819050919050565b5f61209c61209761209284612070565b612079565b611c40565b9050919050565b6120ac81612082565b82525050565b5f60c0820190506120c55f830189611dbb565b6120d26020830188611ce4565b6120df60408301876120a3565b6120ec60608301866120a3565b6120f96080830185611dbb565b61210660a0830184611ce4565b979650505050505050565b5f8151905061211f81611c49565b92915050565b5f805f6060848603121561213c5761213b611be2565b5b5f61214986828701612111565b935050602061215a86828701612111565b925050604061216b86828701612111565b9150509250925092565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6121cf602483611b42565b91506121da82612175565b604082019050919050565b5f6020820190508181035f8301526121fc816121c3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61225d602283611b42565b915061226882612203565b604082019050919050565b5f6020820190508181035f83015261228a81612251565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6122eb602583611b42565b91506122f682612291565b604082019050919050565b5f6020820190508181035f830152612318816122df565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612379602383611b42565b91506123848261231f565b604082019050919050565b5f6020820190508181035f8301526123a68161236d565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f612407602983611b42565b9150612412826123ad565b604082019050919050565b5f6020820190508181035f830152612434816123fb565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f6124bb604983611b42565b91506124c68261243b565b606082019050919050565b5f6020820190508181035f8301526124e8816124af565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e000000000000005f82015250565b5f612523601983611b42565b915061252e826124ef565b602082019050919050565b5f6020820190508181035f83015261255081612517565b9050919050565b5f61256182611c40565b915061256c83611c40565b925082820190508082111561258457612583611e21565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e0000000000005f82015250565b5f6125be601a83611b42565b91506125c98261258a565b602082019050919050565b5f6020820190508181035f8301526125eb816125b2565b9050919050565b5f6125fc82611c40565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361262e5761262d611e21565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506126a181611c16565b92915050565b5f602082840312156126bc576126bb611be2565b5b5f6126c984828501612693565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61270481611c05565b82525050565b5f61271583836126fb565b60208301905092915050565b5f602082019050919050565b5f612737826126d2565b61274181856126dc565b935061274c836126ec565b805f5b8381101561277c578151612763888261270a565b975061276e83612721565b92505060018101905061274f565b5085935050505092915050565b5f6127a361279e61279984611be6565b612079565b611be6565b9050919050565b5f6127b482612789565b9050919050565b5f6127c5826127aa565b9050919050565b6127d5816127bb565b82525050565b5f60a0820190506127ee5f830188611ce4565b6127fb60208301876120a3565b818103604083015261280d818661272d565b905061281c60608301856127cc565b6128296080830184611ce4565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61286a82611c40565b915061287583611c40565b92508261288557612884612833565b5b828204905092915050565b5f61289a82611c40565b91506128a583611c40565b92508282039050818111156128bd576128bc611e21565b5b9291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220675aee426f044e5f5e30894ad9308f44cec9f184b199c44ef89f16dd6f3a371d64736f6c63430008160033

Deployed Bytecode

0x60806040526004361061012d575f3560e01c8063751039fc116100aa578063a9059cbb1161006e578063a9059cbb146103a6578063bf474bed146103e2578063c876d0b91461040c578063c9567bf914610436578063dd62ed3e14610440578063f2fde38b1461047c57610134565b8063751039fc146102e85780637d1db4a5146102fe5780638da5cb5b146103285780638f9a55c01461035257806395d89b411461037c57610134565b8063313ce567116100f1578063313ce5671461022e578063437823ec1461025857806351bc3c851461028057806370a0823114610296578063715018a6146102d257610134565b806306fdde0314610138578063095ea7b3146101625780630faee56f1461019e57806318160ddd146101c857806323b872dd146101f257610134565b3661013457005b5f80fd5b348015610143575f80fd5b5061014c6104a4565b6040516101599190611bc2565b60405180910390f35b34801561016d575f80fd5b5061018860048036038101906101839190611c73565b6104e1565b6040516101959190611ccb565b60405180910390f35b3480156101a9575f80fd5b506101b26104fe565b6040516101bf9190611cf3565b60405180910390f35b3480156101d3575f80fd5b506101dc610504565b6040516101e99190611cf3565b60405180910390f35b3480156101fd575f80fd5b5061021860048036038101906102139190611d0c565b610526565b6040516102259190611ccb565b60405180910390f35b348015610239575f80fd5b506102426105fa565b60405161024f9190611d77565b60405180910390f35b348015610263575f80fd5b5061027e60048036038101906102799190611d90565b610602565b005b34801561028b575f80fd5b50610294610662565b005b3480156102a1575f80fd5b506102bc60048036038101906102b79190611d90565b6106fa565b6040516102c99190611cf3565b60405180910390f35b3480156102dd575f80fd5b506102e6610740565b005b3480156102f3575f80fd5b506102fc610753565b005b348015610309575f80fd5b5061031261080c565b60405161031f9190611cf3565b60405180910390f35b348015610333575f80fd5b5061033c610812565b6040516103499190611dca565b60405180910390f35b34801561035d575f80fd5b50610366610839565b6040516103739190611cf3565b60405180910390f35b348015610387575f80fd5b5061039061083f565b60405161039d9190611bc2565b60405180910390f35b3480156103b1575f80fd5b506103cc60048036038101906103c79190611c73565b61087c565b6040516103d99190611ccb565b60405180910390f35b3480156103ed575f80fd5b506103f6610899565b6040516104039190611cf3565b60405180910390f35b348015610417575f80fd5b5061042061089f565b60405161042d9190611ccb565b60405180910390f35b61043e6108b1565b005b34801561044b575f80fd5b5061046660048036038101906104619190611de3565b610a47565b6040516104739190611cf3565b60405180910390f35b348015610487575f80fd5b506104a2600480360381019061049d9190611d90565b610ac9565b005b60606040518060400160405280600481526020017f4143415400000000000000000000000000000000000000000000000000000000815250905090565b5f6104f46104ed610b4d565b8484610b54565b6001905092915050565b60125481565b5f6012600a6105139190611f7d565b620f42406105219190611fc7565b905090565b5f610532848484610d17565b6105ef8461053e610b4d565b6105ea856040518060600160405280602881526020016128c46028913960025f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6105a1610b4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546116809092919063ffffffff16565b610b54565b600190509392505050565b5f6012905090565b61060a6116d4565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166106a3610b4d565b73ffffffffffffffffffffffffffffffffffffffff16146106c2575f80fd5b5f6106cc306106fa565b90505f8111156106e0576106df8161175b565b5b5f4790505f8111156106f6576106f5816119a2565b5b5050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107486116d4565b6107515f611a0b565b565b61075b6116d4565b6012600a6107699190611f7d565b620f42406107779190611fc7565b600f819055506012600a61078b9190611f7d565b620f42406107999190611fc7565b6010819055505f60065f6101000a81548160ff0219169083151502179055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6012600a6107e79190611f7d565b620f42406107f59190611fc7565b6040516108029190611cf3565b60405180910390a1565b600f5481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b60606040518060400160405280600481526020017f4143415400000000000000000000000000000000000000000000000000000000815250905090565b5f61088f610888610b4d565b8484610d17565b6001905092915050565b60115481565b60065f9054906101000a900460ff1681565b6108b96116d4565b60135f9054906101000a900460ff1615610908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ff90612052565b60405180910390fd5b61094730737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610b54565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610982306106fa565b5f8061098c610812565b426040518863ffffffff1660e01b81526004016109ae969594939291906120b2565b60606040518083038185885af11580156109ca573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906109ef9190612125565b505050601e600781905550601e6008819055505f6009819055505f600a819055506001601360026101000a81548160ff021916908315150217905550600160135f6101000a81548160ff021916908315150217905550565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610ad16116d4565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b41575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b389190611dca565b60405180910390fd5b610b4a81611a0b565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb9906121e5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2790612273565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d0a9190611cf3565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90612301565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea9061238f565b60405180910390fd5b5f8111610e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2c9061241d565b60405180910390fd5b5f610e3e610812565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015610eac5750610e7c610812565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156113d057610eed6064610edf600b54600e5411610ecc57600754610ed0565b6009545b85611acc90919063ffffffff16565b611ae190919063ffffffff16565b905060065f9054906101000a900460ff161561106757737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610f9f57507f0000000000000000000000009637289d4a0a9402a0c1430257e351e27c9bcebd73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611066574360055f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a906124d1565b60405180910390fd5b4360055f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b7f0000000000000000000000009637289d4a0a9402a0c1430257e351e27c9bcebd73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156111025750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611155575060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561121a57600f5482111561119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690612539565b60405180910390fd5b601054826111ac856106fa565b6111b69190612557565b11156111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee906125d4565b60405180910390fd5b6064600e541161121957600e5f815480929190611213906125f2565b91905055505b5b7f0000000000000000000000009637289d4a0a9402a0c1430257e351e27c9bcebd73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156112a157503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156112e5576112e260646112d4600c54600e54116112c1576008546112c5565b600a545b85611acc90919063ffffffff16565b611ae190919063ffffffff16565b90505b5f6112ef306106fa565b9050601360019054906101000a900460ff1615801561135957507f0000000000000000000000009637289d4a0a9402a0c1430257e351e27c9bcebd73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156113715750601360029054906101000a900460ff165b801561137e575060115481115b801561138d5750600d54600e54115b156113ce576113af6113aa846113a584601254611af6565b611af6565b61175b565b5f47905066b1a2bc2ec500008111156113cc576113cb476119a2565b5b505b505b5f8111156114cf576114288160015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b0e90919063ffffffff16565b60015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114c69190611cf3565b60405180910390a35b61151f8260015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b2390919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506115c26115768284611b2390919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b0e90919063ffffffff16565b60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6116658486611b2390919063ffffffff16565b6040516116729190611cf3565b60405180910390a350505050565b5f8383111582906116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be9190611bc2565b60405180910390fd5b5082840390509392505050565b6116dc610b4d565b73ffffffffffffffffffffffffffffffffffffffff166116fa610812565b73ffffffffffffffffffffffffffffffffffffffff16146117595761171d610b4d565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016117509190611dca565b60405180910390fd5b565b6001601360016101000a81548160ff0219169083151502179055505f600267ffffffffffffffff81111561179257611791612639565b5b6040519080825280602002602001820160405280156117c05781602001602082028036833780820191505090505b50905030815f815181106117d7576117d6612666565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561186e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061189291906126a7565b816001815181106118a6576118a5612666565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f84600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016119579594939291906127db565b5f604051808303815f87803b15801561196e575f80fd5b505af1158015611980573d5f803e3d5ffd5b50505050505f601360016101000a81548160ff02191690831515021790555050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015611a07573d5f803e3d5ffd5b5050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8183611ad99190611fc7565b905092915050565b5f8183611aee9190612860565b905092915050565b5f818311611b045782611b06565b815b905092915050565b5f8183611b1b9190612557565b905092915050565b5f8183611b309190612890565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611b6f578082015181840152602081019050611b54565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611b9482611b38565b611b9e8185611b42565b9350611bae818560208601611b52565b611bb781611b7a565b840191505092915050565b5f6020820190508181035f830152611bda8184611b8a565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c0f82611be6565b9050919050565b611c1f81611c05565b8114611c29575f80fd5b50565b5f81359050611c3a81611c16565b92915050565b5f819050919050565b611c5281611c40565b8114611c5c575f80fd5b50565b5f81359050611c6d81611c49565b92915050565b5f8060408385031215611c8957611c88611be2565b5b5f611c9685828601611c2c565b9250506020611ca785828601611c5f565b9150509250929050565b5f8115159050919050565b611cc581611cb1565b82525050565b5f602082019050611cde5f830184611cbc565b92915050565b611ced81611c40565b82525050565b5f602082019050611d065f830184611ce4565b92915050565b5f805f60608486031215611d2357611d22611be2565b5b5f611d3086828701611c2c565b9350506020611d4186828701611c2c565b9250506040611d5286828701611c5f565b9150509250925092565b5f60ff82169050919050565b611d7181611d5c565b82525050565b5f602082019050611d8a5f830184611d68565b92915050565b5f60208284031215611da557611da4611be2565b5b5f611db284828501611c2c565b91505092915050565b611dc481611c05565b82525050565b5f602082019050611ddd5f830184611dbb565b92915050565b5f8060408385031215611df957611df8611be2565b5b5f611e0685828601611c2c565b9250506020611e1785828601611c2c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115611ea357808604811115611e7f57611e7e611e21565b5b6001851615611e8e5780820291505b8081029050611e9c85611e4e565b9450611e63565b94509492505050565b5f82611ebb5760019050611f76565b81611ec8575f9050611f76565b8160018114611ede5760028114611ee857611f17565b6001915050611f76565b60ff841115611efa57611ef9611e21565b5b8360020a915084821115611f1157611f10611e21565b5b50611f76565b5060208310610133831016604e8410600b8410161715611f4c5782820a905083811115611f4757611f46611e21565b5b611f76565b611f598484846001611e5a565b92509050818404811115611f7057611f6f611e21565b5b81810290505b9392505050565b5f611f8782611c40565b9150611f9283611d5c565b9250611fbf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611eac565b905092915050565b5f611fd182611c40565b9150611fdc83611c40565b9250828202611fea81611c40565b9150828204841483151761200157612000611e21565b5b5092915050565b7f74726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f61203c601783611b42565b915061204782612008565b602082019050919050565b5f6020820190508181035f83015261206981612030565b9050919050565b5f819050919050565b5f819050919050565b5f61209c61209761209284612070565b612079565b611c40565b9050919050565b6120ac81612082565b82525050565b5f60c0820190506120c55f830189611dbb565b6120d26020830188611ce4565b6120df60408301876120a3565b6120ec60608301866120a3565b6120f96080830185611dbb565b61210660a0830184611ce4565b979650505050505050565b5f8151905061211f81611c49565b92915050565b5f805f6060848603121561213c5761213b611be2565b5b5f61214986828701612111565b935050602061215a86828701612111565b925050604061216b86828701612111565b9150509250925092565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6121cf602483611b42565b91506121da82612175565b604082019050919050565b5f6020820190508181035f8301526121fc816121c3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61225d602283611b42565b915061226882612203565b604082019050919050565b5f6020820190508181035f83015261228a81612251565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6122eb602583611b42565b91506122f682612291565b604082019050919050565b5f6020820190508181035f830152612318816122df565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612379602383611b42565b91506123848261231f565b604082019050919050565b5f6020820190508181035f8301526123a68161236d565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f612407602983611b42565b9150612412826123ad565b604082019050919050565b5f6020820190508181035f830152612434816123fb565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f6124bb604983611b42565b91506124c68261243b565b606082019050919050565b5f6020820190508181035f8301526124e8816124af565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e000000000000005f82015250565b5f612523601983611b42565b915061252e826124ef565b602082019050919050565b5f6020820190508181035f83015261255081612517565b9050919050565b5f61256182611c40565b915061256c83611c40565b925082820190508082111561258457612583611e21565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e0000000000005f82015250565b5f6125be601a83611b42565b91506125c98261258a565b602082019050919050565b5f6020820190508181035f8301526125eb816125b2565b9050919050565b5f6125fc82611c40565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361262e5761262d611e21565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506126a181611c16565b92915050565b5f602082840312156126bc576126bb611be2565b5b5f6126c984828501612693565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61270481611c05565b82525050565b5f61271583836126fb565b60208301905092915050565b5f602082019050919050565b5f612737826126d2565b61274181856126dc565b935061274c836126ec565b805f5b8381101561277c578151612763888261270a565b975061276e83612721565b92505060018101905061274f565b5085935050505092915050565b5f6127a361279e61279984611be6565b612079565b611be6565b9050919050565b5f6127b482612789565b9050919050565b5f6127c5826127aa565b9050919050565b6127d5816127bb565b82525050565b5f60a0820190506127ee5f830188611ce4565b6127fb60208301876120a3565b818103604083015261280d818661272d565b905061281c60608301856127cc565b6128296080830184611ce4565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61286a82611c40565b915061287583611c40565b92508261288557612884612833565b5b828204905092915050565b5f61289a82611c40565b91506128a583611c40565b92508282039050818111156128bd576128bc611e21565b5b9291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220675aee426f044e5f5e30894ad9308f44cec9f184b199c44ef89f16dd6f3a371d64736f6c63430008160033

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.