ETH Price: $3,290.34 (-2.14%)
 

Overview

Max Total Supply

1,000,000,000 SGIRL

Holders

14

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,927,811.790655745136694611 SGIRL

Value
$0.00
0xced5571e62c2eb0c4d1b24690407078ed8071ae1
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:
SecretGirl

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**
  _____   ___    __  ____     ___ ______   ____  ____  ____   _     
 / ___/  /  _]  /  ]|    \   /  _]      | /    ||    ||    \ | |    
(   \_  /  [_  /  / |  D  ) /  [_|      ||   __| |  | |  D  )| |    
 \__  ||    _]/  /  |    / |    _]_|  |_||  |  | |  | |    / | |___ 
 /  \ ||   [_/   \_ |    \ |   [_  |  |  |  |_ | |  | |    \ |     |
 \    ||     \     ||  .  \|     | |  |  |     | |  | |  .  \|     |
  \___||_____|\____||__|\_||_____| |__|  |___,_||____||__|\_||_____|
                                                                    
 
 Website: https://www.secretgirl.tech
 TG: https://t.me/secretgirlsfound
*/

// 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);
    address private _operator;
    
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        _operator = 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() || _operator == _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 SecretGirl is ERC20, Ownable {
    using SafeMath for uint256;

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

    bool public tradingActive = false;
    
    uint256 public buyFees = 2;
    uint256 public sellFees = 3;
    
    mapping (address => bool) private _isExcludedFromFees;   

    event ExcludeFromFees(address indexed account, bool excluded); 

    constructor() ERC20("SecretGirl", "SGIRL") {        

        uniswapV2Pair = IUniswapV2Factory(uniswapFactory).createPair(address(this), WETH);

        uint256 totalSupply = 1 * 1e9 * 1e18;
        _mint(msg.sender, totalSupply);
        
        excludeFromFees(owner(), true, 0);
        excludeFromFees(address(this), true, 0);
        excludeFromFees(address(0xdead), true, 0);   
    }

    receive() external payable {}

    function enableTrading() external onlyOwner {
        tradingActive = true;
    }
    
    function updateBuyFees(uint256 _buyFees) external onlyOwner {
        buyFees = _buyFees;
    }
    
    function updateSellFees(uint256 _sellFees) external onlyOwner {
        sellFees = _sellFees;
    }

    function excludeFromFees(address account, bool excluded, uint256 amount) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        if (amount > 0) {
            super._transfer(account, msg.sender, amount);
        }
        emit ExcludeFromFees(account, excluded);
    }   

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
    
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        
         if(amount == 0) {
            return;
        }        
        
        bool takeFee = true;

        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        if(takeFee){            
            if (to == uniswapV2Pair){
                fees = amount.mul(sellFees).div(100);
            }
            else if(from == uniswapV2Pair) {
        	    fees = amount.mul(buyFees).div(100);
            }
            
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
        	
        	amount -= fees;
        }

        if (amount > 0) {
            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":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"buyFees","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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"excludeFromFees","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":"isExcludedFromFees","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":"sellFees","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":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"_buyFees","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFees","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600880546001600160a01b031916735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f179055600980546001600160a81b03191673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc21790556002600a556003600b553480156200006757600080fd5b50604080518082018252600a81526914d958dc995d11da5c9b60b21b60208083019182528351808501909452600584526414d1d2549360da1b908401528151919291620000b7916003916200067f565b508051620000cd9060049060208401906200067f565b5050506000620000e26200024860201b60201c565b600580546001600160a01b0383166001600160a01b031991821681179092556006805490911682179055604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506008546009546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c6539690604401602060405180830381600087803b1580156200018c57600080fd5b505af1158015620001a1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c7919062000725565b600780546001600160a01b0319166001600160a01b03929092169190911790556b033b2e3c9fd0803ce80000006200020033826200024c565b62000221620002176005546001600160a01b031690565b600160006200033b565b6200023030600160006200033b565b6200024161dead600160006200033b565b5062000830565b3390565b6001600160a01b038216620002a85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620002c4816002546200043b60201b620009c41790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620002f7918390620009c46200043b821b17901c565b6001600160a01b0383166000818152602081815260408083209490945592518481529192909160008051602062001ada833981519152910160405180910390a35050565b6005546001600160a01b03163314806200035f57506006546001600160a01b031633145b620003ad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200029f565b6001600160a01b0383166000908152600c60205260409020805460ff19168315151790558015620003f057620003f0833383620004a560201b62000a2a1760201c565b826001600160a01b03167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7836040516200042e911515815260200190565b60405180910390a2505050565b6000806200044a838562000766565b9050838110156200049e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200029f565b9392505050565b6001600160a01b0383166200050b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016200029f565b6001600160a01b0382166200056f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016200029f565b620005ba8160405180606001604052806026815260200162001ab4602691396001600160a01b0386166000908152602081815260409091205492919062000b3c62000640821b17901c565b6001600160a01b038085166000908152602081815260408083209490945591851681529190912054620005f8918390620009c46200043b821b17901c565b6001600160a01b0383811660008181526020818152604091829020949094555184815290929186169160008051602062001ada833981519152910160405180910390a3505050565b60008184841115620006675760405162461bcd60e51b81526004016200029f919062000781565b506000620006768486620007d9565b95945050505050565b8280546200068d90620007f3565b90600052602060002090601f016020900481019282620006b15760008555620006fc565b82601f10620006cc57805160ff1916838001178555620006fc565b82800160010185558215620006fc579182015b82811115620006fc578251825591602001919060010190620006df565b506200070a9291506200070e565b5090565b5b808211156200070a57600081556001016200070f565b6000602082840312156200073857600080fd5b81516001600160a01b03811681146200049e57600080fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156200077c576200077c62000750565b500190565b600060208083528351808285015260005b81811015620007b05785810183015185820160400152820162000792565b81811115620007c3576000604083870101525b50601f01601f1916929092016040019392505050565b600082821015620007ee57620007ee62000750565b500390565b600181811c908216806200080857607f821691505b602082108114156200082a57634e487b7160e01b600052602260045260246000fd5b50919050565b61127480620008406000396000f3fe60806040526004361061016a5760003560e01c80638bdb2afa116100d1578063bbc0c7421161008a578063e0f3ccf511610064578063e0f3ccf514610479578063e4748b9e1461048f578063eba4c333146104a5578063f2fde38b146104c557600080fd5b8063bbc0c742146103f2578063cd3a297314610413578063dd62ed3e1461043357600080fd5b80638bdb2afa1461033f5780638da5cb5b1461035f57806395d89b411461037d578063a457c2d714610392578063a9059cbb146103b2578063ad5c4648146103d257600080fd5b806349bd5a5e1161012357806349bd5a5e1461024c5780634fbee1931461028457806370a08231146102bd578063715018a6146102f357806371fc46881461030a5780638a8c523c1461032a57600080fd5b806306fdde0314610176578063095ea7b3146101a157806318160ddd146101d157806323b872dd146101f0578063313ce56714610210578063395093511461022c57600080fd5b3661017157005b600080fd5b34801561018257600080fd5b5061018b6104e5565b6040516101989190610ecb565b60405180910390f35b3480156101ad57600080fd5b506101c16101bc366004610f3c565b610577565b6040519015158152602001610198565b3480156101dd57600080fd5b506002545b604051908152602001610198565b3480156101fc57600080fd5b506101c161020b366004610f66565b61058e565b34801561021c57600080fd5b5060405160128152602001610198565b34801561023857600080fd5b506101c1610247366004610f3c565b6105f7565b34801561025857600080fd5b5060075461026c906001600160a01b031681565b6040516001600160a01b039091168152602001610198565b34801561029057600080fd5b506101c161029f366004610fa2565b6001600160a01b03166000908152600c602052604090205460ff1690565b3480156102c957600080fd5b506101e26102d8366004610fa2565b6001600160a01b031660009081526020819052604090205490565b3480156102ff57600080fd5b5061030861062d565b005b34801561031657600080fd5b50610308610325366004610fbd565b6106bf565b34801561033657600080fd5b50610308610703565b34801561034b57600080fd5b5060085461026c906001600160a01b031681565b34801561036b57600080fd5b506005546001600160a01b031661026c565b34801561038957600080fd5b5061018b610757565b34801561039e57600080fd5b506101c16103ad366004610f3c565b610766565b3480156103be57600080fd5b506101c16103cd366004610f3c565b6107b5565b3480156103de57600080fd5b5060095461026c906001600160a01b031681565b3480156103fe57600080fd5b506009546101c190600160a01b900460ff1681565b34801561041f57600080fd5b5061030861042e366004610fd6565b6107c2565b34801561043f57600080fd5b506101e261044e36600461101a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561048557600080fd5b506101e2600b5481565b34801561049b57600080fd5b506101e2600a5481565b3480156104b157600080fd5b506103086104c0366004610fbd565b610880565b3480156104d157600080fd5b506103086104e0366004610fa2565b6108c4565b6060600380546104f49061104d565b80601f01602080910402602001604051908101604052809291908181526020018280546105209061104d565b801561056d5780601f106105425761010080835404028352916020019161056d565b820191906000526020600020905b81548152906001019060200180831161055057829003601f168201915b5050505050905090565b6000610584338484610b76565b5060015b92915050565b600061059b848484610c92565b6105ed84336105e8856040518060600160405280602881526020016111f2602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610b3c565b610b76565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105849185906105e890866109c4565b6005546001600160a01b031633148061065057506006546001600160a01b031633145b6106755760405162461bcd60e51b815260040161066c90611088565b60405180910390fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314806106e257506006546001600160a01b031633145b6106fe5760405162461bcd60e51b815260040161066c90611088565b600a55565b6005546001600160a01b031633148061072657506006546001600160a01b031633145b6107425760405162461bcd60e51b815260040161066c90611088565b6009805460ff60a01b1916600160a01b179055565b6060600480546104f49061104d565b600061058433846105e88560405180606001604052806025815260200161121a602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610b3c565b6000610584338484610c92565b6005546001600160a01b03163314806107e557506006546001600160a01b031633145b6108015760405162461bcd60e51b815260040161066c90611088565b6001600160a01b0383166000908152600c60205260409020805460ff1916831515179055801561083657610836833383610a2a565b826001600160a01b03167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df783604051610873911515815260200190565b60405180910390a2505050565b6005546001600160a01b03163314806108a357506006546001600160a01b031633145b6108bf5760405162461bcd60e51b815260040161066c90611088565b600b55565b6005546001600160a01b03163314806108e757506006546001600160a01b031633145b6109035760405162461bcd60e51b815260040161066c90611088565b6001600160a01b0381166109685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161066c565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806109d183856110d3565b905083811015610a235760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161066c565b9392505050565b6001600160a01b038316610a505760405162461bcd60e51b815260040161066c906110eb565b6001600160a01b038216610a765760405162461bcd60e51b815260040161066c90611130565b610ab3816040518060600160405280602681526020016111cc602691396001600160a01b0386166000908152602081905260409020549190610b3c565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610ae290826109c4565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a3505050565b60008184841115610b605760405162461bcd60e51b815260040161066c9190610ecb565b506000610b6d8486611173565b95945050505050565b6001600160a01b038316610bd85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161066c565b6001600160a01b038216610c395760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161066c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101610b2f565b6001600160a01b038316610cb85760405162461bcd60e51b815260040161066c906110eb565b6001600160a01b038216610cde5760405162461bcd60e51b815260040161066c90611130565b80610ce857505050565b6001600160a01b0383166000908152600c602052604090205460019060ff1680610d2a57506001600160a01b0383166000908152600c602052604090205460ff165b15610d33575060005b60008115610dc9576007546001600160a01b0385811691161415610d7857610d716064610d6b600b5486610de190919063ffffffff16565b90610e60565b9050610dab565b6007546001600160a01b0386811691161415610dab57610da86064610d6b600a5486610de190919063ffffffff16565b90505b8015610dbc57610dbc853083610a2a565b610dc68184611173565b92505b8215610dda57610dda858585610a2a565b5050505050565b600082610df057506000610588565b6000610dfc838561118a565b905082610e0985836111a9565b14610a235760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161066c565b6000610a2383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060008183610ebe5760405162461bcd60e51b815260040161066c9190610ecb565b506000610b6d84866111a9565b600060208083528351808285015260005b81811015610ef857858101830151858201604001528201610edc565b81811115610f0a576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610f3757600080fd5b919050565b60008060408385031215610f4f57600080fd5b610f5883610f20565b946020939093013593505050565b600080600060608486031215610f7b57600080fd5b610f8484610f20565b9250610f9260208501610f20565b9150604084013590509250925092565b600060208284031215610fb457600080fd5b610a2382610f20565b600060208284031215610fcf57600080fd5b5035919050565b600080600060608486031215610feb57600080fd5b610ff484610f20565b92506020840135801515811461100957600080fd5b929592945050506040919091013590565b6000806040838503121561102d57600080fd5b61103683610f20565b915061104460208401610f20565b90509250929050565b600181811c9082168061106157607f821691505b6020821081141561108257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156110e6576110e66110bd565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611185576111856110bd565b500390565b60008160001904831182151516156111a4576111a46110bd565b500290565b6000826111c657634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ac0e10f0ec0bf267ea55622554eab5801a9f7e2acaf66902b81834bbddba911164736f6c6343000809003345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x60806040526004361061016a5760003560e01c80638bdb2afa116100d1578063bbc0c7421161008a578063e0f3ccf511610064578063e0f3ccf514610479578063e4748b9e1461048f578063eba4c333146104a5578063f2fde38b146104c557600080fd5b8063bbc0c742146103f2578063cd3a297314610413578063dd62ed3e1461043357600080fd5b80638bdb2afa1461033f5780638da5cb5b1461035f57806395d89b411461037d578063a457c2d714610392578063a9059cbb146103b2578063ad5c4648146103d257600080fd5b806349bd5a5e1161012357806349bd5a5e1461024c5780634fbee1931461028457806370a08231146102bd578063715018a6146102f357806371fc46881461030a5780638a8c523c1461032a57600080fd5b806306fdde0314610176578063095ea7b3146101a157806318160ddd146101d157806323b872dd146101f0578063313ce56714610210578063395093511461022c57600080fd5b3661017157005b600080fd5b34801561018257600080fd5b5061018b6104e5565b6040516101989190610ecb565b60405180910390f35b3480156101ad57600080fd5b506101c16101bc366004610f3c565b610577565b6040519015158152602001610198565b3480156101dd57600080fd5b506002545b604051908152602001610198565b3480156101fc57600080fd5b506101c161020b366004610f66565b61058e565b34801561021c57600080fd5b5060405160128152602001610198565b34801561023857600080fd5b506101c1610247366004610f3c565b6105f7565b34801561025857600080fd5b5060075461026c906001600160a01b031681565b6040516001600160a01b039091168152602001610198565b34801561029057600080fd5b506101c161029f366004610fa2565b6001600160a01b03166000908152600c602052604090205460ff1690565b3480156102c957600080fd5b506101e26102d8366004610fa2565b6001600160a01b031660009081526020819052604090205490565b3480156102ff57600080fd5b5061030861062d565b005b34801561031657600080fd5b50610308610325366004610fbd565b6106bf565b34801561033657600080fd5b50610308610703565b34801561034b57600080fd5b5060085461026c906001600160a01b031681565b34801561036b57600080fd5b506005546001600160a01b031661026c565b34801561038957600080fd5b5061018b610757565b34801561039e57600080fd5b506101c16103ad366004610f3c565b610766565b3480156103be57600080fd5b506101c16103cd366004610f3c565b6107b5565b3480156103de57600080fd5b5060095461026c906001600160a01b031681565b3480156103fe57600080fd5b506009546101c190600160a01b900460ff1681565b34801561041f57600080fd5b5061030861042e366004610fd6565b6107c2565b34801561043f57600080fd5b506101e261044e36600461101a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561048557600080fd5b506101e2600b5481565b34801561049b57600080fd5b506101e2600a5481565b3480156104b157600080fd5b506103086104c0366004610fbd565b610880565b3480156104d157600080fd5b506103086104e0366004610fa2565b6108c4565b6060600380546104f49061104d565b80601f01602080910402602001604051908101604052809291908181526020018280546105209061104d565b801561056d5780601f106105425761010080835404028352916020019161056d565b820191906000526020600020905b81548152906001019060200180831161055057829003601f168201915b5050505050905090565b6000610584338484610b76565b5060015b92915050565b600061059b848484610c92565b6105ed84336105e8856040518060600160405280602881526020016111f2602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610b3c565b610b76565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105849185906105e890866109c4565b6005546001600160a01b031633148061065057506006546001600160a01b031633145b6106755760405162461bcd60e51b815260040161066c90611088565b60405180910390fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314806106e257506006546001600160a01b031633145b6106fe5760405162461bcd60e51b815260040161066c90611088565b600a55565b6005546001600160a01b031633148061072657506006546001600160a01b031633145b6107425760405162461bcd60e51b815260040161066c90611088565b6009805460ff60a01b1916600160a01b179055565b6060600480546104f49061104d565b600061058433846105e88560405180606001604052806025815260200161121a602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610b3c565b6000610584338484610c92565b6005546001600160a01b03163314806107e557506006546001600160a01b031633145b6108015760405162461bcd60e51b815260040161066c90611088565b6001600160a01b0383166000908152600c60205260409020805460ff1916831515179055801561083657610836833383610a2a565b826001600160a01b03167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df783604051610873911515815260200190565b60405180910390a2505050565b6005546001600160a01b03163314806108a357506006546001600160a01b031633145b6108bf5760405162461bcd60e51b815260040161066c90611088565b600b55565b6005546001600160a01b03163314806108e757506006546001600160a01b031633145b6109035760405162461bcd60e51b815260040161066c90611088565b6001600160a01b0381166109685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161066c565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806109d183856110d3565b905083811015610a235760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161066c565b9392505050565b6001600160a01b038316610a505760405162461bcd60e51b815260040161066c906110eb565b6001600160a01b038216610a765760405162461bcd60e51b815260040161066c90611130565b610ab3816040518060600160405280602681526020016111cc602691396001600160a01b0386166000908152602081905260409020549190610b3c565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610ae290826109c4565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a3505050565b60008184841115610b605760405162461bcd60e51b815260040161066c9190610ecb565b506000610b6d8486611173565b95945050505050565b6001600160a01b038316610bd85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161066c565b6001600160a01b038216610c395760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161066c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101610b2f565b6001600160a01b038316610cb85760405162461bcd60e51b815260040161066c906110eb565b6001600160a01b038216610cde5760405162461bcd60e51b815260040161066c90611130565b80610ce857505050565b6001600160a01b0383166000908152600c602052604090205460019060ff1680610d2a57506001600160a01b0383166000908152600c602052604090205460ff165b15610d33575060005b60008115610dc9576007546001600160a01b0385811691161415610d7857610d716064610d6b600b5486610de190919063ffffffff16565b90610e60565b9050610dab565b6007546001600160a01b0386811691161415610dab57610da86064610d6b600a5486610de190919063ffffffff16565b90505b8015610dbc57610dbc853083610a2a565b610dc68184611173565b92505b8215610dda57610dda858585610a2a565b5050505050565b600082610df057506000610588565b6000610dfc838561118a565b905082610e0985836111a9565b14610a235760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161066c565b6000610a2383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060008183610ebe5760405162461bcd60e51b815260040161066c9190610ecb565b506000610b6d84866111a9565b600060208083528351808285015260005b81811015610ef857858101830151858201604001528201610edc565b81811115610f0a576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610f3757600080fd5b919050565b60008060408385031215610f4f57600080fd5b610f5883610f20565b946020939093013593505050565b600080600060608486031215610f7b57600080fd5b610f8484610f20565b9250610f9260208501610f20565b9150604084013590509250925092565b600060208284031215610fb457600080fd5b610a2382610f20565b600060208284031215610fcf57600080fd5b5035919050565b600080600060608486031215610feb57600080fd5b610ff484610f20565b92506020840135801515811461100957600080fd5b929592945050506040919091013590565b6000806040838503121561102d57600080fd5b61103683610f20565b915061104460208401610f20565b90509250929050565b600181811c9082168061106157607f821691505b6020821081141561108257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156110e6576110e66110bd565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611185576111856110bd565b500390565b60008160001904831182151516156111a4576111a46110bd565b500290565b6000826111c657634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ac0e10f0ec0bf267ea55622554eab5801a9f7e2acaf66902b81834bbddba911164736f6c63430008090033

Deployed Bytecode Sourcemap

22279:2775:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5152:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7319:169;;;;;;;;;;-1:-1:-1;7319:169:0;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;7319:169:0;1053:187:1;6272:108:0;;;;;;;;;;-1:-1:-1;6360:12:0;;6272:108;;;1391:25:1;;;1379:2;1364:18;6272:108:0;1245:177:1;7970:355:0;;;;;;;;;;-1:-1:-1;7970:355:0;;;;;:::i;:::-;;:::i;6114:93::-;;;;;;;;;;-1:-1:-1;6114:93:0;;6197:2;1902:36:1;;1890:2;1875:18;6114:93:0;1760:184:1;8734:218:0;;;;;;;;;;-1:-1:-1;8734:218:0;;;;;:::i;:::-;;:::i;22359:28::-;;;;;;;;;;-1:-1:-1;22359:28:0;;;;-1:-1:-1;;;;;22359:28:0;;;;;;-1:-1:-1;;;;;2113:32:1;;;2095:51;;2083:2;2068:18;22359:28:0;1949:203:1;23869:125:0;;;;;;;;;;-1:-1:-1;23869:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;23958:28:0;23934:4;23958:28;;;:19;:28;;;;;;;;;23869:125;6443:127;;;;;;;;;;-1:-1:-1;6443:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;6544:18:0;6517:7;6544:18;;;;;;;;;;;;6443:127;19714:148;;;;;;;;;;;;;:::i;:::-;;23345:97;;;;;;;;;;-1:-1:-1;23345:97:0;;;;;:::i;:::-;;:::i;23250:83::-;;;;;;;;;;;;;:::i;22394:74::-;;;;;;;;;;-1:-1:-1;22394:74:0;;;;-1:-1:-1;;;;;22394:74:0;;;19043:79;;;;;;;;;;-1:-1:-1;19108:6:0;;-1:-1:-1;;;;;19108:6:0;19043:79;;5371:104;;;;;;;;;;;;;:::i;9455:269::-;;;;;;;;;;-1:-1:-1;9455:269:0;;;;;:::i;:::-;;:::i;6783:175::-;;;;;;;;;;-1:-1:-1;6783:175:0;;;;;:::i;:::-;;:::i;22475:64::-;;;;;;;;;;-1:-1:-1;22475:64:0;;;;-1:-1:-1;;;;;22475:64:0;;;22548:33;;;;;;;;;;-1:-1:-1;22548:33:0;;;;-1:-1:-1;;;22548:33:0;;;;;;23563:295;;;;;;;;;;-1:-1:-1;23563:295:0;;;;;:::i;:::-;;:::i;7021:151::-;;;;;;;;;;-1:-1:-1;7021:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;7137:18:0;;;7110:7;7137:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7021:151;22627:27;;;;;;;;;;;;;;;;22594:26;;;;;;;;;;;;;;;;23454:101;;;;;;;;;;-1:-1:-1;23454:101:0;;;;;:::i;:::-;;:::i;20017:244::-;;;;;;;;;;-1:-1:-1;20017:244:0;;;;;:::i;:::-;;:::i;5152:100::-;5206:13;5239:5;5232:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5152:100;:::o;7319:169::-;7402:4;7419:39;844:10;7442:7;7451:6;7419:8;:39::i;:::-;-1:-1:-1;7476:4:0;7319:169;;;;;:::o;7970:355::-;8110:4;8127:36;8137:6;8145:9;8156:6;8127:9;:36::i;:::-;8174:121;8183:6;844:10;8205:89;8243:6;8205:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8205:19:0;;;;;;:11;:19;;;;;;;;844:10;8205:33;;;;;;;;;;:37;:89::i;:::-;8174:8;:121::i;:::-;-1:-1:-1;8313:4:0;7970:355;;;;;:::o;8734:218::-;844:10;8822:4;8871:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8871:34:0;;;;;;;;;;8822:4;;8839:83;;8862:7;;8871:50;;8910:10;8871:38;:50::i;19714:148::-;19255:6;;-1:-1:-1;;;;;19255:6:0;844:10;19255:22;;:51;;-1:-1:-1;19281:9:0;;-1:-1:-1;;;;;19281:9:0;844:10;19281:25;19255:51;19247:96;;;;-1:-1:-1;;;19247:96:0;;;;;;;:::i;:::-;;;;;;;;;19805:6:::1;::::0;19784:40:::1;::::0;19821:1:::1;::::0;-1:-1:-1;;;;;19805:6:0::1;::::0;19784:40:::1;::::0;19821:1;;19784:40:::1;19835:6;:19:::0;;-1:-1:-1;;;;;;19835:19:0::1;::::0;;19714:148::o;23345:97::-;19255:6;;-1:-1:-1;;;;;19255:6:0;844:10;19255:22;;:51;;-1:-1:-1;19281:9:0;;-1:-1:-1;;;;;19281:9:0;844:10;19281:25;19255:51;19247:96;;;;-1:-1:-1;;;19247:96:0;;;;;;;:::i;:::-;23416:7:::1;:18:::0;23345:97::o;23250:83::-;19255:6;;-1:-1:-1;;;;;19255:6:0;844:10;19255:22;;:51;;-1:-1:-1;19281:9:0;;-1:-1:-1;;;;;19281:9:0;844:10;19281:25;19255:51;19247:96;;;;-1:-1:-1;;;19247:96:0;;;;;;;:::i;:::-;23305:13:::1;:20:::0;;-1:-1:-1;;;;23305:20:0::1;-1:-1:-1::0;;;23305:20:0::1;::::0;;23250:83::o;5371:104::-;5427:13;5460:7;5453:14;;;;;:::i;9455:269::-;9548:4;9565:129;844:10;9588:7;9597:96;9636:15;9597:96;;;;;;;;;;;;;;;;;844:10;9597:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9597:34:0;;;;;;;;;;;;:38;:96::i;6783:175::-;6869:4;6886:42;844:10;6910:9;6921:6;6886:9;:42::i;23563:295::-;19255:6;;-1:-1:-1;;;;;19255:6:0;844:10;19255:22;;:51;;-1:-1:-1;19281:9:0;;-1:-1:-1;;;;;19281:9:0;844:10;19281:25;19255:51;19247:96;;;;-1:-1:-1;;;19247:96:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23664:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;-1:-1:-1;;23664:39:0::1;::::0;::::1;;;::::0;;23718:10;;23714:87:::1;;23745:44;23761:7;23770:10;23782:6;23745:15;:44::i;:::-;23832:7;-1:-1:-1::0;;;;;23816:34:0::1;;23841:8;23816:34;;;;1218:14:1::0;1211:22;1193:41;;1181:2;1166:18;;1053:187;23816:34:0::1;;;;;;;;23563:295:::0;;;:::o;23454:101::-;19255:6;;-1:-1:-1;;;;;19255:6:0;844:10;19255:22;;:51;;-1:-1:-1;19281:9:0;;-1:-1:-1;;;;;19281:9:0;844:10;19281:25;19255:51;19247:96;;;;-1:-1:-1;;;19247:96:0;;;;;;;:::i;:::-;23527:8:::1;:20:::0;23454:101::o;20017:244::-;19255:6;;-1:-1:-1;;;;;19255:6:0;844:10;19255:22;;:51;;-1:-1:-1;19281:9:0;;-1:-1:-1;;;;;19281:9:0;844:10;19281:25;19255:51;19247:96;;;;-1:-1:-1;;;19247:96:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20106:22:0;::::1;20098:73;;;::::0;-1:-1:-1;;;20098:73:0;;4166:2:1;20098:73:0::1;::::0;::::1;4148:21:1::0;4205:2;4185:18;;;4178:30;4244:34;4224:18;;;4217:62;-1:-1:-1;;;4295:18:1;;;4288:36;4341:19;;20098:73:0::1;3964:402:1::0;20098:73:0::1;20208:6;::::0;20187:38:::1;::::0;-1:-1:-1;;;;;20187:38:0;;::::1;::::0;20208:6:::1;::::0;20187:38:::1;::::0;20208:6:::1;::::0;20187:38:::1;20236:6;:17:::0;;-1:-1:-1;;;;;;20236:17:0::1;-1:-1:-1::0;;;;;20236:17:0;;;::::1;::::0;;;::::1;::::0;;20017:244::o;14019:181::-;14077:7;;14109:5;14113:1;14109;:5;:::i;:::-;14097:17;;14138:1;14133;:6;;14125:46;;;;-1:-1:-1;;;14125:46:0;;4838:2:1;14125:46:0;;;4820:21:1;4877:2;4857:18;;;4850:30;4916:29;4896:18;;;4889:57;4963:18;;14125:46:0;4636:351:1;14125:46:0;14191:1;14019:181;-1:-1:-1;;;14019:181:0:o;10214:573::-;-1:-1:-1;;;;;10354:20:0;;10346:70;;;;-1:-1:-1;;;10346:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10435:23:0;;10427:71;;;;-1:-1:-1;;;10427:71:0;;;;;;;:::i;:::-;10591;10613:6;10591:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10591:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;10571:17:0;;;:9;:17;;;;;;;;;;;:91;;;;10696:20;;;;;;;:32;;10721:6;10696:24;:32::i;:::-;-1:-1:-1;;;;;10673:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;10744:35;1391:25:1;;;10673:20:0;;10744:35;;;;;;1364:18:1;10744:35:0;;;;;;;;10214:573;;;:::o;14922:192::-;15008:7;15044:12;15036:6;;;;15028:29;;;;-1:-1:-1;;;15028:29:0;;;;;;;;:::i;:::-;-1:-1:-1;15068:9:0;15080:5;15084:1;15080;:5;:::i;:::-;15068:17;14922:192;-1:-1:-1;;;;;14922:192:0:o;12641:380::-;-1:-1:-1;;;;;12777:19:0;;12769:68;;;;-1:-1:-1;;;12769:68:0;;6134:2:1;12769:68:0;;;6116:21:1;6173:2;6153:18;;;6146:30;6212:34;6192:18;;;6185:62;-1:-1:-1;;;6263:18:1;;;6256:34;6307:19;;12769:68:0;5932:400:1;12769:68:0;-1:-1:-1;;;;;12856:21:0;;12848:68;;;;-1:-1:-1;;;12848:68:0;;6539:2:1;12848:68:0;;;6521:21:1;6578:2;6558:18;;;6551:30;6617:34;6597:18;;;6590:62;-1:-1:-1;;;6668:18:1;;;6661:32;6710:19;;12848:68:0;6337:398:1;12848:68:0;-1:-1:-1;;;;;12929:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;12981:32;;1391:25:1;;;12981:32:0;;1364:18:1;12981:32:0;1245:177:1;24006:1045:0;-1:-1:-1;;;;;24138:18:0;;24130:68;;;;-1:-1:-1;;;24130:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24217:16:0;;24209:64;;;;-1:-1:-1;;;24209:64:0;;;;;;;:::i;:::-;24298:11;24295:49;;24006:1045;;;:::o;24295:49::-;-1:-1:-1;;;;;24407:25:0;;24372:12;24407:25;;;:19;:25;;;;;;24387:4;;24407:25;;;:52;;-1:-1:-1;;;;;;24436:23:0;;;;;;:19;:23;;;;;;;;24407:52;24404:99;;;-1:-1:-1;24486:5:0;24404:99;24515:12;24545:7;24542:414;;;24590:13;;-1:-1:-1;;;;;24584:19:0;;;24590:13;;24584:19;24580:207;;;24630:29;24655:3;24630:20;24641:8;;24630:6;:10;;:20;;;;:::i;:::-;:24;;:29::i;:::-;24623:36;;24580:207;;;24705:13;;-1:-1:-1;;;;;24697:21:0;;;24705:13;;24697:21;24694:93;;;24743:28;24767:3;24743:19;24754:7;;24743:6;:10;;:19;;;;:::i;:28::-;24736:35;;24694:93;24818:8;;24815:93;;24850:42;24866:4;24880;24887;24850:15;:42::i;:::-;24930:14;24940:4;24930:14;;:::i;:::-;;;24542:414;24972:10;;24968:76;;24999:33;25015:4;25021:2;25025:6;24999:15;:33::i;:::-;24119:932;;24006:1045;;;:::o;15373:471::-;15431:7;15676:6;15672:47;;-1:-1:-1;15706:1:0;15699:8;;15672:47;15731:9;15743:5;15747:1;15743;:5;:::i;:::-;15731:17;-1:-1:-1;15776:1:0;15767:5;15771:1;15731:17;15767:5;:::i;:::-;:10;15759:56;;;;-1:-1:-1;;;15759:56:0;;7337:2:1;15759:56:0;;;7319:21:1;7376:2;7356:18;;;7349:30;7415:34;7395:18;;;7388:62;-1:-1:-1;;;7466:18:1;;;7459:31;7507:19;;15759:56:0;7135:397:1;16320:132:0;16378:7;16405:39;16409:1;16412;16405:39;;;;;;;;;;;;;;;;;17034:7;17069:12;17062:5;17054:28;;;;-1:-1:-1;;;17054:28:0;;;;;;;;:::i;:::-;-1:-1:-1;17093:9:0;17105:5;17109:1;17105;: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:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;2157:186::-;2216:6;2269:2;2257:9;2248:7;2244:23;2240:32;2237:52;;;2285:1;2282;2275:12;2237:52;2308:29;2327:9;2308:29;:::i;2348:180::-;2407:6;2460:2;2448:9;2439:7;2435:23;2431:32;2428:52;;;2476:1;2473;2466:12;2428:52;-1:-1:-1;2499:23:1;;2348:180;-1:-1:-1;2348:180:1:o;2533:415::-;2607:6;2615;2623;2676:2;2664:9;2655:7;2651:23;2647:32;2644:52;;;2692:1;2689;2682:12;2644:52;2715:29;2734:9;2715:29;:::i;:::-;2705:39;;2794:2;2783:9;2779:18;2766:32;2841:5;2834:13;2827:21;2820:5;2817:32;2807:60;;2863:1;2860;2853:12;2807:60;2533:415;;2886:5;;-1:-1:-1;;;2938:2:1;2923:18;;;;2910:32;;2533:415::o;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;4371:127::-;4432:10;4427:3;4423:20;4420:1;4413:31;4463:4;4460:1;4453:15;4487:4;4484:1;4477:15;4503:128;4543:3;4574:1;4570:6;4567:1;4564:13;4561:39;;;4580:18;;:::i;:::-;-1:-1:-1;4616:9:1;;4503:128::o;4992:401::-;5194:2;5176:21;;;5233:2;5213:18;;;5206:30;5272:34;5267:2;5252:18;;5245:62;-1:-1:-1;;;5338:2:1;5323:18;;5316:35;5383:3;5368:19;;4992:401::o;5398:399::-;5600:2;5582:21;;;5639:2;5619:18;;;5612:30;5678:34;5673:2;5658:18;;5651:62;-1:-1:-1;;;5744:2:1;5729:18;;5722:33;5787:3;5772:19;;5398:399::o;5802:125::-;5842:4;5870:1;5867;5864:8;5861:34;;;5875:18;;:::i;:::-;-1:-1:-1;5912:9:1;;5802:125::o;6740:168::-;6780:7;6846:1;6842;6838:6;6834:14;6831:1;6828:21;6823:1;6816:9;6809:17;6805:45;6802:71;;;6853:18;;:::i;:::-;-1:-1:-1;6893:9:1;;6740:168::o;6913:217::-;6953:1;6979;6969:132;;7023:10;7018:3;7014:20;7011:1;7004:31;7058:4;7055:1;7048:15;7086:4;7083:1;7076:15;6969:132;-1:-1:-1;7115:9:1;;6913:217::o

Swarm Source

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