ETH Price: $2,669.46 (+1.06%)

Token

Blobs ($BLOBS)
 

Overview

Max Total Supply

1,000,000,000 $BLOBS

Holders

54

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000000001 $BLOBS

Value
$0.00
0xb63b86504b57a0455fd94dda52eb8f765d8078fe
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:
Blobs

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : Blobs.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.20;

/*
                         _,.---._                 ,-,--.  
    _..---.    _.-.    ,-.' , -  `.    _..---.  ,-.'-  _\ 
  .' .'.-. \ .-,.'|   /==/_,  ,  - \ .' .'.-. \/==/_ ,_.' 
 /==/- '=' /|==|, |  |==|   .=.     /==/- '=' /\==\  \    
 |==|-,   ' |==|- |  |==|_ : ;=:  - |==|-,   '  \==\ -\   
 |==|  .=. \|==|, |  |==| , '='     |==|  .=. \ _\==\ ,\  
 /==/- '=' ,|==|- `-._\==\ -    ,_ //==/- '=' ,/==/\/ _ | 
|==|   -   //==/ - , ,/'.='. -   .'|==|   -   /\==\ - , / 
`-._`.___,' `--`-----'   `--`--''  `-._`.___,'  `--`---'  

Website: https://www.blobscoin.xyz/
Twitter: https://twitter.com/BlobsERC20
Telegram: https://t.me/Blobs_Portal
*/

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";

contract Blobs is ERC20("Blobs", "$BLOBS"), Ownable {

    // Uniswap variables
    IUniswapV2Factory public constant UNISWAP_FACTORY =
    IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f);

    IUniswapV2Router02 public constant UNISWAP_ROUTER = 
    IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    address public immutable UNISWAP_V2_PAIR;


    uint256 constant TOTAL_SUPPLY = 1_000_000_000 ether;
    uint256 public tradingOpenedOnBlock;

    bool private swapping;

    address public marketingWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
    uint256 public maxWalletAmount;
    uint256 public tokenSwapThreshold;

    uint256 public buyTotalFees = 5;
    uint256 public sellTotalFees = 5;

    uint256 public taxedTokens;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    event EnabledTrading(bool tradingActive);
    event RemovedLimits();
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event UpdatedMaxBuyAmount(uint256 newAmount);
    event UpdatedMaxSellAmount(uint256 newAmount);
    event UpdatedMaxWalletAmount(uint256 newAmount);
    event UpdatedMarketingWallet(address indexed newWallet);
    event MaxTransactionExclusion(address _address, bool excluded);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor(){

        _mint(msg.sender, TOTAL_SUPPLY);

        _approve(address(this), address(UNISWAP_ROUTER), ~uint256(0));

        _excludeFromMaxTransaction(address(UNISWAP_ROUTER), true);

    
        UNISWAP_V2_PAIR = UNISWAP_FACTORY.createPair(
            address(this),
            UNISWAP_ROUTER.WETH()
        );

        maxBuyAmount = (totalSupply() * 20) / 1_000; // 2% max buy
        maxSellAmount = (totalSupply() * 20) / 1_000; // 2% max sell
        maxWalletAmount = (totalSupply() * 20) / 1_000; // 2% max holdings
        tokenSwapThreshold = (totalSupply() * 50) / 10_000; // 0.5% swapToEth threshold 

        marketingWallet = msg.sender;

        _excludeFromMaxTransaction(msg.sender, true);
        _excludeFromMaxTransaction(address(this), true);
        _excludeFromMaxTransaction(address(0xdead), true);
        excludeFromFees(msg.sender, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
    }

    receive() external payable {}


    function updateMaxBuyAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1_000),
            "ERROR: Cannot set max buy amount lower than 0.1%"
        );
        maxBuyAmount = newNum;
        emit UpdatedMaxBuyAmount(maxBuyAmount);
    }

    function updateMaxSellAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1_000),
            "ERROR: Cannot set max sell amount lower than 0.1%"
        );
        maxSellAmount = newNum;
        emit UpdatedMaxSellAmount(maxSellAmount);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 3) / 1_000),
            "ERROR: Cannot set max wallet amount lower than 0.3%"
        );
        maxWalletAmount = newNum;
        emit UpdatedMaxWalletAmount(maxWalletAmount);
    }

    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        require(
            newAmount >= (totalSupply() * 1) / 100_000,
            "ERROR: Swap amount cannot be lower than 0.001% total supply."
        );
    
        tokenSwapThreshold = newAmount;
    }

    function removeLimits() external onlyOwner {
        limitsInEffect = false;
        emit RemovedLimits();
    }


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

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




    function openTrading() public onlyOwner {
        require(tradingOpenedOnBlock == 0, "ERROR: Token state is already live !");
        tradingOpenedOnBlock = block.number;
        tradingActive = true;
        swapEnabled = true;
        emit EnabledTrading(tradingActive);
    }


    function setMarketingWallet(address _marketingWallet) external onlyOwner {
        require(_marketingWallet != address(0), "ERROR: _marketingWallet address cannot be 0");
        marketingWallet = payable(_marketingWallet);
        emit UpdatedMarketingWallet(_marketingWallet);
    }





    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(0) &&
                to != address(0xdead)
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedMaxTransactionAmount[from] ||
                            _isExcludedMaxTransactionAmount[to],
                        "ERROR: Trading is not active."
                    );
                    require(from == owner(), "ERROR: Trading is enabled");
                }

                //when buy
                if (
                    from == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxBuyAmount,
                        "ERROR: Buy transfer amount exceeds the max buy."
                    );
                    require(
                        amount + balanceOf(to) <= maxWalletAmount,
                        "ERROR: Cannot Exceed max wallet"
                    );
                }
                //when sell
                else if (
                    to == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxSellAmount,
                        "ERROR: Sell transfer amount exceeds the max sell."
                    );
                } else if (
                    !_isExcludedMaxTransactionAmount[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount + balanceOf(to) <= maxWalletAmount,
                        "ERROR: Cannot Exceed max wallet"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= tokenSwapThreshold;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !(from == UNISWAP_V2_PAIR) &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }

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

        uint256 fees = 0;
    

        if (takeFee) {

            // Sell
            if (to == UNISWAP_V2_PAIR && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / 100;
                taxedTokens += fees;
            }
            // Buy
            else if (from == UNISWAP_V2_PAIR && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / 100;
                taxedTokens += fees;
            }

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

            amount -= fees;
        }

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


    function swapTokensForEth(uint256 tokenAmount) private {
        
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = UNISWAP_ROUTER.WETH();

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

    function swapBack() private {

      
        uint256 contractBalance = balanceOf(address(this));

        uint256 totalTokensToSwap =  taxedTokens;

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

        if (contractBalance > tokenSwapThreshold) {
            contractBalance = tokenSwapThreshold;
        }

        bool success;
    
        swapTokensForEth(contractBalance);

        (success, ) = address(marketingWallet).call{value: address(this).balance}("");
    }



    function withdrawStuckToken(address _token) external {
        require(
            msg.sender == owner() || msg.sender == marketingWallet,
            "ERROR: Not authorized"
        );
        if (_token == address(0x0)) {
            payable(owner()).transfer(address(this).balance);
            return;
        }
        ERC20 erc20token = ERC20(_token);
        uint256 balance = erc20token.balanceOf(address(this));
        erc20token.transfer(owner(), balance);
    }


    function withdrawStuckEth() external onlyOwner {
        (bool success, ) = owner().call{value: address(this).balance}("");
        require(success, "ERROR: failed to withdraw funds");
    }
    


}

File 2 of 9 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 3 of 9 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 4 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

File 5 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

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

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

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

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

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

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

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

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

File 6 of 9 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 7 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 8 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 9 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"tradingActive","type":"bool"}],"name":"EnabledTrading","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"RemovedLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedMarketingWallet","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"},{"inputs":[],"name":"UNISWAP_FACTORY","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_ROUTER","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_V2_PAIR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","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":"maxWalletAmount","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":"openTrading","outputs":[],"stateMutability":"nonpayable","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":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpenedOnBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526001600760156101000a81548160ff0219169083151502179055505f600760166101000a81548160ff0219169083151502179055505f600760176101000a81548160ff0219169083151502179055506005600c556005600d5534801562000069575f80fd5b506040518060400160405280600581526020017f426c6f62730000000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f24424c4f425300000000000000000000000000000000000000000000000000008152508160039081620000e7919062000cd1565b508060049081620000f9919062000cd1565b5050506200011c620001106200045c60201b60201c565b6200046360201b60201c565b6200013a336b033b2e3c9fd0803ce80000006200052660201b60201c565b6200016230737a250d5630b4cf539739df2c5dacb4c659f2488d5f196200068b60201b60201c565b62000189737a250d5630b4cf539739df2c5dacb4c659f2488d60016200085660201b60201c565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000218573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200023e919062000e1a565b6040518363ffffffff1660e01b81526004016200025d92919062000e5b565b6020604051808303815f875af11580156200027a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002a0919062000e1a565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506103e86014620002e8620008e960201b60201c565b620002f4919062000eb3565b62000300919062000f2a565b6008819055506103e860146200031b620008e960201b60201c565b62000327919062000eb3565b62000333919062000f2a565b6009819055506103e860146200034e620008e960201b60201c565b6200035a919062000eb3565b62000366919062000f2a565b600a81905550612710603262000381620008e960201b60201c565b6200038d919062000eb3565b62000399919062000f2a565b600b8190555033600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003f33360016200085660201b60201c565b620004063060016200085660201b60201c565b6200041b61dead60016200085660201b60201c565b6200042e336001620008f260201b60201c565b62000441306001620008f260201b60201c565b6200045661dead6001620008f260201b60201c565b6200123d565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000597576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200058e9062000fbf565b60405180910390fd5b620005aa5f8383620009aa60201b60201c565b8060025f828254620005bd919062000fdf565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200066c91906200102a565b60405180910390a3620006875f8383620009af60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620006fc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006f390620010b9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200076d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000764906200114d565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200084991906200102a565b60405180910390a3505050565b8060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd67468282604051620008dd92919062001189565b60405180910390a15050565b5f600254905090565b62000902620009b460201b60201c565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200099e9190620011b4565b60405180910390a25050565b505050565b505050565b620009c46200045c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620009ea62000a4560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a3a906200121d565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000ae957607f821691505b60208210810362000aff5762000afe62000aa4565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000b637fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b26565b62000b6f868362000b26565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000bb962000bb362000bad8462000b87565b62000b90565b62000b87565b9050919050565b5f819050919050565b62000bd48362000b99565b62000bec62000be38262000bc0565b84845462000b32565b825550505050565b5f90565b62000c0262000bf4565b62000c0f81848462000bc9565b505050565b5b8181101562000c365762000c2a5f8262000bf8565b60018101905062000c15565b5050565b601f82111562000c855762000c4f8162000b05565b62000c5a8462000b17565b8101602085101562000c6a578190505b62000c8262000c798562000b17565b83018262000c14565b50505b505050565b5f82821c905092915050565b5f62000ca75f198460080262000c8a565b1980831691505092915050565b5f62000cc1838362000c96565b9150826002028217905092915050565b62000cdc8262000a6d565b67ffffffffffffffff81111562000cf85762000cf762000a77565b5b62000d04825462000ad1565b62000d1182828562000c3a565b5f60209050601f83116001811462000d47575f841562000d32578287015190505b62000d3e858262000cb4565b86555062000dad565b601f19841662000d578662000b05565b5f5b8281101562000d805784890151825560018201915060208501945060208101905062000d59565b8683101562000da0578489015162000d9c601f89168262000c96565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000de48262000db9565b9050919050565b62000df68162000dd8565b811462000e01575f80fd5b50565b5f8151905062000e148162000deb565b92915050565b5f6020828403121562000e325762000e3162000db5565b5b5f62000e418482850162000e04565b91505092915050565b62000e558162000dd8565b82525050565b5f60408201905062000e705f83018562000e4a565b62000e7f602083018462000e4a565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000ebf8262000b87565b915062000ecc8362000b87565b925082820262000edc8162000b87565b9150828204841483151762000ef65762000ef562000e86565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000f368262000b87565b915062000f438362000b87565b92508262000f565762000f5562000efd565b5b828204905092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000fa7601f8362000f61565b915062000fb48262000f71565b602082019050919050565b5f6020820190508181035f83015262000fd88162000f99565b9050919050565b5f62000feb8262000b87565b915062000ff88362000b87565b925082820190508082111562001013576200101262000e86565b5b92915050565b620010248162000b87565b82525050565b5f6020820190506200103f5f83018462001019565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f620010a160248362000f61565b9150620010ae8262001045565b604082019050919050565b5f6020820190508181035f830152620010d28162001093565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6200113560228362000f61565b91506200114282620010d9565b604082019050919050565b5f6020820190508181035f830152620011668162001127565b9050919050565b5f8115159050919050565b62001183816200116d565b82525050565b5f6040820190506200119e5f83018562000e4a565b620011ad602083018462001178565b9392505050565b5f602082019050620011c95f83018462001178565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6200120560208362000f61565b91506200121282620011cf565b602082019050919050565b5f6020820190508181035f8301526200123681620011f7565b9050919050565b608051613dac620012795f395f818161161701528181611c1401528181611d5d01528181611f9b01528181612183015261221d0152613dac5ff3fe60806040526004361061023e575f3560e01c806376d628b71161012d578063c18bc195116100aa578063d85ba0631161006e578063d85ba06314610829578063dc3f0d0f14610853578063dd62ed3e1461087b578063f2fde38b146108b7578063f40acc3d146108df57610245565b8063c18bc1951461076f578063c74c0fac14610797578063c9567bf9146107c1578063d257b34f146107d7578063d8264920146107ff57610245565b8063a457c2d7116100f1578063a457c2d71461067b578063a9059cbb146106b7578063aa4bde28146106f3578063bbc0c7421461071d578063c02466681461074757610245565b806376d628b7146105bd5780637fa787ba146105e757806388e765ff146105fd5780638da5cb5b1461062757806395d89b411461065157610245565b806339509351116101bb5780636ddd17131161017f5780636ddd17131461050157806370a082311461052b578063715018a614610567578063751039fc1461057d57806375f0a8741461059357610245565b8063395093511461041f5780634a62bb651461045b5780635d098b381461048557806366d602ae146104ad5780636a486a8e146104d757610245565b806310d5de531161020257806310d5de531461032b57806318160ddd1461036757806323b872dd146103915780632be32b61146103cd578063313ce567146103f557610245565b8063068acf6c1461024957806306fdde0314610271578063095ea7b31461029b5780630a3b39a3146102d75780630e3000991461030157610245565b3661024557005b5f80fd5b348015610254575f80fd5b5061026f600480360381019061026a91906129c4565b610909565b005b34801561027c575f80fd5b50610285610b61565b6040516102929190612a79565b60405180910390f35b3480156102a6575f80fd5b506102c160048036038101906102bc9190612acc565b610bf1565b6040516102ce9190612b24565b60405180910390f35b3480156102e2575f80fd5b506102eb610c13565b6040516102f89190612b4c565b60405180910390f35b34801561030c575f80fd5b50610315610c19565b6040516103229190612b4c565b60405180910390f35b348015610336575f80fd5b50610351600480360381019061034c91906129c4565b610c1f565b60405161035e9190612b24565b60405180910390f35b348015610372575f80fd5b5061037b610c3c565b6040516103889190612b4c565b60405180910390f35b34801561039c575f80fd5b506103b760048036038101906103b29190612b65565b610c45565b6040516103c49190612b24565b60405180910390f35b3480156103d8575f80fd5b506103f360048036038101906103ee9190612bb5565b610c73565b005b348015610400575f80fd5b50610409610d21565b6040516104169190612bfb565b60405180910390f35b34801561042a575f80fd5b5061044560048036038101906104409190612acc565b610d29565b6040516104529190612b24565b60405180910390f35b348015610466575f80fd5b5061046f610d5f565b60405161047c9190612b24565b60405180910390f35b348015610490575f80fd5b506104ab60048036038101906104a691906129c4565b610d72565b005b3480156104b8575f80fd5b506104c1610e6f565b6040516104ce9190612b4c565b60405180910390f35b3480156104e2575f80fd5b506104eb610e75565b6040516104f89190612b4c565b60405180910390f35b34801561050c575f80fd5b50610515610e7b565b6040516105229190612b24565b60405180910390f35b348015610536575f80fd5b50610551600480360381019061054c91906129c4565b610e8e565b60405161055e9190612b4c565b60405180910390f35b348015610572575f80fd5b5061057b610ed3565b005b348015610588575f80fd5b50610591610ee6565b005b34801561059e575f80fd5b506105a7610f36565b6040516105b49190612c23565b60405180910390f35b3480156105c8575f80fd5b506105d1610f5c565b6040516105de9190612b4c565b60405180910390f35b3480156105f2575f80fd5b506105fb610f62565b005b348015610608575f80fd5b5061061161101c565b60405161061e9190612b4c565b60405180910390f35b348015610632575f80fd5b5061063b611022565b6040516106489190612c23565b60405180910390f35b34801561065c575f80fd5b5061066561104a565b6040516106729190612a79565b60405180910390f35b348015610686575f80fd5b506106a1600480360381019061069c9190612acc565b6110da565b6040516106ae9190612b24565b60405180910390f35b3480156106c2575f80fd5b506106dd60048036038101906106d89190612acc565b61114f565b6040516106ea9190612b24565b60405180910390f35b3480156106fe575f80fd5b50610707611171565b6040516107149190612b4c565b60405180910390f35b348015610728575f80fd5b50610731611177565b60405161073e9190612b24565b60405180910390f35b348015610752575f80fd5b5061076d60048036038101906107689190612c66565b61118a565b005b34801561077a575f80fd5b5061079560048036038101906107909190612bb5565b611238565b005b3480156107a2575f80fd5b506107ab6112e6565b6040516107b89190612cff565b60405180910390f35b3480156107cc575f80fd5b506107d56112fe565b005b3480156107e2575f80fd5b506107fd60048036038101906107f89190612bb5565b6113cf565b005b34801561080a575f80fd5b50610813611445565b6040516108209190612d38565b60405180910390f35b348015610834575f80fd5b5061083d61145d565b60405161084a9190612b4c565b60405180910390f35b34801561085e575f80fd5b5061087960048036038101906108749190612bb5565b611463565b005b348015610886575f80fd5b506108a1600480360381019061089c9190612d51565b611511565b6040516108ae9190612b4c565b60405180910390f35b3480156108c2575f80fd5b506108dd60048036038101906108d891906129c4565b611593565b005b3480156108ea575f80fd5b506108f3611615565b6040516109009190612c23565b60405180910390f35b610911611022565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806109975750600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6109d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cd90612dd9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a5957610a11611022565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610a53573d5f803e3d5ffd5b50610b5e565b5f8190505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a979190612c23565b602060405180830381865afa158015610ab2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ad69190612e0b565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610afc611022565b836040518363ffffffff1660e01b8152600401610b1a929190612e36565b6020604051808303815f875af1158015610b36573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b5a9190612e71565b5050505b50565b606060038054610b7090612ec9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9c90612ec9565b8015610be75780601f10610bbe57610100808354040283529160200191610be7565b820191905f5260205f20905b815481529060010190602001808311610bca57829003601f168201915b5050505050905090565b5f80610bfb611639565b9050610c08818585611640565b600191505092915050565b60065481565b600b5481565b6010602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b5f80610c4f611639565b9050610c5c858285611803565b610c6785858561188e565b60019150509392505050565b610c7b6122e9565b6103e86001610c88610c3c565b610c929190612f26565b610c9c9190612f94565b811015610cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd590613034565b60405180910390fd5b806008819055507ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009600854604051610d169190612b4c565b60405180910390a150565b5f6012905090565b5f80610d33611639565b9050610d54818585610d458589611511565b610d4f9190613052565b611640565b600191505092915050565b600760159054906101000a900460ff1681565b610d7a6122e9565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf906130f5565b60405180910390fd5b80600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f2026f0b479f097ea9d4c74dac26e5271ba4d59931603970da5458ea8aa3dcf3760405160405180910390a250565b60095481565b600d5481565b600760179054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610edb6122e9565b610ee45f612367565b565b610eee6122e9565b5f600760156101000a81548160ff0219169083151502179055507fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c60405160405180910390a1565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b610f6a6122e9565b5f610f73611022565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f9690613140565b5f6040518083038185875af1925050503d805f8114610fd0576040519150601f19603f3d011682016040523d82523d5f602084013e610fd5565b606091505b5050905080611019576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110109061319e565b60405180910390fd5b50565b60085481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461105990612ec9565b80601f016020809104026020016040519081016040528092919081815260200182805461108590612ec9565b80156110d05780601f106110a7576101008083540402835291602001916110d0565b820191905f5260205f20905b8154815290600101906020018083116110b357829003601f168201915b5050505050905090565b5f806110e4611639565b90505f6110f18286611511565b905083811015611136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112d9061322c565b60405180910390fd5b6111438286868403611640565b60019250505092915050565b5f80611159611639565b905061116681858561188e565b600191505092915050565b600a5481565b600760169054906101000a900460ff1681565b6111926122e9565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161122c9190612b24565b60405180910390a25050565b6112406122e9565b6103e8600361124d610c3c565b6112579190612f26565b6112619190612f94565b8110156112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a906132ba565b60405180910390fd5b80600a819055507fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc600a546040516112db9190612b4c565b60405180910390a150565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b6113066122e9565b5f6006541461134a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134190613348565b60405180910390fd5b436006819055506001600760166101000a81548160ff0219169083151502179055506001600760176101000a81548160ff0219169083151502179055507fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe52089600760169054906101000a900460ff166040516113c59190612b24565b60405180910390a1565b6113d76122e9565b620186a060016113e5610c3c565b6113ef9190612f26565b6113f99190612f94565b81101561143b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611432906133d6565b60405180910390fd5b80600b8190555050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600c5481565b61146b6122e9565b6103e86001611478610c3c565b6114829190612f26565b61148c9190612f94565b8110156114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590613464565b60405180910390fd5b806009819055507f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e6009546040516115069190612b4c565b60405180910390a150565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61159b6122e9565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611609576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611600906134f2565b60405180910390fd5b61161281612367565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a590613580565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361171c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117139061360e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117f69190612b4c565b60405180910390a3505050565b5f61180e8484611511565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611888578181101561187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190613676565b60405180910390fd5b6118878484848403611640565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f390613704565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190613792565b60405180910390fd5b5f81116119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a3906137fa565b60405180910390fd5b600760159054906101000a900460ff1615611f4c576119c9611022565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a375750611a07611022565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a6f57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611aa9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611f4b57600760169054906101000a900460ff16611c125760105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611b5d575060105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9390613862565b60405180910390fd5b611ba4611022565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c08906138ca565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611cb4575060105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611d5b57600854811115611cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf590613958565b60405180910390fd5b600a54611d0a83610e8e565b82611d159190613052565b1115611d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4d906139c0565b60405180910390fd5b611f4a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148015611dfd575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611e4c57600954811115611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e90613a4e565b60405180910390fd5b611f49565b60105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611eea575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611f4857600a54611efb83610e8e565b82611f069190613052565b1115611f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3e906139c0565b60405180910390fd5b5b5b5b5b5b5f611f5630610e8e565b90505f600b548210159050808015611f7a5750600760179054906101000a900460ff165b8015611f92575060075f9054906101000a900460ff16155b8015611fea57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561203d5750600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156120905750600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156120d157600160075f6101000a81548160ff0219169083151502179055506120b761242a565b5f60075f6101000a81548160ff0219169083151502179055505b5f60019050600f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806121715750600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561217a575f90505b5f81156122d5577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480156121dd57505f600d54115b1561221b576064600d54866121f29190612f26565b6121fc9190612f94565b905080600e5f82825461220f9190613052565b925050819055506122b2565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614801561227757505f600c54115b156122b1576064600c548661228c9190612f26565b6122969190612f94565b905080600e5f8282546122a99190613052565b925050819055505b5b5f8111156122c6576122c5873083612500565b5b80856122d29190613a6c565b94505b6122e0878787612500565b50505050505050565b6122f1611639565b73ffffffffffffffffffffffffffffffffffffffff1661230f611022565b73ffffffffffffffffffffffffffffffffffffffff1614612365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235c90613ae9565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f61243430610e8e565b90505f600e5490505f82148061244957505f81145b156124555750506124fe565b600b5482111561246557600b5491505b5f61246f8361276c565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516124b590613140565b5f6040518083038185875af1925050503d805f81146124ef576040519150601f19603f3d011682016040523d82523d5f602084013e6124f4565b606091505b5050809150505050505b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361256e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256590613704565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d390613792565b60405180910390fd5b6125e783838361295c565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561266a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266190613b77565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516127539190612b4c565b60405180910390a3612766848484612961565b50505050565b5f600267ffffffffffffffff81111561278857612787613b95565b5b6040519080825280602002602001820160405280156127b65781602001602082028036833780820191505090505b50905030815f815181106127cd576127cc613bc2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612864573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128889190613c03565b8160018151811061289c5761289b613bc2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161292b959493929190613d1e565b5f604051808303815f87803b158015612942575f80fd5b505af1158015612954573d5f803e3d5ffd5b505050505050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6129938261296a565b9050919050565b6129a381612989565b81146129ad575f80fd5b50565b5f813590506129be8161299a565b92915050565b5f602082840312156129d9576129d8612966565b5b5f6129e6848285016129b0565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612a26578082015181840152602081019050612a0b565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612a4b826129ef565b612a5581856129f9565b9350612a65818560208601612a09565b612a6e81612a31565b840191505092915050565b5f6020820190508181035f830152612a918184612a41565b905092915050565b5f819050919050565b612aab81612a99565b8114612ab5575f80fd5b50565b5f81359050612ac681612aa2565b92915050565b5f8060408385031215612ae257612ae1612966565b5b5f612aef858286016129b0565b9250506020612b0085828601612ab8565b9150509250929050565b5f8115159050919050565b612b1e81612b0a565b82525050565b5f602082019050612b375f830184612b15565b92915050565b612b4681612a99565b82525050565b5f602082019050612b5f5f830184612b3d565b92915050565b5f805f60608486031215612b7c57612b7b612966565b5b5f612b89868287016129b0565b9350506020612b9a868287016129b0565b9250506040612bab86828701612ab8565b9150509250925092565b5f60208284031215612bca57612bc9612966565b5b5f612bd784828501612ab8565b91505092915050565b5f60ff82169050919050565b612bf581612be0565b82525050565b5f602082019050612c0e5f830184612bec565b92915050565b612c1d81612989565b82525050565b5f602082019050612c365f830184612c14565b92915050565b612c4581612b0a565b8114612c4f575f80fd5b50565b5f81359050612c6081612c3c565b92915050565b5f8060408385031215612c7c57612c7b612966565b5b5f612c89858286016129b0565b9250506020612c9a85828601612c52565b9150509250929050565b5f819050919050565b5f612cc7612cc2612cbd8461296a565b612ca4565b61296a565b9050919050565b5f612cd882612cad565b9050919050565b5f612ce982612cce565b9050919050565b612cf981612cdf565b82525050565b5f602082019050612d125f830184612cf0565b92915050565b5f612d2282612cce565b9050919050565b612d3281612d18565b82525050565b5f602082019050612d4b5f830184612d29565b92915050565b5f8060408385031215612d6757612d66612966565b5b5f612d74858286016129b0565b9250506020612d85858286016129b0565b9150509250929050565b7f4552524f523a204e6f7420617574686f72697a656400000000000000000000005f82015250565b5f612dc36015836129f9565b9150612dce82612d8f565b602082019050919050565b5f6020820190508181035f830152612df081612db7565b9050919050565b5f81519050612e0581612aa2565b92915050565b5f60208284031215612e2057612e1f612966565b5b5f612e2d84828501612df7565b91505092915050565b5f604082019050612e495f830185612c14565b612e566020830184612b3d565b9392505050565b5f81519050612e6b81612c3c565b92915050565b5f60208284031215612e8657612e85612966565b5b5f612e9384828501612e5d565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612ee057607f821691505b602082108103612ef357612ef2612e9c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612f3082612a99565b9150612f3b83612a99565b9250828202612f4981612a99565b91508282048414831517612f6057612f5f612ef9565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612f9e82612a99565b9150612fa983612a99565b925082612fb957612fb8612f67565b5b828204905092915050565b7f4552524f523a2043616e6e6f7420736574206d61782062757920616d6f756e745f8201527f206c6f776572207468616e20302e312500000000000000000000000000000000602082015250565b5f61301e6030836129f9565b915061302982612fc4565b604082019050919050565b5f6020820190508181035f83015261304b81613012565b9050919050565b5f61305c82612a99565b915061306783612a99565b925082820190508082111561307f5761307e612ef9565b5b92915050565b7f4552524f523a205f6d61726b6574696e6757616c6c65742061646472657373205f8201527f63616e6e6f742062652030000000000000000000000000000000000000000000602082015250565b5f6130df602b836129f9565b91506130ea82613085565b604082019050919050565b5f6020820190508181035f83015261310c816130d3565b9050919050565b5f81905092915050565b50565b5f61312b5f83613113565b91506131368261311d565b5f82019050919050565b5f61314a82613120565b9150819050919050565b7f4552524f523a206661696c656420746f2077697468647261772066756e6473005f82015250565b5f613188601f836129f9565b915061319382613154565b602082019050919050565b5f6020820190508181035f8301526131b58161317c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6132166025836129f9565b9150613221826131bc565b604082019050919050565b5f6020820190508181035f8301526132438161320a565b9050919050565b7f4552524f523a2043616e6e6f7420736574206d61782077616c6c657420616d6f5f8201527f756e74206c6f776572207468616e20302e332500000000000000000000000000602082015250565b5f6132a46033836129f9565b91506132af8261324a565b604082019050919050565b5f6020820190508181035f8301526132d181613298565b9050919050565b7f4552524f523a20546f6b656e20737461746520697320616c7265616479206c695f8201527f7665202100000000000000000000000000000000000000000000000000000000602082015250565b5f6133326024836129f9565b915061333d826132d8565b604082019050919050565b5f6020820190508181035f83015261335f81613326565b9050919050565b7f4552524f523a205377617020616d6f756e742063616e6e6f74206265206c6f775f8201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000602082015250565b5f6133c0603c836129f9565b91506133cb82613366565b604082019050919050565b5f6020820190508181035f8301526133ed816133b4565b9050919050565b7f4552524f523a2043616e6e6f7420736574206d61782073656c6c20616d6f756e5f8201527f74206c6f776572207468616e20302e3125000000000000000000000000000000602082015250565b5f61344e6031836129f9565b9150613459826133f4565b604082019050919050565b5f6020820190508181035f83015261347b81613442565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6134dc6026836129f9565b91506134e782613482565b604082019050919050565b5f6020820190508181035f830152613509816134d0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61356a6024836129f9565b915061357582613510565b604082019050919050565b5f6020820190508181035f8301526135978161355e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6135f86022836129f9565b91506136038261359e565b604082019050919050565b5f6020820190508181035f830152613625816135ec565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613660601d836129f9565b915061366b8261362c565b602082019050919050565b5f6020820190508181035f83015261368d81613654565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6136ee6025836129f9565b91506136f982613694565b604082019050919050565b5f6020820190508181035f83015261371b816136e2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61377c6023836129f9565b915061378782613722565b604082019050919050565b5f6020820190508181035f8301526137a981613770565b9050919050565b7f616d6f756e74206d7573742062652067726561746572207468616e20300000005f82015250565b5f6137e4601d836129f9565b91506137ef826137b0565b602082019050919050565b5f6020820190508181035f830152613811816137d8565b9050919050565b7f4552524f523a2054726164696e67206973206e6f74206163746976652e0000005f82015250565b5f61384c601d836129f9565b915061385782613818565b602082019050919050565b5f6020820190508181035f83015261387981613840565b9050919050565b7f4552524f523a2054726164696e6720697320656e61626c6564000000000000005f82015250565b5f6138b46019836129f9565b91506138bf82613880565b602082019050919050565b5f6020820190508181035f8301526138e1816138a8565b9050919050565b7f4552524f523a20427579207472616e7366657220616d6f756e742065786365655f8201527f647320746865206d6178206275792e0000000000000000000000000000000000602082015250565b5f613942602f836129f9565b915061394d826138e8565b604082019050919050565b5f6020820190508181035f83015261396f81613936565b9050919050565b7f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574005f82015250565b5f6139aa601f836129f9565b91506139b582613976565b602082019050919050565b5f6020820190508181035f8301526139d78161399e565b9050919050565b7f4552524f523a2053656c6c207472616e7366657220616d6f756e7420657863655f8201527f65647320746865206d61782073656c6c2e000000000000000000000000000000602082015250565b5f613a386031836129f9565b9150613a43826139de565b604082019050919050565b5f6020820190508181035f830152613a6581613a2c565b9050919050565b5f613a7682612a99565b9150613a8183612a99565b9250828203905081811115613a9957613a98612ef9565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613ad36020836129f9565b9150613ade82613a9f565b602082019050919050565b5f6020820190508181035f830152613b0081613ac7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613b616026836129f9565b9150613b6c82613b07565b604082019050919050565b5f6020820190508181035f830152613b8e81613b55565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050613bfd8161299a565b92915050565b5f60208284031215613c1857613c17612966565b5b5f613c2584828501613bef565b91505092915050565b5f819050919050565b5f613c51613c4c613c4784613c2e565b612ca4565b612a99565b9050919050565b613c6181613c37565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613c9981612989565b82525050565b5f613caa8383613c90565b60208301905092915050565b5f602082019050919050565b5f613ccc82613c67565b613cd68185613c71565b9350613ce183613c81565b805f5b83811015613d11578151613cf88882613c9f565b9750613d0383613cb6565b925050600181019050613ce4565b5085935050505092915050565b5f60a082019050613d315f830188612b3d565b613d3e6020830187613c58565b8181036040830152613d508186613cc2565b9050613d5f6060830185612c14565b613d6c6080830184612b3d565b969550505050505056fea2646970667358221220c08cce2a30c31126befe8773e3f08616a5a1634ed4a60b0afee13fff93d739c864736f6c63430008140033

Deployed Bytecode

0x60806040526004361061023e575f3560e01c806376d628b71161012d578063c18bc195116100aa578063d85ba0631161006e578063d85ba06314610829578063dc3f0d0f14610853578063dd62ed3e1461087b578063f2fde38b146108b7578063f40acc3d146108df57610245565b8063c18bc1951461076f578063c74c0fac14610797578063c9567bf9146107c1578063d257b34f146107d7578063d8264920146107ff57610245565b8063a457c2d7116100f1578063a457c2d71461067b578063a9059cbb146106b7578063aa4bde28146106f3578063bbc0c7421461071d578063c02466681461074757610245565b806376d628b7146105bd5780637fa787ba146105e757806388e765ff146105fd5780638da5cb5b1461062757806395d89b411461065157610245565b806339509351116101bb5780636ddd17131161017f5780636ddd17131461050157806370a082311461052b578063715018a614610567578063751039fc1461057d57806375f0a8741461059357610245565b8063395093511461041f5780634a62bb651461045b5780635d098b381461048557806366d602ae146104ad5780636a486a8e146104d757610245565b806310d5de531161020257806310d5de531461032b57806318160ddd1461036757806323b872dd146103915780632be32b61146103cd578063313ce567146103f557610245565b8063068acf6c1461024957806306fdde0314610271578063095ea7b31461029b5780630a3b39a3146102d75780630e3000991461030157610245565b3661024557005b5f80fd5b348015610254575f80fd5b5061026f600480360381019061026a91906129c4565b610909565b005b34801561027c575f80fd5b50610285610b61565b6040516102929190612a79565b60405180910390f35b3480156102a6575f80fd5b506102c160048036038101906102bc9190612acc565b610bf1565b6040516102ce9190612b24565b60405180910390f35b3480156102e2575f80fd5b506102eb610c13565b6040516102f89190612b4c565b60405180910390f35b34801561030c575f80fd5b50610315610c19565b6040516103229190612b4c565b60405180910390f35b348015610336575f80fd5b50610351600480360381019061034c91906129c4565b610c1f565b60405161035e9190612b24565b60405180910390f35b348015610372575f80fd5b5061037b610c3c565b6040516103889190612b4c565b60405180910390f35b34801561039c575f80fd5b506103b760048036038101906103b29190612b65565b610c45565b6040516103c49190612b24565b60405180910390f35b3480156103d8575f80fd5b506103f360048036038101906103ee9190612bb5565b610c73565b005b348015610400575f80fd5b50610409610d21565b6040516104169190612bfb565b60405180910390f35b34801561042a575f80fd5b5061044560048036038101906104409190612acc565b610d29565b6040516104529190612b24565b60405180910390f35b348015610466575f80fd5b5061046f610d5f565b60405161047c9190612b24565b60405180910390f35b348015610490575f80fd5b506104ab60048036038101906104a691906129c4565b610d72565b005b3480156104b8575f80fd5b506104c1610e6f565b6040516104ce9190612b4c565b60405180910390f35b3480156104e2575f80fd5b506104eb610e75565b6040516104f89190612b4c565b60405180910390f35b34801561050c575f80fd5b50610515610e7b565b6040516105229190612b24565b60405180910390f35b348015610536575f80fd5b50610551600480360381019061054c91906129c4565b610e8e565b60405161055e9190612b4c565b60405180910390f35b348015610572575f80fd5b5061057b610ed3565b005b348015610588575f80fd5b50610591610ee6565b005b34801561059e575f80fd5b506105a7610f36565b6040516105b49190612c23565b60405180910390f35b3480156105c8575f80fd5b506105d1610f5c565b6040516105de9190612b4c565b60405180910390f35b3480156105f2575f80fd5b506105fb610f62565b005b348015610608575f80fd5b5061061161101c565b60405161061e9190612b4c565b60405180910390f35b348015610632575f80fd5b5061063b611022565b6040516106489190612c23565b60405180910390f35b34801561065c575f80fd5b5061066561104a565b6040516106729190612a79565b60405180910390f35b348015610686575f80fd5b506106a1600480360381019061069c9190612acc565b6110da565b6040516106ae9190612b24565b60405180910390f35b3480156106c2575f80fd5b506106dd60048036038101906106d89190612acc565b61114f565b6040516106ea9190612b24565b60405180910390f35b3480156106fe575f80fd5b50610707611171565b6040516107149190612b4c565b60405180910390f35b348015610728575f80fd5b50610731611177565b60405161073e9190612b24565b60405180910390f35b348015610752575f80fd5b5061076d60048036038101906107689190612c66565b61118a565b005b34801561077a575f80fd5b5061079560048036038101906107909190612bb5565b611238565b005b3480156107a2575f80fd5b506107ab6112e6565b6040516107b89190612cff565b60405180910390f35b3480156107cc575f80fd5b506107d56112fe565b005b3480156107e2575f80fd5b506107fd60048036038101906107f89190612bb5565b6113cf565b005b34801561080a575f80fd5b50610813611445565b6040516108209190612d38565b60405180910390f35b348015610834575f80fd5b5061083d61145d565b60405161084a9190612b4c565b60405180910390f35b34801561085e575f80fd5b5061087960048036038101906108749190612bb5565b611463565b005b348015610886575f80fd5b506108a1600480360381019061089c9190612d51565b611511565b6040516108ae9190612b4c565b60405180910390f35b3480156108c2575f80fd5b506108dd60048036038101906108d891906129c4565b611593565b005b3480156108ea575f80fd5b506108f3611615565b6040516109009190612c23565b60405180910390f35b610911611022565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806109975750600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6109d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cd90612dd9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a5957610a11611022565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610a53573d5f803e3d5ffd5b50610b5e565b5f8190505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a979190612c23565b602060405180830381865afa158015610ab2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ad69190612e0b565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610afc611022565b836040518363ffffffff1660e01b8152600401610b1a929190612e36565b6020604051808303815f875af1158015610b36573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b5a9190612e71565b5050505b50565b606060038054610b7090612ec9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9c90612ec9565b8015610be75780601f10610bbe57610100808354040283529160200191610be7565b820191905f5260205f20905b815481529060010190602001808311610bca57829003601f168201915b5050505050905090565b5f80610bfb611639565b9050610c08818585611640565b600191505092915050565b60065481565b600b5481565b6010602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b5f80610c4f611639565b9050610c5c858285611803565b610c6785858561188e565b60019150509392505050565b610c7b6122e9565b6103e86001610c88610c3c565b610c929190612f26565b610c9c9190612f94565b811015610cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd590613034565b60405180910390fd5b806008819055507ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009600854604051610d169190612b4c565b60405180910390a150565b5f6012905090565b5f80610d33611639565b9050610d54818585610d458589611511565b610d4f9190613052565b611640565b600191505092915050565b600760159054906101000a900460ff1681565b610d7a6122e9565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf906130f5565b60405180910390fd5b80600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f2026f0b479f097ea9d4c74dac26e5271ba4d59931603970da5458ea8aa3dcf3760405160405180910390a250565b60095481565b600d5481565b600760179054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610edb6122e9565b610ee45f612367565b565b610eee6122e9565b5f600760156101000a81548160ff0219169083151502179055507fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c60405160405180910390a1565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b610f6a6122e9565b5f610f73611022565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f9690613140565b5f6040518083038185875af1925050503d805f8114610fd0576040519150601f19603f3d011682016040523d82523d5f602084013e610fd5565b606091505b5050905080611019576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110109061319e565b60405180910390fd5b50565b60085481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461105990612ec9565b80601f016020809104026020016040519081016040528092919081815260200182805461108590612ec9565b80156110d05780601f106110a7576101008083540402835291602001916110d0565b820191905f5260205f20905b8154815290600101906020018083116110b357829003601f168201915b5050505050905090565b5f806110e4611639565b90505f6110f18286611511565b905083811015611136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112d9061322c565b60405180910390fd5b6111438286868403611640565b60019250505092915050565b5f80611159611639565b905061116681858561188e565b600191505092915050565b600a5481565b600760169054906101000a900460ff1681565b6111926122e9565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161122c9190612b24565b60405180910390a25050565b6112406122e9565b6103e8600361124d610c3c565b6112579190612f26565b6112619190612f94565b8110156112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a906132ba565b60405180910390fd5b80600a819055507fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc600a546040516112db9190612b4c565b60405180910390a150565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b6113066122e9565b5f6006541461134a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134190613348565b60405180910390fd5b436006819055506001600760166101000a81548160ff0219169083151502179055506001600760176101000a81548160ff0219169083151502179055507fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe52089600760169054906101000a900460ff166040516113c59190612b24565b60405180910390a1565b6113d76122e9565b620186a060016113e5610c3c565b6113ef9190612f26565b6113f99190612f94565b81101561143b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611432906133d6565b60405180910390fd5b80600b8190555050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600c5481565b61146b6122e9565b6103e86001611478610c3c565b6114829190612f26565b61148c9190612f94565b8110156114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590613464565b60405180910390fd5b806009819055507f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e6009546040516115069190612b4c565b60405180910390a150565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61159b6122e9565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611609576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611600906134f2565b60405180910390fd5b61161281612367565b50565b7f0000000000000000000000005e79b18c25927259e8533e008c368b4eb01006ef81565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a590613580565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361171c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117139061360e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117f69190612b4c565b60405180910390a3505050565b5f61180e8484611511565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611888578181101561187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190613676565b60405180910390fd5b6118878484848403611640565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f390613704565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190613792565b60405180910390fd5b5f81116119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a3906137fa565b60405180910390fd5b600760159054906101000a900460ff1615611f4c576119c9611022565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a375750611a07611022565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a6f57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611aa9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611f4b57600760169054906101000a900460ff16611c125760105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611b5d575060105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9390613862565b60405180910390fd5b611ba4611022565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c08906138ca565b60405180910390fd5b5b7f0000000000000000000000005e79b18c25927259e8533e008c368b4eb01006ef73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611cb4575060105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611d5b57600854811115611cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf590613958565b60405180910390fd5b600a54611d0a83610e8e565b82611d159190613052565b1115611d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4d906139c0565b60405180910390fd5b611f4a565b7f0000000000000000000000005e79b18c25927259e8533e008c368b4eb01006ef73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148015611dfd575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611e4c57600954811115611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e90613a4e565b60405180910390fd5b611f49565b60105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611eea575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611f4857600a54611efb83610e8e565b82611f069190613052565b1115611f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3e906139c0565b60405180910390fd5b5b5b5b5b5b5f611f5630610e8e565b90505f600b548210159050808015611f7a5750600760179054906101000a900460ff165b8015611f92575060075f9054906101000a900460ff16155b8015611fea57507f0000000000000000000000005e79b18c25927259e8533e008c368b4eb01006ef73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561203d5750600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156120905750600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156120d157600160075f6101000a81548160ff0219169083151502179055506120b761242a565b5f60075f6101000a81548160ff0219169083151502179055505b5f60019050600f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806121715750600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561217a575f90505b5f81156122d5577f0000000000000000000000005e79b18c25927259e8533e008c368b4eb01006ef73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480156121dd57505f600d54115b1561221b576064600d54866121f29190612f26565b6121fc9190612f94565b905080600e5f82825461220f9190613052565b925050819055506122b2565b7f0000000000000000000000005e79b18c25927259e8533e008c368b4eb01006ef73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614801561227757505f600c54115b156122b1576064600c548661228c9190612f26565b6122969190612f94565b905080600e5f8282546122a99190613052565b925050819055505b5b5f8111156122c6576122c5873083612500565b5b80856122d29190613a6c565b94505b6122e0878787612500565b50505050505050565b6122f1611639565b73ffffffffffffffffffffffffffffffffffffffff1661230f611022565b73ffffffffffffffffffffffffffffffffffffffff1614612365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235c90613ae9565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f61243430610e8e565b90505f600e5490505f82148061244957505f81145b156124555750506124fe565b600b5482111561246557600b5491505b5f61246f8361276c565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516124b590613140565b5f6040518083038185875af1925050503d805f81146124ef576040519150601f19603f3d011682016040523d82523d5f602084013e6124f4565b606091505b5050809150505050505b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361256e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256590613704565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d390613792565b60405180910390fd5b6125e783838361295c565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561266a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266190613b77565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516127539190612b4c565b60405180910390a3612766848484612961565b50505050565b5f600267ffffffffffffffff81111561278857612787613b95565b5b6040519080825280602002602001820160405280156127b65781602001602082028036833780820191505090505b50905030815f815181106127cd576127cc613bc2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612864573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128889190613c03565b8160018151811061289c5761289b613bc2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161292b959493929190613d1e565b5f604051808303815f87803b158015612942575f80fd5b505af1158015612954573d5f803e3d5ffd5b505050505050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6129938261296a565b9050919050565b6129a381612989565b81146129ad575f80fd5b50565b5f813590506129be8161299a565b92915050565b5f602082840312156129d9576129d8612966565b5b5f6129e6848285016129b0565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612a26578082015181840152602081019050612a0b565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612a4b826129ef565b612a5581856129f9565b9350612a65818560208601612a09565b612a6e81612a31565b840191505092915050565b5f6020820190508181035f830152612a918184612a41565b905092915050565b5f819050919050565b612aab81612a99565b8114612ab5575f80fd5b50565b5f81359050612ac681612aa2565b92915050565b5f8060408385031215612ae257612ae1612966565b5b5f612aef858286016129b0565b9250506020612b0085828601612ab8565b9150509250929050565b5f8115159050919050565b612b1e81612b0a565b82525050565b5f602082019050612b375f830184612b15565b92915050565b612b4681612a99565b82525050565b5f602082019050612b5f5f830184612b3d565b92915050565b5f805f60608486031215612b7c57612b7b612966565b5b5f612b89868287016129b0565b9350506020612b9a868287016129b0565b9250506040612bab86828701612ab8565b9150509250925092565b5f60208284031215612bca57612bc9612966565b5b5f612bd784828501612ab8565b91505092915050565b5f60ff82169050919050565b612bf581612be0565b82525050565b5f602082019050612c0e5f830184612bec565b92915050565b612c1d81612989565b82525050565b5f602082019050612c365f830184612c14565b92915050565b612c4581612b0a565b8114612c4f575f80fd5b50565b5f81359050612c6081612c3c565b92915050565b5f8060408385031215612c7c57612c7b612966565b5b5f612c89858286016129b0565b9250506020612c9a85828601612c52565b9150509250929050565b5f819050919050565b5f612cc7612cc2612cbd8461296a565b612ca4565b61296a565b9050919050565b5f612cd882612cad565b9050919050565b5f612ce982612cce565b9050919050565b612cf981612cdf565b82525050565b5f602082019050612d125f830184612cf0565b92915050565b5f612d2282612cce565b9050919050565b612d3281612d18565b82525050565b5f602082019050612d4b5f830184612d29565b92915050565b5f8060408385031215612d6757612d66612966565b5b5f612d74858286016129b0565b9250506020612d85858286016129b0565b9150509250929050565b7f4552524f523a204e6f7420617574686f72697a656400000000000000000000005f82015250565b5f612dc36015836129f9565b9150612dce82612d8f565b602082019050919050565b5f6020820190508181035f830152612df081612db7565b9050919050565b5f81519050612e0581612aa2565b92915050565b5f60208284031215612e2057612e1f612966565b5b5f612e2d84828501612df7565b91505092915050565b5f604082019050612e495f830185612c14565b612e566020830184612b3d565b9392505050565b5f81519050612e6b81612c3c565b92915050565b5f60208284031215612e8657612e85612966565b5b5f612e9384828501612e5d565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612ee057607f821691505b602082108103612ef357612ef2612e9c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612f3082612a99565b9150612f3b83612a99565b9250828202612f4981612a99565b91508282048414831517612f6057612f5f612ef9565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612f9e82612a99565b9150612fa983612a99565b925082612fb957612fb8612f67565b5b828204905092915050565b7f4552524f523a2043616e6e6f7420736574206d61782062757920616d6f756e745f8201527f206c6f776572207468616e20302e312500000000000000000000000000000000602082015250565b5f61301e6030836129f9565b915061302982612fc4565b604082019050919050565b5f6020820190508181035f83015261304b81613012565b9050919050565b5f61305c82612a99565b915061306783612a99565b925082820190508082111561307f5761307e612ef9565b5b92915050565b7f4552524f523a205f6d61726b6574696e6757616c6c65742061646472657373205f8201527f63616e6e6f742062652030000000000000000000000000000000000000000000602082015250565b5f6130df602b836129f9565b91506130ea82613085565b604082019050919050565b5f6020820190508181035f83015261310c816130d3565b9050919050565b5f81905092915050565b50565b5f61312b5f83613113565b91506131368261311d565b5f82019050919050565b5f61314a82613120565b9150819050919050565b7f4552524f523a206661696c656420746f2077697468647261772066756e6473005f82015250565b5f613188601f836129f9565b915061319382613154565b602082019050919050565b5f6020820190508181035f8301526131b58161317c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6132166025836129f9565b9150613221826131bc565b604082019050919050565b5f6020820190508181035f8301526132438161320a565b9050919050565b7f4552524f523a2043616e6e6f7420736574206d61782077616c6c657420616d6f5f8201527f756e74206c6f776572207468616e20302e332500000000000000000000000000602082015250565b5f6132a46033836129f9565b91506132af8261324a565b604082019050919050565b5f6020820190508181035f8301526132d181613298565b9050919050565b7f4552524f523a20546f6b656e20737461746520697320616c7265616479206c695f8201527f7665202100000000000000000000000000000000000000000000000000000000602082015250565b5f6133326024836129f9565b915061333d826132d8565b604082019050919050565b5f6020820190508181035f83015261335f81613326565b9050919050565b7f4552524f523a205377617020616d6f756e742063616e6e6f74206265206c6f775f8201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000602082015250565b5f6133c0603c836129f9565b91506133cb82613366565b604082019050919050565b5f6020820190508181035f8301526133ed816133b4565b9050919050565b7f4552524f523a2043616e6e6f7420736574206d61782073656c6c20616d6f756e5f8201527f74206c6f776572207468616e20302e3125000000000000000000000000000000602082015250565b5f61344e6031836129f9565b9150613459826133f4565b604082019050919050565b5f6020820190508181035f83015261347b81613442565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6134dc6026836129f9565b91506134e782613482565b604082019050919050565b5f6020820190508181035f830152613509816134d0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61356a6024836129f9565b915061357582613510565b604082019050919050565b5f6020820190508181035f8301526135978161355e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6135f86022836129f9565b91506136038261359e565b604082019050919050565b5f6020820190508181035f830152613625816135ec565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613660601d836129f9565b915061366b8261362c565b602082019050919050565b5f6020820190508181035f83015261368d81613654565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6136ee6025836129f9565b91506136f982613694565b604082019050919050565b5f6020820190508181035f83015261371b816136e2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61377c6023836129f9565b915061378782613722565b604082019050919050565b5f6020820190508181035f8301526137a981613770565b9050919050565b7f616d6f756e74206d7573742062652067726561746572207468616e20300000005f82015250565b5f6137e4601d836129f9565b91506137ef826137b0565b602082019050919050565b5f6020820190508181035f830152613811816137d8565b9050919050565b7f4552524f523a2054726164696e67206973206e6f74206163746976652e0000005f82015250565b5f61384c601d836129f9565b915061385782613818565b602082019050919050565b5f6020820190508181035f83015261387981613840565b9050919050565b7f4552524f523a2054726164696e6720697320656e61626c6564000000000000005f82015250565b5f6138b46019836129f9565b91506138bf82613880565b602082019050919050565b5f6020820190508181035f8301526138e1816138a8565b9050919050565b7f4552524f523a20427579207472616e7366657220616d6f756e742065786365655f8201527f647320746865206d6178206275792e0000000000000000000000000000000000602082015250565b5f613942602f836129f9565b915061394d826138e8565b604082019050919050565b5f6020820190508181035f83015261396f81613936565b9050919050565b7f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574005f82015250565b5f6139aa601f836129f9565b91506139b582613976565b602082019050919050565b5f6020820190508181035f8301526139d78161399e565b9050919050565b7f4552524f523a2053656c6c207472616e7366657220616d6f756e7420657863655f8201527f65647320746865206d61782073656c6c2e000000000000000000000000000000602082015250565b5f613a386031836129f9565b9150613a43826139de565b604082019050919050565b5f6020820190508181035f830152613a6581613a2c565b9050919050565b5f613a7682612a99565b9150613a8183612a99565b9250828203905081811115613a9957613a98612ef9565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613ad36020836129f9565b9150613ade82613a9f565b602082019050919050565b5f6020820190508181035f830152613b0081613ac7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613b616026836129f9565b9150613b6c82613b07565b604082019050919050565b5f6020820190508181035f830152613b8e81613b55565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050613bfd8161299a565b92915050565b5f60208284031215613c1857613c17612966565b5b5f613c2584828501613bef565b91505092915050565b5f819050919050565b5f613c51613c4c613c4784613c2e565b612ca4565b612a99565b9050919050565b613c6181613c37565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613c9981612989565b82525050565b5f613caa8383613c90565b60208301905092915050565b5f602082019050919050565b5f613ccc82613c67565b613cd68185613c71565b9350613ce183613c81565b805f5b83811015613d11578151613cf88882613c9f565b9750613d0383613cb6565b925050600181019050613ce4565b5085935050505092915050565b5f60a082019050613d315f830188612b3d565b613d3e6020830187613c58565b8181036040830152613d508186613cc2565b9050613d5f6060830185612c14565b613d6c6080830184612b3d565b969550505050505056fea2646970667358221220c08cce2a30c31126befe8773e3f08616a5a1634ed4a60b0afee13fff93d739c864736f6c63430008140033

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.