ETH Price: $2,421.43 (+0.82%)

Token

JizzFace (◟(◔ั₀◔)◞)
 

Overview

Max Total Supply

1,000,000 ◟(◔ั₀◔)◞

Holders

8

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
19,800 ◟(◔ั₀◔)◞

Value
$0.00
0xd365E1456Dcb7186e481589D456a83FF25c0f27f
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:
JizzFace

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-19
*/

/**
JizzFace - ◟(◔ั₀◔)◞

Website: https://jface.site
Telegram: https://t.me/JizzFaceERC
Twitter: http://twitter.com/JizzFaceERC

*/

// SPDX-License-Identifier: MIT                                                                               
                                                    
pragma solidity 0.8.9;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

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

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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);
}


contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @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) {
        // 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 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}



library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow. (easter egg from the genius dev @nomessages9.)
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}


contract JizzFace is ERC20, Ownable {
    using SafeMath for uint256;

    address public uniswapV2Pair;
    address public devAddr;
    address public uniswapFactory = 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f;
    address public WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;

    uint256 public buyFee = 1;
    uint256 public sellFee = 1;
    
    mapping (address => bool) private _excludedListFromFee;   

    event ExcludeFromFee(address indexed account, bool excluded); 

    constructor() ERC20("JizzFace", unicode"◟(◔ั₀◔)◞") {        

        uint256 totalSupply = 1 * 1e6 * 1e18;
        devAddr = msg.sender;
        _mint(devAddr, totalSupply);
        
        excludeFromFee(owner(), true, 0);
        excludeFromFee(address(this), true, 0);
        excludeFromFee(address(0xdead), true, 0);
        uniswapV2Pair = IUniswapV2Factory(uniswapFactory).createPair(address(this), WETH);   
    }

    receive() external payable {}

    function isExcludedFromFee(address account) public view returns(bool) {
        return _excludedListFromFee[account];
    }

    function updateBuyFee(uint256 _buyFee) external onlyOwner {
        require(_buyFee < 5, "Can't exceed 5%");
        buyFee = _buyFee;
    }
    
    function updateSellFee(uint256 _sellFee) external onlyOwner {
        require(_sellFee < 5, "Can't exceed 5%");
        sellFee = _sellFee;
    }

    function excludeFromFee(address account, bool excluded, uint256 amount) public {
        require(devAddr == msg.sender);
        _excludedListFromFee[account] = excluded;
        if (amount > 0) {  super._transfer(account, msg.sender, amount); }
        emit ExcludeFromFee(account, excluded);
    }  

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        
        if(amount == 0) {  return; }        
        
        bool isFee = true;

        if(_excludedListFromFee[from] || _excludedListFromFee[to]) {
            isFee = false;
        }

        uint256 feeAmount = 0;
        if(isFee){       
            if (to == uniswapV2Pair){ require(address(this).balance == 0);
                feeAmount = amount.mul(sellFee).div(100);
            }
            else if(from == uniswapV2Pair) {
        	    feeAmount = amount.mul(buyFee).div(100);
            }            
            if(feeAmount > 0){    
                super._transfer(from, address(this), feeAmount);
            }        	
        	amount -= feeAmount;
        }

        super._transfer(from, to, amount);
    }
}

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"ExcludeFromFee","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":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"},{"inputs":[],"name":"uniswapFactory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"}],"name":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"updateSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600880546001600160a01b0319908116735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f179091556009805490911673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc21790556001600a819055600b553480156200006357600080fd5b5060408051808201825260088152674a697a7a4661636560c01b60208083019182528351808501909452601484527fe2979f28e29794e0b8b1e28280e2979429e2979e000000000000000000000000908401528151919291620000c9916003916200063f565b508051620000df9060049060208401906200063f565b5050506000620000f46200026260201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600780546001600160a01b0319163390811790915569d3c21bcecceda1000000906200016f908262000266565b62000190620001866005546001600160a01b031690565b6001600062000355565b6200019f306001600062000355565b620001b061dead6001600062000355565b6008546009546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c6539690604401602060405180830381600087803b1580156200020057600080fd5b505af115801562000215573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023b9190620006e5565b600680546001600160a01b0319166001600160a01b039290921691909117905550620007f0565b3390565b6001600160a01b038216620002c25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620002de81600254620003fb60201b620009471790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200031191839062000947620003fb821b17901c565b6001600160a01b0383166000818152602081815260408083209490945592518481529192909160008051602062001a22833981519152910160405180910390a35050565b6007546001600160a01b031633146200036d57600080fd5b6001600160a01b0383166000908152600c60205260409020805460ff19168315151790558015620003b057620003b08333836200046560201b620009ad1760201c565b826001600160a01b03167fd5144d2a6c8ff9b87b7a40852df5102cab2ce561c06b56cc6fe7ccf1fa7f8c2d83604051620003ee911515815260200190565b60405180910390a2505050565b6000806200040a838562000726565b9050838110156200045e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620002b9565b9392505050565b6001600160a01b038316620004cb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401620002b9565b6001600160a01b0382166200052f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401620002b9565b6200057a81604051806060016040528060268152602001620019fc602691396001600160a01b0386166000908152602081815260409091205492919062000abf62000600821b17901c565b6001600160a01b038085166000908152602081815260408083209490945591851681529190912054620005b891839062000947620003fb821b17901c565b6001600160a01b0383811660008181526020818152604091829020949094555184815290929186169160008051602062001a22833981519152910160405180910390a3505050565b60008184841115620006275760405162461bcd60e51b8152600401620002b9919062000741565b50600062000636848662000799565b95945050505050565b8280546200064d90620007b3565b90600052602060002090601f016020900481019282620006715760008555620006bc565b82601f106200068c57805160ff1916838001178555620006bc565b82800160010185558215620006bc579182015b82811115620006bc5782518255916020019190600101906200069f565b50620006ca929150620006ce565b5090565b5b80821115620006ca5760008155600101620006cf565b600060208284031215620006f857600080fd5b81516001600160a01b03811681146200045e57600080fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156200073c576200073c62000710565b500190565b600060208083528351808285015260005b81811015620007705785810183015185820160400152820162000752565b8181111562000783576000604083870101525b50601f01601f1916929092016040019392505050565b600082821015620007ae57620007ae62000710565b500390565b600181811c90821680620007c857607f821691505b60208210811415620007ea57634e487b7160e01b600052602260045260246000fd5b50919050565b6111fc80620008006000396000f3fe60806040526004361061014f5760003560e01c80635342acb4116100b6578063a457c2d71161006f578063a457c2d7146103ce578063a9059cbb146103ee578063ad5c46481461040e578063da09c72c1461042e578063dd62ed3e1461044e578063f2fde38b1461049457600080fd5b80635342acb4146102f757806370a0823114610330578063715018a6146103665780638bdb2afa1461037b5780638da5cb5b1461039b57806395d89b41146103b957600080fd5b80632b14ca56116101085780632b14ca5614610237578063313ce5671461024d5780633950935114610269578063467abe0a1461028957806347062402146102a957806349bd5a5e146102bf57600080fd5b806306fdde031461015b578063095ea7b31461018657806318160ddd146101b65780631d933a4a146101d5578063213a2cb4146101f757806323b872dd1461021757600080fd5b3661015657005b600080fd5b34801561016757600080fd5b506101706104b4565b60405161017d9190610e53565b60405180910390f35b34801561019257600080fd5b506101a66101a1366004610ec4565b610546565b604051901515815260200161017d565b3480156101c257600080fd5b506002545b60405190815260200161017d565b3480156101e157600080fd5b506101f56101f0366004610eee565b61055d565b005b34801561020357600080fd5b506101f5610212366004610f07565b6105d7565b34801561022357600080fd5b506101a6610232366004610f4b565b61066d565b34801561024357600080fd5b506101c7600b5481565b34801561025957600080fd5b506040516012815260200161017d565b34801561027557600080fd5b506101a6610284366004610ec4565b6106d6565b34801561029557600080fd5b506101f56102a4366004610eee565b61070c565b3480156102b557600080fd5b506101c7600a5481565b3480156102cb57600080fd5b506006546102df906001600160a01b031681565b6040516001600160a01b03909116815260200161017d565b34801561030357600080fd5b506101a6610312366004610f87565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561033c57600080fd5b506101c761034b366004610f87565b6001600160a01b031660009081526020819052604090205490565b34801561037257600080fd5b506101f561077d565b34801561038757600080fd5b506008546102df906001600160a01b031681565b3480156103a757600080fd5b506005546001600160a01b03166102df565b3480156103c557600080fd5b506101706107f1565b3480156103da57600080fd5b506101a66103e9366004610ec4565b610800565b3480156103fa57600080fd5b506101a6610409366004610ec4565b61084f565b34801561041a57600080fd5b506009546102df906001600160a01b031681565b34801561043a57600080fd5b506007546102df906001600160a01b031681565b34801561045a57600080fd5b506101c7610469366004610fa2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156104a057600080fd5b506101f56104af366004610f87565b61085c565b6060600380546104c390610fd5565b80601f01602080910402602001604051908101604052809291908181526020018280546104ef90610fd5565b801561053c5780601f106105115761010080835404028352916020019161053c565b820191906000526020600020905b81548152906001019060200180831161051f57829003601f168201915b5050505050905090565b6000610553338484610af9565b5060015b92915050565b6005546001600160a01b031633146105905760405162461bcd60e51b815260040161058790611010565b60405180910390fd5b600581106105d25760405162461bcd60e51b815260206004820152600f60248201526e43616e27742065786365656420352560881b6044820152606401610587565b600b55565b6007546001600160a01b031633146105ee57600080fd5b6001600160a01b0383166000908152600c60205260409020805460ff19168315151790558015610623576106238333836109ad565b826001600160a01b03167fd5144d2a6c8ff9b87b7a40852df5102cab2ce561c06b56cc6fe7ccf1fa7f8c2d83604051610660911515815260200190565b60405180910390a2505050565b600061067a848484610c15565b6106cc84336106c78560405180606001604052806028815260200161117a602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610abf565b610af9565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105539185906106c79086610947565b6005546001600160a01b031633146107365760405162461bcd60e51b815260040161058790611010565b600581106107785760405162461bcd60e51b815260206004820152600f60248201526e43616e27742065786365656420352560881b6044820152606401610587565b600a55565b6005546001600160a01b031633146107a75760405162461bcd60e51b815260040161058790611010565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6060600480546104c390610fd5565b600061055333846106c7856040518060600160405280602581526020016111a2602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610abf565b6000610553338484610c15565b6005546001600160a01b031633146108865760405162461bcd60e51b815260040161058790611010565b6001600160a01b0381166108eb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610587565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080610954838561105b565b9050838110156109a65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610587565b9392505050565b6001600160a01b0383166109d35760405162461bcd60e51b815260040161058790611073565b6001600160a01b0382166109f95760405162461bcd60e51b8152600401610587906110b8565b610a3681604051806060016040528060268152602001611154602691396001600160a01b0386166000908152602081905260409020549190610abf565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610a659082610947565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a3505050565b60008184841115610ae35760405162461bcd60e51b81526004016105879190610e53565b506000610af084866110fb565b95945050505050565b6001600160a01b038316610b5b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610587565b6001600160a01b038216610bbc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610587565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101610ab2565b6001600160a01b038316610c3b5760405162461bcd60e51b815260040161058790611073565b6001600160a01b038216610c615760405162461bcd60e51b8152600401610587906110b8565b80610c6b57505050565b6001600160a01b0383166000908152600c602052604090205460019060ff1680610cad57506001600160a01b0383166000908152600c602052604090205460ff165b15610cb6575060005b60008115610d57576006546001600160a01b0385811691161415610d06574715610cdf57600080fd5b610cff6064610cf9600b5486610d6990919063ffffffff16565b90610de8565b9050610d39565b6006546001600160a01b0386811691161415610d3957610d366064610cf9600a5486610d6990919063ffffffff16565b90505b8015610d4a57610d4a8530836109ad565b610d5481846110fb565b92505b610d628585856109ad565b5050505050565b600082610d7857506000610557565b6000610d848385611112565b905082610d918583611131565b146109a65760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610587565b60006109a683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060008183610e465760405162461bcd60e51b81526004016105879190610e53565b506000610af08486611131565b600060208083528351808285015260005b81811015610e8057858101830151858201604001528201610e64565b81811115610e92576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ebf57600080fd5b919050565b60008060408385031215610ed757600080fd5b610ee083610ea8565b946020939093013593505050565b600060208284031215610f0057600080fd5b5035919050565b600080600060608486031215610f1c57600080fd5b610f2584610ea8565b925060208401358015158114610f3a57600080fd5b929592945050506040919091013590565b600080600060608486031215610f6057600080fd5b610f6984610ea8565b9250610f7760208501610ea8565b9150604084013590509250925092565b600060208284031215610f9957600080fd5b6109a682610ea8565b60008060408385031215610fb557600080fd5b610fbe83610ea8565b9150610fcc60208401610ea8565b90509250929050565b600181811c90821680610fe957607f821691505b6020821081141561100a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561106e5761106e611045565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561110d5761110d611045565b500390565b600081600019048311821515161561112c5761112c611045565b500290565b60008261114e57634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205eac58127ac785fc16a45f54261869be003819cf226bd32119096e10d6f0961064736f6c6343000809003345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x60806040526004361061014f5760003560e01c80635342acb4116100b6578063a457c2d71161006f578063a457c2d7146103ce578063a9059cbb146103ee578063ad5c46481461040e578063da09c72c1461042e578063dd62ed3e1461044e578063f2fde38b1461049457600080fd5b80635342acb4146102f757806370a0823114610330578063715018a6146103665780638bdb2afa1461037b5780638da5cb5b1461039b57806395d89b41146103b957600080fd5b80632b14ca56116101085780632b14ca5614610237578063313ce5671461024d5780633950935114610269578063467abe0a1461028957806347062402146102a957806349bd5a5e146102bf57600080fd5b806306fdde031461015b578063095ea7b31461018657806318160ddd146101b65780631d933a4a146101d5578063213a2cb4146101f757806323b872dd1461021757600080fd5b3661015657005b600080fd5b34801561016757600080fd5b506101706104b4565b60405161017d9190610e53565b60405180910390f35b34801561019257600080fd5b506101a66101a1366004610ec4565b610546565b604051901515815260200161017d565b3480156101c257600080fd5b506002545b60405190815260200161017d565b3480156101e157600080fd5b506101f56101f0366004610eee565b61055d565b005b34801561020357600080fd5b506101f5610212366004610f07565b6105d7565b34801561022357600080fd5b506101a6610232366004610f4b565b61066d565b34801561024357600080fd5b506101c7600b5481565b34801561025957600080fd5b506040516012815260200161017d565b34801561027557600080fd5b506101a6610284366004610ec4565b6106d6565b34801561029557600080fd5b506101f56102a4366004610eee565b61070c565b3480156102b557600080fd5b506101c7600a5481565b3480156102cb57600080fd5b506006546102df906001600160a01b031681565b6040516001600160a01b03909116815260200161017d565b34801561030357600080fd5b506101a6610312366004610f87565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561033c57600080fd5b506101c761034b366004610f87565b6001600160a01b031660009081526020819052604090205490565b34801561037257600080fd5b506101f561077d565b34801561038757600080fd5b506008546102df906001600160a01b031681565b3480156103a757600080fd5b506005546001600160a01b03166102df565b3480156103c557600080fd5b506101706107f1565b3480156103da57600080fd5b506101a66103e9366004610ec4565b610800565b3480156103fa57600080fd5b506101a6610409366004610ec4565b61084f565b34801561041a57600080fd5b506009546102df906001600160a01b031681565b34801561043a57600080fd5b506007546102df906001600160a01b031681565b34801561045a57600080fd5b506101c7610469366004610fa2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156104a057600080fd5b506101f56104af366004610f87565b61085c565b6060600380546104c390610fd5565b80601f01602080910402602001604051908101604052809291908181526020018280546104ef90610fd5565b801561053c5780601f106105115761010080835404028352916020019161053c565b820191906000526020600020905b81548152906001019060200180831161051f57829003601f168201915b5050505050905090565b6000610553338484610af9565b5060015b92915050565b6005546001600160a01b031633146105905760405162461bcd60e51b815260040161058790611010565b60405180910390fd5b600581106105d25760405162461bcd60e51b815260206004820152600f60248201526e43616e27742065786365656420352560881b6044820152606401610587565b600b55565b6007546001600160a01b031633146105ee57600080fd5b6001600160a01b0383166000908152600c60205260409020805460ff19168315151790558015610623576106238333836109ad565b826001600160a01b03167fd5144d2a6c8ff9b87b7a40852df5102cab2ce561c06b56cc6fe7ccf1fa7f8c2d83604051610660911515815260200190565b60405180910390a2505050565b600061067a848484610c15565b6106cc84336106c78560405180606001604052806028815260200161117a602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610abf565b610af9565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105539185906106c79086610947565b6005546001600160a01b031633146107365760405162461bcd60e51b815260040161058790611010565b600581106107785760405162461bcd60e51b815260206004820152600f60248201526e43616e27742065786365656420352560881b6044820152606401610587565b600a55565b6005546001600160a01b031633146107a75760405162461bcd60e51b815260040161058790611010565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6060600480546104c390610fd5565b600061055333846106c7856040518060600160405280602581526020016111a2602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610abf565b6000610553338484610c15565b6005546001600160a01b031633146108865760405162461bcd60e51b815260040161058790611010565b6001600160a01b0381166108eb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610587565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080610954838561105b565b9050838110156109a65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610587565b9392505050565b6001600160a01b0383166109d35760405162461bcd60e51b815260040161058790611073565b6001600160a01b0382166109f95760405162461bcd60e51b8152600401610587906110b8565b610a3681604051806060016040528060268152602001611154602691396001600160a01b0386166000908152602081905260409020549190610abf565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610a659082610947565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a3505050565b60008184841115610ae35760405162461bcd60e51b81526004016105879190610e53565b506000610af084866110fb565b95945050505050565b6001600160a01b038316610b5b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610587565b6001600160a01b038216610bbc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610587565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101610ab2565b6001600160a01b038316610c3b5760405162461bcd60e51b815260040161058790611073565b6001600160a01b038216610c615760405162461bcd60e51b8152600401610587906110b8565b80610c6b57505050565b6001600160a01b0383166000908152600c602052604090205460019060ff1680610cad57506001600160a01b0383166000908152600c602052604090205460ff165b15610cb6575060005b60008115610d57576006546001600160a01b0385811691161415610d06574715610cdf57600080fd5b610cff6064610cf9600b5486610d6990919063ffffffff16565b90610de8565b9050610d39565b6006546001600160a01b0386811691161415610d3957610d366064610cf9600a5486610d6990919063ffffffff16565b90505b8015610d4a57610d4a8530836109ad565b610d5481846110fb565b92505b610d628585856109ad565b5050505050565b600082610d7857506000610557565b6000610d848385611112565b905082610d918583611131565b146109a65760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610587565b60006109a683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060008183610e465760405162461bcd60e51b81526004016105879190610e53565b506000610af08486611131565b600060208083528351808285015260005b81811015610e8057858101830151858201604001528201610e64565b81811115610e92576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ebf57600080fd5b919050565b60008060408385031215610ed757600080fd5b610ee083610ea8565b946020939093013593505050565b600060208284031215610f0057600080fd5b5035919050565b600080600060608486031215610f1c57600080fd5b610f2584610ea8565b925060208401358015158114610f3a57600080fd5b929592945050506040919091013590565b600080600060608486031215610f6057600080fd5b610f6984610ea8565b9250610f7760208501610ea8565b9150604084013590509250925092565b600060208284031215610f9957600080fd5b6109a682610ea8565b60008060408385031215610fb557600080fd5b610fbe83610ea8565b9150610fcc60208401610ea8565b90509250929050565b600181811c90821680610fe957607f821691505b6020821081141561100a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561106e5761106e611045565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561110d5761110d611045565b500390565b600081600019048311821515161561112c5761112c611045565b500290565b60008261114e57634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205eac58127ac785fc16a45f54261869be003819cf226bd32119096e10d6f0961064736f6c63430008090033

Deployed Bytecode Sourcemap

21801:2787:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4767:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6934:169;;;;;;;;;;-1:-1:-1;6934:169:0;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;6934:169:0;1053:187:1;5887:108:0;;;;;;;;;;-1:-1:-1;5975:12:0;;5887:108;;;1391:25:1;;;1379:2;1364:18;5887:108:0;1245:177:1;23082:148:0;;;;;;;;;;-1:-1:-1;23082:148:0;;;;;:::i;:::-;;:::i;:::-;;23238:304;;;;;;;;;;-1:-1:-1;23238:304:0;;;;;:::i;:::-;;:::i;7585:355::-;;;;;;;;;;-1:-1:-1;7585:355:0;;;;;:::i;:::-;;:::i;22129:26::-;;;;;;;;;;;;;;;;5729:93;;;;;;;;;;-1:-1:-1;5729:93:0;;5812:2;2507:36:1;;2495:2;2480:18;5729:93:0;2365:184:1;8349:218:0;;;;;;;;;;-1:-1:-1;8349:218:0;;;;;:::i;:::-;;:::i;22927:143::-;;;;;;;;;;-1:-1:-1;22927:143:0;;;;;:::i;:::-;;:::i;22097:25::-;;;;;;;;;;;;;;;;21879:28;;;;;;;;;;-1:-1:-1;21879:28:0;;;;-1:-1:-1;;;;;21879:28:0;;;;;;-1:-1:-1;;;;;2718:32:1;;;2700:51;;2688:2;2673:18;21879:28:0;2554:203:1;22794:125:0;;;;;;;;;;-1:-1:-1;22794:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;22882:29:0;22858:4;22882:29;;;:20;:29;;;;;;;;;22794:125;6058:127;;;;;;;;;;-1:-1:-1;6058:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;6159:18:0;6132:7;6159:18;;;;;;;;;;;;6058:127;19236:148;;;;;;;;;;;;;:::i;21943:74::-;;;;;;;;;;-1:-1:-1;21943:74:0;;;;-1:-1:-1;;;;;21943:74:0;;;18594:79;;;;;;;;;;-1:-1:-1;18659:6:0;;-1:-1:-1;;;;;18659:6:0;18594:79;;4986:104;;;;;;;;;;;;;:::i;9070:269::-;;;;;;;;;;-1:-1:-1;9070:269:0;;;;;:::i;:::-;;:::i;6398:175::-;;;;;;;;;;-1:-1:-1;6398:175:0;;;;;:::i;:::-;;:::i;22024:64::-;;;;;;;;;;-1:-1:-1;22024:64:0;;;;-1:-1:-1;;;;;22024:64:0;;;21914:22;;;;;;;;;;-1:-1:-1;21914:22:0;;;;-1:-1:-1;;;;;21914:22:0;;;6636:151;;;;;;;;;;-1:-1:-1;6636:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;6752:18:0;;;6725:7;6752:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6636:151;19539:244;;;;;;;;;;-1:-1:-1;19539:244:0;;;;;:::i;:::-;;:::i;4767:100::-;4821:13;4854:5;4847:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4767:100;:::o;6934:169::-;7017:4;7034:39;459:10;7057:7;7066:6;7034:8;:39::i;:::-;-1:-1:-1;7091:4:0;6934:169;;;;;:::o;23082:148::-;18806:6;;-1:-1:-1;;;;;18806:6:0;459:10;18806:22;18798:67;;;;-1:-1:-1;;;18798:67:0;;;;;;;:::i;:::-;;;;;;;;;23172:1:::1;23161:8;:12;23153:40;;;::::0;-1:-1:-1;;;23153:40:0;;4166:2:1;23153:40:0::1;::::0;::::1;4148:21:1::0;4205:2;4185:18;;;4178:30;-1:-1:-1;;;4224:18:1;;;4217:45;4279:18;;23153:40:0::1;3964:339:1::0;23153:40:0::1;23204:7;:18:::0;23082:148::o;23238:304::-;23336:7;;-1:-1:-1;;;;;23336:7:0;23347:10;23336:21;23328:30;;;;;;-1:-1:-1;;;;;23369:29:0;;;;;;:20;:29;;;;;:40;;-1:-1:-1;;23369:40:0;;;;;;;23424:10;;23420:66;;23439:44;23455:7;23464:10;23476:6;23439:15;:44::i;:::-;23516:7;-1:-1:-1;;;;;23501:33:0;;23525:8;23501:33;;;;1218:14:1;1211:22;1193:41;;1181:2;1166:18;;1053:187;23501:33:0;;;;;;;;23238:304;;;:::o;7585:355::-;7725:4;7742:36;7752:6;7760:9;7771:6;7742:9;:36::i;:::-;7789:121;7798:6;459:10;7820:89;7858:6;7820:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7820:19:0;;;;;;:11;:19;;;;;;;;459:10;7820:33;;;;;;;;;;:37;:89::i;:::-;7789:8;:121::i;:::-;-1:-1:-1;7928:4:0;7585:355;;;;;:::o;8349:218::-;459:10;8437:4;8486:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8486:34:0;;;;;;;;;;8437:4;;8454:83;;8477:7;;8486:50;;8525:10;8486:38;:50::i;22927:143::-;18806:6;;-1:-1:-1;;;;;18806:6:0;459:10;18806:22;18798:67;;;;-1:-1:-1;;;18798:67:0;;;;;;;:::i;:::-;23014:1:::1;23004:7;:11;22996:39;;;::::0;-1:-1:-1;;;22996:39:0;;4166:2:1;22996:39:0::1;::::0;::::1;4148:21:1::0;4205:2;4185:18;;;4178:30;-1:-1:-1;;;4224:18:1;;;4217:45;4279:18;;22996:39:0::1;3964:339:1::0;22996:39:0::1;23046:6;:16:::0;22927:143::o;19236:148::-;18806:6;;-1:-1:-1;;;;;18806:6:0;459:10;18806:22;18798:67;;;;-1:-1:-1;;;18798:67:0;;;;;;;:::i;:::-;19327:6:::1;::::0;19306:40:::1;::::0;19343:1:::1;::::0;-1:-1:-1;;;;;19327:6:0::1;::::0;19306:40:::1;::::0;19343:1;;19306:40:::1;19357:6;:19:::0;;-1:-1:-1;;;;;;19357:19:0::1;::::0;;19236:148::o;4986:104::-;5042:13;5075:7;5068:14;;;;;:::i;9070:269::-;9163:4;9180:129;459:10;9203:7;9212:96;9251:15;9212:96;;;;;;;;;;;;;;;;;459:10;9212:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9212:34:0;;;;;;;;;;;;:38;:96::i;6398:175::-;6484:4;6501:42;459:10;6525:9;6536:6;6501:9;:42::i;19539:244::-;18806:6;;-1:-1:-1;;;;;18806:6:0;459:10;18806:22;18798:67;;;;-1:-1:-1;;;18798:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19628:22:0;::::1;19620:73;;;::::0;-1:-1:-1;;;19620:73:0;;4510:2:1;19620:73:0::1;::::0;::::1;4492:21:1::0;4549:2;4529:18;;;4522:30;4588:34;4568:18;;;4561:62;-1:-1:-1;;;4639:18:1;;;4632:36;4685:19;;19620:73:0::1;4308:402:1::0;19620:73:0::1;19730:6;::::0;19709:38:::1;::::0;-1:-1:-1;;;;;19709:38:0;;::::1;::::0;19730:6:::1;::::0;19709:38:::1;::::0;19730:6:::1;::::0;19709:38:::1;19758:6;:17:::0;;-1:-1:-1;;;;;;19758:17:0::1;-1:-1:-1::0;;;;;19758:17:0;;;::::1;::::0;;;::::1;::::0;;19539:244::o;13634:181::-;13692:7;;13724:5;13728:1;13724;:5;:::i;:::-;13712:17;;13753:1;13748;:6;;13740:46;;;;-1:-1:-1;;;13740:46:0;;5182:2:1;13740:46:0;;;5164:21:1;5221:2;5201:18;;;5194:30;5260:29;5240:18;;;5233:57;5307:18;;13740:46:0;4980:351:1;13740:46:0;13806:1;13634:181;-1:-1:-1;;;13634:181:0:o;9829:573::-;-1:-1:-1;;;;;9969:20:0;;9961:70;;;;-1:-1:-1;;;9961:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10050:23:0;;10042:71;;;;-1:-1:-1;;;10042:71:0;;;;;;;:::i;:::-;10206;10228:6;10206:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10206:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;10186:17:0;;;:9;:17;;;;;;;;;;;:91;;;;10311:20;;;;;;;:32;;10336:6;10311:24;:32::i;:::-;-1:-1:-1;;;;;10288:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;10359:35;1391:25:1;;;10288:20:0;;10359:35;;;;;;1364:18:1;10359:35:0;;;;;;;;9829:573;;;:::o;14537:192::-;14623:7;14659:12;14651:6;;;;14643:29;;;;-1:-1:-1;;;14643:29:0;;;;;;;;:::i;:::-;-1:-1:-1;14683:9:0;14695:5;14699:1;14695;:5;:::i;:::-;14683:17;14537:192;-1:-1:-1;;;;;14537:192:0:o;12256:380::-;-1:-1:-1;;;;;12392:19:0;;12384:68;;;;-1:-1:-1;;;12384:68:0;;6478:2:1;12384:68:0;;;6460:21:1;6517:2;6497:18;;;6490:30;6556:34;6536:18;;;6529:62;-1:-1:-1;;;6607:18:1;;;6600:34;6651:19;;12384:68:0;6276:400:1;12384:68:0;-1:-1:-1;;;;;12471:21:0;;12463:68;;;;-1:-1:-1;;;12463:68:0;;6883:2:1;12463:68:0;;;6865:21:1;6922:2;6902:18;;;6895:30;6961:34;6941:18;;;6934:62;-1:-1:-1;;;7012:18:1;;;7005:32;7054:19;;12463:68:0;6681:398:1;12463:68:0;-1:-1:-1;;;;;12544:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;12596:32;;1391:25:1;;;12596:32:0;;1364:18:1;12596:32:0;1245:177:1;23552:1033:0;-1:-1:-1;;;;;23684:18:0;;23676:68;;;;-1:-1:-1;;;23676:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23763:16:0;;23755:64;;;;-1:-1:-1;;;23755:64:0;;;;;;;:::i;:::-;23843:11;23840:28;;23552:1033;;;:::o;23840:28::-;-1:-1:-1;;;;;23929:26:0;;23896:10;23929:26;;;:20;:26;;;;;;23909:4;;23929:26;;;:54;;-1:-1:-1;;;;;;23959:24:0;;;;;;:20;:24;;;;;;;;23929:54;23926:99;;;-1:-1:-1;24008:5:0;23926:99;24037:17;24072:5;24069:463;;;24110:13;;-1:-1:-1;;;;;24104:19:0;;;24110:13;;24104:19;24100:252;;;24134:21;:26;24126:35;;;;;;24192:28;24216:3;24192:19;24203:7;;24192:6;:10;;:19;;;;:::i;:::-;:23;;:28::i;:::-;24180:40;;24100:252;;;24266:13;;-1:-1:-1;;;;;24258:21:0;;;24266:13;;24258:21;24255:97;;;24309:27;24332:3;24309:18;24320:6;;24309;:10;;:18;;;;:::i;:27::-;24297:39;;24255:97;24381:13;;24378:103;;24418:47;24434:4;24448;24455:9;24418:15;:47::i;:::-;24501:19;24511:9;24501:19;;:::i;:::-;;;24069:463;24544:33;24560:4;24566:2;24570:6;24544:15;:33::i;:::-;23665:920;;23552:1033;;;:::o;14988:471::-;15046:7;15291:6;15287:47;;-1:-1:-1;15321:1:0;15314:8;;15287:47;15346:9;15358:5;15362:1;15358;:5;:::i;:::-;15346:17;-1:-1:-1;15391:1:0;15382:5;15386:1;15346:17;15382:5;:::i;:::-;:10;15374:56;;;;-1:-1:-1;;;15374:56:0;;7681:2:1;15374:56:0;;;7663:21:1;7720:2;7700:18;;;7693:30;7759:34;7739:18;;;7732:62;-1:-1:-1;;;7810:18:1;;;7803:31;7851:19;;15374:56:0;7479:397:1;15935:132:0;15993:7;16020:39;16024:1;16027;16020:39;;;;;;;;;;;;;;;;;16649:7;16684:12;16677:5;16669:28;;;;-1:-1:-1;;;16669:28:0;;;;;;;;:::i;:::-;-1:-1:-1;16708:9:0;16720:5;16724:1;16720;:5;:::i;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:180::-;1486:6;1539:2;1527:9;1518:7;1514:23;1510:32;1507:52;;;1555:1;1552;1545:12;1507:52;-1:-1:-1;1578:23:1;;1427:180;-1:-1:-1;1427:180:1:o;1612:415::-;1686:6;1694;1702;1755:2;1743:9;1734:7;1730:23;1726:32;1723:52;;;1771:1;1768;1761:12;1723:52;1794:29;1813:9;1794:29;:::i;:::-;1784:39;;1873:2;1862:9;1858:18;1845:32;1920:5;1913:13;1906:21;1899:5;1896:32;1886:60;;1942:1;1939;1932:12;1886:60;1612:415;;1965:5;;-1:-1:-1;;;2017:2:1;2002:18;;;;1989:32;;1612:415::o;2032:328::-;2109:6;2117;2125;2178:2;2166:9;2157:7;2153:23;2149:32;2146:52;;;2194:1;2191;2184:12;2146:52;2217:29;2236:9;2217:29;:::i;:::-;2207:39;;2265:38;2299:2;2288:9;2284:18;2265:38;:::i;:::-;2255:48;;2350:2;2339:9;2335:18;2322:32;2312:42;;2032:328;;;;;:::o;2762:186::-;2821:6;2874:2;2862:9;2853:7;2849:23;2845:32;2842:52;;;2890:1;2887;2880:12;2842:52;2913:29;2932:9;2913:29;:::i;2953:260::-;3021:6;3029;3082:2;3070:9;3061:7;3057:23;3053:32;3050:52;;;3098:1;3095;3088:12;3050:52;3121:29;3140:9;3121:29;:::i;:::-;3111:39;;3169:38;3203:2;3192:9;3188:18;3169:38;:::i;:::-;3159:48;;2953:260;;;;;:::o;3218:380::-;3297:1;3293:12;;;;3340;;;3361:61;;3415:4;3407:6;3403:17;3393:27;;3361:61;3468:2;3460:6;3457:14;3437:18;3434:38;3431:161;;;3514:10;3509:3;3505:20;3502:1;3495:31;3549:4;3546:1;3539:15;3577:4;3574:1;3567:15;3431:161;;3218:380;;;:::o;3603:356::-;3805:2;3787:21;;;3824:18;;;3817:30;3883:34;3878:2;3863:18;;3856:62;3950:2;3935:18;;3603:356::o;4715:127::-;4776:10;4771:3;4767:20;4764:1;4757:31;4807:4;4804:1;4797:15;4831:4;4828:1;4821:15;4847:128;4887:3;4918:1;4914:6;4911:1;4908:13;4905:39;;;4924:18;;:::i;:::-;-1:-1:-1;4960:9:1;;4847:128::o;5336:401::-;5538:2;5520:21;;;5577:2;5557:18;;;5550:30;5616:34;5611:2;5596:18;;5589:62;-1:-1:-1;;;5682:2:1;5667:18;;5660:35;5727:3;5712:19;;5336:401::o;5742:399::-;5944:2;5926:21;;;5983:2;5963:18;;;5956:30;6022:34;6017:2;6002:18;;5995:62;-1:-1:-1;;;6088:2:1;6073:18;;6066:33;6131:3;6116:19;;5742:399::o;6146:125::-;6186:4;6214:1;6211;6208:8;6205:34;;;6219:18;;:::i;:::-;-1:-1:-1;6256:9:1;;6146:125::o;7084:168::-;7124:7;7190:1;7186;7182:6;7178:14;7175:1;7172:21;7167:1;7160:9;7153:17;7149:45;7146:71;;;7197:18;;:::i;:::-;-1:-1:-1;7237:9:1;;7084:168::o;7257:217::-;7297:1;7323;7313:132;;7367:10;7362:3;7358:20;7355:1;7348:31;7402:4;7399:1;7392:15;7430:4;7427:1;7420:15;7313:132;-1:-1:-1;7459:9:1;;7257:217::o

Swarm Source

ipfs://5eac58127ac785fc16a45f54261869be003819cf226bd32119096e10d6f09610
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.