ETH Price: $3,445.28 (-1.02%)
Gas: 12 Gwei

Token

Hubba Bubba (GUM)
 

Overview

Max Total Supply

1,000,000,000 GUM

Holders

55

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
kireevart.eth
Balance
4,500,000 GUM

Value
$0.00
0x16c93ec97512832ba4244cc69527530d358db0e5
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:
HubbaBubba

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

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

/*
 _   _ _   _____________  ___   ______ _   _____________  ___  
| | | | | | | ___ \ ___ \/ _ \  | ___ \ | | | ___ \ ___ \/ _ \ 
| |_| | | | | |_/ / |_/ / /_\ \ | |_/ / | | | |_/ / |_/ / /_\ \
|  _  | | | | ___ \ ___ \  _  | | ___ \ | | | ___ \ ___ \  _  |
| | | | |_| | |_/ / |_/ / | | | | |_/ / |_| | |_/ / |_/ / | | |
\_| |_/\___/\____/\____/\_| |_/ \____/ \___/\____/\____/\_| |_/
                                                               
Telegram: https://t.me/HubbaBubbaCoin
Website: https://www.hubbabubbatoken.xyz/
Twitter: https://twitter.com/HubbaBubbaCoin
*/

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 HubbaBubba is ERC20("Hubba Bubba", "GUM"), Ownable {

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

    uint256 public maxTxAmount;
    uint256 public maxBalanceAmount;
    uint256 public swapTokensAtAmount;

    address public treasuryWallet;

    bool public limitsActive = true;
    bool public tradingActive;
    bool public swapEnabled;
    bool private swapping;

    uint256 public totalBuyFees;
    uint256 public totalSellFees;

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

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

        maxTxAmount = (totalSupply() * 6) / 1_000; // 0.6%
        maxBalanceAmount = (totalSupply() * 15) / 1_000; // 1.5%
        swapTokensAtAmount = (totalSupply() * 50) / 10_000; // 0.5%

        treasuryWallet = 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 _excludeFromMaxTransaction(
        address updAds,
        bool isExcluded
    ) private {
        _isExcludedMaxTransactionAmount[updAds] = isExcluded;
    }

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

    function updateTaxRates(
        uint256 _newBuyFee,
        uint256 _newSellFee
    ) external onlyOwner {
        totalBuyFees = _newBuyFee;
        totalSellFees = _newSellFee;
    }

    function setTreasuryWallet(address _newTreasuryWallet) external onlyOwner {
        require(_newTreasuryWallet != address(0), "address cannot be 0");
        treasuryWallet = payable(_newTreasuryWallet);
    }

    function setRestrictionSettings(
        uint256 _newMaxTx,
        uint256 _newMaxBalance,
        uint256 _newThreshold
    ) external onlyOwner{
        maxTxAmount = (totalSupply() * _newMaxTx) / 1_000;
        maxBalanceAmount = (totalSupply() * _newMaxBalance) / 1_000;
        swapTokensAtAmount = (totalSupply() * _newThreshold) / 10_000;
    }

    function openTrading() public onlyOwner {
        require(launchBlock == 0, "trading status is already live");
        launchBlock = block.number;
        tradingActive = true;
        swapEnabled = true;
    }

    function removeLimits() external onlyOwner {
        limitsActive = false;
    }


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

        if (limitsActive) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead)
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedMaxTransactionAmount[from] || _isExcludedMaxTransactionAmount[to],
                        "Trading is not active !"
                    );
                    require(from == owner(), "Trading is active !");
                }
                //when buy
                if (
                    from == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTxAmount,
                        "Buy amount limit exceeded !"
                    );
                    require(
                        amount + balanceOf(to) <= maxBalanceAmount,
                        "Max wallet amount exceeded !"
                    );
                }
                //when sell
                else if (
                    to == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTxAmount,
                        "Sale amount limit exceeded !"
                    );
                } else if (
                    !_isExcludedMaxTransactionAmount[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount + balanceOf(to) <= maxBalanceAmount,
                        "Max wallet amount exceeded !"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool swapCriteriaMet = contractTokenBalance >= swapTokensAtAmount;

        if (
            swapCriteriaMet &&
            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) {
            // on sell
            if (to == UNISWAP_V2_PAIR && totalSellFees > 0) {
                fees = (amount * totalSellFees) / 100;
            }
            // on buy
            else if (from == UNISWAP_V2_PAIR && totalBuyFees > 0) {
                fees = (amount * totalBuyFees) / 100;
            }

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

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


    function swapBack() private {

        bool success;

        swapTokensForEth(swapTokensAtAmount);

        uint256 ethContractBalance = address(this).balance;

        (success, ) = address(treasuryWallet).call{value: ethContractBalance}("");
    }


    function rescueTokens(IERC20 _token, uint256 _amount) external {

        require(msg.sender  == owner() || msg.sender == treasuryWallet);

        require(
            _token.balanceOf(address(this)) >= _amount,
            "ERROR: Insufficient balance to complete txn !"
        );

        _token.transfer(msg.sender, _amount);
    }

    function rescueEth(uint256 _amount) external onlyOwner {

        require(
            address(this).balance >= _amount,
            "insufficient balance to complete txn !"
        );

        payable(msg.sender).transfer(_amount);
    }


}

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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"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":"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":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBalanceAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"rescueEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxTx","type":"uint256"},{"internalType":"uint256","name":"_newMaxBalance","type":"uint256"},{"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"setRestrictionSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newTreasuryWallet","type":"address"}],"name":"setTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFees","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newBuyFee","type":"uint256"},{"internalType":"uint256","name":"_newSellFee","type":"uint256"}],"name":"updateTaxRates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526001600a60146101000a81548160ff0219169083151502179055503480156200002b575f80fd5b506040518060400160405280600b81526020017f48756262612042756262610000000000000000000000000000000000000000008152506040518060400160405280600381526020017f47554d00000000000000000000000000000000000000000000000000000000008152508160039081620000a9919062000bd4565b508060049081620000bb919062000bd4565b505050620000de620000d2620003ea60201b60201c565b620003f160201b60201c565b620000fc336b033b2e3c9fd0803ce8000000620004b460201b60201c565b6200012430737a250d5630b4cf539739df2c5dacb4c659f2488d5f196200061960201b60201c565b6200014b737a250d5630b4cf539739df2c5dacb4c659f2488d6001620007e460201b60201c565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001da573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000200919062000d1d565b6040518363ffffffff1660e01b81526004016200021f92919062000d5e565b6020604051808303815f875af11580156200023c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000262919062000d1d565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506103e86006620002aa6200083c60201b60201c565b620002b6919062000db6565b620002c2919062000e2d565b6007819055506103e8600f620002dd6200083c60201b60201c565b620002e9919062000db6565b620002f5919062000e2d565b6008819055506127106032620003106200083c60201b60201c565b6200031c919062000db6565b62000328919062000e2d565b60098190555033600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000381336001620007e460201b60201c565b62000394306001620007e460201b60201c565b620003a961dead6001620007e460201b60201c565b620003bc3360016200084560201b60201c565b620003cf3060016200084560201b60201c565b620003e461dead60016200084560201b60201c565b620010de565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000525576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200051c9062000ec2565b60405180910390fd5b620005385f8383620008ad60201b60201c565b8060025f8282546200054b919062000ee2565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005fa919062000f2d565b60405180910390a3620006155f8383620008b260201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200068a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006819062000fbc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006f29062001050565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620007d7919062000f2d565b60405180910390a3505050565b80600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600254905090565b62000855620008b760201b60201c565b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b505050565b505050565b620008c7620003ea60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008ed6200094860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000946576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200093d90620010be565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620009ec57607f821691505b60208210810362000a025762000a01620009a7565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000a667fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a29565b62000a72868362000a29565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000abc62000ab662000ab08462000a8a565b62000a93565b62000a8a565b9050919050565b5f819050919050565b62000ad78362000a9c565b62000aef62000ae68262000ac3565b84845462000a35565b825550505050565b5f90565b62000b0562000af7565b62000b1281848462000acc565b505050565b5b8181101562000b395762000b2d5f8262000afb565b60018101905062000b18565b5050565b601f82111562000b885762000b528162000a08565b62000b5d8462000a1a565b8101602085101562000b6d578190505b62000b8562000b7c8562000a1a565b83018262000b17565b50505b505050565b5f82821c905092915050565b5f62000baa5f198460080262000b8d565b1980831691505092915050565b5f62000bc4838362000b99565b9150826002028217905092915050565b62000bdf8262000970565b67ffffffffffffffff81111562000bfb5762000bfa6200097a565b5b62000c078254620009d4565b62000c1482828562000b3d565b5f60209050601f83116001811462000c4a575f841562000c35578287015190505b62000c41858262000bb7565b86555062000cb0565b601f19841662000c5a8662000a08565b5f5b8281101562000c835784890151825560018201915060208501945060208101905062000c5c565b8683101562000ca3578489015162000c9f601f89168262000b99565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000ce78262000cbc565b9050919050565b62000cf98162000cdb565b811462000d04575f80fd5b50565b5f8151905062000d178162000cee565b92915050565b5f6020828403121562000d355762000d3462000cb8565b5b5f62000d448482850162000d07565b91505092915050565b62000d588162000cdb565b82525050565b5f60408201905062000d735f83018562000d4d565b62000d82602083018462000d4d565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000dc28262000a8a565b915062000dcf8362000a8a565b925082820262000ddf8162000a8a565b9150828204841483151762000df95762000df862000d89565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000e398262000a8a565b915062000e468362000a8a565b92508262000e595762000e5862000e00565b5b828204905092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000eaa601f8362000e64565b915062000eb78262000e74565b602082019050919050565b5f6020820190508181035f83015262000edb8162000e9c565b9050919050565b5f62000eee8262000a8a565b915062000efb8362000a8a565b925082820190508082111562000f165762000f1562000d89565b5b92915050565b62000f278162000a8a565b82525050565b5f60208201905062000f425f83018462000f1c565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f62000fa460248362000e64565b915062000fb18262000f48565b604082019050919050565b5f6020820190508181035f83015262000fd58162000f96565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6200103860228362000e64565b9150620010458262000fdc565b604082019050919050565b5f6020820190508181035f83015262001069816200102a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f620010a660208362000e64565b9150620010b38262001070565b602082019050919050565b5f6020820190508181035f830152620010d78162001098565b9050919050565b6080516138336200111a5f395f81816111b00152818161182b0152818161197401528181611bb301528181611d9d0152611e1f01526138335ff3fe608060405260043610610212575f3560e01c806395d89b4111610117578063c74c0fac1161009f578063d82649201161006e578063d826492014610769578063dd62ed3e14610793578063e2f45605146107cf578063f2fde38b146107f9578063f40acc3d1461082157610219565b8063c74c0fac146106d5578063c9567bf9146106ff578063d00efb2f14610715578063d0a398141461073f57610219565b8063ab04acd4116100e6578063ab04acd414610607578063ab6a8b1c14610631578063b9e9370014610659578063bbc0c74214610683578063c0246668146106ad57610219565b806395d89b411461053d578063a457c2d714610567578063a8602fea146105a3578063a9059cbb146105cb57610219565b80634626402b1161019a578063715018a611610169578063715018a614610495578063739f08c8146104ab578063751039fc146104d35780638c0b5e22146104e95780638da5cb5b1461051357610219565b80634626402b146103dd57806357376198146104075780636ddd17131461042f57806370a082311461045957610219565b806318160ddd116101e157806318160ddd146102e75780631cce34ee1461031157806323b872dd1461033b578063313ce5671461037757806339509351146103a157610219565b80630241096d1461021d57806306fdde0314610245578063095ea7b31461026f57806310d5de53146102ab57610219565b3661021957005b5f80fd5b348015610228575f80fd5b50610243600480360381019061023e91906124d1565b61084b565b005b348015610250575f80fd5b506102596108ca565b60405161026691906125ab565b60405180910390f35b34801561027a575f80fd5b5061029560048036038101906102909190612625565b61095a565b6040516102a2919061267d565b60405180910390f35b3480156102b6575f80fd5b506102d160048036038101906102cc9190612696565b61097c565b6040516102de919061267d565b60405180910390f35b3480156102f2575f80fd5b506102fb610999565b60405161030891906126d0565b60405180910390f35b34801561031c575f80fd5b506103256109a2565b604051610332919061267d565b60405180910390f35b348015610346575f80fd5b50610361600480360381019061035c91906126e9565b6109b5565b60405161036e919061267d565b60405180910390f35b348015610382575f80fd5b5061038b6109e3565b6040516103989190612754565b60405180910390f35b3480156103ac575f80fd5b506103c760048036038101906103c29190612625565b6109eb565b6040516103d4919061267d565b60405180910390f35b3480156103e8575f80fd5b506103f1610a21565b6040516103fe919061277c565b60405180910390f35b348015610412575f80fd5b5061042d600480360381019061042891906127d0565b610a46565b005b34801561043a575f80fd5b50610443610c15565b604051610450919061267d565b60405180910390f35b348015610464575f80fd5b5061047f600480360381019061047a9190612696565b610c28565b60405161048c91906126d0565b60405180910390f35b3480156104a0575f80fd5b506104a9610c6d565b005b3480156104b6575f80fd5b506104d160048036038101906104cc919061280e565b610c80565b005b3480156104de575f80fd5b506104e7610d12565b005b3480156104f4575f80fd5b506104fd610d36565b60405161050a91906126d0565b60405180910390f35b34801561051e575f80fd5b50610527610d3c565b604051610534919061277c565b60405180910390f35b348015610548575f80fd5b50610551610d64565b60405161055e91906125ab565b60405180910390f35b348015610572575f80fd5b5061058d60048036038101906105889190612625565b610df4565b60405161059a919061267d565b60405180910390f35b3480156105ae575f80fd5b506105c960048036038101906105c49190612696565b610e69565b005b3480156105d6575f80fd5b506105f160048036038101906105ec9190612625565b610f22565b6040516105fe919061267d565b60405180910390f35b348015610612575f80fd5b5061061b610f44565b60405161062891906126d0565b60405180910390f35b34801561063c575f80fd5b5061065760048036038101906106529190612839565b610f4a565b005b348015610664575f80fd5b5061066d610f64565b60405161067a91906126d0565b60405180910390f35b34801561068e575f80fd5b50610697610f6a565b6040516106a4919061267d565b60405180910390f35b3480156106b8575f80fd5b506106d360048036038101906106ce91906128a1565b610f7d565b005b3480156106e0575f80fd5b506106e9610fdd565b6040516106f6919061293a565b60405180910390f35b34801561070a575f80fd5b50610713610ff5565b005b348015610720575f80fd5b50610729611080565b60405161073691906126d0565b60405180910390f35b34801561074a575f80fd5b50610753611086565b60405161076091906126d0565b60405180910390f35b348015610774575f80fd5b5061077d61108c565b60405161078a9190612973565b60405180910390f35b34801561079e575f80fd5b506107b960048036038101906107b4919061298c565b6110a4565b6040516107c691906126d0565b60405180910390f35b3480156107da575f80fd5b506107e3611126565b6040516107f091906126d0565b60405180910390f35b348015610804575f80fd5b5061081f600480360381019061081a9190612696565b61112c565b005b34801561082c575f80fd5b506108356111ae565b604051610842919061277c565b60405180910390f35b6108536111d2565b6103e88361085f610999565b61086991906129f7565b6108739190612a65565b6007819055506103e882610885610999565b61088f91906129f7565b6108999190612a65565b600881905550612710816108ab610999565b6108b591906129f7565b6108bf9190612a65565b600981905550505050565b6060600380546108d990612ac2565b80601f016020809104026020016040519081016040528092919081815260200182805461090590612ac2565b80156109505780601f1061092757610100808354040283529160200191610950565b820191905f5260205f20905b81548152906001019060200180831161093357829003601f168201915b5050505050905090565b5f80610964611250565b9050610971818585611257565b600191505092915050565b600e602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b600a60149054906101000a900460ff1681565b5f806109bf611250565b90506109cc85828561141a565b6109d78585856114a5565b60019150509392505050565b5f6012905090565b5f806109f5611250565b9050610a16818585610a0785896110a4565b610a119190612af2565b611257565b600191505092915050565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a4e610d3c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ad35750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610adb575f80fd5b808273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b15919061277c565b602060405180830381865afa158015610b30573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b549190612b39565b1015610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90612bd4565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610bd0929190612bf2565b6020604051808303815f875af1158015610bec573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c109190612c2d565b505050565b600a60169054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610c756111d2565b610c7e5f611ed3565b565b610c886111d2565b80471015610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc290612cc8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610d0e573d5f803e3d5ffd5b5050565b610d1a6111d2565b5f600a60146101000a81548160ff021916908315150217905550565b60075481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d7390612ac2565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9f90612ac2565b8015610dea5780601f10610dc157610100808354040283529160200191610dea565b820191905f5260205f20905b815481529060010190602001808311610dcd57829003601f168201915b5050505050905090565b5f80610dfe611250565b90505f610e0b82866110a4565b905083811015610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4790612d56565b60405180910390fd5b610e5d8286868403611257565b60019250505092915050565b610e716111d2565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed690612dbe565b60405180910390fd5b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f80610f2c611250565b9050610f398185856114a5565b600191505092915050565b60085481565b610f526111d2565b81600b8190555080600c819055505050565b600b5481565b600a60159054906101000a900460ff1681565b610f856111d2565b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b610ffd6111d2565b5f60065414611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890612e26565b60405180910390fd5b436006819055506001600a60156101000a81548160ff0219169083151502179055506001600a60166101000a81548160ff021916908315150217905550565b60065481565b600c5481565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b6111346111d2565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119990612eb4565b60405180910390fd5b6111ab81611ed3565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b6111da611250565b73ffffffffffffffffffffffffffffffffffffffff166111f8610d3c565b73ffffffffffffffffffffffffffffffffffffffff161461124e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124590612f1c565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90612faa565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90613038565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161140d91906126d0565b60405180910390a3505050565b5f61142584846110a4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461149f5781811015611491576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611488906130a0565b60405180910390fd5b61149e8484848403611257565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a90613108565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157890613170565b60405180910390fd5b5f81116115c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ba906131d8565b60405180910390fd5b600a60149054906101000a900460ff1615611b63576115e0610d3c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561164e575061161e610d3c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561168657505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116c0575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611b6257600a60159054906101000a900460ff1661182957600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806117745750600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa90613240565b60405180910390fd5b6117bb610d3c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f906132a8565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156118cb5750600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561197257600754811115611915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190c90613310565b60405180910390fd5b60085461192183610c28565b8261192c9190612af2565b111561196d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196490613378565b60405180910390fd5b611b61565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148015611a145750600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611a6357600754811115611a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a55906133e0565b60405180910390fd5b611b60565b600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611b015750600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611b5f57600854611b1283610c28565b82611b1d9190612af2565b1115611b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5590613378565b60405180910390fd5b5b5b5b5b5b5f611b6d30610c28565b90505f6009548210159050808015611b915750600a60169054906101000a900460ff165b8015611baa5750600a60179054906101000a900460ff16155b8015611c0257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015611c555750600d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611ca85750600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611ceb576001600a60176101000a81548160ff021916908315150217905550611cd0611f96565b5f600a60176101000a81548160ff0219169083151502179055505b5f60019050600d5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611d8b5750600d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611d94575f90505b5f8115611ebf577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16148015611df757505f600c54115b15611e1d576064600c5486611e0c91906129f7565b611e169190612a65565b9050611e9c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16148015611e7957505f600b54115b15611e9b576064600b5486611e8e91906129f7565b611e989190612a65565b90505b5b5f811115611eb057611eaf873083612034565b5b8085611ebc91906133fe565b94505b611eca878787612034565b50505050505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f611fa26009546122a0565b5f479050600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051611feb9061345e565b5f6040518083038185875af1925050503d805f8114612025576040519150601f19603f3d011682016040523d82523d5f602084013e61202a565b606091505b5050809250505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612099906134e2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790613570565b60405180910390fd5b61211b838383612490565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561219e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612195906135fe565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161228791906126d0565b60405180910390a361229a848484612495565b50505050565b5f600267ffffffffffffffff8111156122bc576122bb61361c565b5b6040519080825280602002602001820160405280156122ea5781602001602082028036833780820191505090505b50905030815f8151811061230157612300613649565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612398573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123bc919061368a565b816001815181106123d0576123cf613649565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161245f9594939291906137a5565b5f604051808303815f87803b158015612476575f80fd5b505af1158015612488573d5f803e3d5ffd5b505050505050565b505050565b505050565b5f80fd5b5f819050919050565b6124b08161249e565b81146124ba575f80fd5b50565b5f813590506124cb816124a7565b92915050565b5f805f606084860312156124e8576124e761249a565b5b5f6124f5868287016124bd565b9350506020612506868287016124bd565b9250506040612517868287016124bd565b9150509250925092565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561255857808201518184015260208101905061253d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61257d82612521565b612587818561252b565b935061259781856020860161253b565b6125a081612563565b840191505092915050565b5f6020820190508181035f8301526125c38184612573565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6125f4826125cb565b9050919050565b612604816125ea565b811461260e575f80fd5b50565b5f8135905061261f816125fb565b92915050565b5f806040838503121561263b5761263a61249a565b5b5f61264885828601612611565b9250506020612659858286016124bd565b9150509250929050565b5f8115159050919050565b61267781612663565b82525050565b5f6020820190506126905f83018461266e565b92915050565b5f602082840312156126ab576126aa61249a565b5b5f6126b884828501612611565b91505092915050565b6126ca8161249e565b82525050565b5f6020820190506126e35f8301846126c1565b92915050565b5f805f60608486031215612700576126ff61249a565b5b5f61270d86828701612611565b935050602061271e86828701612611565b925050604061272f868287016124bd565b9150509250925092565b5f60ff82169050919050565b61274e81612739565b82525050565b5f6020820190506127675f830184612745565b92915050565b612776816125ea565b82525050565b5f60208201905061278f5f83018461276d565b92915050565b5f61279f826125ea565b9050919050565b6127af81612795565b81146127b9575f80fd5b50565b5f813590506127ca816127a6565b92915050565b5f80604083850312156127e6576127e561249a565b5b5f6127f3858286016127bc565b9250506020612804858286016124bd565b9150509250929050565b5f602082840312156128235761282261249a565b5b5f612830848285016124bd565b91505092915050565b5f806040838503121561284f5761284e61249a565b5b5f61285c858286016124bd565b925050602061286d858286016124bd565b9150509250929050565b61288081612663565b811461288a575f80fd5b50565b5f8135905061289b81612877565b92915050565b5f80604083850312156128b7576128b661249a565b5b5f6128c485828601612611565b92505060206128d58582860161288d565b9150509250929050565b5f819050919050565b5f6129026128fd6128f8846125cb565b6128df565b6125cb565b9050919050565b5f612913826128e8565b9050919050565b5f61292482612909565b9050919050565b6129348161291a565b82525050565b5f60208201905061294d5f83018461292b565b92915050565b5f61295d82612909565b9050919050565b61296d81612953565b82525050565b5f6020820190506129865f830184612964565b92915050565b5f80604083850312156129a2576129a161249a565b5b5f6129af85828601612611565b92505060206129c085828601612611565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612a018261249e565b9150612a0c8361249e565b9250828202612a1a8161249e565b91508282048414831517612a3157612a306129ca565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612a6f8261249e565b9150612a7a8361249e565b925082612a8a57612a89612a38565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612ad957607f821691505b602082108103612aec57612aeb612a95565b5b50919050565b5f612afc8261249e565b9150612b078361249e565b9250828201905080821115612b1f57612b1e6129ca565b5b92915050565b5f81519050612b33816124a7565b92915050565b5f60208284031215612b4e57612b4d61249a565b5b5f612b5b84828501612b25565b91505092915050565b7f4552524f523a20496e73756666696369656e742062616c616e636520746f20635f8201527f6f6d706c6574652074786e202100000000000000000000000000000000000000602082015250565b5f612bbe602d8361252b565b9150612bc982612b64565b604082019050919050565b5f6020820190508181035f830152612beb81612bb2565b9050919050565b5f604082019050612c055f83018561276d565b612c1260208301846126c1565b9392505050565b5f81519050612c2781612877565b92915050565b5f60208284031215612c4257612c4161249a565b5b5f612c4f84828501612c19565b91505092915050565b7f696e73756666696369656e742062616c616e636520746f20636f6d706c6574655f8201527f2074786e20210000000000000000000000000000000000000000000000000000602082015250565b5f612cb260268361252b565b9150612cbd82612c58565b604082019050919050565b5f6020820190508181035f830152612cdf81612ca6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612d4060258361252b565b9150612d4b82612ce6565b604082019050919050565b5f6020820190508181035f830152612d6d81612d34565b9050919050565b7f616464726573732063616e6e6f742062652030000000000000000000000000005f82015250565b5f612da860138361252b565b9150612db382612d74565b602082019050919050565b5f6020820190508181035f830152612dd581612d9c565b9050919050565b7f74726164696e672073746174757320697320616c7265616479206c69766500005f82015250565b5f612e10601e8361252b565b9150612e1b82612ddc565b602082019050919050565b5f6020820190508181035f830152612e3d81612e04565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612e9e60268361252b565b9150612ea982612e44565b604082019050919050565b5f6020820190508181035f830152612ecb81612e92565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612f0660208361252b565b9150612f1182612ed2565b602082019050919050565b5f6020820190508181035f830152612f3381612efa565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612f9460248361252b565b9150612f9f82612f3a565b604082019050919050565b5f6020820190508181035f830152612fc181612f88565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61302260228361252b565b915061302d82612fc8565b604082019050919050565b5f6020820190508181035f83015261304f81613016565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61308a601d8361252b565b915061309582613056565b602082019050919050565b5f6020820190508181035f8301526130b78161307e565b9050919050565b7f7472616e736665722066726f6d20746865207a65726f206164647265737320215f82015250565b5f6130f260208361252b565b91506130fd826130be565b602082019050919050565b5f6020820190508181035f83015261311f816130e6565b9050919050565b7f7472616e7366657220746f20746865207a65726f2061646472657373202100005f82015250565b5f61315a601e8361252b565b915061316582613126565b602082019050919050565b5f6020820190508181035f8301526131878161314e565b9050919050565b7f416d6f756e74206d7573742062652067726561746572207468616e20302021005f82015250565b5f6131c2601f8361252b565b91506131cd8261318e565b602082019050919050565b5f6020820190508181035f8301526131ef816131b6565b9050919050565b7f54726164696e67206973206e6f742061637469766520210000000000000000005f82015250565b5f61322a60178361252b565b9150613235826131f6565b602082019050919050565b5f6020820190508181035f8301526132578161321e565b9050919050565b7f54726164696e67206973206163746976652021000000000000000000000000005f82015250565b5f61329260138361252b565b915061329d8261325e565b602082019050919050565b5f6020820190508181035f8301526132bf81613286565b9050919050565b7f42757920616d6f756e74206c696d6974206578636565646564202100000000005f82015250565b5f6132fa601b8361252b565b9150613305826132c6565b602082019050919050565b5f6020820190508181035f830152613327816132ee565b9050919050565b7f4d61782077616c6c657420616d6f756e742065786365656465642021000000005f82015250565b5f613362601c8361252b565b915061336d8261332e565b602082019050919050565b5f6020820190508181035f83015261338f81613356565b9050919050565b7f53616c6520616d6f756e74206c696d69742065786365656465642021000000005f82015250565b5f6133ca601c8361252b565b91506133d582613396565b602082019050919050565b5f6020820190508181035f8301526133f7816133be565b9050919050565b5f6134088261249e565b91506134138361249e565b925082820390508181111561342b5761342a6129ca565b5b92915050565b5f81905092915050565b50565b5f6134495f83613431565b91506134548261343b565b5f82019050919050565b5f6134688261343e565b9150819050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6134cc60258361252b565b91506134d782613472565b604082019050919050565b5f6020820190508181035f8301526134f9816134c0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61355a60238361252b565b915061356582613500565b604082019050919050565b5f6020820190508181035f8301526135878161354e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6135e860268361252b565b91506135f38261358e565b604082019050919050565b5f6020820190508181035f830152613615816135dc565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050613684816125fb565b92915050565b5f6020828403121561369f5761369e61249a565b5b5f6136ac84828501613676565b91505092915050565b5f819050919050565b5f6136d86136d36136ce846136b5565b6128df565b61249e565b9050919050565b6136e8816136be565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613720816125ea565b82525050565b5f6137318383613717565b60208301905092915050565b5f602082019050919050565b5f613753826136ee565b61375d81856136f8565b935061376883613708565b805f5b8381101561379857815161377f8882613726565b975061378a8361373d565b92505060018101905061376b565b5085935050505092915050565b5f60a0820190506137b85f8301886126c1565b6137c560208301876136df565b81810360408301526137d78186613749565b90506137e6606083018561276d565b6137f360808301846126c1565b969550505050505056fea264697066735822122050e039470bbc28ef22be9a413c46b0bb93e2a815da62685ddee8ab2bac219de664736f6c63430008140033

Deployed Bytecode

0x608060405260043610610212575f3560e01c806395d89b4111610117578063c74c0fac1161009f578063d82649201161006e578063d826492014610769578063dd62ed3e14610793578063e2f45605146107cf578063f2fde38b146107f9578063f40acc3d1461082157610219565b8063c74c0fac146106d5578063c9567bf9146106ff578063d00efb2f14610715578063d0a398141461073f57610219565b8063ab04acd4116100e6578063ab04acd414610607578063ab6a8b1c14610631578063b9e9370014610659578063bbc0c74214610683578063c0246668146106ad57610219565b806395d89b411461053d578063a457c2d714610567578063a8602fea146105a3578063a9059cbb146105cb57610219565b80634626402b1161019a578063715018a611610169578063715018a614610495578063739f08c8146104ab578063751039fc146104d35780638c0b5e22146104e95780638da5cb5b1461051357610219565b80634626402b146103dd57806357376198146104075780636ddd17131461042f57806370a082311461045957610219565b806318160ddd116101e157806318160ddd146102e75780631cce34ee1461031157806323b872dd1461033b578063313ce5671461037757806339509351146103a157610219565b80630241096d1461021d57806306fdde0314610245578063095ea7b31461026f57806310d5de53146102ab57610219565b3661021957005b5f80fd5b348015610228575f80fd5b50610243600480360381019061023e91906124d1565b61084b565b005b348015610250575f80fd5b506102596108ca565b60405161026691906125ab565b60405180910390f35b34801561027a575f80fd5b5061029560048036038101906102909190612625565b61095a565b6040516102a2919061267d565b60405180910390f35b3480156102b6575f80fd5b506102d160048036038101906102cc9190612696565b61097c565b6040516102de919061267d565b60405180910390f35b3480156102f2575f80fd5b506102fb610999565b60405161030891906126d0565b60405180910390f35b34801561031c575f80fd5b506103256109a2565b604051610332919061267d565b60405180910390f35b348015610346575f80fd5b50610361600480360381019061035c91906126e9565b6109b5565b60405161036e919061267d565b60405180910390f35b348015610382575f80fd5b5061038b6109e3565b6040516103989190612754565b60405180910390f35b3480156103ac575f80fd5b506103c760048036038101906103c29190612625565b6109eb565b6040516103d4919061267d565b60405180910390f35b3480156103e8575f80fd5b506103f1610a21565b6040516103fe919061277c565b60405180910390f35b348015610412575f80fd5b5061042d600480360381019061042891906127d0565b610a46565b005b34801561043a575f80fd5b50610443610c15565b604051610450919061267d565b60405180910390f35b348015610464575f80fd5b5061047f600480360381019061047a9190612696565b610c28565b60405161048c91906126d0565b60405180910390f35b3480156104a0575f80fd5b506104a9610c6d565b005b3480156104b6575f80fd5b506104d160048036038101906104cc919061280e565b610c80565b005b3480156104de575f80fd5b506104e7610d12565b005b3480156104f4575f80fd5b506104fd610d36565b60405161050a91906126d0565b60405180910390f35b34801561051e575f80fd5b50610527610d3c565b604051610534919061277c565b60405180910390f35b348015610548575f80fd5b50610551610d64565b60405161055e91906125ab565b60405180910390f35b348015610572575f80fd5b5061058d60048036038101906105889190612625565b610df4565b60405161059a919061267d565b60405180910390f35b3480156105ae575f80fd5b506105c960048036038101906105c49190612696565b610e69565b005b3480156105d6575f80fd5b506105f160048036038101906105ec9190612625565b610f22565b6040516105fe919061267d565b60405180910390f35b348015610612575f80fd5b5061061b610f44565b60405161062891906126d0565b60405180910390f35b34801561063c575f80fd5b5061065760048036038101906106529190612839565b610f4a565b005b348015610664575f80fd5b5061066d610f64565b60405161067a91906126d0565b60405180910390f35b34801561068e575f80fd5b50610697610f6a565b6040516106a4919061267d565b60405180910390f35b3480156106b8575f80fd5b506106d360048036038101906106ce91906128a1565b610f7d565b005b3480156106e0575f80fd5b506106e9610fdd565b6040516106f6919061293a565b60405180910390f35b34801561070a575f80fd5b50610713610ff5565b005b348015610720575f80fd5b50610729611080565b60405161073691906126d0565b60405180910390f35b34801561074a575f80fd5b50610753611086565b60405161076091906126d0565b60405180910390f35b348015610774575f80fd5b5061077d61108c565b60405161078a9190612973565b60405180910390f35b34801561079e575f80fd5b506107b960048036038101906107b4919061298c565b6110a4565b6040516107c691906126d0565b60405180910390f35b3480156107da575f80fd5b506107e3611126565b6040516107f091906126d0565b60405180910390f35b348015610804575f80fd5b5061081f600480360381019061081a9190612696565b61112c565b005b34801561082c575f80fd5b506108356111ae565b604051610842919061277c565b60405180910390f35b6108536111d2565b6103e88361085f610999565b61086991906129f7565b6108739190612a65565b6007819055506103e882610885610999565b61088f91906129f7565b6108999190612a65565b600881905550612710816108ab610999565b6108b591906129f7565b6108bf9190612a65565b600981905550505050565b6060600380546108d990612ac2565b80601f016020809104026020016040519081016040528092919081815260200182805461090590612ac2565b80156109505780601f1061092757610100808354040283529160200191610950565b820191905f5260205f20905b81548152906001019060200180831161093357829003601f168201915b5050505050905090565b5f80610964611250565b9050610971818585611257565b600191505092915050565b600e602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b600a60149054906101000a900460ff1681565b5f806109bf611250565b90506109cc85828561141a565b6109d78585856114a5565b60019150509392505050565b5f6012905090565b5f806109f5611250565b9050610a16818585610a0785896110a4565b610a119190612af2565b611257565b600191505092915050565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a4e610d3c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ad35750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610adb575f80fd5b808273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b15919061277c565b602060405180830381865afa158015610b30573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b549190612b39565b1015610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90612bd4565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610bd0929190612bf2565b6020604051808303815f875af1158015610bec573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c109190612c2d565b505050565b600a60169054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610c756111d2565b610c7e5f611ed3565b565b610c886111d2565b80471015610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc290612cc8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610d0e573d5f803e3d5ffd5b5050565b610d1a6111d2565b5f600a60146101000a81548160ff021916908315150217905550565b60075481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d7390612ac2565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9f90612ac2565b8015610dea5780601f10610dc157610100808354040283529160200191610dea565b820191905f5260205f20905b815481529060010190602001808311610dcd57829003601f168201915b5050505050905090565b5f80610dfe611250565b90505f610e0b82866110a4565b905083811015610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4790612d56565b60405180910390fd5b610e5d8286868403611257565b60019250505092915050565b610e716111d2565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed690612dbe565b60405180910390fd5b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f80610f2c611250565b9050610f398185856114a5565b600191505092915050565b60085481565b610f526111d2565b81600b8190555080600c819055505050565b600b5481565b600a60159054906101000a900460ff1681565b610f856111d2565b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b610ffd6111d2565b5f60065414611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890612e26565b60405180910390fd5b436006819055506001600a60156101000a81548160ff0219169083151502179055506001600a60166101000a81548160ff021916908315150217905550565b60065481565b600c5481565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b6111346111d2565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119990612eb4565b60405180910390fd5b6111ab81611ed3565b50565b7f0000000000000000000000005cfedf2bfacc7c59345c445261653bd1004429ad81565b6111da611250565b73ffffffffffffffffffffffffffffffffffffffff166111f8610d3c565b73ffffffffffffffffffffffffffffffffffffffff161461124e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124590612f1c565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90612faa565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90613038565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161140d91906126d0565b60405180910390a3505050565b5f61142584846110a4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461149f5781811015611491576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611488906130a0565b60405180910390fd5b61149e8484848403611257565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a90613108565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157890613170565b60405180910390fd5b5f81116115c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ba906131d8565b60405180910390fd5b600a60149054906101000a900460ff1615611b63576115e0610d3c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561164e575061161e610d3c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561168657505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116c0575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611b6257600a60159054906101000a900460ff1661182957600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806117745750600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa90613240565b60405180910390fd5b6117bb610d3c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f906132a8565b60405180910390fd5b5b7f0000000000000000000000005cfedf2bfacc7c59345c445261653bd1004429ad73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156118cb5750600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561197257600754811115611915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190c90613310565b60405180910390fd5b60085461192183610c28565b8261192c9190612af2565b111561196d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196490613378565b60405180910390fd5b611b61565b7f0000000000000000000000005cfedf2bfacc7c59345c445261653bd1004429ad73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148015611a145750600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611a6357600754811115611a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a55906133e0565b60405180910390fd5b611b60565b600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611b015750600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611b5f57600854611b1283610c28565b82611b1d9190612af2565b1115611b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5590613378565b60405180910390fd5b5b5b5b5b5b5f611b6d30610c28565b90505f6009548210159050808015611b915750600a60169054906101000a900460ff165b8015611baa5750600a60179054906101000a900460ff16155b8015611c0257507f0000000000000000000000005cfedf2bfacc7c59345c445261653bd1004429ad73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015611c555750600d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611ca85750600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611ceb576001600a60176101000a81548160ff021916908315150217905550611cd0611f96565b5f600a60176101000a81548160ff0219169083151502179055505b5f60019050600d5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611d8b5750600d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611d94575f90505b5f8115611ebf577f0000000000000000000000005cfedf2bfacc7c59345c445261653bd1004429ad73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16148015611df757505f600c54115b15611e1d576064600c5486611e0c91906129f7565b611e169190612a65565b9050611e9c565b7f0000000000000000000000005cfedf2bfacc7c59345c445261653bd1004429ad73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16148015611e7957505f600b54115b15611e9b576064600b5486611e8e91906129f7565b611e989190612a65565b90505b5b5f811115611eb057611eaf873083612034565b5b8085611ebc91906133fe565b94505b611eca878787612034565b50505050505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f611fa26009546122a0565b5f479050600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051611feb9061345e565b5f6040518083038185875af1925050503d805f8114612025576040519150601f19603f3d011682016040523d82523d5f602084013e61202a565b606091505b5050809250505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612099906134e2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790613570565b60405180910390fd5b61211b838383612490565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561219e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612195906135fe565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161228791906126d0565b60405180910390a361229a848484612495565b50505050565b5f600267ffffffffffffffff8111156122bc576122bb61361c565b5b6040519080825280602002602001820160405280156122ea5781602001602082028036833780820191505090505b50905030815f8151811061230157612300613649565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612398573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123bc919061368a565b816001815181106123d0576123cf613649565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161245f9594939291906137a5565b5f604051808303815f87803b158015612476575f80fd5b505af1158015612488573d5f803e3d5ffd5b505050505050565b505050565b505050565b5f80fd5b5f819050919050565b6124b08161249e565b81146124ba575f80fd5b50565b5f813590506124cb816124a7565b92915050565b5f805f606084860312156124e8576124e761249a565b5b5f6124f5868287016124bd565b9350506020612506868287016124bd565b9250506040612517868287016124bd565b9150509250925092565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561255857808201518184015260208101905061253d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61257d82612521565b612587818561252b565b935061259781856020860161253b565b6125a081612563565b840191505092915050565b5f6020820190508181035f8301526125c38184612573565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6125f4826125cb565b9050919050565b612604816125ea565b811461260e575f80fd5b50565b5f8135905061261f816125fb565b92915050565b5f806040838503121561263b5761263a61249a565b5b5f61264885828601612611565b9250506020612659858286016124bd565b9150509250929050565b5f8115159050919050565b61267781612663565b82525050565b5f6020820190506126905f83018461266e565b92915050565b5f602082840312156126ab576126aa61249a565b5b5f6126b884828501612611565b91505092915050565b6126ca8161249e565b82525050565b5f6020820190506126e35f8301846126c1565b92915050565b5f805f60608486031215612700576126ff61249a565b5b5f61270d86828701612611565b935050602061271e86828701612611565b925050604061272f868287016124bd565b9150509250925092565b5f60ff82169050919050565b61274e81612739565b82525050565b5f6020820190506127675f830184612745565b92915050565b612776816125ea565b82525050565b5f60208201905061278f5f83018461276d565b92915050565b5f61279f826125ea565b9050919050565b6127af81612795565b81146127b9575f80fd5b50565b5f813590506127ca816127a6565b92915050565b5f80604083850312156127e6576127e561249a565b5b5f6127f3858286016127bc565b9250506020612804858286016124bd565b9150509250929050565b5f602082840312156128235761282261249a565b5b5f612830848285016124bd565b91505092915050565b5f806040838503121561284f5761284e61249a565b5b5f61285c858286016124bd565b925050602061286d858286016124bd565b9150509250929050565b61288081612663565b811461288a575f80fd5b50565b5f8135905061289b81612877565b92915050565b5f80604083850312156128b7576128b661249a565b5b5f6128c485828601612611565b92505060206128d58582860161288d565b9150509250929050565b5f819050919050565b5f6129026128fd6128f8846125cb565b6128df565b6125cb565b9050919050565b5f612913826128e8565b9050919050565b5f61292482612909565b9050919050565b6129348161291a565b82525050565b5f60208201905061294d5f83018461292b565b92915050565b5f61295d82612909565b9050919050565b61296d81612953565b82525050565b5f6020820190506129865f830184612964565b92915050565b5f80604083850312156129a2576129a161249a565b5b5f6129af85828601612611565b92505060206129c085828601612611565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612a018261249e565b9150612a0c8361249e565b9250828202612a1a8161249e565b91508282048414831517612a3157612a306129ca565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612a6f8261249e565b9150612a7a8361249e565b925082612a8a57612a89612a38565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612ad957607f821691505b602082108103612aec57612aeb612a95565b5b50919050565b5f612afc8261249e565b9150612b078361249e565b9250828201905080821115612b1f57612b1e6129ca565b5b92915050565b5f81519050612b33816124a7565b92915050565b5f60208284031215612b4e57612b4d61249a565b5b5f612b5b84828501612b25565b91505092915050565b7f4552524f523a20496e73756666696369656e742062616c616e636520746f20635f8201527f6f6d706c6574652074786e202100000000000000000000000000000000000000602082015250565b5f612bbe602d8361252b565b9150612bc982612b64565b604082019050919050565b5f6020820190508181035f830152612beb81612bb2565b9050919050565b5f604082019050612c055f83018561276d565b612c1260208301846126c1565b9392505050565b5f81519050612c2781612877565b92915050565b5f60208284031215612c4257612c4161249a565b5b5f612c4f84828501612c19565b91505092915050565b7f696e73756666696369656e742062616c616e636520746f20636f6d706c6574655f8201527f2074786e20210000000000000000000000000000000000000000000000000000602082015250565b5f612cb260268361252b565b9150612cbd82612c58565b604082019050919050565b5f6020820190508181035f830152612cdf81612ca6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612d4060258361252b565b9150612d4b82612ce6565b604082019050919050565b5f6020820190508181035f830152612d6d81612d34565b9050919050565b7f616464726573732063616e6e6f742062652030000000000000000000000000005f82015250565b5f612da860138361252b565b9150612db382612d74565b602082019050919050565b5f6020820190508181035f830152612dd581612d9c565b9050919050565b7f74726164696e672073746174757320697320616c7265616479206c69766500005f82015250565b5f612e10601e8361252b565b9150612e1b82612ddc565b602082019050919050565b5f6020820190508181035f830152612e3d81612e04565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612e9e60268361252b565b9150612ea982612e44565b604082019050919050565b5f6020820190508181035f830152612ecb81612e92565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612f0660208361252b565b9150612f1182612ed2565b602082019050919050565b5f6020820190508181035f830152612f3381612efa565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612f9460248361252b565b9150612f9f82612f3a565b604082019050919050565b5f6020820190508181035f830152612fc181612f88565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61302260228361252b565b915061302d82612fc8565b604082019050919050565b5f6020820190508181035f83015261304f81613016565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61308a601d8361252b565b915061309582613056565b602082019050919050565b5f6020820190508181035f8301526130b78161307e565b9050919050565b7f7472616e736665722066726f6d20746865207a65726f206164647265737320215f82015250565b5f6130f260208361252b565b91506130fd826130be565b602082019050919050565b5f6020820190508181035f83015261311f816130e6565b9050919050565b7f7472616e7366657220746f20746865207a65726f2061646472657373202100005f82015250565b5f61315a601e8361252b565b915061316582613126565b602082019050919050565b5f6020820190508181035f8301526131878161314e565b9050919050565b7f416d6f756e74206d7573742062652067726561746572207468616e20302021005f82015250565b5f6131c2601f8361252b565b91506131cd8261318e565b602082019050919050565b5f6020820190508181035f8301526131ef816131b6565b9050919050565b7f54726164696e67206973206e6f742061637469766520210000000000000000005f82015250565b5f61322a60178361252b565b9150613235826131f6565b602082019050919050565b5f6020820190508181035f8301526132578161321e565b9050919050565b7f54726164696e67206973206163746976652021000000000000000000000000005f82015250565b5f61329260138361252b565b915061329d8261325e565b602082019050919050565b5f6020820190508181035f8301526132bf81613286565b9050919050565b7f42757920616d6f756e74206c696d6974206578636565646564202100000000005f82015250565b5f6132fa601b8361252b565b9150613305826132c6565b602082019050919050565b5f6020820190508181035f830152613327816132ee565b9050919050565b7f4d61782077616c6c657420616d6f756e742065786365656465642021000000005f82015250565b5f613362601c8361252b565b915061336d8261332e565b602082019050919050565b5f6020820190508181035f83015261338f81613356565b9050919050565b7f53616c6520616d6f756e74206c696d69742065786365656465642021000000005f82015250565b5f6133ca601c8361252b565b91506133d582613396565b602082019050919050565b5f6020820190508181035f8301526133f7816133be565b9050919050565b5f6134088261249e565b91506134138361249e565b925082820390508181111561342b5761342a6129ca565b5b92915050565b5f81905092915050565b50565b5f6134495f83613431565b91506134548261343b565b5f82019050919050565b5f6134688261343e565b9150819050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6134cc60258361252b565b91506134d782613472565b604082019050919050565b5f6020820190508181035f8301526134f9816134c0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61355a60238361252b565b915061356582613500565b604082019050919050565b5f6020820190508181035f8301526135878161354e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6135e860268361252b565b91506135f38261358e565b604082019050919050565b5f6020820190508181035f830152613615816135dc565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050613684816125fb565b92915050565b5f6020828403121561369f5761369e61249a565b5b5f6136ac84828501613676565b91505092915050565b5f819050919050565b5f6136d86136d36136ce846136b5565b6128df565b61249e565b9050919050565b6136e8816136be565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613720816125ea565b82525050565b5f6137318383613717565b60208301905092915050565b5f602082019050919050565b5f613753826136ee565b61375d81856136f8565b935061376883613708565b805f5b8381101561379857815161377f8882613726565b975061378a8361373d565b92505060018101905061376b565b5085935050505092915050565b5f60a0820190506137b85f8301886126c1565b6137c560208301876136df565b81810360408301526137d78186613749565b90506137e6606083018561276d565b6137f360808301846126c1565b969550505050505056fea264697066735822122050e039470bbc28ef22be9a413c46b0bb93e2a815da62685ddee8ab2bac219de664736f6c63430008140033

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.