ETH Price: $2,634.26 (+0.20%)
Gas: 2 Gwei

Token

VBONE (VBONE)
 

Overview

Max Total Supply

420,000,000 VBONE

Holders

110

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
ionverse.eth
Balance
6,514,268.351173861525032439 VBONE

Value
$0.00
0xb7d8b2a484347484a7fe5e0edd0c848d531db647
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:
VBONE

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : vbone.sol
//SPDX-License-Identifier: MIT

// Twitter: https://twitter.com/@VBONEeth

// Telegram: https://t.me/vbone_eth

// Medium: https://medium.com/@vbone-labs/vbone-401c47ace1e6

// 100% of Supply Used for LP and LP locked forever

pragma solidity 0.8.17;

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

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

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


interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

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

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

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

    function _createInitialSupply(address account, uint256 amount)
        internal
        virtual
    {
        require(account != address(0), "ERC20: mint to the zero address");

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

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

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

interface ILpPair {
    function sync() external;
}

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

    function WETH() external pure returns (address);

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

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

contract VBONE is ERC20, Ownable {
    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
    uint256 public maxWallet;

    IDexRouter public dexRouter;
    address public lpPair;

    bool private swapping;
    uint256 public swapTokensAtAmount;

    address public treasuryAddress;

    bool public limitsInEffect = true;

    uint256 public buyTotalFees;

    uint256 public sellTotalFees;

    uint256 public treasuryTokens;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event UpdatedMaxBuyAmount(uint256 newAmount);

    event UpdatedMaxSellAmount(uint256 newAmount);

    event UpdatedMaxWalletAmount(uint256 newAmount);

    event UpdatedTreasuryAddress(address indexed newWallet);

    event MaxTransactionExclusion(address _address, bool excluded);

    event OwnerForcedSwapBack(uint256 timestamp);

    constructor() payable ERC20("VBONE", "VBONE") {
        address newOwner = msg.sender; // can leave alone if owner is deployer.

        address _dexRouter;

        if (block.chainid == 1) {
            _dexRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // ETH: Uniswap V2
        } else if (block.chainid == 5) {
            _dexRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // ETH: GOERLI
        } else {
            revert("Chain not configured");
        }

        // initialize router
        dexRouter = IDexRouter(_dexRouter);

        uint256 totalSupply = 420 * 1e6 * 1e18; // 420 million

        maxBuyAmount = (totalSupply * 1) / 100; // 1%
        maxSellAmount = (totalSupply * 1) / 100; // 1%
        maxWallet = (totalSupply * 2) / 100; // 2%
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05 %

        buyTotalFees = 0;

        sellTotalFees = 10;

        treasuryAddress = address(0x6862c680333f70653f017DA2F9072F011932F720);

        _excludeFromMaxTransaction(newOwner, true);
        _excludeFromMaxTransaction(address(this), true);
        _excludeFromMaxTransaction(address(0xdead), true);
        _excludeFromMaxTransaction(address(treasuryAddress), true);
        _excludeFromMaxTransaction(address(dexRouter), true);

        excludeFromFees(newOwner, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(address(treasuryAddress), true);
        excludeFromFees(address(dexRouter), true);

        _createInitialSupply(address(this), totalSupply); // Tokens for liquidity

        transferOwnership(newOwner);
    }

    receive() external payable {}

    function updateMaxBuyAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 100) / 1e18,
            "Cannot set max buy amount lower than 1%"
        );
        require(
            newNum <= ((totalSupply() * 2) / 100) / 1e18,
            "Cannot set buy sell amount higher than 2%"
        );
        maxBuyAmount = newNum * (10**18);
        emit UpdatedMaxBuyAmount(maxBuyAmount);
    }

    function updateMaxSellAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 100) / 1e18,
            "Cannot set max sell amount lower than 1%"
        );
        require(
            newNum <= ((totalSupply() * 2) / 100) / 1e18,
            "Cannot set max sell amount higher than 2%"
        );
        maxSellAmount = newNum * (10**18);
        emit UpdatedMaxSellAmount(maxSellAmount);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 2) / 100) / 1e18,
            "Cannot set max wallet amount lower than 2%"
        );
        require(
            newNum <= ((totalSupply() * 5) / 100) / 1e18,
            "Cannot set max wallet amount higher than 5%"
        );
        maxWallet = newNum * (10**18);
        emit UpdatedMaxWalletAmount(maxWallet);
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 1) / 1000,
            "Swap amount cannot be higher than 0.1% total supply."
        );
        swapTokensAtAmount = newAmount;
    }

    function _excludeFromMaxTransaction(address updAds, bool isExcluded)
        private
    {
        _isExcludedMaxTransactionAmount[updAds] = isExcluded;
        emit MaxTransactionExclusion(updAds, isExcluded);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        external
        onlyOwner
    {
        if (!isEx) {
            require(
                updAds != lpPair,
                "Cannot remove uniswap pair from max txn"
            );
        }
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        external
        onlyOwner
    {
        require(
            pair != lpPair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );
        _setAutomatedMarketMakerPair(pair, value);
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
        _excludeFromMaxTransaction(pair, value);
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateBuyFees(
        uint256 buyTotalFees_
    ) external onlyOwner {
        buyTotalFees = buyTotalFees_;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 sellTotalFees_
    ) external onlyOwner {
        sellTotalFees = sellTotalFees_;
        require(sellTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "amount must be greater than 0");

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0xdead) &&
                !_isExcludedFromFees[from] &&
                !_isExcludedFromFees[to]
            ) {
                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxBuyAmount,
                        "Buy transfer amount exceeds the max buy."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max Wallet Exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxSellAmount,
                        "Sell transfer amount exceeds the max sell."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max Wallet Exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap && !swapping && automatedMarketMakerPairs[to]
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }

        bool takeFee = true;
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / 100;
                treasuryTokens += fees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / 100;
                treasuryTokens += fees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

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

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = dexRouter.WETH();

        _approve(address(this), address(dexRouter), tokenAmount);

        // make the swap
        dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = treasuryTokens;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 10) {
            contractBalance = swapTokensAtAmount * 10;
        }

        bool success;

        swapTokensForEth(contractBalance);

        uint256 ethBalance = address(this).balance;

        treasuryTokens = 0;

        (success, ) = address(treasuryAddress).call{value: ethBalance}("");
    }

    // withdraw ETH if stuck or someone sends to the address
    function withdrawStuckETH() external onlyOwner {
        bool success;
        (success, ) = address(msg.sender).call{value: address(this).balance}(
            ""
        );
    }

    function setTreasuryAddress(address _treasuryAddress) external onlyOwner {
        require(
            _treasuryAddress != address(0),
            "_operationsAddress address cannot be 0"
        );
        treasuryAddress = payable(_treasuryAddress);
        emit UpdatedTreasuryAddress(_treasuryAddress);
    }

    // force Swap back if slippage issues.
    function forceSwapBack() external onlyOwner {
        require(
            balanceOf(address(this)) >= swapTokensAtAmount,
            "Can only swap when token amount is at or higher than restriction"
        );
        swapping = true;
        swapBack();
        swapping = false;
        emit OwnerForcedSwapBack(block.timestamp);
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner {
        limitsInEffect = false;
    }

    function restoreLimits() external onlyOwner {
        limitsInEffect = true;
    }

    function createPair() external onlyOwner {

        // create pair
        lpPair = IDexFactory(dexRouter.factory()).createPair(
            address(this),
            dexRouter.WETH()
        );
        _excludeFromMaxTransaction(address(lpPair), true);
        _setAutomatedMarketMakerPair(address(lpPair), true);
        
    }

    function launch() external onlyOwner {
        // add the liquidity
        require(
            address(this).balance > 0,
            "Must have ETH on contract to launch"
        );
        require(
            balanceOf(address(this)) > 0,
            "Must have Tokens on contract to launch"
        );

        _approve(address(this), address(dexRouter), balanceOf(address(this)));

        (, , uint256 amountLiquidity) = dexRouter.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );

        IERC20(lpPair).transfer(address(0x985DeeDc526D3a524b0ACFBf1778eF34B7422397), amountLiquidity);
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"OwnerForcedSwapBack","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxBuyAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxSellAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxWalletAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedTreasuryAddress","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexRouter","outputs":[{"internalType":"contract IDexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSwapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"restoreLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasuryAddress","type":"address"}],"name":"setTreasuryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyTotalFees_","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sellTotalFees_","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526001600c60146101000a81548160ff0219169083151502179055506040518060400160405280600581526020017f56424f4e450000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f56424f4e4500000000000000000000000000000000000000000000000000000081525081600390816200009c919062000b56565b508060049081620000ae919062000b56565b505050620000d1620000c56200041c60201b60201c565b6200042460201b60201c565b6000339050600060014603620000fe57737a250d5630b4cf539739df2c5dacb4c659f2488d905062000162565b600546036200012457737a250d5630b4cf539739df2c5dacb4c659f2488d905062000161565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001589062000c9e565b60405180910390fd5b5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006b015b6a759f4835dc2400000090506064600182620001c5919062000cef565b620001d1919062000d69565b6006819055506064600182620001e8919062000cef565b620001f4919062000d69565b60078190555060646002826200020b919062000cef565b62000217919062000d69565b6008819055506127106005826200022f919062000cef565b6200023b919062000d69565b600b819055506000600d81905550600a600e81905550736862c680333f70653f017da2f9072f011932f720600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002b9836001620004ea60201b60201c565b620002cc306001620004ea60201b60201c565b620002e161dead6001620004ea60201b60201c565b62000316600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620004ea60201b60201c565b6200034b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620004ea60201b60201c565b6200035e8360016200058060201b60201c565b620003713060016200058060201b60201c565b6200038661dead60016200058060201b60201c565b620003bb600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200058060201b60201c565b620003f0600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200058060201b60201c565b6200040230826200063b60201b60201c565b62000413836200078b60201b60201c565b50505062001032565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd674682826040516200057492919062000e03565b60405180910390a15050565b620005906200082160201b60201c565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200062f919062000e30565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006a49062000e9d565b60405180910390fd5b8060026000828254620006c1919062000ebf565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000718919062000ebf565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200077f919062000f0b565b60405180910390a35050565b6200079b6200082160201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200080d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008049062000f9e565b60405180910390fd5b6200081e816200042460201b60201c565b50565b620008316200041c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000857620008b260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008a79062001010565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200095e57607f821691505b60208210810362000974576200097362000916565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009de7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200099f565b620009ea86836200099f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a3762000a3162000a2b8462000a02565b62000a0c565b62000a02565b9050919050565b6000819050919050565b62000a538362000a16565b62000a6b62000a628262000a3e565b848454620009ac565b825550505050565b600090565b62000a8262000a73565b62000a8f81848462000a48565b505050565b5b8181101562000ab75762000aab60008262000a78565b60018101905062000a95565b5050565b601f82111562000b065762000ad0816200097a565b62000adb846200098f565b8101602085101562000aeb578190505b62000b0362000afa856200098f565b83018262000a94565b50505b505050565b600082821c905092915050565b600062000b2b6000198460080262000b0b565b1980831691505092915050565b600062000b46838362000b18565b9150826002028217905092915050565b62000b6182620008dc565b67ffffffffffffffff81111562000b7d5762000b7c620008e7565b5b62000b89825462000945565b62000b9682828562000abb565b600060209050601f83116001811462000bce576000841562000bb9578287015190505b62000bc5858262000b38565b86555062000c35565b601f19841662000bde866200097a565b60005b8281101562000c085784890151825560018201915060208501945060208101905062000be1565b8683101562000c28578489015162000c24601f89168262000b18565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f436861696e206e6f7420636f6e66696775726564000000000000000000000000600082015250565b600062000c8660148362000c3d565b915062000c938262000c4e565b602082019050919050565b6000602082019050818103600083015262000cb98162000c77565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cfc8262000a02565b915062000d098362000a02565b925082820262000d198162000a02565b9150828204841483151762000d335762000d3262000cc0565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d768262000a02565b915062000d838362000a02565b92508262000d965762000d9562000d3a565b5b828204905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000dce8262000da1565b9050919050565b62000de08162000dc1565b82525050565b60008115159050919050565b62000dfd8162000de6565b82525050565b600060408201905062000e1a600083018562000dd5565b62000e29602083018462000df2565b9392505050565b600060208201905062000e47600083018462000df2565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e85601f8362000c3d565b915062000e928262000e4d565b602082019050919050565b6000602082019050818103600083015262000eb88162000e76565b9050919050565b600062000ecc8262000a02565b915062000ed98362000a02565b925082820190508082111562000ef45762000ef362000cc0565b5b92915050565b62000f058162000a02565b82525050565b600060208201905062000f22600083018462000efa565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000f8660268362000c3d565b915062000f938262000f28565b604082019050919050565b6000602082019050818103600083015262000fb98162000f77565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000ff860208362000c3d565b9150620010058262000fc0565b602082019050919050565b600060208201905081810360008301526200102b8162000fe9565b9050919050565b614aa580620010426000396000f3fe6080604052600436106102605760003560e01c80637571336a11610144578063c18bc195116100b6578063dd62ed3e1161007a578063dd62ed3e146108a9578063e2f45605146108e6578063eba4c33314610911578063f2fde38b1461093a578063f5648a4f14610963578063f8b45b051461097a57610267565b8063c18bc195146107d8578063c5f956af14610801578063d257b34f1461082c578063d85ba06314610855578063dc3f0d0f1461088057610267565b80639e78fb4f116101085780639e78fb4f146106ca578063a28e86d3146106e1578063a457c2d7146106f8578063a9059cbb14610735578063b62496f514610772578063c0246668146107af57610267565b80637571336a146105f757806388e765ff146106205780638da5cb5b1461064b57806395d89b41146106765780639a7a23d6146106a157610267565b8063452ed4f1116101dd57806366d602ae116101a157806366d602ae1461050d5780636a486a8e1461053857806370a0823114610563578063715018a6146105a057806371fc4688146105b7578063751039fc146105e057610267565b8063452ed4f11461044c5780634a62bb651461047757806351f205e4146104a25780635eebef6b146104b95780636605bfda146104e457610267565b806318160ddd1161022457806318160ddd1461035357806323b872dd1461037e5780632be32b61146103bb578063313ce567146103e4578063395093511461040f57610267565b806301339c211461026c57806306fdde03146102835780630758d924146102ae578063095ea7b3146102d957806310d5de531461031657610267565b3661026757005b600080fd5b34801561027857600080fd5b506102816109a5565b005b34801561028f57600080fd5b50610298610be0565b6040516102a59190613228565b60405180910390f35b3480156102ba57600080fd5b506102c3610c72565b6040516102d091906132c9565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb919061335d565b610c98565b60405161030d91906133b8565b60405180910390f35b34801561032257600080fd5b5061033d600480360381019061033891906133d3565b610cb6565b60405161034a91906133b8565b60405180910390f35b34801561035f57600080fd5b50610368610cd6565b604051610375919061340f565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a0919061342a565b610ce0565b6040516103b291906133b8565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd919061347d565b610dd8565b005b3480156103f057600080fd5b506103f9610f20565b60405161040691906134c6565b60405180910390f35b34801561041b57600080fd5b506104366004803603810190610431919061335d565b610f29565b60405161044391906133b8565b60405180910390f35b34801561045857600080fd5b50610461610fd5565b60405161046e91906134f0565b60405180910390f35b34801561048357600080fd5b5061048c610ffb565b60405161049991906133b8565b60405180910390f35b3480156104ae57600080fd5b506104b761100e565b005b3480156104c557600080fd5b506104ce6110da565b6040516104db919061340f565b60405180910390f35b3480156104f057600080fd5b5061050b600480360381019061050691906133d3565b6110e0565b005b34801561051957600080fd5b506105226111de565b60405161052f919061340f565b60405180910390f35b34801561054457600080fd5b5061054d6111e4565b60405161055a919061340f565b60405180910390f35b34801561056f57600080fd5b5061058a600480360381019061058591906133d3565b6111ea565b604051610597919061340f565b60405180910390f35b3480156105ac57600080fd5b506105b5611232565b005b3480156105c357600080fd5b506105de60048036038101906105d9919061347d565b611246565b005b3480156105ec57600080fd5b506105f561129e565b005b34801561060357600080fd5b5061061e60048036038101906106199190613537565b6112c3565b005b34801561062c57600080fd5b506106356113bc565b604051610642919061340f565b60405180910390f35b34801561065757600080fd5b506106606113c2565b60405161066d91906134f0565b60405180910390f35b34801561068257600080fd5b5061068b6113ec565b6040516106989190613228565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c39190613537565b61147e565b005b3480156106d657600080fd5b506106df61156a565b005b3480156106ed57600080fd5b506106f66117ac565b005b34801561070457600080fd5b5061071f600480360381019061071a919061335d565b6117d1565b60405161072c91906133b8565b60405180910390f35b34801561074157600080fd5b5061075c6004803603810190610757919061335d565b6118bc565b60405161076991906133b8565b60405180910390f35b34801561077e57600080fd5b50610799600480360381019061079491906133d3565b6118da565b6040516107a691906133b8565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d19190613537565b6118fa565b005b3480156107e457600080fd5b506107ff60048036038101906107fa919061347d565b6119ab565b005b34801561080d57600080fd5b50610816611af3565b60405161082391906134f0565b60405180910390f35b34801561083857600080fd5b50610853600480360381019061084e919061347d565b611b19565b005b34801561086157600080fd5b5061086a611bf2565b604051610877919061340f565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a2919061347d565b611bf8565b005b3480156108b557600080fd5b506108d060048036038101906108cb9190613577565b611d40565b6040516108dd919061340f565b60405180910390f35b3480156108f257600080fd5b506108fb611dc7565b604051610908919061340f565b60405180910390f35b34801561091d57600080fd5b506109386004803603810190610933919061347d565b611dcd565b005b34801561094657600080fd5b50610961600480360381019061095c91906133d3565b611e25565b005b34801561096f57600080fd5b50610978611ea8565b005b34801561098657600080fd5b5061098f611f21565b60405161099c919061340f565b60405180910390f35b6109ad611f27565b600047116109f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e790613629565b60405180910390fd5b60006109fb306111ea565b11610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a32906136bb565b60405180910390fd5b610a7030600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610a6b306111ea565b611fa5565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610abb306111ea565b60008030426040518863ffffffff1660e01b8152600401610ae196959493929190613716565b60606040518083038185885af1158015610aff573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610b24919061378c565b92505050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb73985deedc526d3a524b0acfbf1778ef34b7422397836040518363ffffffff1660e01b8152600401610b999291906137df565b6020604051808303816000875af1158015610bb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bdc919061381d565b5050565b606060038054610bef90613879565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1b90613879565b8015610c685780601f10610c3d57610100808354040283529160200191610c68565b820191906000526020600020905b815481529060010190602001808311610c4b57829003601f168201915b5050505050905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610cac610ca561216e565b8484611fa5565b6001905092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6000610ced848484612176565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610d3861216e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf9061391c565b60405180910390fd5b610dcc85610dc461216e565b858403611fa5565b60019150509392505050565b610de0611f27565b670de0b6b3a764000060646001610df5610cd6565b610dff919061396b565b610e0991906139dc565b610e1391906139dc565b811015610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90613a7f565b60405180910390fd5b670de0b6b3a764000060646002610e6a610cd6565b610e74919061396b565b610e7e91906139dc565b610e8891906139dc565b811115610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec190613b11565b60405180910390fd5b670de0b6b3a764000081610ede919061396b565b6006819055507ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009600654604051610f15919061340f565b60405180910390a150565b60006012905090565b6000610fcb610f3661216e565b848460016000610f4461216e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fc69190613b31565b611fa5565b6001905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60149054906101000a900460ff1681565b611016611f27565b600b54611022306111ea565b1015611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a90613bd7565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506110866129e3565b6000600a60146101000a81548160ff0219169083151502179055507f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb32426040516110d0919061340f565b60405180910390a1565b600f5481565b6110e8611f27565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e90613c69565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f2e1e696cfb265fa16e1170d24ef04cb2262772bde00ecf34d80bae6722487b7f60405160405180910390a250565b60075481565b600e5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61123a611f27565b6112446000612ae7565b565b61124e611f27565b80600d81905550600a600d54111561129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129290613cd5565b60405180910390fd5b50565b6112a6611f27565b6000600c60146101000a81548160ff021916908315150217905550565b6112cb611f27565b8061136157600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135790613d67565b60405180910390fd5b5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546113fb90613879565b80601f016020809104026020016040519081016040528092919081815260200182805461142790613879565b80156114745780601f1061144957610100808354040283529160200191611474565b820191906000526020600020905b81548152906001019060200180831161145757829003601f168201915b5050505050905090565b611486611f27565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90613df9565b60405180910390fd5b6115208282612bad565b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b611572611f27565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116039190613e2e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561168c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b09190613e2e565b6040518363ffffffff1660e01b81526004016116cd929190613e5b565b6020604051808303816000875af11580156116ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117109190613e2e565b600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061177d600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612c58565b6117aa600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612bad565b565b6117b4611f27565b6001600c60146101000a81548160ff021916908315150217905550565b600080600160006117e061216e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490613ef6565b60405180910390fd5b6118b16118a861216e565b85858403611fa5565b600191505092915050565b60006118d06118c961216e565b8484612176565b6001905092915050565b60126020528060005260406000206000915054906101000a900460ff1681565b611902611f27565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161199f91906133b8565b60405180910390a25050565b6119b3611f27565b670de0b6b3a7640000606460026119c8610cd6565b6119d2919061396b565b6119dc91906139dc565b6119e691906139dc565b811015611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f90613f88565b60405180910390fd5b670de0b6b3a764000060646005611a3d610cd6565b611a47919061396b565b611a5191906139dc565b611a5b91906139dc565b811115611a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a949061401a565b60405180910390fd5b670de0b6b3a764000081611ab1919061396b565b6008819055507fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc600854604051611ae8919061340f565b60405180910390a150565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b21611f27565b620186a06001611b2f610cd6565b611b39919061396b565b611b4391906139dc565b811015611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c906140ac565b60405180910390fd5b6103e86001611b92610cd6565b611b9c919061396b565b611ba691906139dc565b811115611be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdf9061413e565b60405180910390fd5b80600b8190555050565b600d5481565b611c00611f27565b670de0b6b3a764000060646001611c15610cd6565b611c1f919061396b565b611c2991906139dc565b611c3391906139dc565b811015611c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6c906141d0565b60405180910390fd5b670de0b6b3a764000060646002611c8a610cd6565b611c94919061396b565b611c9e91906139dc565b611ca891906139dc565b811115611cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce190614262565b60405180910390fd5b670de0b6b3a764000081611cfe919061396b565b6007819055507f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e600754604051611d35919061340f565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b611dd5611f27565b80600e81905550600a600e541115611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1990613cd5565b60405180910390fd5b50565b611e2d611f27565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e93906142f4565b60405180910390fd5b611ea581612ae7565b50565b611eb0611f27565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611ed690614345565b60006040518083038185875af1925050503d8060008114611f13576040519150601f19603f3d011682016040523d82523d6000602084013e611f18565b606091505b50508091505050565b60085481565b611f2f61216e565b73ffffffffffffffffffffffffffffffffffffffff16611f4d6113c2565b73ffffffffffffffffffffffffffffffffffffffff1614611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a906143a6565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b90614438565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207a906144ca565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612161919061340f565b60405180910390a3505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc9061455c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b906145ee565b60405180910390fd5b60008111612297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228e9061465a565b60405180910390fd5b600c60149054906101000a900460ff16156126f7576122b46113c2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561232257506122f26113c2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561235c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123b25750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124085750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156126f657601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124b05750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612557576006548111156124fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f1906146ec565b60405180910390fd5b600854612506836111ea565b826125119190613b31565b1115612552576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254990614758565b60405180910390fd5b6126f5565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125fa5750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561264957600754811115612644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263b906147ea565b60405180910390fd5b6126f4565b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166126f3576008546126a6836111ea565b826126b19190613b31565b11156126f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e990614758565b60405180910390fd5b5b5b5b5b5b6000612702306111ea565b90506000600b5482101590508080156127285750600a60149054906101000a900460ff16155b801561277d5750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156127c1576001600a60146101000a81548160ff0219169083151502179055506127a56129e3565b6000600a60146101000a81548160ff0219169083151502179055505b600060019050601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128685750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561287257600090505b600081156129cf57601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128d557506000600e54115b15612914576064600e54866128ea919061396b565b6128f491906139dc565b905080600f60008282546129089190613b31565b925050819055506129ab565b601260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561296f57506000600d54115b156129aa576064600d5486612984919061396b565b61298e91906139dc565b905080600f60008282546129a29190613b31565b925050819055505b5b60008111156129c0576129bf873083612cec565b5b80856129cc919061480a565b94505b6129da878787612cec565b50505050505050565b60006129ee306111ea565b90506000600f5490506000821480612a065750600081145b15612a12575050612ae5565b600a600b54612a21919061396b565b821115612a3a57600a600b54612a37919061396b565b91505b6000612a4583612f55565b60004790506000600f81905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051612a9890614345565b60006040518083038185875af1925050503d8060008114612ad5576040519150601f19603f3d011682016040523d82523d6000602084013e612ada565b606091505b505080925050505050505b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612c0e8282612c58565b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd67468282604051612ce092919061483e565b60405180910390a15050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d529061455c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc1906145ee565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e47906148d9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ee39190613b31565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612f47919061340f565b60405180910390a350505050565b6000600267ffffffffffffffff811115612f7257612f716148f9565b5b604051908082528060200260200182016040528015612fa05781602001602082028036833780820191505090505b5090503081600081518110612fb857612fb7614928565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561305f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130839190613e2e565b8160018151811061309757613096614928565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506130fe30600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611fa5565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613162959493929190614a15565b600060405180830381600087803b15801561317c57600080fd5b505af1158015613190573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131d25780820151818401526020810190506131b7565b60008484015250505050565b6000601f19601f8301169050919050565b60006131fa82613198565b61320481856131a3565b93506132148185602086016131b4565b61321d816131de565b840191505092915050565b6000602082019050818103600083015261324281846131ef565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061328f61328a6132858461324a565b61326a565b61324a565b9050919050565b60006132a182613274565b9050919050565b60006132b382613296565b9050919050565b6132c3816132a8565b82525050565b60006020820190506132de60008301846132ba565b92915050565b600080fd5b60006132f48261324a565b9050919050565b613304816132e9565b811461330f57600080fd5b50565b600081359050613321816132fb565b92915050565b6000819050919050565b61333a81613327565b811461334557600080fd5b50565b60008135905061335781613331565b92915050565b60008060408385031215613374576133736132e4565b5b600061338285828601613312565b925050602061339385828601613348565b9150509250929050565b60008115159050919050565b6133b28161339d565b82525050565b60006020820190506133cd60008301846133a9565b92915050565b6000602082840312156133e9576133e86132e4565b5b60006133f784828501613312565b91505092915050565b61340981613327565b82525050565b60006020820190506134246000830184613400565b92915050565b600080600060608486031215613443576134426132e4565b5b600061345186828701613312565b935050602061346286828701613312565b925050604061347386828701613348565b9150509250925092565b600060208284031215613493576134926132e4565b5b60006134a184828501613348565b91505092915050565b600060ff82169050919050565b6134c0816134aa565b82525050565b60006020820190506134db60008301846134b7565b92915050565b6134ea816132e9565b82525050565b600060208201905061350560008301846134e1565b92915050565b6135148161339d565b811461351f57600080fd5b50565b6000813590506135318161350b565b92915050565b6000806040838503121561354e5761354d6132e4565b5b600061355c85828601613312565b925050602061356d85828601613522565b9150509250929050565b6000806040838503121561358e5761358d6132e4565b5b600061359c85828601613312565b92505060206135ad85828601613312565b9150509250929050565b7f4d757374206861766520455448206f6e20636f6e747261637420746f206c617560008201527f6e63680000000000000000000000000000000000000000000000000000000000602082015250565b60006136136023836131a3565b915061361e826135b7565b604082019050919050565b6000602082019050818103600083015261364281613606565b9050919050565b7f4d757374206861766520546f6b656e73206f6e20636f6e747261637420746f2060008201527f6c61756e63680000000000000000000000000000000000000000000000000000602082015250565b60006136a56026836131a3565b91506136b082613649565b604082019050919050565b600060208201905081810360008301526136d481613698565b9050919050565b6000819050919050565b60006137006136fb6136f6846136db565b61326a565b613327565b9050919050565b613710816136e5565b82525050565b600060c08201905061372b60008301896134e1565b6137386020830188613400565b6137456040830187613707565b6137526060830186613707565b61375f60808301856134e1565b61376c60a0830184613400565b979650505050505050565b60008151905061378681613331565b92915050565b6000806000606084860312156137a5576137a46132e4565b5b60006137b386828701613777565b93505060206137c486828701613777565b92505060406137d586828701613777565b9150509250925092565b60006040820190506137f460008301856134e1565b6138016020830184613400565b9392505050565b6000815190506138178161350b565b92915050565b600060208284031215613833576138326132e4565b5b600061384184828501613808565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061389157607f821691505b6020821081036138a4576138a361384a565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006139066028836131a3565b9150613911826138aa565b604082019050919050565b60006020820190508181036000830152613935816138f9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061397682613327565b915061398183613327565b925082820261398f81613327565b915082820484148315176139a6576139a561393c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139e782613327565b91506139f283613327565b925082613a0257613a016139ad565b5b828204905092915050565b7f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f7765722060008201527f7468616e20312500000000000000000000000000000000000000000000000000602082015250565b6000613a696027836131a3565b9150613a7482613a0d565b604082019050919050565b60006020820190508181036000830152613a9881613a5c565b9050919050565b7f43616e6e6f7420736574206275792073656c6c20616d6f756e7420686967686560008201527f72207468616e2032250000000000000000000000000000000000000000000000602082015250565b6000613afb6029836131a3565b9150613b0682613a9f565b604082019050919050565b60006020820190508181036000830152613b2a81613aee565b9050919050565b6000613b3c82613327565b9150613b4783613327565b9250828201905080821115613b5f57613b5e61393c565b5b92915050565b7f43616e206f6e6c792073776170207768656e20746f6b656e20616d6f756e742060008201527f6973206174206f7220686967686572207468616e207265737472696374696f6e602082015250565b6000613bc16040836131a3565b9150613bcc82613b65565b604082019050919050565b60006020820190508181036000830152613bf081613bb4565b9050919050565b7f5f6f7065726174696f6e734164647265737320616464726573732063616e6e6f60008201527f7420626520300000000000000000000000000000000000000000000000000000602082015250565b6000613c536026836131a3565b9150613c5e82613bf7565b604082019050919050565b60006020820190508181036000830152613c8281613c46565b9050919050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000613cbf601d836131a3565b9150613cca82613c89565b602082019050919050565b60006020820190508181036000830152613cee81613cb2565b9050919050565b7f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060008201527f6d61782074786e00000000000000000000000000000000000000000000000000602082015250565b6000613d516027836131a3565b9150613d5c82613cf5565b604082019050919050565b60006020820190508181036000830152613d8081613d44565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613de36039836131a3565b9150613dee82613d87565b604082019050919050565b60006020820190508181036000830152613e1281613dd6565b9050919050565b600081519050613e28816132fb565b92915050565b600060208284031215613e4457613e436132e4565b5b6000613e5284828501613e19565b91505092915050565b6000604082019050613e7060008301856134e1565b613e7d60208301846134e1565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613ee06025836131a3565b9150613eeb82613e84565b604082019050919050565b60006020820190508181036000830152613f0f81613ed3565b9050919050565b7f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f7760008201527f6572207468616e20322500000000000000000000000000000000000000000000602082015250565b6000613f72602a836131a3565b9150613f7d82613f16565b604082019050919050565b60006020820190508181036000830152613fa181613f65565b9050919050565b7f43616e6e6f7420736574206d61782077616c6c657420616d6f756e742068696760008201527f686572207468616e203525000000000000000000000000000000000000000000602082015250565b6000614004602b836131a3565b915061400f82613fa8565b604082019050919050565b6000602082019050818103600083015261403381613ff7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006140966035836131a3565b91506140a18261403a565b604082019050919050565b600060208201905081810360008301526140c581614089565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e312520746f74616c20737570706c792e000000000000000000000000602082015250565b60006141286034836131a3565b9150614133826140cc565b604082019050919050565b600060208201905081810360008301526141578161411b565b9050919050565b7f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f77657260008201527f207468616e203125000000000000000000000000000000000000000000000000602082015250565b60006141ba6028836131a3565b91506141c58261415e565b604082019050919050565b600060208201905081810360008301526141e9816141ad565b9050919050565b7f43616e6e6f7420736574206d61782073656c6c20616d6f756e7420686967686560008201527f72207468616e2032250000000000000000000000000000000000000000000000602082015250565b600061424c6029836131a3565b9150614257826141f0565b604082019050919050565b6000602082019050818103600083015261427b8161423f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006142de6026836131a3565b91506142e982614282565b604082019050919050565b6000602082019050818103600083015261430d816142d1565b9050919050565b600081905092915050565b50565b600061432f600083614314565b915061433a8261431f565b600082019050919050565b600061435082614322565b9150819050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006143906020836131a3565b915061439b8261435a565b602082019050919050565b600060208201905081810360008301526143bf81614383565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006144226024836131a3565b915061442d826143c6565b604082019050919050565b6000602082019050818103600083015261445181614415565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006144b46022836131a3565b91506144bf82614458565b604082019050919050565b600060208201905081810360008301526144e3816144a7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006145466025836131a3565b9150614551826144ea565b604082019050919050565b6000602082019050818103600083015261457581614539565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006145d86023836131a3565b91506145e38261457c565b604082019050919050565b60006020820190508181036000830152614607816145cb565b9050919050565b7f616d6f756e74206d7573742062652067726561746572207468616e2030000000600082015250565b6000614644601d836131a3565b915061464f8261460e565b602082019050919050565b6000602082019050818103600083015261467381614637565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d6178206275792e000000000000000000000000000000000000000000000000602082015250565b60006146d66028836131a3565b91506146e18261467a565b604082019050919050565b60006020820190508181036000830152614705816146c9565b9050919050565b7f4d61782057616c6c657420457863656564656400000000000000000000000000600082015250565b60006147426013836131a3565b915061474d8261470c565b602082019050919050565b6000602082019050818103600083015261477181614735565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61782073656c6c2e00000000000000000000000000000000000000000000602082015250565b60006147d4602a836131a3565b91506147df82614778565b604082019050919050565b60006020820190508181036000830152614803816147c7565b9050919050565b600061481582613327565b915061482083613327565b92508282039050818111156148385761483761393c565b5b92915050565b600060408201905061485360008301856134e1565b61486060208301846133a9565b9392505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006148c36026836131a3565b91506148ce82614867565b604082019050919050565b600060208201905081810360008301526148f2816148b6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61498c816132e9565b82525050565b600061499e8383614983565b60208301905092915050565b6000602082019050919050565b60006149c282614957565b6149cc8185614962565b93506149d783614973565b8060005b83811015614a085781516149ef8882614992565b97506149fa836149aa565b9250506001810190506149db565b5085935050505092915050565b600060a082019050614a2a6000830188613400565b614a376020830187613707565b8181036040830152614a4981866149b7565b9050614a5860608301856134e1565b614a656080830184613400565b969550505050505056fea26469706673582212207d7ae5c62944ec48f38b489661cb631000d6b9441ee11a9d0bf890ca5f6e567364736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102605760003560e01c80637571336a11610144578063c18bc195116100b6578063dd62ed3e1161007a578063dd62ed3e146108a9578063e2f45605146108e6578063eba4c33314610911578063f2fde38b1461093a578063f5648a4f14610963578063f8b45b051461097a57610267565b8063c18bc195146107d8578063c5f956af14610801578063d257b34f1461082c578063d85ba06314610855578063dc3f0d0f1461088057610267565b80639e78fb4f116101085780639e78fb4f146106ca578063a28e86d3146106e1578063a457c2d7146106f8578063a9059cbb14610735578063b62496f514610772578063c0246668146107af57610267565b80637571336a146105f757806388e765ff146106205780638da5cb5b1461064b57806395d89b41146106765780639a7a23d6146106a157610267565b8063452ed4f1116101dd57806366d602ae116101a157806366d602ae1461050d5780636a486a8e1461053857806370a0823114610563578063715018a6146105a057806371fc4688146105b7578063751039fc146105e057610267565b8063452ed4f11461044c5780634a62bb651461047757806351f205e4146104a25780635eebef6b146104b95780636605bfda146104e457610267565b806318160ddd1161022457806318160ddd1461035357806323b872dd1461037e5780632be32b61146103bb578063313ce567146103e4578063395093511461040f57610267565b806301339c211461026c57806306fdde03146102835780630758d924146102ae578063095ea7b3146102d957806310d5de531461031657610267565b3661026757005b600080fd5b34801561027857600080fd5b506102816109a5565b005b34801561028f57600080fd5b50610298610be0565b6040516102a59190613228565b60405180910390f35b3480156102ba57600080fd5b506102c3610c72565b6040516102d091906132c9565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb919061335d565b610c98565b60405161030d91906133b8565b60405180910390f35b34801561032257600080fd5b5061033d600480360381019061033891906133d3565b610cb6565b60405161034a91906133b8565b60405180910390f35b34801561035f57600080fd5b50610368610cd6565b604051610375919061340f565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a0919061342a565b610ce0565b6040516103b291906133b8565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd919061347d565b610dd8565b005b3480156103f057600080fd5b506103f9610f20565b60405161040691906134c6565b60405180910390f35b34801561041b57600080fd5b506104366004803603810190610431919061335d565b610f29565b60405161044391906133b8565b60405180910390f35b34801561045857600080fd5b50610461610fd5565b60405161046e91906134f0565b60405180910390f35b34801561048357600080fd5b5061048c610ffb565b60405161049991906133b8565b60405180910390f35b3480156104ae57600080fd5b506104b761100e565b005b3480156104c557600080fd5b506104ce6110da565b6040516104db919061340f565b60405180910390f35b3480156104f057600080fd5b5061050b600480360381019061050691906133d3565b6110e0565b005b34801561051957600080fd5b506105226111de565b60405161052f919061340f565b60405180910390f35b34801561054457600080fd5b5061054d6111e4565b60405161055a919061340f565b60405180910390f35b34801561056f57600080fd5b5061058a600480360381019061058591906133d3565b6111ea565b604051610597919061340f565b60405180910390f35b3480156105ac57600080fd5b506105b5611232565b005b3480156105c357600080fd5b506105de60048036038101906105d9919061347d565b611246565b005b3480156105ec57600080fd5b506105f561129e565b005b34801561060357600080fd5b5061061e60048036038101906106199190613537565b6112c3565b005b34801561062c57600080fd5b506106356113bc565b604051610642919061340f565b60405180910390f35b34801561065757600080fd5b506106606113c2565b60405161066d91906134f0565b60405180910390f35b34801561068257600080fd5b5061068b6113ec565b6040516106989190613228565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c39190613537565b61147e565b005b3480156106d657600080fd5b506106df61156a565b005b3480156106ed57600080fd5b506106f66117ac565b005b34801561070457600080fd5b5061071f600480360381019061071a919061335d565b6117d1565b60405161072c91906133b8565b60405180910390f35b34801561074157600080fd5b5061075c6004803603810190610757919061335d565b6118bc565b60405161076991906133b8565b60405180910390f35b34801561077e57600080fd5b50610799600480360381019061079491906133d3565b6118da565b6040516107a691906133b8565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d19190613537565b6118fa565b005b3480156107e457600080fd5b506107ff60048036038101906107fa919061347d565b6119ab565b005b34801561080d57600080fd5b50610816611af3565b60405161082391906134f0565b60405180910390f35b34801561083857600080fd5b50610853600480360381019061084e919061347d565b611b19565b005b34801561086157600080fd5b5061086a611bf2565b604051610877919061340f565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a2919061347d565b611bf8565b005b3480156108b557600080fd5b506108d060048036038101906108cb9190613577565b611d40565b6040516108dd919061340f565b60405180910390f35b3480156108f257600080fd5b506108fb611dc7565b604051610908919061340f565b60405180910390f35b34801561091d57600080fd5b506109386004803603810190610933919061347d565b611dcd565b005b34801561094657600080fd5b50610961600480360381019061095c91906133d3565b611e25565b005b34801561096f57600080fd5b50610978611ea8565b005b34801561098657600080fd5b5061098f611f21565b60405161099c919061340f565b60405180910390f35b6109ad611f27565b600047116109f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e790613629565b60405180910390fd5b60006109fb306111ea565b11610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a32906136bb565b60405180910390fd5b610a7030600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610a6b306111ea565b611fa5565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610abb306111ea565b60008030426040518863ffffffff1660e01b8152600401610ae196959493929190613716565b60606040518083038185885af1158015610aff573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610b24919061378c565b92505050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb73985deedc526d3a524b0acfbf1778ef34b7422397836040518363ffffffff1660e01b8152600401610b999291906137df565b6020604051808303816000875af1158015610bb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bdc919061381d565b5050565b606060038054610bef90613879565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1b90613879565b8015610c685780601f10610c3d57610100808354040283529160200191610c68565b820191906000526020600020905b815481529060010190602001808311610c4b57829003601f168201915b5050505050905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610cac610ca561216e565b8484611fa5565b6001905092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6000610ced848484612176565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610d3861216e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf9061391c565b60405180910390fd5b610dcc85610dc461216e565b858403611fa5565b60019150509392505050565b610de0611f27565b670de0b6b3a764000060646001610df5610cd6565b610dff919061396b565b610e0991906139dc565b610e1391906139dc565b811015610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90613a7f565b60405180910390fd5b670de0b6b3a764000060646002610e6a610cd6565b610e74919061396b565b610e7e91906139dc565b610e8891906139dc565b811115610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec190613b11565b60405180910390fd5b670de0b6b3a764000081610ede919061396b565b6006819055507ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009600654604051610f15919061340f565b60405180910390a150565b60006012905090565b6000610fcb610f3661216e565b848460016000610f4461216e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fc69190613b31565b611fa5565b6001905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60149054906101000a900460ff1681565b611016611f27565b600b54611022306111ea565b1015611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a90613bd7565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506110866129e3565b6000600a60146101000a81548160ff0219169083151502179055507f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb32426040516110d0919061340f565b60405180910390a1565b600f5481565b6110e8611f27565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e90613c69565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f2e1e696cfb265fa16e1170d24ef04cb2262772bde00ecf34d80bae6722487b7f60405160405180910390a250565b60075481565b600e5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61123a611f27565b6112446000612ae7565b565b61124e611f27565b80600d81905550600a600d54111561129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129290613cd5565b60405180910390fd5b50565b6112a6611f27565b6000600c60146101000a81548160ff021916908315150217905550565b6112cb611f27565b8061136157600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135790613d67565b60405180910390fd5b5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546113fb90613879565b80601f016020809104026020016040519081016040528092919081815260200182805461142790613879565b80156114745780601f1061144957610100808354040283529160200191611474565b820191906000526020600020905b81548152906001019060200180831161145757829003601f168201915b5050505050905090565b611486611f27565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90613df9565b60405180910390fd5b6115208282612bad565b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b611572611f27565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116039190613e2e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561168c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b09190613e2e565b6040518363ffffffff1660e01b81526004016116cd929190613e5b565b6020604051808303816000875af11580156116ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117109190613e2e565b600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061177d600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612c58565b6117aa600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612bad565b565b6117b4611f27565b6001600c60146101000a81548160ff021916908315150217905550565b600080600160006117e061216e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490613ef6565b60405180910390fd5b6118b16118a861216e565b85858403611fa5565b600191505092915050565b60006118d06118c961216e565b8484612176565b6001905092915050565b60126020528060005260406000206000915054906101000a900460ff1681565b611902611f27565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161199f91906133b8565b60405180910390a25050565b6119b3611f27565b670de0b6b3a7640000606460026119c8610cd6565b6119d2919061396b565b6119dc91906139dc565b6119e691906139dc565b811015611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f90613f88565b60405180910390fd5b670de0b6b3a764000060646005611a3d610cd6565b611a47919061396b565b611a5191906139dc565b611a5b91906139dc565b811115611a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a949061401a565b60405180910390fd5b670de0b6b3a764000081611ab1919061396b565b6008819055507fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc600854604051611ae8919061340f565b60405180910390a150565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b21611f27565b620186a06001611b2f610cd6565b611b39919061396b565b611b4391906139dc565b811015611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c906140ac565b60405180910390fd5b6103e86001611b92610cd6565b611b9c919061396b565b611ba691906139dc565b811115611be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdf9061413e565b60405180910390fd5b80600b8190555050565b600d5481565b611c00611f27565b670de0b6b3a764000060646001611c15610cd6565b611c1f919061396b565b611c2991906139dc565b611c3391906139dc565b811015611c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6c906141d0565b60405180910390fd5b670de0b6b3a764000060646002611c8a610cd6565b611c94919061396b565b611c9e91906139dc565b611ca891906139dc565b811115611cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce190614262565b60405180910390fd5b670de0b6b3a764000081611cfe919061396b565b6007819055507f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e600754604051611d35919061340f565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b611dd5611f27565b80600e81905550600a600e541115611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1990613cd5565b60405180910390fd5b50565b611e2d611f27565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e93906142f4565b60405180910390fd5b611ea581612ae7565b50565b611eb0611f27565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611ed690614345565b60006040518083038185875af1925050503d8060008114611f13576040519150601f19603f3d011682016040523d82523d6000602084013e611f18565b606091505b50508091505050565b60085481565b611f2f61216e565b73ffffffffffffffffffffffffffffffffffffffff16611f4d6113c2565b73ffffffffffffffffffffffffffffffffffffffff1614611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a906143a6565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b90614438565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207a906144ca565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612161919061340f565b60405180910390a3505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc9061455c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b906145ee565b60405180910390fd5b60008111612297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228e9061465a565b60405180910390fd5b600c60149054906101000a900460ff16156126f7576122b46113c2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561232257506122f26113c2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561235c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123b25750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124085750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156126f657601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124b05750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612557576006548111156124fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f1906146ec565b60405180910390fd5b600854612506836111ea565b826125119190613b31565b1115612552576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254990614758565b60405180910390fd5b6126f5565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125fa5750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561264957600754811115612644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263b906147ea565b60405180910390fd5b6126f4565b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166126f3576008546126a6836111ea565b826126b19190613b31565b11156126f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e990614758565b60405180910390fd5b5b5b5b5b5b6000612702306111ea565b90506000600b5482101590508080156127285750600a60149054906101000a900460ff16155b801561277d5750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156127c1576001600a60146101000a81548160ff0219169083151502179055506127a56129e3565b6000600a60146101000a81548160ff0219169083151502179055505b600060019050601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128685750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561287257600090505b600081156129cf57601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128d557506000600e54115b15612914576064600e54866128ea919061396b565b6128f491906139dc565b905080600f60008282546129089190613b31565b925050819055506129ab565b601260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561296f57506000600d54115b156129aa576064600d5486612984919061396b565b61298e91906139dc565b905080600f60008282546129a29190613b31565b925050819055505b5b60008111156129c0576129bf873083612cec565b5b80856129cc919061480a565b94505b6129da878787612cec565b50505050505050565b60006129ee306111ea565b90506000600f5490506000821480612a065750600081145b15612a12575050612ae5565b600a600b54612a21919061396b565b821115612a3a57600a600b54612a37919061396b565b91505b6000612a4583612f55565b60004790506000600f81905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051612a9890614345565b60006040518083038185875af1925050503d8060008114612ad5576040519150601f19603f3d011682016040523d82523d6000602084013e612ada565b606091505b505080925050505050505b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612c0e8282612c58565b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd67468282604051612ce092919061483e565b60405180910390a15050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d529061455c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc1906145ee565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e47906148d9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ee39190613b31565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612f47919061340f565b60405180910390a350505050565b6000600267ffffffffffffffff811115612f7257612f716148f9565b5b604051908082528060200260200182016040528015612fa05781602001602082028036833780820191505090505b5090503081600081518110612fb857612fb7614928565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561305f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130839190613e2e565b8160018151811061309757613096614928565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506130fe30600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611fa5565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613162959493929190614a15565b600060405180830381600087803b15801561317c57600080fd5b505af1158015613190573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131d25780820151818401526020810190506131b7565b60008484015250505050565b6000601f19601f8301169050919050565b60006131fa82613198565b61320481856131a3565b93506132148185602086016131b4565b61321d816131de565b840191505092915050565b6000602082019050818103600083015261324281846131ef565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061328f61328a6132858461324a565b61326a565b61324a565b9050919050565b60006132a182613274565b9050919050565b60006132b382613296565b9050919050565b6132c3816132a8565b82525050565b60006020820190506132de60008301846132ba565b92915050565b600080fd5b60006132f48261324a565b9050919050565b613304816132e9565b811461330f57600080fd5b50565b600081359050613321816132fb565b92915050565b6000819050919050565b61333a81613327565b811461334557600080fd5b50565b60008135905061335781613331565b92915050565b60008060408385031215613374576133736132e4565b5b600061338285828601613312565b925050602061339385828601613348565b9150509250929050565b60008115159050919050565b6133b28161339d565b82525050565b60006020820190506133cd60008301846133a9565b92915050565b6000602082840312156133e9576133e86132e4565b5b60006133f784828501613312565b91505092915050565b61340981613327565b82525050565b60006020820190506134246000830184613400565b92915050565b600080600060608486031215613443576134426132e4565b5b600061345186828701613312565b935050602061346286828701613312565b925050604061347386828701613348565b9150509250925092565b600060208284031215613493576134926132e4565b5b60006134a184828501613348565b91505092915050565b600060ff82169050919050565b6134c0816134aa565b82525050565b60006020820190506134db60008301846134b7565b92915050565b6134ea816132e9565b82525050565b600060208201905061350560008301846134e1565b92915050565b6135148161339d565b811461351f57600080fd5b50565b6000813590506135318161350b565b92915050565b6000806040838503121561354e5761354d6132e4565b5b600061355c85828601613312565b925050602061356d85828601613522565b9150509250929050565b6000806040838503121561358e5761358d6132e4565b5b600061359c85828601613312565b92505060206135ad85828601613312565b9150509250929050565b7f4d757374206861766520455448206f6e20636f6e747261637420746f206c617560008201527f6e63680000000000000000000000000000000000000000000000000000000000602082015250565b60006136136023836131a3565b915061361e826135b7565b604082019050919050565b6000602082019050818103600083015261364281613606565b9050919050565b7f4d757374206861766520546f6b656e73206f6e20636f6e747261637420746f2060008201527f6c61756e63680000000000000000000000000000000000000000000000000000602082015250565b60006136a56026836131a3565b91506136b082613649565b604082019050919050565b600060208201905081810360008301526136d481613698565b9050919050565b6000819050919050565b60006137006136fb6136f6846136db565b61326a565b613327565b9050919050565b613710816136e5565b82525050565b600060c08201905061372b60008301896134e1565b6137386020830188613400565b6137456040830187613707565b6137526060830186613707565b61375f60808301856134e1565b61376c60a0830184613400565b979650505050505050565b60008151905061378681613331565b92915050565b6000806000606084860312156137a5576137a46132e4565b5b60006137b386828701613777565b93505060206137c486828701613777565b92505060406137d586828701613777565b9150509250925092565b60006040820190506137f460008301856134e1565b6138016020830184613400565b9392505050565b6000815190506138178161350b565b92915050565b600060208284031215613833576138326132e4565b5b600061384184828501613808565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061389157607f821691505b6020821081036138a4576138a361384a565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006139066028836131a3565b9150613911826138aa565b604082019050919050565b60006020820190508181036000830152613935816138f9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061397682613327565b915061398183613327565b925082820261398f81613327565b915082820484148315176139a6576139a561393c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139e782613327565b91506139f283613327565b925082613a0257613a016139ad565b5b828204905092915050565b7f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f7765722060008201527f7468616e20312500000000000000000000000000000000000000000000000000602082015250565b6000613a696027836131a3565b9150613a7482613a0d565b604082019050919050565b60006020820190508181036000830152613a9881613a5c565b9050919050565b7f43616e6e6f7420736574206275792073656c6c20616d6f756e7420686967686560008201527f72207468616e2032250000000000000000000000000000000000000000000000602082015250565b6000613afb6029836131a3565b9150613b0682613a9f565b604082019050919050565b60006020820190508181036000830152613b2a81613aee565b9050919050565b6000613b3c82613327565b9150613b4783613327565b9250828201905080821115613b5f57613b5e61393c565b5b92915050565b7f43616e206f6e6c792073776170207768656e20746f6b656e20616d6f756e742060008201527f6973206174206f7220686967686572207468616e207265737472696374696f6e602082015250565b6000613bc16040836131a3565b9150613bcc82613b65565b604082019050919050565b60006020820190508181036000830152613bf081613bb4565b9050919050565b7f5f6f7065726174696f6e734164647265737320616464726573732063616e6e6f60008201527f7420626520300000000000000000000000000000000000000000000000000000602082015250565b6000613c536026836131a3565b9150613c5e82613bf7565b604082019050919050565b60006020820190508181036000830152613c8281613c46565b9050919050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000613cbf601d836131a3565b9150613cca82613c89565b602082019050919050565b60006020820190508181036000830152613cee81613cb2565b9050919050565b7f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060008201527f6d61782074786e00000000000000000000000000000000000000000000000000602082015250565b6000613d516027836131a3565b9150613d5c82613cf5565b604082019050919050565b60006020820190508181036000830152613d8081613d44565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613de36039836131a3565b9150613dee82613d87565b604082019050919050565b60006020820190508181036000830152613e1281613dd6565b9050919050565b600081519050613e28816132fb565b92915050565b600060208284031215613e4457613e436132e4565b5b6000613e5284828501613e19565b91505092915050565b6000604082019050613e7060008301856134e1565b613e7d60208301846134e1565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613ee06025836131a3565b9150613eeb82613e84565b604082019050919050565b60006020820190508181036000830152613f0f81613ed3565b9050919050565b7f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f7760008201527f6572207468616e20322500000000000000000000000000000000000000000000602082015250565b6000613f72602a836131a3565b9150613f7d82613f16565b604082019050919050565b60006020820190508181036000830152613fa181613f65565b9050919050565b7f43616e6e6f7420736574206d61782077616c6c657420616d6f756e742068696760008201527f686572207468616e203525000000000000000000000000000000000000000000602082015250565b6000614004602b836131a3565b915061400f82613fa8565b604082019050919050565b6000602082019050818103600083015261403381613ff7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006140966035836131a3565b91506140a18261403a565b604082019050919050565b600060208201905081810360008301526140c581614089565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e312520746f74616c20737570706c792e000000000000000000000000602082015250565b60006141286034836131a3565b9150614133826140cc565b604082019050919050565b600060208201905081810360008301526141578161411b565b9050919050565b7f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f77657260008201527f207468616e203125000000000000000000000000000000000000000000000000602082015250565b60006141ba6028836131a3565b91506141c58261415e565b604082019050919050565b600060208201905081810360008301526141e9816141ad565b9050919050565b7f43616e6e6f7420736574206d61782073656c6c20616d6f756e7420686967686560008201527f72207468616e2032250000000000000000000000000000000000000000000000602082015250565b600061424c6029836131a3565b9150614257826141f0565b604082019050919050565b6000602082019050818103600083015261427b8161423f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006142de6026836131a3565b91506142e982614282565b604082019050919050565b6000602082019050818103600083015261430d816142d1565b9050919050565b600081905092915050565b50565b600061432f600083614314565b915061433a8261431f565b600082019050919050565b600061435082614322565b9150819050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006143906020836131a3565b915061439b8261435a565b602082019050919050565b600060208201905081810360008301526143bf81614383565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006144226024836131a3565b915061442d826143c6565b604082019050919050565b6000602082019050818103600083015261445181614415565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006144b46022836131a3565b91506144bf82614458565b604082019050919050565b600060208201905081810360008301526144e3816144a7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006145466025836131a3565b9150614551826144ea565b604082019050919050565b6000602082019050818103600083015261457581614539565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006145d86023836131a3565b91506145e38261457c565b604082019050919050565b60006020820190508181036000830152614607816145cb565b9050919050565b7f616d6f756e74206d7573742062652067726561746572207468616e2030000000600082015250565b6000614644601d836131a3565b915061464f8261460e565b602082019050919050565b6000602082019050818103600083015261467381614637565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d6178206275792e000000000000000000000000000000000000000000000000602082015250565b60006146d66028836131a3565b91506146e18261467a565b604082019050919050565b60006020820190508181036000830152614705816146c9565b9050919050565b7f4d61782057616c6c657420457863656564656400000000000000000000000000600082015250565b60006147426013836131a3565b915061474d8261470c565b602082019050919050565b6000602082019050818103600083015261477181614735565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61782073656c6c2e00000000000000000000000000000000000000000000602082015250565b60006147d4602a836131a3565b91506147df82614778565b604082019050919050565b60006020820190508181036000830152614803816147c7565b9050919050565b600061481582613327565b915061482083613327565b92508282039050818111156148385761483761393c565b5b92915050565b600060408201905061485360008301856134e1565b61486060208301846133a9565b9392505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006148c36026836131a3565b91506148ce82614867565b604082019050919050565b600060208201905081810360008301526148f2816148b6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61498c816132e9565b82525050565b600061499e8383614983565b60208301905092915050565b6000602082019050919050565b60006149c282614957565b6149cc8185614962565b93506149d783614973565b8060005b83811015614a085781516149ef8882614992565b97506149fa836149aa565b9250506001810190506149db565b5085935050505092915050565b600060a082019050614a2a6000830188613400565b614a376020830187613707565b8181036040830152614a4981866149b7565b9050614a5860608301856134e1565b614a656080830184613400565b969550505050505056fea26469706673582212207d7ae5c62944ec48f38b489661cb631000d6b9441ee11a9d0bf890ca5f6e567364736f6c63430008110033

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.