ETH Price: $3,882.93 (+5.96%)

Token

ERC-20: JustAnEgg (EGG)
 

Overview

Max Total Supply

399,399,399,399 EGG

Holders

80

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,954,054,053.07 EGG

Value
$0.00
0x444444d578f8C74519b81672031BFA1654f7b4DB
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:
JustAnEgg

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: contracts/JustAnEgg.sol



pragma solidity ^0.8.4;




contract JustAnEgg is 
ERC20, Ownable {
    uint256 public constant decimalFactor = 1e18;
    uint256 public maxBuy;
    uint256 public maxAmount;
    uint256 public immutable tax; 
    bool public isMaxBuy;
    bool public isMaxAmount;
    address public immutable taxWallet;
    address private weth = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
    address public uniswapV2Pair;
    mapping(address => bool) public bots;

    constructor(uint256 _totalSupply, uint256 _tax, address _taxWallet) ERC20("JustAnEgg", "EGG") {
        _mint(msg.sender, _totalSupply);
        tax = _tax; 
        taxWallet = _taxWallet;
    }

    function antiBot(address _account, bool _state) external onlyOwner {
        bots[_account] = _state;
    }

   

    function setRule(address _uniswapV2Pair, uint256 _maxAmount, uint256 _maxBuy, bool _isMaxBuy, bool _isMaxAmount) external onlyOwner {
        isMaxBuy = _isMaxBuy;
        isMaxAmount = _isMaxAmount;
        maxAmount = _maxAmount;
        maxBuy = _maxBuy;
        uniswapV2Pair = _uniswapV2Pair;
    }


    function _convertMaxBuyInAmount() internal view  returns (uint256){
        uint256 _balance0 = IERC20(weth).balanceOf(uniswapV2Pair);
        uint256 _balance1 = IERC20(address(this)).balanceOf(uniswapV2Pair);
        return (maxBuy * _balance1 ) / _balance0;
    }

    function _getFee(uint256 _amount) internal view returns (uint256){
        
        return (tax * _amount * 1e16 ) / decimalFactor;
    }

    function _transfer(address from, address to, uint256 amount) internal override {
    
        if ((((from != address(0)) && (from == uniswapV2Pair))) || (((to != address(0)) && (to == uniswapV2Pair)))) {
                uint256 tax_ = _getFee(amount);
                super._transfer(from, taxWallet, tax_);
                amount = amount - tax_ ;
        }
           
        super._transfer(from, to, amount);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        require(!bots[to] && !bots[from], "antiBot");

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (isMaxAmount && (from == uniswapV2Pair)) {
            require(super.balanceOf(to) + amount <= maxAmount);
        }

        if (isMaxBuy && (from == uniswapV2Pair)) {
            require(super.balanceOf(to) + amount <= _convertMaxBuyInAmount());
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"uint256","name":"_tax","type":"uint256"},{"internalType":"address","name":"_taxWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"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":[{"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":"_account","type":"address"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"antiBot","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimalFactor","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isMaxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMaxBuy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxAmount","type":"uint256"},{"internalType":"uint256","name":"_maxBuy","type":"uint256"},{"internalType":"bool","name":"_isMaxBuy","type":"bool"},{"internalType":"bool","name":"_isMaxAmount","type":"bool"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60c060405273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2600860026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b50604051620037013803806200370183398181016040528101906200008c9190620009e0565b6040518060400160405280600981526020017f4a757374416e45676700000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4547470000000000000000000000000000000000000000000000000000000000815250816003908162000109919062000cac565b5080600490816200011b919062000cac565b5050506200013e620001326200019560201b60201c565b6200019d60201b60201c565b6200015033846200026360201b60201c565b81608081815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050505050620010a4565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002d5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002cc9062000df4565b60405180910390fd5b620002e960008383620003d060201b60201c565b8060026000828254620002fd919062000e45565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003b0919062000e91565b60405180910390a3620003cc600083836200073360201b60201c565b5050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620004755750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b620004b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ae9062000efe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603620005da576200051e6200073860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620005925750620005636200073860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b620005d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005cb9062000f70565b60405180910390fd5b6200072e565b600860019054906101000a900460ff168015620006445750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156200067d576007548162000664846200076260201b6200079f1760201c565b62000670919062000e45565b11156200067c57600080fd5b5b600860009054906101000a900460ff168015620006e75750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156200072d57620006fd620007aa60201b60201c565b8162000714846200076260201b6200079f1760201c565b62000720919062000e45565b11156200072c57600080fd5b5b5b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016200082c919062000fa3565b602060405180830381865afa1580156200084a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000870919062000fc0565b905060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401620008d1919062000fa3565b602060405180830381865afa158015620008ef573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000915919062000fc0565b9050818160065462000928919062000ff2565b6200093491906200106c565b9250505090565b600080fd5b6000819050919050565b620009558162000940565b81146200096157600080fd5b50565b60008151905062000975816200094a565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009a8826200097b565b9050919050565b620009ba816200099b565b8114620009c657600080fd5b50565b600081519050620009da81620009af565b92915050565b600080600060608486031215620009fc57620009fb6200093b565b5b600062000a0c8682870162000964565b935050602062000a1f8682870162000964565b925050604062000a3286828701620009c9565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000abe57607f821691505b60208210810362000ad45762000ad362000a76565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b3e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000aff565b62000b4a868362000aff565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000b8d62000b8762000b818462000940565b62000b62565b62000940565b9050919050565b6000819050919050565b62000ba98362000b6c565b62000bc162000bb88262000b94565b84845462000b0c565b825550505050565b600090565b62000bd862000bc9565b62000be581848462000b9e565b505050565b5b8181101562000c0d5762000c0160008262000bce565b60018101905062000beb565b5050565b601f82111562000c5c5762000c268162000ada565b62000c318462000aef565b8101602085101562000c41578190505b62000c5962000c508562000aef565b83018262000bea565b50505b505050565b600082821c905092915050565b600062000c816000198460080262000c61565b1980831691505092915050565b600062000c9c838362000c6e565b9150826002028217905092915050565b62000cb78262000a3c565b67ffffffffffffffff81111562000cd35762000cd262000a47565b5b62000cdf825462000aa5565b62000cec82828562000c11565b600060209050601f83116001811462000d24576000841562000d0f578287015190505b62000d1b858262000c8e565b86555062000d8b565b601f19841662000d348662000ada565b60005b8281101562000d5e5784890151825560018201915060208501945060208101905062000d37565b8683101562000d7e578489015162000d7a601f89168262000c6e565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ddc601f8362000d93565b915062000de98262000da4565b602082019050919050565b6000602082019050818103600083015262000e0f8162000dcd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e528262000940565b915062000e5f8362000940565b925082820190508082111562000e7a5762000e7962000e16565b5b92915050565b62000e8b8162000940565b82525050565b600060208201905062000ea8600083018462000e80565b92915050565b7f616e7469426f7400000000000000000000000000000000000000000000000000600082015250565b600062000ee660078362000d93565b915062000ef38262000eae565b602082019050919050565b6000602082019050818103600083015262000f198162000ed7565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600062000f5860168362000d93565b915062000f658262000f20565b602082019050919050565b6000602082019050818103600083015262000f8b8162000f49565b9050919050565b62000f9d816200099b565b82525050565b600060208201905062000fba600083018462000f92565b92915050565b60006020828403121562000fd95762000fd86200093b565b5b600062000fe98482850162000964565b91505092915050565b600062000fff8262000940565b91506200100c8362000940565b92508282026200101c8162000940565b9150828204841483151762001036576200103562000e16565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010798262000940565b9150620010868362000940565b9250826200109957620010986200103d565b5b828204905092915050565b60805160a051612629620010d8600039600081816106f80152610ed90152600081816108bf01526111c701526126296000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063a457c2d711610097578063dd62ed3e11610071578063dd62ed3e1461048b578063e701ac67146104bb578063f2fde38b146104d9578063fc78692f146104f55761018e565b8063a457c2d7146103fb578063a9059cbb1461042b578063bfd792841461045b5761018e565b806370a082311461034957806370db69d614610379578063715018a6146103975780638da5cb5b146103a157806395d89b41146103bf57806399c8d556146103dd5761018e565b80632dc0562d1161014b57806342966c681161012557806342966c68146102d357806349bd5a5e146102ef5780635f48f3931461030d5780636d6a6a4d1461032b5761018e565b80632dc0562d14610267578063313ce5671461028557806339509351146102a35761018e565b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101e15780631b52887a146101ff57806323b872dd1461021b5780632597e6e51461024b575b600080fd5b61019b610513565b6040516101a891906119b6565b60405180910390f35b6101cb60048036038101906101c69190611a71565b6105a5565b6040516101d89190611acc565b60405180910390f35b6101e96105c8565b6040516101f69190611af6565b60405180910390f35b61021960048036038101906102149190611b3d565b6105d2565b005b61023560048036038101906102309190611bb8565b610664565b6040516102429190611acc565b60405180910390f35b61026560048036038101906102609190611c0b565b610693565b005b61026f6106f6565b60405161027c9190611c5a565b60405180910390f35b61028d61071a565b60405161029a9190611c91565b60405180910390f35b6102bd60048036038101906102b89190611a71565b610723565b6040516102ca9190611acc565b60405180910390f35b6102ed60048036038101906102e89190611cac565b61075a565b005b6102f7610767565b6040516103049190611c5a565b60405180910390f35b61031561078d565b6040516103229190611af6565b60405180910390f35b610333610793565b6040516103409190611af6565b60405180910390f35b610363600480360381019061035e9190611cd9565b61079f565b6040516103709190611af6565b60405180910390f35b6103816107e7565b60405161038e9190611af6565b60405180910390f35b61039f6107ed565b005b6103a9610801565b6040516103b69190611c5a565b60405180910390f35b6103c761082b565b6040516103d491906119b6565b60405180910390f35b6103e56108bd565b6040516103f29190611af6565b60405180910390f35b61041560048036038101906104109190611a71565b6108e1565b6040516104229190611acc565b60405180910390f35b61044560048036038101906104409190611a71565b610958565b6040516104529190611acc565b60405180910390f35b61047560048036038101906104709190611cd9565b61097b565b6040516104829190611acc565b60405180910390f35b6104a560048036038101906104a09190611d06565b61099b565b6040516104b29190611af6565b60405180910390f35b6104c3610a22565b6040516104d09190611acc565b60405180910390f35b6104f360048036038101906104ee9190611cd9565b610a35565b005b6104fd610ab8565b60405161050a9190611acc565b60405180910390f35b60606003805461052290611d75565b80601f016020809104026020016040519081016040528092919081815260200182805461054e90611d75565b801561059b5780601f106105705761010080835404028352916020019161059b565b820191906000526020600020905b81548152906001019060200180831161057e57829003601f168201915b5050505050905090565b6000806105b0610acb565b90506105bd818585610ad3565b600191505092915050565b6000600254905090565b6105da610c9c565b81600860006101000a81548160ff02191690831515021790555080600860016101000a81548160ff021916908315150217905550836007819055508260068190555084600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050565b60008061066f610acb565b905061067c858285610d1a565b610687858585610da6565b60019150509392505050565b61069b610c9c565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006012905090565b60008061072e610acb565b905061074f818585610740858961099b565b61074a9190611dd5565b610ad3565b600191505092915050565b6107643382610f1e565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b670de0b6b3a764000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60065481565b6107f5610c9c565b6107ff60006110eb565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461083a90611d75565b80601f016020809104026020016040519081016040528092919081815260200182805461086690611d75565b80156108b35780601f10610888576101008083540402835291602001916108b3565b820191906000526020600020905b81548152906001019060200180831161089657829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000806108ec610acb565b905060006108fa828661099b565b90508381101561093f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093690611e7b565b60405180910390fd5b61094c8286868403610ad3565b60019250505092915050565b600080610963610acb565b9050610970818585610da6565b600191505092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600860019054906101000a900460ff1681565b610a3d610c9c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa390611f0d565b60405180910390fd5b610ab5816110eb565b50565b600860009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990611f9f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba890612031565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c8f9190611af6565b60405180910390a3505050565b610ca4610acb565b73ffffffffffffffffffffffffffffffffffffffff16610cc2610801565b73ffffffffffffffffffffffffffffffffffffffff1614610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f9061209d565b60405180910390fd5b565b6000610d26848461099b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610da05781811015610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990612109565b60405180910390fd5b610d9f8484848403610ad3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610e305750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80610ec15750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015610ec05750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b15610f0e576000610ed1826111b1565b9050610efe847f00000000000000000000000000000000000000000000000000000000000000008361120b565b8082610f0a9190612129565b9150505b610f1983838361120b565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f84906121cf565b60405180910390fd5b610f9982600083611481565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561101f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101690612261565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110d29190611af6565b60405180910390a36110e68360008461179e565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000670de0b6b3a7640000662386f26fc10000837f00000000000000000000000000000000000000000000000000000000000000006111f09190612281565b6111fa9190612281565b61120491906122f2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190612395565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e090612427565b60405180910390fd5b6112f4838383611481565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561137a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611371906124b9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114689190611af6565b60405180910390a361147b84848461179e565b50505050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156115255750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90612525565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611671576115c2610801565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061162d57506115fe610801565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61166c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166390612591565b60405180910390fd5b611799565b600860019054906101000a900460ff1680156116da5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561170257600754816116ec8461079f565b6116f69190611dd5565b111561170157600080fd5b5b600860009054906101000a900460ff16801561176b5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611798576117786117a3565b816117828461079f565b61178c9190611dd5565b111561179757600080fd5b5b5b505050565b505050565b600080600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016118239190611c5a565b602060405180830381865afa158015611840573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186491906125c6565b905060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016118c39190611c5a565b602060405180830381865afa1580156118e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061190491906125c6565b905081816006546119159190612281565b61191f91906122f2565b9250505090565b600081519050919050565b600082825260208201905092915050565b60005b83811015611960578082015181840152602081019050611945565b60008484015250505050565b6000601f19601f8301169050919050565b600061198882611926565b6119928185611931565b93506119a2818560208601611942565b6119ab8161196c565b840191505092915050565b600060208201905081810360008301526119d0818461197d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a08826119dd565b9050919050565b611a18816119fd565b8114611a2357600080fd5b50565b600081359050611a3581611a0f565b92915050565b6000819050919050565b611a4e81611a3b565b8114611a5957600080fd5b50565b600081359050611a6b81611a45565b92915050565b60008060408385031215611a8857611a876119d8565b5b6000611a9685828601611a26565b9250506020611aa785828601611a5c565b9150509250929050565b60008115159050919050565b611ac681611ab1565b82525050565b6000602082019050611ae16000830184611abd565b92915050565b611af081611a3b565b82525050565b6000602082019050611b0b6000830184611ae7565b92915050565b611b1a81611ab1565b8114611b2557600080fd5b50565b600081359050611b3781611b11565b92915050565b600080600080600060a08688031215611b5957611b586119d8565b5b6000611b6788828901611a26565b9550506020611b7888828901611a5c565b9450506040611b8988828901611a5c565b9350506060611b9a88828901611b28565b9250506080611bab88828901611b28565b9150509295509295909350565b600080600060608486031215611bd157611bd06119d8565b5b6000611bdf86828701611a26565b9350506020611bf086828701611a26565b9250506040611c0186828701611a5c565b9150509250925092565b60008060408385031215611c2257611c216119d8565b5b6000611c3085828601611a26565b9250506020611c4185828601611b28565b9150509250929050565b611c54816119fd565b82525050565b6000602082019050611c6f6000830184611c4b565b92915050565b600060ff82169050919050565b611c8b81611c75565b82525050565b6000602082019050611ca66000830184611c82565b92915050565b600060208284031215611cc257611cc16119d8565b5b6000611cd084828501611a5c565b91505092915050565b600060208284031215611cef57611cee6119d8565b5b6000611cfd84828501611a26565b91505092915050565b60008060408385031215611d1d57611d1c6119d8565b5b6000611d2b85828601611a26565b9250506020611d3c85828601611a26565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611d8d57607f821691505b602082108103611da057611d9f611d46565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611de082611a3b565b9150611deb83611a3b565b9250828201905080821115611e0357611e02611da6565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e65602583611931565b9150611e7082611e09565b604082019050919050565b60006020820190508181036000830152611e9481611e58565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ef7602683611931565b9150611f0282611e9b565b604082019050919050565b60006020820190508181036000830152611f2681611eea565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611f89602483611931565b9150611f9482611f2d565b604082019050919050565b60006020820190508181036000830152611fb881611f7c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061201b602283611931565b915061202682611fbf565b604082019050919050565b6000602082019050818103600083015261204a8161200e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612087602083611931565b915061209282612051565b602082019050919050565b600060208201905081810360008301526120b68161207a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006120f3601d83611931565b91506120fe826120bd565b602082019050919050565b60006020820190508181036000830152612122816120e6565b9050919050565b600061213482611a3b565b915061213f83611a3b565b925082820390508181111561215757612156611da6565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006121b9602183611931565b91506121c48261215d565b604082019050919050565b600060208201905081810360008301526121e8816121ac565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061224b602283611931565b9150612256826121ef565b604082019050919050565b6000602082019050818103600083015261227a8161223e565b9050919050565b600061228c82611a3b565b915061229783611a3b565b92508282026122a581611a3b565b915082820484148315176122bc576122bb611da6565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006122fd82611a3b565b915061230883611a3b565b925082612318576123176122c3565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061237f602583611931565b915061238a82612323565b604082019050919050565b600060208201905081810360008301526123ae81612372565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612411602383611931565b915061241c826123b5565b604082019050919050565b6000602082019050818103600083015261244081612404565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006124a3602683611931565b91506124ae82612447565b604082019050919050565b600060208201905081810360008301526124d281612496565b9050919050565b7f616e7469426f7400000000000000000000000000000000000000000000000000600082015250565b600061250f600783611931565b915061251a826124d9565b602082019050919050565b6000602082019050818103600083015261253e81612502565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600061257b601683611931565b915061258682612545565b602082019050919050565b600060208201905081810360008301526125aa8161256e565b9050919050565b6000815190506125c081611a45565b92915050565b6000602082840312156125dc576125db6119d8565b5b60006125ea848285016125b1565b9150509291505056fea2646970667358221220e4a6ebf6f39db499444c2f3b26effacb44d959f6f66bdfd468fe246b78e46c8f64736f6c6343000812003300000000000000000000000000000000000000050a877099e3dbdeb3673c00000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dabdeb48db17347a7e1e2205f1b54e52fd2d6161

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063a457c2d711610097578063dd62ed3e11610071578063dd62ed3e1461048b578063e701ac67146104bb578063f2fde38b146104d9578063fc78692f146104f55761018e565b8063a457c2d7146103fb578063a9059cbb1461042b578063bfd792841461045b5761018e565b806370a082311461034957806370db69d614610379578063715018a6146103975780638da5cb5b146103a157806395d89b41146103bf57806399c8d556146103dd5761018e565b80632dc0562d1161014b57806342966c681161012557806342966c68146102d357806349bd5a5e146102ef5780635f48f3931461030d5780636d6a6a4d1461032b5761018e565b80632dc0562d14610267578063313ce5671461028557806339509351146102a35761018e565b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101e15780631b52887a146101ff57806323b872dd1461021b5780632597e6e51461024b575b600080fd5b61019b610513565b6040516101a891906119b6565b60405180910390f35b6101cb60048036038101906101c69190611a71565b6105a5565b6040516101d89190611acc565b60405180910390f35b6101e96105c8565b6040516101f69190611af6565b60405180910390f35b61021960048036038101906102149190611b3d565b6105d2565b005b61023560048036038101906102309190611bb8565b610664565b6040516102429190611acc565b60405180910390f35b61026560048036038101906102609190611c0b565b610693565b005b61026f6106f6565b60405161027c9190611c5a565b60405180910390f35b61028d61071a565b60405161029a9190611c91565b60405180910390f35b6102bd60048036038101906102b89190611a71565b610723565b6040516102ca9190611acc565b60405180910390f35b6102ed60048036038101906102e89190611cac565b61075a565b005b6102f7610767565b6040516103049190611c5a565b60405180910390f35b61031561078d565b6040516103229190611af6565b60405180910390f35b610333610793565b6040516103409190611af6565b60405180910390f35b610363600480360381019061035e9190611cd9565b61079f565b6040516103709190611af6565b60405180910390f35b6103816107e7565b60405161038e9190611af6565b60405180910390f35b61039f6107ed565b005b6103a9610801565b6040516103b69190611c5a565b60405180910390f35b6103c761082b565b6040516103d491906119b6565b60405180910390f35b6103e56108bd565b6040516103f29190611af6565b60405180910390f35b61041560048036038101906104109190611a71565b6108e1565b6040516104229190611acc565b60405180910390f35b61044560048036038101906104409190611a71565b610958565b6040516104529190611acc565b60405180910390f35b61047560048036038101906104709190611cd9565b61097b565b6040516104829190611acc565b60405180910390f35b6104a560048036038101906104a09190611d06565b61099b565b6040516104b29190611af6565b60405180910390f35b6104c3610a22565b6040516104d09190611acc565b60405180910390f35b6104f360048036038101906104ee9190611cd9565b610a35565b005b6104fd610ab8565b60405161050a9190611acc565b60405180910390f35b60606003805461052290611d75565b80601f016020809104026020016040519081016040528092919081815260200182805461054e90611d75565b801561059b5780601f106105705761010080835404028352916020019161059b565b820191906000526020600020905b81548152906001019060200180831161057e57829003601f168201915b5050505050905090565b6000806105b0610acb565b90506105bd818585610ad3565b600191505092915050565b6000600254905090565b6105da610c9c565b81600860006101000a81548160ff02191690831515021790555080600860016101000a81548160ff021916908315150217905550836007819055508260068190555084600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050565b60008061066f610acb565b905061067c858285610d1a565b610687858585610da6565b60019150509392505050565b61069b610c9c565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b7f000000000000000000000000dabdeb48db17347a7e1e2205f1b54e52fd2d616181565b60006012905090565b60008061072e610acb565b905061074f818585610740858961099b565b61074a9190611dd5565b610ad3565b600191505092915050565b6107643382610f1e565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b670de0b6b3a764000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60065481565b6107f5610c9c565b6107ff60006110eb565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461083a90611d75565b80601f016020809104026020016040519081016040528092919081815260200182805461086690611d75565b80156108b35780601f10610888576101008083540402835291602001916108b3565b820191906000526020600020905b81548152906001019060200180831161089657829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000181565b6000806108ec610acb565b905060006108fa828661099b565b90508381101561093f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093690611e7b565b60405180910390fd5b61094c8286868403610ad3565b60019250505092915050565b600080610963610acb565b9050610970818585610da6565b600191505092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600860019054906101000a900460ff1681565b610a3d610c9c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa390611f0d565b60405180910390fd5b610ab5816110eb565b50565b600860009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990611f9f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba890612031565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c8f9190611af6565b60405180910390a3505050565b610ca4610acb565b73ffffffffffffffffffffffffffffffffffffffff16610cc2610801565b73ffffffffffffffffffffffffffffffffffffffff1614610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f9061209d565b60405180910390fd5b565b6000610d26848461099b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610da05781811015610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990612109565b60405180910390fd5b610d9f8484848403610ad3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610e305750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80610ec15750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015610ec05750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b15610f0e576000610ed1826111b1565b9050610efe847f000000000000000000000000dabdeb48db17347a7e1e2205f1b54e52fd2d61618361120b565b8082610f0a9190612129565b9150505b610f1983838361120b565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f84906121cf565b60405180910390fd5b610f9982600083611481565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561101f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101690612261565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110d29190611af6565b60405180910390a36110e68360008461179e565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000670de0b6b3a7640000662386f26fc10000837f00000000000000000000000000000000000000000000000000000000000000016111f09190612281565b6111fa9190612281565b61120491906122f2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190612395565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e090612427565b60405180910390fd5b6112f4838383611481565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561137a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611371906124b9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114689190611af6565b60405180910390a361147b84848461179e565b50505050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156115255750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90612525565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611671576115c2610801565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061162d57506115fe610801565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61166c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166390612591565b60405180910390fd5b611799565b600860019054906101000a900460ff1680156116da5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561170257600754816116ec8461079f565b6116f69190611dd5565b111561170157600080fd5b5b600860009054906101000a900460ff16801561176b5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611798576117786117a3565b816117828461079f565b61178c9190611dd5565b111561179757600080fd5b5b5b505050565b505050565b600080600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016118239190611c5a565b602060405180830381865afa158015611840573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186491906125c6565b905060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016118c39190611c5a565b602060405180830381865afa1580156118e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061190491906125c6565b905081816006546119159190612281565b61191f91906122f2565b9250505090565b600081519050919050565b600082825260208201905092915050565b60005b83811015611960578082015181840152602081019050611945565b60008484015250505050565b6000601f19601f8301169050919050565b600061198882611926565b6119928185611931565b93506119a2818560208601611942565b6119ab8161196c565b840191505092915050565b600060208201905081810360008301526119d0818461197d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a08826119dd565b9050919050565b611a18816119fd565b8114611a2357600080fd5b50565b600081359050611a3581611a0f565b92915050565b6000819050919050565b611a4e81611a3b565b8114611a5957600080fd5b50565b600081359050611a6b81611a45565b92915050565b60008060408385031215611a8857611a876119d8565b5b6000611a9685828601611a26565b9250506020611aa785828601611a5c565b9150509250929050565b60008115159050919050565b611ac681611ab1565b82525050565b6000602082019050611ae16000830184611abd565b92915050565b611af081611a3b565b82525050565b6000602082019050611b0b6000830184611ae7565b92915050565b611b1a81611ab1565b8114611b2557600080fd5b50565b600081359050611b3781611b11565b92915050565b600080600080600060a08688031215611b5957611b586119d8565b5b6000611b6788828901611a26565b9550506020611b7888828901611a5c565b9450506040611b8988828901611a5c565b9350506060611b9a88828901611b28565b9250506080611bab88828901611b28565b9150509295509295909350565b600080600060608486031215611bd157611bd06119d8565b5b6000611bdf86828701611a26565b9350506020611bf086828701611a26565b9250506040611c0186828701611a5c565b9150509250925092565b60008060408385031215611c2257611c216119d8565b5b6000611c3085828601611a26565b9250506020611c4185828601611b28565b9150509250929050565b611c54816119fd565b82525050565b6000602082019050611c6f6000830184611c4b565b92915050565b600060ff82169050919050565b611c8b81611c75565b82525050565b6000602082019050611ca66000830184611c82565b92915050565b600060208284031215611cc257611cc16119d8565b5b6000611cd084828501611a5c565b91505092915050565b600060208284031215611cef57611cee6119d8565b5b6000611cfd84828501611a26565b91505092915050565b60008060408385031215611d1d57611d1c6119d8565b5b6000611d2b85828601611a26565b9250506020611d3c85828601611a26565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611d8d57607f821691505b602082108103611da057611d9f611d46565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611de082611a3b565b9150611deb83611a3b565b9250828201905080821115611e0357611e02611da6565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e65602583611931565b9150611e7082611e09565b604082019050919050565b60006020820190508181036000830152611e9481611e58565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ef7602683611931565b9150611f0282611e9b565b604082019050919050565b60006020820190508181036000830152611f2681611eea565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611f89602483611931565b9150611f9482611f2d565b604082019050919050565b60006020820190508181036000830152611fb881611f7c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061201b602283611931565b915061202682611fbf565b604082019050919050565b6000602082019050818103600083015261204a8161200e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612087602083611931565b915061209282612051565b602082019050919050565b600060208201905081810360008301526120b68161207a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006120f3601d83611931565b91506120fe826120bd565b602082019050919050565b60006020820190508181036000830152612122816120e6565b9050919050565b600061213482611a3b565b915061213f83611a3b565b925082820390508181111561215757612156611da6565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006121b9602183611931565b91506121c48261215d565b604082019050919050565b600060208201905081810360008301526121e8816121ac565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061224b602283611931565b9150612256826121ef565b604082019050919050565b6000602082019050818103600083015261227a8161223e565b9050919050565b600061228c82611a3b565b915061229783611a3b565b92508282026122a581611a3b565b915082820484148315176122bc576122bb611da6565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006122fd82611a3b565b915061230883611a3b565b925082612318576123176122c3565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061237f602583611931565b915061238a82612323565b604082019050919050565b600060208201905081810360008301526123ae81612372565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612411602383611931565b915061241c826123b5565b604082019050919050565b6000602082019050818103600083015261244081612404565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006124a3602683611931565b91506124ae82612447565b604082019050919050565b600060208201905081810360008301526124d281612496565b9050919050565b7f616e7469426f7400000000000000000000000000000000000000000000000000600082015250565b600061250f600783611931565b915061251a826124d9565b602082019050919050565b6000602082019050818103600083015261253e81612502565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600061257b601683611931565b915061258682612545565b602082019050919050565b600060208201905081810360008301526125aa8161256e565b9050919050565b6000815190506125c081611a45565b92915050565b6000602082840312156125dc576125db6119d8565b5b60006125ea848285016125b1565b9150509291505056fea2646970667358221220e4a6ebf6f39db499444c2f3b26effacb44d959f6f66bdfd468fe246b78e46c8f64736f6c63430008120033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000050a877099e3dbdeb3673c00000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dabdeb48db17347a7e1e2205f1b54e52fd2d6161

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 399399399399000000000000000000
Arg [1] : _tax (uint256): 1
Arg [2] : _taxWallet (address): 0xDabdeb48Db17347A7E1E2205f1B54E52fD2d6161

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000050a877099e3dbdeb3673c0000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [2] : 000000000000000000000000dabdeb48db17347a7e1e2205f1b54e52fd2d6161


Deployed Bytecode Sourcemap

20612:2679:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9351:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11702:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10471:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21385:309;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12483:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21261:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20861:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10313:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13187:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23207:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20974:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20737:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20658:44;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10642:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20709:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;:::i;:::-;;2128:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9570:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20768:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13928:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10975:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21009:36;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11231:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20831:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3034:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20804:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9351:100;9405:13;9438:5;9431:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9351:100;:::o;11702:201::-;11785:4;11802:13;11818:12;:10;:12::i;:::-;11802:28;;11841:32;11850:5;11857:7;11866:6;11841:8;:32::i;:::-;11891:4;11884:11;;;11702:201;;;;:::o;10471:108::-;10532:7;10559:12;;10552:19;;10471:108;:::o;21385:309::-;2014:13;:11;:13::i;:::-;21539:9:::1;21528:8;;:20;;;;;;;;;;;;;;;;;;21573:12;21559:11;;:26;;;;;;;;;;;;;;;;;;21608:10;21596:9;:22;;;;21638:7;21629:6;:16;;;;21672:14;21656:13;;:30;;;;;;;;;;;;;;;;;;21385:309:::0;;;;;:::o;12483:295::-;12614:4;12631:15;12649:12;:10;:12::i;:::-;12631:30;;12672:38;12688:4;12694:7;12703:6;12672:15;:38::i;:::-;12721:27;12731:4;12737:2;12741:6;12721:9;:27::i;:::-;12766:4;12759:11;;;12483:295;;;;;:::o;21261:109::-;2014:13;:11;:13::i;:::-;21356:6:::1;21339:4;:14;21344:8;21339:14;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;21261:109:::0;;:::o;20861:34::-;;;:::o;10313:93::-;10371:5;10396:2;10389:9;;10313:93;:::o;13187:238::-;13275:4;13292:13;13308:12;:10;:12::i;:::-;13292:28;;13331:64;13340:5;13347:7;13384:10;13356:25;13366:5;13373:7;13356:9;:25::i;:::-;:38;;;;:::i;:::-;13331:8;:64::i;:::-;13413:4;13406:11;;;13187:238;;;;:::o;23207:81::-;23256:24;23262:10;23274:5;23256;:24::i;:::-;23207:81;:::o;20974:28::-;;;;;;;;;;;;;:::o;20737:24::-;;;;:::o;20658:44::-;20698:4;20658:44;:::o;10642:127::-;10716:7;10743:9;:18;10753:7;10743:18;;;;;;;;;;;;;;;;10736:25;;10642:127;;;:::o;20709:21::-;;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;9570:104::-;9626:13;9659:7;9652:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9570:104;:::o;20768:28::-;;;:::o;13928:436::-;14021:4;14038:13;14054:12;:10;:12::i;:::-;14038:28;;14077:24;14104:25;14114:5;14121:7;14104:9;:25::i;:::-;14077:52;;14168:15;14148:16;:35;;14140:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14261:60;14270:5;14277:7;14305:15;14286:16;:34;14261:8;:60::i;:::-;14352:4;14345:11;;;;13928:436;;;;:::o;10975:193::-;11054:4;11071:13;11087:12;:10;:12::i;:::-;11071:28;;11110;11120:5;11127:2;11131:6;11110:9;:28::i;:::-;11156:4;11149:11;;;10975:193;;;;:::o;21009:36::-;;;;;;;;;;;;;;;;;;;;;;:::o;11231:151::-;11320:7;11347:11;:18;11359:5;11347:18;;;;;;;;;;;;;;;:27;11366:7;11347:27;;;;;;;;;;;;;;;;11340:34;;11231:151;;;;:::o;20831:23::-;;;;;;;;;;;;;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;::::0;3115:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;20804:20::-;;;;;;;;;;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;17955:380::-;18108:1;18091:19;;:5;:19;;;18083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18189:1;18170:21;;:7;:21;;;18162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18273:6;18243:11;:18;18255:5;18243:18;;;;;;;;;;;;;;;:27;18262:7;18243:27;;;;;;;;;;;;;;;:36;;;;18311:7;18295:32;;18304:5;18295:32;;;18320:6;18295:32;;;;;;:::i;:::-;;;;;;;;17955:380;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;18626:453::-;18761:24;18788:25;18798:5;18805:7;18788:9;:25::i;:::-;18761:52;;18848:17;18828:16;:37;18824:248;;18910:6;18890:16;:26;;18882:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18994:51;19003:5;19010:7;19038:6;19019:16;:25;18994:8;:51::i;:::-;18824:248;18750:329;18626:453;;;:::o;22130:428::-;22249:1;22233:18;;:4;:18;;;;22232:47;;;;;22265:13;;;;;;;;;;;22257:21;;:4;:21;;;22232:47;22230:102;;;;22302:1;22288:16;;:2;:16;;;;22287:43;;;;;22316:13;;;;;;;;;;;22310:19;;:2;:19;;;22287:43;22230:102;22226:268;;;22353:12;22368:15;22376:6;22368:7;:15::i;:::-;22353:30;;22402:38;22418:4;22424:9;22435:4;22402:15;:38::i;:::-;22477:4;22468:6;:13;;;;:::i;:::-;22459:22;;22334:160;22226:268;22517:33;22533:4;22539:2;22543:6;22517:15;:33::i;:::-;22130:428;;;:::o;16842:675::-;16945:1;16926:21;;:7;:21;;;16918:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16998:49;17019:7;17036:1;17040:6;16998:20;:49::i;:::-;17060:22;17085:9;:18;17095:7;17085:18;;;;;;;;;;;;;;;;17060:43;;17140:6;17122:14;:24;;17114:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17259:6;17242:14;:23;17221:9;:18;17231:7;17221:18;;;;;;;;;;;;;;;:44;;;;17376:6;17360:12;;:22;;;;;;;;;;;17437:1;17411:37;;17420:7;17411:37;;;17441:6;17411:37;;;;;;:::i;:::-;;;;;;;;17461:48;17481:7;17498:1;17502:6;17461:19;:48::i;:::-;16907:610;16842:675;;:::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;21982:140::-;22039:7;20698:4;22092;22082:7;22076:3;:13;;;;:::i;:::-;:20;;;;:::i;:::-;22075:39;;;;:::i;:::-;22068:46;;21982:140;;;:::o;14834:840::-;14981:1;14965:18;;:4;:18;;;14957:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15058:1;15044:16;;:2;:16;;;15036:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15113:38;15134:4;15140:2;15144:6;15113:20;:38::i;:::-;15164:19;15186:9;:15;15196:4;15186:15;;;;;;;;;;;;;;;;15164:37;;15235:6;15220:11;:21;;15212:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15352:6;15338:11;:20;15320:9;:15;15330:4;15320:15;;;;;;;;;;;;;;;:38;;;;15555:6;15538:9;:13;15548:2;15538:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15605:2;15590:26;;15599:4;15590:26;;;15609:6;15590:26;;;;;;:::i;:::-;;;;;;;;15629:37;15649:4;15655:2;15659:6;15629:19;:37::i;:::-;14946:728;14834:840;;;:::o;22566:633::-;22718:4;:8;22723:2;22718:8;;;;;;;;;;;;;;;;;;;;;;;;;22717:9;:24;;;;;22731:4;:10;22736:4;22731:10;;;;;;;;;;;;;;;;;;;;;;;;;22730:11;22717:24;22709:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;22795:1;22770:27;;:13;;;;;;;;;;;:27;;;22766:148;;22830:7;:5;:7::i;:::-;22822:15;;:4;:15;;;:32;;;;22847:7;:5;:7::i;:::-;22841:13;;:2;:13;;;22822:32;22814:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22896:7;;22766:148;22930:11;;;;;;;;;;;:38;;;;;22954:13;;;;;;;;;;;22946:21;;:4;:21;;;22930:38;22926:121;;;23025:9;;23015:6;22993:19;23009:2;22993:15;:19::i;:::-;:28;;;;:::i;:::-;:41;;22985:50;;;;;;22926:121;23063:8;;;;;;;;;;;:35;;;;;23084:13;;;;;;;;;;;23076:21;;:4;:21;;;23063:35;23059:133;;;23155:24;:22;:24::i;:::-;23145:6;23123:19;23139:2;23123:15;:19::i;:::-;:28;;;;:::i;:::-;:56;;23115:65;;;;;;23059:133;22566:633;;;;:::o;20408:124::-;;;;:::o;21704:270::-;21762:7;21781:17;21808:4;;;;;;;;;;;21801:22;;;21824:13;;;;;;;;;;;21801:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21781:57;;21849:17;21884:4;21869:31;;;21901:13;;;;;;;;;;;21869:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21849:66;;21957:9;21943;21934:6;;:18;;;;:::i;:::-;21933:33;;;;:::i;:::-;21926:40;;;;21704:270;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:116::-;3868:21;3883:5;3868:21;:::i;:::-;3861:5;3858:32;3848:60;;3904:1;3901;3894:12;3848:60;3798:116;:::o;3920:133::-;3963:5;4001:6;3988:20;3979:29;;4017:30;4041:5;4017:30;:::i;:::-;3920:133;;;;:::o;4059:899::-;4148:6;4156;4164;4172;4180;4229:3;4217:9;4208:7;4204:23;4200:33;4197:120;;;4236:79;;:::i;:::-;4197:120;4356:1;4381:53;4426:7;4417:6;4406:9;4402:22;4381:53;:::i;:::-;4371:63;;4327:117;4483:2;4509:53;4554:7;4545:6;4534:9;4530:22;4509:53;:::i;:::-;4499:63;;4454:118;4611:2;4637:53;4682:7;4673:6;4662:9;4658:22;4637:53;:::i;:::-;4627:63;;4582:118;4739:2;4765:50;4807:7;4798:6;4787:9;4783:22;4765:50;:::i;:::-;4755:60;;4710:115;4864:3;4891:50;4933:7;4924:6;4913:9;4909:22;4891:50;:::i;:::-;4881:60;;4835:116;4059:899;;;;;;;;:::o;4964:619::-;5041:6;5049;5057;5106:2;5094:9;5085:7;5081:23;5077:32;5074:119;;;5112:79;;:::i;:::-;5074:119;5232:1;5257:53;5302:7;5293:6;5282:9;5278:22;5257:53;:::i;:::-;5247:63;;5203:117;5359:2;5385:53;5430:7;5421:6;5410:9;5406:22;5385:53;:::i;:::-;5375:63;;5330:118;5487:2;5513:53;5558:7;5549:6;5538:9;5534:22;5513:53;:::i;:::-;5503:63;;5458:118;4964:619;;;;;:::o;5589:468::-;5654:6;5662;5711:2;5699:9;5690:7;5686:23;5682:32;5679:119;;;5717:79;;:::i;:::-;5679:119;5837:1;5862:53;5907:7;5898:6;5887:9;5883:22;5862:53;:::i;:::-;5852:63;;5808:117;5964:2;5990:50;6032:7;6023:6;6012:9;6008:22;5990:50;:::i;:::-;5980:60;;5935:115;5589:468;;;;;:::o;6063:118::-;6150:24;6168:5;6150:24;:::i;:::-;6145:3;6138:37;6063:118;;:::o;6187:222::-;6280:4;6318:2;6307:9;6303:18;6295:26;;6331:71;6399:1;6388:9;6384:17;6375:6;6331:71;:::i;:::-;6187:222;;;;:::o;6415:86::-;6450:7;6490:4;6483:5;6479:16;6468:27;;6415:86;;;:::o;6507:112::-;6590:22;6606:5;6590:22;:::i;:::-;6585:3;6578:35;6507:112;;:::o;6625:214::-;6714:4;6752:2;6741:9;6737:18;6729:26;;6765:67;6829:1;6818:9;6814:17;6805:6;6765:67;:::i;:::-;6625:214;;;;:::o;6845:329::-;6904:6;6953:2;6941:9;6932:7;6928:23;6924:32;6921:119;;;6959:79;;:::i;:::-;6921:119;7079:1;7104:53;7149:7;7140:6;7129:9;7125:22;7104:53;:::i;:::-;7094:63;;7050:117;6845:329;;;;:::o;7180:::-;7239:6;7288:2;7276:9;7267:7;7263:23;7259:32;7256:119;;;7294:79;;:::i;:::-;7256:119;7414:1;7439:53;7484:7;7475:6;7464:9;7460:22;7439:53;:::i;:::-;7429:63;;7385:117;7180:329;;;;:::o;7515:474::-;7583:6;7591;7640:2;7628:9;7619:7;7615:23;7611:32;7608:119;;;7646:79;;:::i;:::-;7608:119;7766:1;7791:53;7836:7;7827:6;7816:9;7812:22;7791:53;:::i;:::-;7781:63;;7737:117;7893:2;7919:53;7964:7;7955:6;7944:9;7940:22;7919:53;:::i;:::-;7909:63;;7864:118;7515:474;;;;;:::o;7995:180::-;8043:77;8040:1;8033:88;8140:4;8137:1;8130:15;8164:4;8161:1;8154:15;8181:320;8225:6;8262:1;8256:4;8252:12;8242:22;;8309:1;8303:4;8299:12;8330:18;8320:81;;8386:4;8378:6;8374:17;8364:27;;8320:81;8448:2;8440:6;8437:14;8417:18;8414:38;8411:84;;8467:18;;:::i;:::-;8411:84;8232:269;8181:320;;;:::o;8507:180::-;8555:77;8552:1;8545:88;8652:4;8649:1;8642:15;8676:4;8673:1;8666:15;8693:191;8733:3;8752:20;8770:1;8752:20;:::i;:::-;8747:25;;8786:20;8804:1;8786:20;:::i;:::-;8781:25;;8829:1;8826;8822:9;8815:16;;8850:3;8847:1;8844:10;8841:36;;;8857:18;;:::i;:::-;8841:36;8693:191;;;;:::o;8890:224::-;9030:34;9026:1;9018:6;9014:14;9007:58;9099:7;9094:2;9086:6;9082:15;9075:32;8890:224;:::o;9120:366::-;9262:3;9283:67;9347:2;9342:3;9283:67;:::i;:::-;9276:74;;9359:93;9448:3;9359:93;:::i;:::-;9477:2;9472:3;9468:12;9461:19;;9120:366;;;:::o;9492:419::-;9658:4;9696:2;9685:9;9681:18;9673:26;;9745:9;9739:4;9735:20;9731:1;9720:9;9716:17;9709:47;9773:131;9899:4;9773:131;:::i;:::-;9765:139;;9492:419;;;:::o;9917:225::-;10057:34;10053:1;10045:6;10041:14;10034:58;10126:8;10121:2;10113:6;10109:15;10102:33;9917:225;:::o;10148:366::-;10290:3;10311:67;10375:2;10370:3;10311:67;:::i;:::-;10304:74;;10387:93;10476:3;10387:93;:::i;:::-;10505:2;10500:3;10496:12;10489:19;;10148:366;;;:::o;10520:419::-;10686:4;10724:2;10713:9;10709:18;10701:26;;10773:9;10767:4;10763:20;10759:1;10748:9;10744:17;10737:47;10801:131;10927:4;10801:131;:::i;:::-;10793:139;;10520:419;;;:::o;10945:223::-;11085:34;11081:1;11073:6;11069:14;11062:58;11154:6;11149:2;11141:6;11137:15;11130:31;10945:223;:::o;11174:366::-;11316:3;11337:67;11401:2;11396:3;11337:67;:::i;:::-;11330:74;;11413:93;11502:3;11413:93;:::i;:::-;11531:2;11526:3;11522:12;11515:19;;11174:366;;;:::o;11546:419::-;11712:4;11750:2;11739:9;11735:18;11727:26;;11799:9;11793:4;11789:20;11785:1;11774:9;11770:17;11763:47;11827:131;11953:4;11827:131;:::i;:::-;11819:139;;11546:419;;;:::o;11971:221::-;12111:34;12107:1;12099:6;12095:14;12088:58;12180:4;12175:2;12167:6;12163:15;12156:29;11971:221;:::o;12198:366::-;12340:3;12361:67;12425:2;12420:3;12361:67;:::i;:::-;12354:74;;12437:93;12526:3;12437:93;:::i;:::-;12555:2;12550:3;12546:12;12539:19;;12198:366;;;:::o;12570:419::-;12736:4;12774:2;12763:9;12759:18;12751:26;;12823:9;12817:4;12813:20;12809:1;12798:9;12794:17;12787:47;12851:131;12977:4;12851:131;:::i;:::-;12843:139;;12570:419;;;:::o;12995:182::-;13135:34;13131:1;13123:6;13119:14;13112:58;12995:182;:::o;13183:366::-;13325:3;13346:67;13410:2;13405:3;13346:67;:::i;:::-;13339:74;;13422:93;13511:3;13422:93;:::i;:::-;13540:2;13535:3;13531:12;13524:19;;13183:366;;;:::o;13555:419::-;13721:4;13759:2;13748:9;13744:18;13736:26;;13808:9;13802:4;13798:20;13794:1;13783:9;13779:17;13772:47;13836:131;13962:4;13836:131;:::i;:::-;13828:139;;13555:419;;;:::o;13980:179::-;14120:31;14116:1;14108:6;14104:14;14097:55;13980:179;:::o;14165:366::-;14307:3;14328:67;14392:2;14387:3;14328:67;:::i;:::-;14321:74;;14404:93;14493:3;14404:93;:::i;:::-;14522:2;14517:3;14513:12;14506:19;;14165:366;;;:::o;14537:419::-;14703:4;14741:2;14730:9;14726:18;14718:26;;14790:9;14784:4;14780:20;14776:1;14765:9;14761:17;14754:47;14818:131;14944:4;14818:131;:::i;:::-;14810:139;;14537:419;;;:::o;14962:194::-;15002:4;15022:20;15040:1;15022:20;:::i;:::-;15017:25;;15056:20;15074:1;15056:20;:::i;:::-;15051:25;;15100:1;15097;15093:9;15085:17;;15124:1;15118:4;15115:11;15112:37;;;15129:18;;:::i;:::-;15112:37;14962:194;;;;:::o;15162:220::-;15302:34;15298:1;15290:6;15286:14;15279:58;15371:3;15366:2;15358:6;15354:15;15347:28;15162:220;:::o;15388:366::-;15530:3;15551:67;15615:2;15610:3;15551:67;:::i;:::-;15544:74;;15627:93;15716:3;15627:93;:::i;:::-;15745:2;15740:3;15736:12;15729:19;;15388:366;;;:::o;15760:419::-;15926:4;15964:2;15953:9;15949:18;15941:26;;16013:9;16007:4;16003:20;15999:1;15988:9;15984:17;15977:47;16041:131;16167:4;16041:131;:::i;:::-;16033:139;;15760:419;;;:::o;16185:221::-;16325:34;16321:1;16313:6;16309:14;16302:58;16394:4;16389:2;16381:6;16377:15;16370:29;16185:221;:::o;16412:366::-;16554:3;16575:67;16639:2;16634:3;16575:67;:::i;:::-;16568:74;;16651:93;16740:3;16651:93;:::i;:::-;16769:2;16764:3;16760:12;16753:19;;16412:366;;;:::o;16784:419::-;16950:4;16988:2;16977:9;16973:18;16965:26;;17037:9;17031:4;17027:20;17023:1;17012:9;17008:17;17001:47;17065:131;17191:4;17065:131;:::i;:::-;17057:139;;16784:419;;;:::o;17209:410::-;17249:7;17272:20;17290:1;17272:20;:::i;:::-;17267:25;;17306:20;17324:1;17306:20;:::i;:::-;17301:25;;17361:1;17358;17354:9;17383:30;17401:11;17383:30;:::i;:::-;17372:41;;17562:1;17553:7;17549:15;17546:1;17543:22;17523:1;17516:9;17496:83;17473:139;;17592:18;;:::i;:::-;17473:139;17257:362;17209:410;;;;:::o;17625:180::-;17673:77;17670:1;17663:88;17770:4;17767:1;17760:15;17794:4;17791:1;17784:15;17811:185;17851:1;17868:20;17886:1;17868:20;:::i;:::-;17863:25;;17902:20;17920:1;17902:20;:::i;:::-;17897:25;;17941:1;17931:35;;17946:18;;:::i;:::-;17931:35;17988:1;17985;17981:9;17976:14;;17811:185;;;;:::o;18002:224::-;18142:34;18138:1;18130:6;18126:14;18119:58;18211:7;18206:2;18198:6;18194:15;18187:32;18002:224;:::o;18232:366::-;18374:3;18395:67;18459:2;18454:3;18395:67;:::i;:::-;18388:74;;18471:93;18560:3;18471:93;:::i;:::-;18589:2;18584:3;18580:12;18573:19;;18232:366;;;:::o;18604:419::-;18770:4;18808:2;18797:9;18793:18;18785:26;;18857:9;18851:4;18847:20;18843:1;18832:9;18828:17;18821:47;18885:131;19011:4;18885:131;:::i;:::-;18877:139;;18604:419;;;:::o;19029:222::-;19169:34;19165:1;19157:6;19153:14;19146:58;19238:5;19233:2;19225:6;19221:15;19214:30;19029:222;:::o;19257:366::-;19399:3;19420:67;19484:2;19479:3;19420:67;:::i;:::-;19413:74;;19496:93;19585:3;19496:93;:::i;:::-;19614:2;19609:3;19605:12;19598:19;;19257:366;;;:::o;19629:419::-;19795:4;19833:2;19822:9;19818:18;19810:26;;19882:9;19876:4;19872:20;19868:1;19857:9;19853:17;19846:47;19910:131;20036:4;19910:131;:::i;:::-;19902:139;;19629:419;;;:::o;20054:225::-;20194:34;20190:1;20182:6;20178:14;20171:58;20263:8;20258:2;20250:6;20246:15;20239:33;20054:225;:::o;20285:366::-;20427:3;20448:67;20512:2;20507:3;20448:67;:::i;:::-;20441:74;;20524:93;20613:3;20524:93;:::i;:::-;20642:2;20637:3;20633:12;20626:19;;20285:366;;;:::o;20657:419::-;20823:4;20861:2;20850:9;20846:18;20838:26;;20910:9;20904:4;20900:20;20896:1;20885:9;20881:17;20874:47;20938:131;21064:4;20938:131;:::i;:::-;20930:139;;20657:419;;;:::o;21082:157::-;21222:9;21218:1;21210:6;21206:14;21199:33;21082:157;:::o;21245:365::-;21387:3;21408:66;21472:1;21467:3;21408:66;:::i;:::-;21401:73;;21483:93;21572:3;21483:93;:::i;:::-;21601:2;21596:3;21592:12;21585:19;;21245:365;;;:::o;21616:419::-;21782:4;21820:2;21809:9;21805:18;21797:26;;21869:9;21863:4;21859:20;21855:1;21844:9;21840:17;21833:47;21897:131;22023:4;21897:131;:::i;:::-;21889:139;;21616:419;;;:::o;22041:172::-;22181:24;22177:1;22169:6;22165:14;22158:48;22041:172;:::o;22219:366::-;22361:3;22382:67;22446:2;22441:3;22382:67;:::i;:::-;22375:74;;22458:93;22547:3;22458:93;:::i;:::-;22576:2;22571:3;22567:12;22560:19;;22219:366;;;:::o;22591:419::-;22757:4;22795:2;22784:9;22780:18;22772:26;;22844:9;22838:4;22834:20;22830:1;22819:9;22815:17;22808:47;22872:131;22998:4;22872:131;:::i;:::-;22864:139;;22591:419;;;:::o;23016:143::-;23073:5;23104:6;23098:13;23089:22;;23120:33;23147:5;23120:33;:::i;:::-;23016:143;;;;:::o;23165:351::-;23235:6;23284:2;23272:9;23263:7;23259:23;23255:32;23252:119;;;23290:79;;:::i;:::-;23252:119;23410:1;23435:64;23491:7;23482:6;23471:9;23467:22;23435:64;:::i;:::-;23425:74;;23381:128;23165:351;;;;:::o

Swarm Source

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