ETH Price: $2,423.15 (+3.00%)

Token

Super Doge (SDOGE)
 

Overview

Max Total Supply

10,000,000 SDOGE

Holders

60

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
cosmictuf.eth
Balance
0.461321936489371318 SDOGE

Value
$0.00
0xe466bc8d4953b14892c0d78b5df7c79c37969e6e
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:
SDOGE

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : SDOGE.sol
/**

Super Doge - genius token with self mooning algorithm.

Chat - https://t.me/SuperDoge_ERC20

*/

//SPDX-License-Identifier: MIT
pragma solidity 0.8.10;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";

interface Hodl {
    function getBalance() external view returns (uint256);
    function sendReward(address to, uint256 amount) external returns (bool result);
}

contract SDOGE is ERC20, Ownable {
    using SafeMath for uint256;
    Hodl private _hodler;
    IUniswapV2Router02 private _uniswapV2Router;
    address private _uniswapV2Pair;
    address public _usdc = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;
    address public _router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    address public _uniswapV3Router = 0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45;
    address public _feeWallet;

    uint256 public _supportLevel;
    uint256 public _floorSellFee;
    uint256 public _marketingFee;
    uint256 public _liquidityFee;
    uint256 public _tokensForLiquidity;
    uint256 public _supportPercentBelowATH;
    uint256 public _addLiquidityAtAmount;

    bool public _tradingActive;
    bool private _isSwappingBack;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isNonUniswapExchange;
    mapping(address => bool) private _isBlackListedSender;
    mapping(address => bool) private _isBlackListed;

    event IsBuy(address indexed msgSender, address from, address to, uint256 tokensAmount, uint256 newUsdcBalance);
    event IsSell(address indexed msgSender, address from, address to, uint256 tokensAmount, uint256 newUsdcBalance);
    event IsLiquidityOperation(address indexed msgSender, address from, address to, uint256 tokensAmount, uint256 newUsdcBalance);
    event LiquidityAdded(uint256 usdcAmount, uint256 tokenAmount);
    event ExcludeFromFees(address indexed account, bool isExcluded);

    constructor() ERC20("Super Doge", "SDOGE") {
        _uniswapV2Router = IUniswapV2Router02(_router);
        _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _usdc);
        _supportLevel = 0;
        _supportPercentBelowATH = 5;
        _floorSellFee = 30;
        _marketingFee = 1;
        _liquidityFee = 1;
        _addLiquidityAtAmount = 1000e18;
    }

    function init(address hodler, address owner) public onlyOwner {
        require(owner != address(0), "Address doesn't exist");

        _hodler = Hodl(hodler);
        _feeWallet = address(owner);
        excludeFromFees(address(owner), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        uint256 totalSupply = 10e6 * 1e18;

        _mint(owner, totalSupply);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!_isBlackListed[to] || !_isBlackListed[from], "Address is blacklisted");
        require(!_isBlackListedSender[msg.sender], "msg.sender is blacklisted");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        (bool isSell, bool isBuy, bool isLiquidityOperation) = getTransactionType(from, to, amount);

        if (isLiquidityOperation || _isSwappingBack) {
            super._transfer(from, to, amount);
            return;
        }

        bool isSwap = isBuy || isSell;
        bool isExcludedFromFee = _isExcludedFromFees[from] || _isExcludedFromFees[to];

        if(!_tradingActive && !isExcludedFromFee && isSwap) require(false, "Trading is not yet active");

        bool shouldTakeFee = _tradingActive && isSwap;
        if (isExcludedFromFee) shouldTakeFee = false;

        (uint buyerRewardInUSDC, uint sellFeeInUSDC, uint tokensForLiquidity, uint tokensForMarketing) = calculateNewLevel(amount, isBuy);

        uint transferableAmount = amount;
        uint tokensToSellForRewards = 0;
        if (shouldTakeFee) {
            if (tokensForMarketing > 0 || tokensForLiquidity > 0) {
                super._transfer(from, _feeWallet, tokensForMarketing);
                super._transfer(from, address(this), tokensForLiquidity);
                _tokensForLiquidity += tokensForLiquidity;
                transferableAmount -= tokensForMarketing.add(tokensForLiquidity);
            }
            if (sellFeeInUSDC > 0) {
                tokensToSellForRewards = getAmountOutForUsdcSell(sellFeeInUSDC);
                super._transfer(from, address(this), tokensToSellForRewards);
                transferableAmount -= tokensToSellForRewards;
            }
        }

        if (isSell && !_isSwappingBack) {
            _isSwappingBack = true;
            swapBack(tokensToSellForRewards);
            _isSwappingBack = false;
        }

        if (!isSwap && !isLiquidityOperation && !isExcludedFromFee && _tokensForLiquidity >= _addLiquidityAtAmount) {
                bool added = addLiquidity(_tokensForLiquidity);
                if(added) _tokensForLiquidity = 0;
        }

        if (buyerRewardInUSDC > 0) {
            _hodler.sendReward(to, buyerRewardInUSDC);
        }

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

    function getTransactionType(address from, address to, uint256 amount) private returns (bool, bool, bool) {
        (uint reserve0, uint reserve1,) = IUniswapV2Pair(_uniswapV2Pair).getReserves();
        uint newUsdcBalance = ERC20(_usdc).balanceOf(_uniswapV2Pair);

        bool isBuy = from == _uniswapV2Pair && to != address(_uniswapV2Router);
        bool isSell = false;
        bool isLiquidityOperation = false;

        if (_isNonUniswapExchange[msg.sender]) {
            isBuy = from == _uniswapV2Pair;
            isSell = to == _uniswapV2Pair;
        } else {
            if ((msg.sender == address(_uniswapV2Router) || msg.sender == address(_uniswapV3Router)) && to == _uniswapV2Pair) {
                if (newUsdcBalance > reserve0) isLiquidityOperation = true;
                else isSell = true;
            }

            if (newUsdcBalance < reserve0 && to != _uniswapV2Pair) {
                if (isBuy) {
                    isLiquidityOperation = true;
                    isBuy = false;
                }
            }
        }

        if (isBuy) emit IsBuy(msg.sender, from, to, amount, newUsdcBalance);
        if (isSell) emit IsSell(msg.sender, from, to, amount, newUsdcBalance);
        if (isLiquidityOperation) emit IsLiquidityOperation(msg.sender, from, to, amount, newUsdcBalance);

        return (isSell, isBuy, isLiquidityOperation);
    }

    function getAmountOutForUsdcSell(uint usdcIn) internal returns (uint tokensReceived) {
        (uint reserve0, uint reserve1,) = IUniswapV2Pair(_uniswapV2Pair).getReserves();
        tokensReceived = getAmountIn(usdcIn, reserve1, reserve0);
    }

    function getNewPrice(bool isBuy, uint amount) internal returns (uint, uint) {
        uint newPrice = 0;
        uint usdcSpent = 0;
        uint usdcReceived = 0;
        uint usdcFee = 0;
        (uint reserve0, uint reserve1,) = IUniswapV2Pair(_uniswapV2Pair).getReserves();
        if (isBuy) {
            usdcSpent = getAmountIn(amount, reserve0, reserve1);
            newPrice = getAmountOut(1e18, reserve1.sub(amount), reserve0.add(usdcSpent));
        } else {
            usdcReceived = getAmountOut(amount, reserve1, reserve0);
            newPrice = getAmountOut(1e18, reserve1.add(amount), reserve0.sub(usdcReceived));
            usdcFee = usdcReceived.mul(_floorSellFee).div(100);
        }
        return (newPrice, usdcFee);
    }

    function calculateNewLevel(uint amount, bool isBuy) internal returns (uint, uint, uint, uint) {
        (uint newPrice, uint usdcFee) = getNewPrice(isBuy, amount);
        uint currentPrice = getCurrentPrice();

        uint buyerRewardInUSDC = 0;
        uint sellFeeInUSDC = 0;
        uint tokensForLiquidity = 0;
        uint tokensForMarketing = 0;

        if (newPrice < _supportLevel) {
            if (isBuy) {
                uint priceMovePercentage = newPrice.sub(currentPrice).mul(100000000).div(_supportLevel.sub(currentPrice));
                uint usdcRewardsBank = _hodler.getBalance();
                if (usdcRewardsBank > 0) {
                    buyerRewardInUSDC = priceMovePercentage.mul(usdcRewardsBank).div(100000000);
                }
            } else {
                sellFeeInUSDC = usdcFee;
            }
        } else if (newPrice >= _supportLevel && currentPrice < _supportLevel) {
            buyerRewardInUSDC = _hodler.getBalance();
        } else {
            uint256 numerator = amount.div(100);
            tokensForLiquidity = numerator.mul(_liquidityFee);
            tokensForMarketing = numerator.mul(_marketingFee);
        }

        if (newPrice > _supportLevel) {
            uint tempSupport = newPrice.sub(newPrice.div(100).mul(_supportPercentBelowATH));
            if (tempSupport > _supportLevel) _supportLevel = tempSupport;
        }

        return (buyerRewardInUSDC, sellFeeInUSDC, tokensForLiquidity, tokensForMarketing);
    }

    function swapBack(uint tokenAmount) private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0 || tokenAmount == 0) return;

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _usdc;

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

        _uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(_hodler),
            block.timestamp
        );
    }

    function getCurrentPrice() public view returns (uint price) {
        (uint256 reserve0, uint256 reserve1,) = IUniswapV2Pair(_uniswapV2Pair).getReserves();
        price = getAmountOut(1e18, reserve1, reserve0);
    }

    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) internal pure returns (uint amountOut) {
        uint amountInWithFee = amountIn.mul(997);
        uint numerator = amountInWithFee.mul(reserveOut);
        uint denominator = reserveIn.mul(1000).add(amountInWithFee);
        amountOut = numerator / denominator;
    }

    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) internal pure returns (uint amountIn) {
        uint numerator = reserveIn.mul(amountOut).mul(1000);
        uint denominator = reserveOut.sub(amountOut).mul(997);
        amountIn = (numerator / denominator).add(1);
    }

    function addLiquidity(uint256 tokenAmount) private returns (bool) {
        if (tokenAmount > balanceOf(address(this))) return false;

        uint256 tokensToBeAdded = tokenAmount.div(2);

        uint256 myUSDCBefore = ERC20(_usdc).balanceOf(address(_hodler));
        _isSwappingBack = true;
        swapBack(tokensToBeAdded);
        _isSwappingBack = false;
        uint256 myUSDCAfter = ERC20(_usdc).balanceOf(address(_hodler));
        uint256 usdcToAdd = myUSDCAfter.sub(myUSDCBefore);
        _hodler.sendReward(address(this), usdcToAdd);

        _approve(address(this), address(_uniswapV2Router), tokensToBeAdded);
        ERC20(_usdc).approve(address(_uniswapV2Router), usdcToAdd);

        _uniswapV2Router.addLiquidity(
            address(_usdc),
            address(this),
            usdcToAdd,
            tokensToBeAdded,
            0,
            0,
            _feeWallet,
            block.timestamp
        );

        emit LiquidityAdded(usdcToAdd, tokensToBeAdded);
        return true;
    }

    function enableTrading() public onlyOwner {
        _tradingActive = true;
        _supportLevel = getCurrentPrice();
    }

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

    function setFeeWallet(address feeWallet) public onlyOwner {
        _feeWallet = feeWallet;
    }

    function setSupportLevel(uint256 supportLevel) public onlyOwner {
        _supportLevel = supportLevel;
    }

    function setNonUniswapExchange(address account, bool exists) public onlyOwner {
        _isNonUniswapExchange[account] = exists;
    }

    function setFloorSellFee(uint256 floorSellFee) public onlyOwner {
        _floorSellFee = floorSellFee;
    }

    function setSupportPercentBelowATH(uint256 supportPercentBelowATH) public onlyOwner {
        _supportPercentBelowATH = supportPercentBelowATH;
    }

    function setAddLiquidityAtAmount(uint256 addLiquidityAtAmount) public onlyOwner {
        _addLiquidityAtAmount = addLiquidityAtAmount;
    }

    function SetUniswapV3Router(address uniswapV3Router) public onlyOwner {
        _uniswapV3Router = uniswapV3Router;
    }

    function setTokensForLiquidity(uint256 tokensForLiquidity) public onlyOwner {
        _tokensForLiquidity = tokensForLiquidity;
    }

    function setBlackListed(address sender, bool exists) public onlyOwner {
        _isBlackListed[sender] = exists;
    }

    function setBlackListedSender(address sender, bool exists) public onlyOwner {
        _isBlackListedSender[sender] = exists;
    }

    function setHodler(address hodler) public onlyOwner {
        _hodler = Hodl(hodler);
    }

    function rescue(address token) public onlyOwner {
        ERC20 Token = ERC20(token);
        uint256 balance = Token.balanceOf(address(this));
        if(balance > 0) Token.transfer(_msgSender(), balance);
    }

    function setFees(uint256 marketingFee, uint256 liquidityFee) public onlyOwner {
        require(marketingFee.add(liquidityFee) <= 10, "Fees can't be greater than 10%");
        _marketingFee = marketingFee;
        _liquidityFee = liquidityFee;
    }
}

File 2 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

File 3 of 11 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

File 4 of 11 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 5 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 6 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 7 of 11 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 8 of 11 : 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 9 of 11 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 10 of 11 : 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 11 of 11 : 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;
}

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

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"msgSender","type":"address"},{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokensAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newUsdcBalance","type":"uint256"}],"name":"IsBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"msgSender","type":"address"},{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokensAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newUsdcBalance","type":"uint256"}],"name":"IsLiquidityOperation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"msgSender","type":"address"},{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokensAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newUsdcBalance","type":"uint256"}],"name":"IsSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"usdcAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"LiquidityAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"uniswapV3Router","type":"address"}],"name":"SetUniswapV3Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_addLiquidityAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_floorSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_supportLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_supportPercentBelowATH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV3Router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_usdc","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"enableTrading","outputs":[],"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":[],"name":"getCurrentPrice","outputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"hodler","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"rescue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"addLiquidityAtAmount","type":"uint256"}],"name":"setAddLiquidityAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"bool","name":"exists","type":"bool"}],"name":"setBlackListed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"bool","name":"exists","type":"bool"}],"name":"setBlackListedSender","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"feeWallet","type":"address"}],"name":"setFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"floorSellFee","type":"uint256"}],"name":"setFloorSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"hodler","type":"address"}],"name":"setHodler","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exists","type":"bool"}],"name":"setNonUniswapExchange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supportLevel","type":"uint256"}],"name":"setSupportLevel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supportPercentBelowATH","type":"uint256"}],"name":"setSupportPercentBelowATH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokensForLiquidity","type":"uint256"}],"name":"setTokensForLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507368b3465833fb72a70ecdf485e0e4c7bd8665fc45600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200011057600080fd5b506040518060400160405280600a81526020017f537570657220446f6765000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f53444f4745000000000000000000000000000000000000000000000000000000815250816003908051906020019062000195929190620004b8565b508060049080519060200190620001ae929190620004b8565b505050620001d1620001c5620003ea60201b60201c565b620003f260201b60201c565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c89190620005d2565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200032692919062000615565b6020604051808303816000875af115801562000346573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036c9190620005d2565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600d819055506005601281905550601e600e819055506001600f819055506001601081905550683635c9adc5dea00000601381905550620006a7565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620004c69062000671565b90600052602060002090601f016020900481019282620004ea576000855562000536565b82601f106200050557805160ff191683800117855562000536565b8280016001018555821562000536579182015b828111156200053557825182559160200191906001019062000518565b5b50905062000545919062000549565b5090565b5b80821115620005645760008160009055506001016200054a565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200059a826200056d565b9050919050565b620005ac816200058d565b8114620005b857600080fd5b50565b600081519050620005cc81620005a1565b92915050565b600060208284031215620005eb57620005ea62000568565b5b6000620005fb84828501620005bb565b91505092915050565b6200060f816200058d565b82525050565b60006040820190506200062c600083018562000604565b6200063b602083018462000604565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200068a57607f821691505b60208210811415620006a157620006a062000642565b5b50919050565b614f0480620006b76000396000f3fe608060405234801561001057600080fd5b50600436106102695760003560e01c8063715018a611610151578063af808ab0116100c3578063dd62ed3e11610087578063dd62ed3e146106ee578063eb91d37e1461071e578063edae876f1461073c578063eed55a4e1461075a578063f09a401614610776578063f2fde38b1461079257610269565b8063af808ab014610662578063c02466681461067e578063d06e819b1461069a578063d8c45239146106b6578063dad6a688146106d257610269565b806390d49b9d1161011557806390d49b9d1461058e5780639400d11d146105aa5780639549535e146105c657806395d89b41146105e4578063a457c2d714610602578063a9059cbb1461063257610269565b8063715018a614610522578063791966ec1461052c578063839006f21461054a5780638a8c523c146105665780638da5cb5b1461057057610269565b8063313ce567116101ea5780635cd8c072116101ae5780635cd8c07214610460578063646bf7ae1461047c578063659419a41461049a57806365d24881146104b85780636bc87c3a146104d457806370a08231146104f257610269565b8063313ce567146103ba57806339509351146103d85780633d5d2a21146104085780634320bcf11461042457806344f596221461044257610269565b80630b78f9c0116102315780630b78f9c01461031457806318160ddd1461033057806322976e0d1461034e57806323b872dd1461036c57806327f4d7d51461039c57610269565b8063040362ca1461026e578063058194db1461028c57806306fdde03146102aa578063076aad2f146102c8578063095ea7b3146102e4575b600080fd5b6102766107ae565b6040516102839190613d25565b60405180910390f35b6102946107b4565b6040516102a19190613d25565b60405180910390f35b6102b26107ba565b6040516102bf9190613dd9565b60405180910390f35b6102e260048036038101906102dd9190613e2c565b61084c565b005b6102fe60048036038101906102f99190613eb7565b6108d2565b60405161030b9190613f12565b60405180910390f35b61032e60048036038101906103299190613f2d565b6108f0565b005b6103386109d4565b6040516103459190613d25565b60405180910390f35b6103566109de565b6040516103639190613d25565b60405180910390f35b61038660048036038101906103819190613f6d565b6109e4565b6040516103939190613f12565b60405180910390f35b6103a4610adc565b6040516103b19190613f12565b60405180910390f35b6103c2610aef565b6040516103cf9190613fdc565b60405180910390f35b6103f260048036038101906103ed9190613eb7565b610af8565b6040516103ff9190613f12565b60405180910390f35b610422600480360381019061041d9190613ff7565b610ba4565b005b61042c610c64565b6040516104399190614033565b60405180910390f35b61044a610c8a565b6040516104579190613d25565b60405180910390f35b61047a6004803603810190610475919061407a565b610c90565b005b610484610d67565b6040516104919190613d25565b60405180910390f35b6104a2610d6d565b6040516104af9190614033565b60405180910390f35b6104d260048036038101906104cd9190613e2c565b610d93565b005b6104dc610e19565b6040516104e99190613d25565b60405180910390f35b61050c60048036038101906105079190613ff7565b610e1f565b6040516105199190613d25565b60405180910390f35b61052a610e67565b005b610534610eef565b6040516105419190614033565b60405180910390f35b610564600480360381019061055f9190613ff7565b610f15565b005b61056e6110a9565b005b610578611150565b6040516105859190614033565b60405180910390f35b6105a860048036038101906105a39190613ff7565b61117a565b005b6105c460048036038101906105bf9190613e2c565b61123a565b005b6105ce6112c0565b6040516105db9190613d25565b60405180910390f35b6105ec6112c6565b6040516105f99190613dd9565b60405180910390f35b61061c60048036038101906106179190613eb7565b611358565b6040516106299190613f12565b60405180910390f35b61064c60048036038101906106479190613eb7565b611443565b6040516106599190613f12565b60405180910390f35b61067c6004803603810190610677919061407a565b611461565b005b6106986004803603810190610693919061407a565b611538565b005b6106b460048036038101906106af9190613e2c565b61160f565b005b6106d060048036038101906106cb9190613ff7565b611695565b005b6106ec60048036038101906106e79190613e2c565b611755565b005b610708600480360381019061070391906140ba565b6117db565b6040516107159190613d25565b60405180910390f35b610726611862565b6040516107339190613d25565b60405180910390f35b610744611937565b6040516107519190614033565b60405180910390f35b610774600480360381019061076f919061407a565b61195d565b005b610790600480360381019061078b91906140ba565b611a34565b005b6107ac60048036038101906107a79190613ff7565b611be4565b005b60125481565b60135481565b6060600380546107c990614129565b80601f01602080910402602001604051908101604052809291908181526020018280546107f590614129565b80156108425780601f1061081757610100808354040283529160200191610842565b820191906000526020600020905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b610854611cdc565b73ffffffffffffffffffffffffffffffffffffffff16610872611150565b73ffffffffffffffffffffffffffffffffffffffff16146108c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bf906141a7565b60405180910390fd5b8060118190555050565b60006108e66108df611cdc565b8484611ce4565b6001905092915050565b6108f8611cdc565b73ffffffffffffffffffffffffffffffffffffffff16610916611150565b73ffffffffffffffffffffffffffffffffffffffff161461096c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610963906141a7565b60405180910390fd5b600a6109818284611eaf90919063ffffffff16565b11156109c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b990614213565b60405180910390fd5b81600f81905550806010819055505050565b6000600254905090565b600f5481565b60006109f1848484611ec5565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a3c611cdc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab3906142a5565b60405180910390fd5b610ad085610ac8611cdc565b858403611ce4565b60019150509392505050565b601460009054906101000a900460ff1681565b60006012905090565b6000610b9a610b05611cdc565b848460016000610b13611cdc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b9591906142f4565b611ce4565b6001905092915050565b610bac611cdc565b73ffffffffffffffffffffffffffffffffffffffff16610bca611150565b73ffffffffffffffffffffffffffffffffffffffff1614610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c17906141a7565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b610c98611cdc565b73ffffffffffffffffffffffffffffffffffffffff16610cb6611150565b73ffffffffffffffffffffffffffffffffffffffff1614610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d03906141a7565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600e5481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d9b611cdc565b73ffffffffffffffffffffffffffffffffffffffff16610db9611150565b73ffffffffffffffffffffffffffffffffffffffff1614610e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e06906141a7565b60405180910390fd5b80600d8190555050565b60105481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e6f611cdc565b73ffffffffffffffffffffffffffffffffffffffff16610e8d611150565b73ffffffffffffffffffffffffffffffffffffffff1614610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda906141a7565b60405180910390fd5b610eed6000612505565b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f1d611cdc565b73ffffffffffffffffffffffffffffffffffffffff16610f3b611150565b73ffffffffffffffffffffffffffffffffffffffff1614610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f88906141a7565b60405180910390fd5b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610fd19190614033565b602060405180830381865afa158015610fee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611012919061435f565b905060008111156110a4578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb611041611cdc565b836040518363ffffffff1660e01b815260040161105f92919061438c565b6020604051808303816000875af115801561107e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a291906143ca565b505b505050565b6110b1611cdc565b73ffffffffffffffffffffffffffffffffffffffff166110cf611150565b73ffffffffffffffffffffffffffffffffffffffff1614611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c906141a7565b60405180910390fd5b6001601460006101000a81548160ff021916908315150217905550611148611862565b600d81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611182611cdc565b73ffffffffffffffffffffffffffffffffffffffff166111a0611150565b73ffffffffffffffffffffffffffffffffffffffff16146111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed906141a7565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611242611cdc565b73ffffffffffffffffffffffffffffffffffffffff16611260611150565b73ffffffffffffffffffffffffffffffffffffffff16146112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad906141a7565b60405180910390fd5b8060138190555050565b600d5481565b6060600480546112d590614129565b80601f016020809104026020016040519081016040528092919081815260200182805461130190614129565b801561134e5780601f106113235761010080835404028352916020019161134e565b820191906000526020600020905b81548152906001019060200180831161133157829003601f168201915b5050505050905090565b60008060016000611367611cdc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90614469565b60405180910390fd5b61143861142f611cdc565b85858403611ce4565b600191505092915050565b6000611457611450611cdc565b8484611ec5565b6001905092915050565b611469611cdc565b73ffffffffffffffffffffffffffffffffffffffff16611487611150565b73ffffffffffffffffffffffffffffffffffffffff16146114dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d4906141a7565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611540611cdc565b73ffffffffffffffffffffffffffffffffffffffff1661155e611150565b73ffffffffffffffffffffffffffffffffffffffff16146115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab906141a7565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611617611cdc565b73ffffffffffffffffffffffffffffffffffffffff16611635611150565b73ffffffffffffffffffffffffffffffffffffffff161461168b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611682906141a7565b60405180910390fd5b8060128190555050565b61169d611cdc565b73ffffffffffffffffffffffffffffffffffffffff166116bb611150565b73ffffffffffffffffffffffffffffffffffffffff1614611711576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611708906141a7565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61175d611cdc565b73ffffffffffffffffffffffffffffffffffffffff1661177b611150565b73ffffffffffffffffffffffffffffffffffffffff16146117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c8906141a7565b60405180910390fd5b80600e8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa1580156118d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f8919061450b565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff169150611930670de0b6b3a764000082846125cb565b9250505090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611965611cdc565b73ffffffffffffffffffffffffffffffffffffffff16611983611150565b73ffffffffffffffffffffffffffffffffffffffff16146119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d0906141a7565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611a3c611cdc565b73ffffffffffffffffffffffffffffffffffffffff16611a5a611150565b73ffffffffffffffffffffffffffffffffffffffff1614611ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa7906141a7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b17906145aa565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611bad816001611538565b611bb8306001611538565b611bc561dead6001611538565b60006a084595161401484a0000009050611bdf828261263f565b505050565b611bec611cdc565b73ffffffffffffffffffffffffffffffffffffffff16611c0a611150565b73ffffffffffffffffffffffffffffffffffffffff1614611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c57906141a7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc79061463c565b60405180910390fd5b611cd981612505565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4b906146ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbb90614760565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611ea29190613d25565b60405180910390a3505050565b60008183611ebd91906142f4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c906147f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9c90614884565b60405180910390fd5b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615806120485750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207e906148f0565b60405180910390fd5b601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210b9061495c565b60405180910390fd5b600081141561212e576121298383600061279f565b612500565b600080600061213e868686612a20565b925092509250808061215c5750601460019054906101000a900460ff165b156121745761216c86868661279f565b505050612500565b6000828061217f5750835b90506000601560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122245750601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b9050601460009054906101000a900460ff16158015612241575080155b801561224a5750815b15612291576000612290576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612287906149c8565b60405180910390fd5b5b6000601460009054906101000a900460ff1680156122ac5750825b905081156122b957600090505b6000806000806122c98b8a613009565b935093509350935060008b9050600086156123935760008311806122ed5750600084115b156123645761231f8f600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168561279f565b61232a8f308661279f565b836011600082825461233c91906142f4565b925050819055506123568484611eaf90919063ffffffff16565b8261236191906149e8565b91505b600085111561239257612376856132e0565b90506123838f308361279f565b808261238f91906149e8565b91505b5b8b80156123ad5750601460019054906101000a900460ff16155b156123f2576001601460016101000a81548160ff0219169083151502179055506123d6816133af565b6000601460016101000a81548160ff0219169083151502179055505b881580156123fe575089155b8015612408575087155b8015612418575060135460115410155b1561243d57600061242a6011546135cf565b9050801561243b5760006011819055505b505b60008611156124e857600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166307420a418f886040518363ffffffff1660e01b81526004016124a392919061438c565b6020604051808303816000875af11580156124c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124e691906143ca565b505b6124f38f8f8461279f565b5050505050505050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000806125e36103e586613aa890919063ffffffff16565b905060006125fa8483613aa890919063ffffffff16565b90506000612625836126176103e889613aa890919063ffffffff16565b611eaf90919063ffffffff16565b905080826126339190614a4b565b93505050509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a690614ac8565b60405180910390fd5b6126bb60008383613abe565b80600260008282546126cd91906142f4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461272291906142f4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516127879190613d25565b60405180910390a361279b60008383613ac3565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561280f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612806906147f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561287f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287690614884565b60405180910390fd5b61288a838383613abe565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290790614b5a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129a391906142f4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612a079190613d25565b60405180910390a3612a1a848484613ac3565b50505050565b6000806000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015612a95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ab9919061450b565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401612b5d9190614033565b602060405180830381865afa158015612b7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b9e919061435f565b90506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff16148015612c4d5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b9050600080601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612d4f57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff16149250600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff16149150612ee0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480612df85750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b8015612e515750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff16145b15612e6d5785841115612e675760019050612e6c565b600191505b5b8584108015612eca5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff1614155b15612edf578215612ede5760019050600092505b5b5b8215612f3b573373ffffffffffffffffffffffffffffffffffffffff167f860a37deac811ce967064ae65bd58706e46bfb2d30ce3fac7967c12c70ce8c5b8d8d8d88604051612f329493929190614b7a565b60405180910390a25b8115612f96573373ffffffffffffffffffffffffffffffffffffffff167fa7be8720477542897f75d79b729696a5831033a1154ce589e584bd15900f120c8d8d8d88604051612f8d9493929190614b7a565b60405180910390a25b8015612ff1573373ffffffffffffffffffffffffffffffffffffffff167f93514ff650de2ed280446a047fdc4e11536a0242e0ae975dd9bce8c5d24c952d8d8d8d88604051612fe89493929190614b7a565b60405180910390a25b81838298509850985050505050505093509350939050565b60008060008060008061301c8789613ac8565b91509150600061302a611862565b9050600080600080600d5487101561316f578b1561316657600061309361305c87600d54613c5f90919063ffffffff16565b6130856305f5e1006130778a8d613c5f90919063ffffffff16565b613aa890919063ffffffff16565b613c7590919063ffffffff16565b90506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312065fe06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613104573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613128919061435f565b9050600081111561315f5761315c6305f5e10061314e8385613aa890919063ffffffff16565b613c7590919063ffffffff16565b95505b505061316a565b8592505b613268565b600d5487101580156131825750600d5485105b1561321f57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312065fe06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156131f4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613218919061435f565b9350613267565b600061323560648f613c7590919063ffffffff16565b905061324c60105482613aa890919063ffffffff16565b9250613263600f5482613aa890919063ffffffff16565b9150505b5b600d548711156132c45760006132ae61329f60125461329160648c613c7590919063ffffffff16565b613aa890919063ffffffff16565b89613c5f90919063ffffffff16565b9050600d548111156132c25780600d819055505b505b838383839a509a509a509a505050505050505092959194509250565b6000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015613352573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613376919061450b565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691506133a6848284613c8b565b92505050919050565b60006133ba30610e1f565b905060008114806133cb5750600082145b156133d657506135cc565b6000600267ffffffffffffffff8111156133f3576133f2614bbf565b5b6040519080825280602002602001820160405280156134215781602001602082028036833780820191505090505b509050308160008151811061343957613438614bee565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816001815181106134aa576134a9614bee565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061351130600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685611ce4565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d79584600084600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401613597959493929190614d20565b600060405180830381600087803b1580156135b157600080fd5b505af11580156135c5573d6000803e3d6000fd5b5050505050505b50565b60006135da30610e1f565b8211156135ea5760009050613aa3565b6000613600600284613c7590919063ffffffff16565b90506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016136819190614033565b602060405180830381865afa15801561369e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136c2919061435f565b90506001601460016101000a81548160ff0219169083151502179055506136e8826133af565b6000601460016101000a81548160ff0219169083151502179055506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016137829190614033565b602060405180830381865afa15801561379f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137c3919061435f565b905060006137da8383613c5f90919063ffffffff16565b9050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166307420a4130836040518363ffffffff1660e01b815260040161383992919061438c565b6020604051808303816000875af1158015613858573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061387c91906143ca565b506138aa30600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686611ce4565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b815260040161392992919061438c565b6020604051808303816000875af1158015613948573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061396c91906143ca565b50600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e8e33700600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16308488600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518963ffffffff1660e01b8152600401613a1b989796959493929190614d7a565b6060604051808303816000875af1158015613a3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a5e9190614df8565b5050507f38f8a0c92f4c5b0b6877f878cb4c0c8d348a47b76d716c8e78f425043df9515b8185604051613a92929190614e4b565b60405180910390a160019450505050505b919050565b60008183613ab69190614e74565b905092915050565b505050565b505050565b600080600080600080600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015613b41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b65919061450b565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691508915613bdb57613b9b898383613c8b565b9450613bd4670de0b6b3a7640000613bbc8b84613c5f90919063ffffffff16565b613bcf8886611eaf90919063ffffffff16565b6125cb565b9550613c4c565b613be68982846125cb565b9350613c1f670de0b6b3a7640000613c078b84611eaf90919063ffffffff16565b613c1a8786613c5f90919063ffffffff16565b6125cb565b9550613c496064613c3b600e5487613aa890919063ffffffff16565b613c7590919063ffffffff16565b92505b8583975097505050505050509250929050565b60008183613c6d91906149e8565b905092915050565b60008183613c839190614a4b565b905092915050565b600080613cb56103e8613ca78787613aa890919063ffffffff16565b613aa890919063ffffffff16565b90506000613ce06103e5613cd28887613c5f90919063ffffffff16565b613aa890919063ffffffff16565b9050613d0160018284613cf39190614a4b565b611eaf90919063ffffffff16565b925050509392505050565b6000819050919050565b613d1f81613d0c565b82525050565b6000602082019050613d3a6000830184613d16565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d7a578082015181840152602081019050613d5f565b83811115613d89576000848401525b50505050565b6000601f19601f8301169050919050565b6000613dab82613d40565b613db58185613d4b565b9350613dc5818560208601613d5c565b613dce81613d8f565b840191505092915050565b60006020820190508181036000830152613df38184613da0565b905092915050565b600080fd5b613e0981613d0c565b8114613e1457600080fd5b50565b600081359050613e2681613e00565b92915050565b600060208284031215613e4257613e41613dfb565b5b6000613e5084828501613e17565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e8482613e59565b9050919050565b613e9481613e79565b8114613e9f57600080fd5b50565b600081359050613eb181613e8b565b92915050565b60008060408385031215613ece57613ecd613dfb565b5b6000613edc85828601613ea2565b9250506020613eed85828601613e17565b9150509250929050565b60008115159050919050565b613f0c81613ef7565b82525050565b6000602082019050613f276000830184613f03565b92915050565b60008060408385031215613f4457613f43613dfb565b5b6000613f5285828601613e17565b9250506020613f6385828601613e17565b9150509250929050565b600080600060608486031215613f8657613f85613dfb565b5b6000613f9486828701613ea2565b9350506020613fa586828701613ea2565b9250506040613fb686828701613e17565b9150509250925092565b600060ff82169050919050565b613fd681613fc0565b82525050565b6000602082019050613ff16000830184613fcd565b92915050565b60006020828403121561400d5761400c613dfb565b5b600061401b84828501613ea2565b91505092915050565b61402d81613e79565b82525050565b60006020820190506140486000830184614024565b92915050565b61405781613ef7565b811461406257600080fd5b50565b6000813590506140748161404e565b92915050565b6000806040838503121561409157614090613dfb565b5b600061409f85828601613ea2565b92505060206140b085828601614065565b9150509250929050565b600080604083850312156140d1576140d0613dfb565b5b60006140df85828601613ea2565b92505060206140f085828601613ea2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061414157607f821691505b60208210811415614155576141546140fa565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614191602083613d4b565b915061419c8261415b565b602082019050919050565b600060208201905081810360008301526141c081614184565b9050919050565b7f466565732063616e27742062652067726561746572207468616e203130250000600082015250565b60006141fd601e83613d4b565b9150614208826141c7565b602082019050919050565b6000602082019050818103600083015261422c816141f0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061428f602883613d4b565b915061429a82614233565b604082019050919050565b600060208201905081810360008301526142be81614282565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142ff82613d0c565b915061430a83613d0c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561433f5761433e6142c5565b5b828201905092915050565b60008151905061435981613e00565b92915050565b60006020828403121561437557614374613dfb565b5b60006143838482850161434a565b91505092915050565b60006040820190506143a16000830185614024565b6143ae6020830184613d16565b9392505050565b6000815190506143c48161404e565b92915050565b6000602082840312156143e0576143df613dfb565b5b60006143ee848285016143b5565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614453602583613d4b565b915061445e826143f7565b604082019050919050565b6000602082019050818103600083015261448281614446565b9050919050565b60006dffffffffffffffffffffffffffff82169050919050565b6144ac81614489565b81146144b757600080fd5b50565b6000815190506144c9816144a3565b92915050565b600063ffffffff82169050919050565b6144e8816144cf565b81146144f357600080fd5b50565b600081519050614505816144df565b92915050565b60008060006060848603121561452457614523613dfb565b5b6000614532868287016144ba565b9350506020614543868287016144ba565b9250506040614554868287016144f6565b9150509250925092565b7f4164647265737320646f65736e27742065786973740000000000000000000000600082015250565b6000614594601583613d4b565b915061459f8261455e565b602082019050919050565b600060208201905081810360008301526145c381614587565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614626602683613d4b565b9150614631826145ca565b604082019050919050565b6000602082019050818103600083015261465581614619565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006146b8602483613d4b565b91506146c38261465c565b604082019050919050565b600060208201905081810360008301526146e7816146ab565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061474a602283613d4b565b9150614755826146ee565b604082019050919050565b600060208201905081810360008301526147798161473d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006147dc602583613d4b565b91506147e782614780565b604082019050919050565b6000602082019050818103600083015261480b816147cf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061486e602383613d4b565b915061487982614812565b604082019050919050565b6000602082019050818103600083015261489d81614861565b9050919050565b7f4164647265737320697320626c61636b6c697374656400000000000000000000600082015250565b60006148da601683613d4b565b91506148e5826148a4565b602082019050919050565b60006020820190508181036000830152614909816148cd565b9050919050565b7f6d73672e73656e64657220697320626c61636b6c697374656400000000000000600082015250565b6000614946601983613d4b565b915061495182614910565b602082019050919050565b6000602082019050818103600083015261497581614939565b9050919050565b7f54726164696e67206973206e6f74207965742061637469766500000000000000600082015250565b60006149b2601983613d4b565b91506149bd8261497c565b602082019050919050565b600060208201905081810360008301526149e1816149a5565b9050919050565b60006149f382613d0c565b91506149fe83613d0c565b925082821015614a1157614a106142c5565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a5682613d0c565b9150614a6183613d0c565b925082614a7157614a70614a1c565b5b828204905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000614ab2601f83613d4b565b9150614abd82614a7c565b602082019050919050565b60006020820190508181036000830152614ae181614aa5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614b44602683613d4b565b9150614b4f82614ae8565b604082019050919050565b60006020820190508181036000830152614b7381614b37565b9050919050565b6000608082019050614b8f6000830187614024565b614b9c6020830186614024565b614ba96040830185613d16565b614bb66060830184613d16565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b6000614c4c614c47614c4284614c1d565b614c27565b613d0c565b9050919050565b614c5c81614c31565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614c9781613e79565b82525050565b6000614ca98383614c8e565b60208301905092915050565b6000602082019050919050565b6000614ccd82614c62565b614cd78185614c6d565b9350614ce283614c7e565b8060005b83811015614d13578151614cfa8882614c9d565b9750614d0583614cb5565b925050600181019050614ce6565b5085935050505092915050565b600060a082019050614d356000830188613d16565b614d426020830187614c53565b8181036040830152614d548186614cc2565b9050614d636060830185614024565b614d706080830184613d16565b9695505050505050565b600061010082019050614d90600083018b614024565b614d9d602083018a614024565b614daa6040830189613d16565b614db76060830188613d16565b614dc46080830187614c53565b614dd160a0830186614c53565b614dde60c0830185614024565b614deb60e0830184613d16565b9998505050505050505050565b600080600060608486031215614e1157614e10613dfb565b5b6000614e1f8682870161434a565b9350506020614e308682870161434a565b9250506040614e418682870161434a565b9150509250925092565b6000604082019050614e606000830185613d16565b614e6d6020830184613d16565b9392505050565b6000614e7f82613d0c565b9150614e8a83613d0c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ec357614ec26142c5565b5b82820290509291505056fea2646970667358221220965d4d7909749e82ea1709adcae47b81778d292fff5c45f2552d73408ebe71f764736f6c634300080a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102695760003560e01c8063715018a611610151578063af808ab0116100c3578063dd62ed3e11610087578063dd62ed3e146106ee578063eb91d37e1461071e578063edae876f1461073c578063eed55a4e1461075a578063f09a401614610776578063f2fde38b1461079257610269565b8063af808ab014610662578063c02466681461067e578063d06e819b1461069a578063d8c45239146106b6578063dad6a688146106d257610269565b806390d49b9d1161011557806390d49b9d1461058e5780639400d11d146105aa5780639549535e146105c657806395d89b41146105e4578063a457c2d714610602578063a9059cbb1461063257610269565b8063715018a614610522578063791966ec1461052c578063839006f21461054a5780638a8c523c146105665780638da5cb5b1461057057610269565b8063313ce567116101ea5780635cd8c072116101ae5780635cd8c07214610460578063646bf7ae1461047c578063659419a41461049a57806365d24881146104b85780636bc87c3a146104d457806370a08231146104f257610269565b8063313ce567146103ba57806339509351146103d85780633d5d2a21146104085780634320bcf11461042457806344f596221461044257610269565b80630b78f9c0116102315780630b78f9c01461031457806318160ddd1461033057806322976e0d1461034e57806323b872dd1461036c57806327f4d7d51461039c57610269565b8063040362ca1461026e578063058194db1461028c57806306fdde03146102aa578063076aad2f146102c8578063095ea7b3146102e4575b600080fd5b6102766107ae565b6040516102839190613d25565b60405180910390f35b6102946107b4565b6040516102a19190613d25565b60405180910390f35b6102b26107ba565b6040516102bf9190613dd9565b60405180910390f35b6102e260048036038101906102dd9190613e2c565b61084c565b005b6102fe60048036038101906102f99190613eb7565b6108d2565b60405161030b9190613f12565b60405180910390f35b61032e60048036038101906103299190613f2d565b6108f0565b005b6103386109d4565b6040516103459190613d25565b60405180910390f35b6103566109de565b6040516103639190613d25565b60405180910390f35b61038660048036038101906103819190613f6d565b6109e4565b6040516103939190613f12565b60405180910390f35b6103a4610adc565b6040516103b19190613f12565b60405180910390f35b6103c2610aef565b6040516103cf9190613fdc565b60405180910390f35b6103f260048036038101906103ed9190613eb7565b610af8565b6040516103ff9190613f12565b60405180910390f35b610422600480360381019061041d9190613ff7565b610ba4565b005b61042c610c64565b6040516104399190614033565b60405180910390f35b61044a610c8a565b6040516104579190613d25565b60405180910390f35b61047a6004803603810190610475919061407a565b610c90565b005b610484610d67565b6040516104919190613d25565b60405180910390f35b6104a2610d6d565b6040516104af9190614033565b60405180910390f35b6104d260048036038101906104cd9190613e2c565b610d93565b005b6104dc610e19565b6040516104e99190613d25565b60405180910390f35b61050c60048036038101906105079190613ff7565b610e1f565b6040516105199190613d25565b60405180910390f35b61052a610e67565b005b610534610eef565b6040516105419190614033565b60405180910390f35b610564600480360381019061055f9190613ff7565b610f15565b005b61056e6110a9565b005b610578611150565b6040516105859190614033565b60405180910390f35b6105a860048036038101906105a39190613ff7565b61117a565b005b6105c460048036038101906105bf9190613e2c565b61123a565b005b6105ce6112c0565b6040516105db9190613d25565b60405180910390f35b6105ec6112c6565b6040516105f99190613dd9565b60405180910390f35b61061c60048036038101906106179190613eb7565b611358565b6040516106299190613f12565b60405180910390f35b61064c60048036038101906106479190613eb7565b611443565b6040516106599190613f12565b60405180910390f35b61067c6004803603810190610677919061407a565b611461565b005b6106986004803603810190610693919061407a565b611538565b005b6106b460048036038101906106af9190613e2c565b61160f565b005b6106d060048036038101906106cb9190613ff7565b611695565b005b6106ec60048036038101906106e79190613e2c565b611755565b005b610708600480360381019061070391906140ba565b6117db565b6040516107159190613d25565b60405180910390f35b610726611862565b6040516107339190613d25565b60405180910390f35b610744611937565b6040516107519190614033565b60405180910390f35b610774600480360381019061076f919061407a565b61195d565b005b610790600480360381019061078b91906140ba565b611a34565b005b6107ac60048036038101906107a79190613ff7565b611be4565b005b60125481565b60135481565b6060600380546107c990614129565b80601f01602080910402602001604051908101604052809291908181526020018280546107f590614129565b80156108425780601f1061081757610100808354040283529160200191610842565b820191906000526020600020905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b610854611cdc565b73ffffffffffffffffffffffffffffffffffffffff16610872611150565b73ffffffffffffffffffffffffffffffffffffffff16146108c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bf906141a7565b60405180910390fd5b8060118190555050565b60006108e66108df611cdc565b8484611ce4565b6001905092915050565b6108f8611cdc565b73ffffffffffffffffffffffffffffffffffffffff16610916611150565b73ffffffffffffffffffffffffffffffffffffffff161461096c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610963906141a7565b60405180910390fd5b600a6109818284611eaf90919063ffffffff16565b11156109c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b990614213565b60405180910390fd5b81600f81905550806010819055505050565b6000600254905090565b600f5481565b60006109f1848484611ec5565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a3c611cdc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab3906142a5565b60405180910390fd5b610ad085610ac8611cdc565b858403611ce4565b60019150509392505050565b601460009054906101000a900460ff1681565b60006012905090565b6000610b9a610b05611cdc565b848460016000610b13611cdc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b9591906142f4565b611ce4565b6001905092915050565b610bac611cdc565b73ffffffffffffffffffffffffffffffffffffffff16610bca611150565b73ffffffffffffffffffffffffffffffffffffffff1614610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c17906141a7565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b610c98611cdc565b73ffffffffffffffffffffffffffffffffffffffff16610cb6611150565b73ffffffffffffffffffffffffffffffffffffffff1614610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d03906141a7565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600e5481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d9b611cdc565b73ffffffffffffffffffffffffffffffffffffffff16610db9611150565b73ffffffffffffffffffffffffffffffffffffffff1614610e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e06906141a7565b60405180910390fd5b80600d8190555050565b60105481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e6f611cdc565b73ffffffffffffffffffffffffffffffffffffffff16610e8d611150565b73ffffffffffffffffffffffffffffffffffffffff1614610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda906141a7565b60405180910390fd5b610eed6000612505565b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f1d611cdc565b73ffffffffffffffffffffffffffffffffffffffff16610f3b611150565b73ffffffffffffffffffffffffffffffffffffffff1614610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f88906141a7565b60405180910390fd5b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610fd19190614033565b602060405180830381865afa158015610fee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611012919061435f565b905060008111156110a4578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb611041611cdc565b836040518363ffffffff1660e01b815260040161105f92919061438c565b6020604051808303816000875af115801561107e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a291906143ca565b505b505050565b6110b1611cdc565b73ffffffffffffffffffffffffffffffffffffffff166110cf611150565b73ffffffffffffffffffffffffffffffffffffffff1614611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c906141a7565b60405180910390fd5b6001601460006101000a81548160ff021916908315150217905550611148611862565b600d81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611182611cdc565b73ffffffffffffffffffffffffffffffffffffffff166111a0611150565b73ffffffffffffffffffffffffffffffffffffffff16146111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed906141a7565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611242611cdc565b73ffffffffffffffffffffffffffffffffffffffff16611260611150565b73ffffffffffffffffffffffffffffffffffffffff16146112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad906141a7565b60405180910390fd5b8060138190555050565b600d5481565b6060600480546112d590614129565b80601f016020809104026020016040519081016040528092919081815260200182805461130190614129565b801561134e5780601f106113235761010080835404028352916020019161134e565b820191906000526020600020905b81548152906001019060200180831161133157829003601f168201915b5050505050905090565b60008060016000611367611cdc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90614469565b60405180910390fd5b61143861142f611cdc565b85858403611ce4565b600191505092915050565b6000611457611450611cdc565b8484611ec5565b6001905092915050565b611469611cdc565b73ffffffffffffffffffffffffffffffffffffffff16611487611150565b73ffffffffffffffffffffffffffffffffffffffff16146114dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d4906141a7565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611540611cdc565b73ffffffffffffffffffffffffffffffffffffffff1661155e611150565b73ffffffffffffffffffffffffffffffffffffffff16146115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab906141a7565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611617611cdc565b73ffffffffffffffffffffffffffffffffffffffff16611635611150565b73ffffffffffffffffffffffffffffffffffffffff161461168b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611682906141a7565b60405180910390fd5b8060128190555050565b61169d611cdc565b73ffffffffffffffffffffffffffffffffffffffff166116bb611150565b73ffffffffffffffffffffffffffffffffffffffff1614611711576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611708906141a7565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61175d611cdc565b73ffffffffffffffffffffffffffffffffffffffff1661177b611150565b73ffffffffffffffffffffffffffffffffffffffff16146117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c8906141a7565b60405180910390fd5b80600e8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa1580156118d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f8919061450b565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff169150611930670de0b6b3a764000082846125cb565b9250505090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611965611cdc565b73ffffffffffffffffffffffffffffffffffffffff16611983611150565b73ffffffffffffffffffffffffffffffffffffffff16146119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d0906141a7565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611a3c611cdc565b73ffffffffffffffffffffffffffffffffffffffff16611a5a611150565b73ffffffffffffffffffffffffffffffffffffffff1614611ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa7906141a7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b17906145aa565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611bad816001611538565b611bb8306001611538565b611bc561dead6001611538565b60006a084595161401484a0000009050611bdf828261263f565b505050565b611bec611cdc565b73ffffffffffffffffffffffffffffffffffffffff16611c0a611150565b73ffffffffffffffffffffffffffffffffffffffff1614611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c57906141a7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc79061463c565b60405180910390fd5b611cd981612505565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4b906146ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbb90614760565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611ea29190613d25565b60405180910390a3505050565b60008183611ebd91906142f4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c906147f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9c90614884565b60405180910390fd5b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615806120485750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207e906148f0565b60405180910390fd5b601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210b9061495c565b60405180910390fd5b600081141561212e576121298383600061279f565b612500565b600080600061213e868686612a20565b925092509250808061215c5750601460019054906101000a900460ff165b156121745761216c86868661279f565b505050612500565b6000828061217f5750835b90506000601560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122245750601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b9050601460009054906101000a900460ff16158015612241575080155b801561224a5750815b15612291576000612290576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612287906149c8565b60405180910390fd5b5b6000601460009054906101000a900460ff1680156122ac5750825b905081156122b957600090505b6000806000806122c98b8a613009565b935093509350935060008b9050600086156123935760008311806122ed5750600084115b156123645761231f8f600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168561279f565b61232a8f308661279f565b836011600082825461233c91906142f4565b925050819055506123568484611eaf90919063ffffffff16565b8261236191906149e8565b91505b600085111561239257612376856132e0565b90506123838f308361279f565b808261238f91906149e8565b91505b5b8b80156123ad5750601460019054906101000a900460ff16155b156123f2576001601460016101000a81548160ff0219169083151502179055506123d6816133af565b6000601460016101000a81548160ff0219169083151502179055505b881580156123fe575089155b8015612408575087155b8015612418575060135460115410155b1561243d57600061242a6011546135cf565b9050801561243b5760006011819055505b505b60008611156124e857600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166307420a418f886040518363ffffffff1660e01b81526004016124a392919061438c565b6020604051808303816000875af11580156124c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124e691906143ca565b505b6124f38f8f8461279f565b5050505050505050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000806125e36103e586613aa890919063ffffffff16565b905060006125fa8483613aa890919063ffffffff16565b90506000612625836126176103e889613aa890919063ffffffff16565b611eaf90919063ffffffff16565b905080826126339190614a4b565b93505050509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a690614ac8565b60405180910390fd5b6126bb60008383613abe565b80600260008282546126cd91906142f4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461272291906142f4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516127879190613d25565b60405180910390a361279b60008383613ac3565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561280f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612806906147f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561287f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287690614884565b60405180910390fd5b61288a838383613abe565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290790614b5a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129a391906142f4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612a079190613d25565b60405180910390a3612a1a848484613ac3565b50505050565b6000806000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015612a95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ab9919061450b565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401612b5d9190614033565b602060405180830381865afa158015612b7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b9e919061435f565b90506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff16148015612c4d5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b9050600080601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612d4f57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff16149250600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff16149150612ee0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480612df85750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b8015612e515750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff16145b15612e6d5785841115612e675760019050612e6c565b600191505b5b8584108015612eca5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff1614155b15612edf578215612ede5760019050600092505b5b5b8215612f3b573373ffffffffffffffffffffffffffffffffffffffff167f860a37deac811ce967064ae65bd58706e46bfb2d30ce3fac7967c12c70ce8c5b8d8d8d88604051612f329493929190614b7a565b60405180910390a25b8115612f96573373ffffffffffffffffffffffffffffffffffffffff167fa7be8720477542897f75d79b729696a5831033a1154ce589e584bd15900f120c8d8d8d88604051612f8d9493929190614b7a565b60405180910390a25b8015612ff1573373ffffffffffffffffffffffffffffffffffffffff167f93514ff650de2ed280446a047fdc4e11536a0242e0ae975dd9bce8c5d24c952d8d8d8d88604051612fe89493929190614b7a565b60405180910390a25b81838298509850985050505050505093509350939050565b60008060008060008061301c8789613ac8565b91509150600061302a611862565b9050600080600080600d5487101561316f578b1561316657600061309361305c87600d54613c5f90919063ffffffff16565b6130856305f5e1006130778a8d613c5f90919063ffffffff16565b613aa890919063ffffffff16565b613c7590919063ffffffff16565b90506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312065fe06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613104573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613128919061435f565b9050600081111561315f5761315c6305f5e10061314e8385613aa890919063ffffffff16565b613c7590919063ffffffff16565b95505b505061316a565b8592505b613268565b600d5487101580156131825750600d5485105b1561321f57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312065fe06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156131f4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613218919061435f565b9350613267565b600061323560648f613c7590919063ffffffff16565b905061324c60105482613aa890919063ffffffff16565b9250613263600f5482613aa890919063ffffffff16565b9150505b5b600d548711156132c45760006132ae61329f60125461329160648c613c7590919063ffffffff16565b613aa890919063ffffffff16565b89613c5f90919063ffffffff16565b9050600d548111156132c25780600d819055505b505b838383839a509a509a509a505050505050505092959194509250565b6000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015613352573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613376919061450b565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691506133a6848284613c8b565b92505050919050565b60006133ba30610e1f565b905060008114806133cb5750600082145b156133d657506135cc565b6000600267ffffffffffffffff8111156133f3576133f2614bbf565b5b6040519080825280602002602001820160405280156134215781602001602082028036833780820191505090505b509050308160008151811061343957613438614bee565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816001815181106134aa576134a9614bee565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061351130600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685611ce4565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d79584600084600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401613597959493929190614d20565b600060405180830381600087803b1580156135b157600080fd5b505af11580156135c5573d6000803e3d6000fd5b5050505050505b50565b60006135da30610e1f565b8211156135ea5760009050613aa3565b6000613600600284613c7590919063ffffffff16565b90506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016136819190614033565b602060405180830381865afa15801561369e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136c2919061435f565b90506001601460016101000a81548160ff0219169083151502179055506136e8826133af565b6000601460016101000a81548160ff0219169083151502179055506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016137829190614033565b602060405180830381865afa15801561379f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137c3919061435f565b905060006137da8383613c5f90919063ffffffff16565b9050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166307420a4130836040518363ffffffff1660e01b815260040161383992919061438c565b6020604051808303816000875af1158015613858573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061387c91906143ca565b506138aa30600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686611ce4565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b815260040161392992919061438c565b6020604051808303816000875af1158015613948573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061396c91906143ca565b50600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e8e33700600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16308488600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518963ffffffff1660e01b8152600401613a1b989796959493929190614d7a565b6060604051808303816000875af1158015613a3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a5e9190614df8565b5050507f38f8a0c92f4c5b0b6877f878cb4c0c8d348a47b76d716c8e78f425043df9515b8185604051613a92929190614e4b565b60405180910390a160019450505050505b919050565b60008183613ab69190614e74565b905092915050565b505050565b505050565b600080600080600080600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015613b41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b65919061450b565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691508915613bdb57613b9b898383613c8b565b9450613bd4670de0b6b3a7640000613bbc8b84613c5f90919063ffffffff16565b613bcf8886611eaf90919063ffffffff16565b6125cb565b9550613c4c565b613be68982846125cb565b9350613c1f670de0b6b3a7640000613c078b84611eaf90919063ffffffff16565b613c1a8786613c5f90919063ffffffff16565b6125cb565b9550613c496064613c3b600e5487613aa890919063ffffffff16565b613c7590919063ffffffff16565b92505b8583975097505050505050509250929050565b60008183613c6d91906149e8565b905092915050565b60008183613c839190614a4b565b905092915050565b600080613cb56103e8613ca78787613aa890919063ffffffff16565b613aa890919063ffffffff16565b90506000613ce06103e5613cd28887613c5f90919063ffffffff16565b613aa890919063ffffffff16565b9050613d0160018284613cf39190614a4b565b611eaf90919063ffffffff16565b925050509392505050565b6000819050919050565b613d1f81613d0c565b82525050565b6000602082019050613d3a6000830184613d16565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d7a578082015181840152602081019050613d5f565b83811115613d89576000848401525b50505050565b6000601f19601f8301169050919050565b6000613dab82613d40565b613db58185613d4b565b9350613dc5818560208601613d5c565b613dce81613d8f565b840191505092915050565b60006020820190508181036000830152613df38184613da0565b905092915050565b600080fd5b613e0981613d0c565b8114613e1457600080fd5b50565b600081359050613e2681613e00565b92915050565b600060208284031215613e4257613e41613dfb565b5b6000613e5084828501613e17565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e8482613e59565b9050919050565b613e9481613e79565b8114613e9f57600080fd5b50565b600081359050613eb181613e8b565b92915050565b60008060408385031215613ece57613ecd613dfb565b5b6000613edc85828601613ea2565b9250506020613eed85828601613e17565b9150509250929050565b60008115159050919050565b613f0c81613ef7565b82525050565b6000602082019050613f276000830184613f03565b92915050565b60008060408385031215613f4457613f43613dfb565b5b6000613f5285828601613e17565b9250506020613f6385828601613e17565b9150509250929050565b600080600060608486031215613f8657613f85613dfb565b5b6000613f9486828701613ea2565b9350506020613fa586828701613ea2565b9250506040613fb686828701613e17565b9150509250925092565b600060ff82169050919050565b613fd681613fc0565b82525050565b6000602082019050613ff16000830184613fcd565b92915050565b60006020828403121561400d5761400c613dfb565b5b600061401b84828501613ea2565b91505092915050565b61402d81613e79565b82525050565b60006020820190506140486000830184614024565b92915050565b61405781613ef7565b811461406257600080fd5b50565b6000813590506140748161404e565b92915050565b6000806040838503121561409157614090613dfb565b5b600061409f85828601613ea2565b92505060206140b085828601614065565b9150509250929050565b600080604083850312156140d1576140d0613dfb565b5b60006140df85828601613ea2565b92505060206140f085828601613ea2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061414157607f821691505b60208210811415614155576141546140fa565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614191602083613d4b565b915061419c8261415b565b602082019050919050565b600060208201905081810360008301526141c081614184565b9050919050565b7f466565732063616e27742062652067726561746572207468616e203130250000600082015250565b60006141fd601e83613d4b565b9150614208826141c7565b602082019050919050565b6000602082019050818103600083015261422c816141f0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061428f602883613d4b565b915061429a82614233565b604082019050919050565b600060208201905081810360008301526142be81614282565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142ff82613d0c565b915061430a83613d0c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561433f5761433e6142c5565b5b828201905092915050565b60008151905061435981613e00565b92915050565b60006020828403121561437557614374613dfb565b5b60006143838482850161434a565b91505092915050565b60006040820190506143a16000830185614024565b6143ae6020830184613d16565b9392505050565b6000815190506143c48161404e565b92915050565b6000602082840312156143e0576143df613dfb565b5b60006143ee848285016143b5565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614453602583613d4b565b915061445e826143f7565b604082019050919050565b6000602082019050818103600083015261448281614446565b9050919050565b60006dffffffffffffffffffffffffffff82169050919050565b6144ac81614489565b81146144b757600080fd5b50565b6000815190506144c9816144a3565b92915050565b600063ffffffff82169050919050565b6144e8816144cf565b81146144f357600080fd5b50565b600081519050614505816144df565b92915050565b60008060006060848603121561452457614523613dfb565b5b6000614532868287016144ba565b9350506020614543868287016144ba565b9250506040614554868287016144f6565b9150509250925092565b7f4164647265737320646f65736e27742065786973740000000000000000000000600082015250565b6000614594601583613d4b565b915061459f8261455e565b602082019050919050565b600060208201905081810360008301526145c381614587565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614626602683613d4b565b9150614631826145ca565b604082019050919050565b6000602082019050818103600083015261465581614619565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006146b8602483613d4b565b91506146c38261465c565b604082019050919050565b600060208201905081810360008301526146e7816146ab565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061474a602283613d4b565b9150614755826146ee565b604082019050919050565b600060208201905081810360008301526147798161473d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006147dc602583613d4b565b91506147e782614780565b604082019050919050565b6000602082019050818103600083015261480b816147cf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061486e602383613d4b565b915061487982614812565b604082019050919050565b6000602082019050818103600083015261489d81614861565b9050919050565b7f4164647265737320697320626c61636b6c697374656400000000000000000000600082015250565b60006148da601683613d4b565b91506148e5826148a4565b602082019050919050565b60006020820190508181036000830152614909816148cd565b9050919050565b7f6d73672e73656e64657220697320626c61636b6c697374656400000000000000600082015250565b6000614946601983613d4b565b915061495182614910565b602082019050919050565b6000602082019050818103600083015261497581614939565b9050919050565b7f54726164696e67206973206e6f74207965742061637469766500000000000000600082015250565b60006149b2601983613d4b565b91506149bd8261497c565b602082019050919050565b600060208201905081810360008301526149e1816149a5565b9050919050565b60006149f382613d0c565b91506149fe83613d0c565b925082821015614a1157614a106142c5565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a5682613d0c565b9150614a6183613d0c565b925082614a7157614a70614a1c565b5b828204905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000614ab2601f83613d4b565b9150614abd82614a7c565b602082019050919050565b60006020820190508181036000830152614ae181614aa5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614b44602683613d4b565b9150614b4f82614ae8565b604082019050919050565b60006020820190508181036000830152614b7381614b37565b9050919050565b6000608082019050614b8f6000830187614024565b614b9c6020830186614024565b614ba96040830185613d16565b614bb66060830184613d16565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b6000614c4c614c47614c4284614c1d565b614c27565b613d0c565b9050919050565b614c5c81614c31565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614c9781613e79565b82525050565b6000614ca98383614c8e565b60208301905092915050565b6000602082019050919050565b6000614ccd82614c62565b614cd78185614c6d565b9350614ce283614c7e565b8060005b83811015614d13578151614cfa8882614c9d565b9750614d0583614cb5565b925050600181019050614ce6565b5085935050505092915050565b600060a082019050614d356000830188613d16565b614d426020830187614c53565b8181036040830152614d548186614cc2565b9050614d636060830185614024565b614d706080830184613d16565b9695505050505050565b600061010082019050614d90600083018b614024565b614d9d602083018a614024565b614daa6040830189613d16565b614db76060830188613d16565b614dc46080830187614c53565b614dd160a0830186614c53565b614dde60c0830185614024565b614deb60e0830184613d16565b9998505050505050505050565b600080600060608486031215614e1157614e10613dfb565b5b6000614e1f8682870161434a565b9350506020614e308682870161434a565b9250506040614e418682870161434a565b9150509250925092565b6000604082019050614e606000830185613d16565b614e6d6020830184613d16565b9392505050565b6000614e7f82613d0c565b9150614e8a83613d0c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ec357614ec26142c5565b5b82820290509291505056fea2646970667358221220965d4d7909749e82ea1709adcae47b81778d292fff5c45f2552d73408ebe71f764736f6c634300080a0033

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.