ETH Price: $2,381.79 (-1.15%)

Token

BabyPepe Coin (BABYPEPE)
 

Overview

Max Total Supply

1,000,000,000 BABYPEPE

Holders

153

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
733,863.114883650947558913 BABYPEPE

Value
$0.00
0x3e775cad9a99a971384092994531803b03d1fb63
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:
BabyPepe

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : BabyPepe.sol
// SPDX-License-Identifier: UNLICENSED

/*

-------------------------------------
  _______  _______  _______  __   __  _______  _______  _______  _______ 
 |  _    ||   _   ||  _    ||  | |  ||       ||       ||       ||       |
 | |_|   ||  |_|  || |_|   ||  |_|  ||    _  ||    ___||    _  ||    ___|
 |       ||       ||       ||       ||   |_| ||   |___ |   |_| ||   |___ 
 |  _   | |       ||  _   | |_     _||    ___||    ___||    ___||    ___|
 | |_|   ||   _   || |_|   |  |   |  |   |    |   |___ |   |    |   |___ 
 |_______||__| |__||_______|  |___|  |___|    |_______||___|    |_______|
-------------------------------------

Twitter  -  https://x.com/BabyPepeCoinLOL
Telegram -  https://t.me/BabyPepeCoinLOL
Website  -  https://babypepecoin.lol                                                           
                                                               
*/                  


pragma solidity 0.8.20;

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



contract BabyPepe is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address private marketingWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

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

    uint256 private launchedAt;
    uint256 private launchedTime;
    uint256 public deadBlocks;

    uint256 public buyTotalFees;
    uint256 private buyMarketingFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;

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

    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    
    constructor() ERC20("BabyPepe Coin", "BABYPEPE") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 totalSupply = 1_000_000_000 * 1e18;


        maxTransactionAmount = 1_000_000_000 * 1e18;
        maxWallet = 1_000_000_000 * 1e18;
        swapTokensAtAmount = maxTransactionAmount / 2000;


        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    function enableTrading(uint256 _deadBlocks) external onlyOwner {
        deadBlocks = _deadBlocks;
        tradingActive = true;
        swapEnabled = true;
        launchedAt = block.number;
        launchedTime = block.timestamp;
    }

    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    function whitelistContract(address _whitelist,bool isWL)
    public
    onlyOwner
    {
      _isExcludedMaxTransactionAmount[_whitelist] = isWL;

      _isExcludedFromFees[_whitelist] = isWL;

    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

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

    function manualswap(uint256 amount) external {
      require(_msgSender() == marketingWallet);
        require(amount <= balanceOf(address(this)) && amount > 0, "Wrong amount");
        swapTokensForEth(amount);
    }

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

        function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function airdrop(address[] calldata addresses, uint256[] calldata amounts) external {
          require(addresses.length > 0 && amounts.length == addresses.length);
          address from = msg.sender;

          for (uint i = 0; i < addresses.length; i++) {

            _transfer(from, addresses[i], amounts[i] * (10**18));

          }
    }

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

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

        uint256 blockNum = block.number;

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if ((launchedAt + deadBlocks) >= blockNum) {
                    buyMarketingFee = 99;
                    buyTotalFees = buyMarketingFee;

                    sellMarketingFee = 99;
                    sellTotalFees = sellMarketingFee;
                } 
                else if (blockNum > (launchedAt + deadBlocks) && blockNum <= (launchedAt + 20)) {
                    maxTransactionAmount = 20_000_000 * 1e18;
                    maxWallet = 20_000_000 * 1e18;

                    buyMarketingFee = 30;
                    buyTotalFees = buyMarketingFee;

                    sellMarketingFee = 30;
                    sellTotalFees = sellMarketingFee;
                }
                else if (blockNum > (launchedAt + 20) && blockNum <= (launchedAt + 30)) {
                    maxTransactionAmount = 20_000_000 * 1e18;
                    maxWallet = 20_000_000 * 1e18;

                    buyMarketingFee = 10;
                    buyTotalFees = buyMarketingFee;

                    sellMarketingFee = 10;
                    sellTotalFees = sellMarketingFee;
                }
                else {
                    maxTransactionAmount = 20_000_000 * 1e18;
                    maxWallet = 20_000_000 * 1e18;

                    buyMarketingFee = 0;
                    buyTotalFees = buyMarketingFee;

                    sellMarketingFee = 0;
                    sellTotalFees = sellMarketingFee;
                }
            }


            if (!tradingActive) {
                require(
                    _isExcludedFromFees[from] || _isExcludedFromFees[to],
                    "Trading is not active."
                );
            }

            //when buy
            if (
                automatedMarketMakerPairs[from] &&
                !_isExcludedMaxTransactionAmount[to]
            ) {
                require(
                    amount <= maxTransactionAmount,
                    "Buy transfer amount exceeds the maxTransactionAmount."
                );
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "Max wallet exceeded"
                );
            }
            //when sell
            else if (
                automatedMarketMakerPairs[to] &&
                !_isExcludedMaxTransactionAmount[from]
            ) {
                require(
                    amount <= maxTransactionAmount,
                    "Sell transfer amount exceeds the maxTransactionAmount."
                );
            } else if (!_isExcludedMaxTransactionAmount[to]) {
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "Max wallet exceeded"
                );
            }
            
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if(
            canSwap &&
            swapEnabled &&
            !swapping &&
            (swapInBlock[blockNum] < 2) &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            ++swapInBlock[blockNum];

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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


    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;

        if (contractBalance == 0) {
            return;
        }

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


        uint256 amountToSwapForETH = contractBalance;

        swapTokensForEth(amountToSwapForETH);

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

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

}

File 2 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 7 of 10 : 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 8 of 10 : 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 9 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

File 10 of 10 : SafeMath.sol
library SafeMath {

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

    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_deadBlocks","type":"uint256"}],"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":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelist","type":"address"},{"internalType":"bool","name":"isWL","type":"bool"}],"name":"whitelistContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a5f6101000a81548160ff0219169083151502179055505f600a60016101000a81548160ff0219169083151502179055505f600a60026101000a81548160ff0219169083151502179055503480156200005e575f80fd5b506040518060400160405280600d81526020017f426162795065706520436f696e000000000000000000000000000000000000008152506040518060400160405280600881526020017f42414259504550450000000000000000000000000000000000000000000000008152508160039081620000dc919062000b3b565b508060049081620000ee919062000b3b565b50505062000111620001056200042760201b60201c565b6200042e60201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90506200013c816001620004f160201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ba573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001e0919062000c84565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000246573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200026c919062000c84565b6040518363ffffffff1660e01b81526004016200028b92919062000cc5565b6020604051808303815f875af1158015620002a8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002ce919062000c84565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200031660a0516001620004f160201b60201c565b6200032b60a05160016200055960201b60201c565b5f6b033b2e3c9fd0803ce800000090506b033b2e3c9fd0803ce80000006007819055506b033b2e3c9fd0803ce80000006009819055506107d060075462000373919062000d4a565b6008819055506200039b6200038d620005f760201b60201c565b60016200061f60201b60201c565b620003ae3060016200061f60201b60201c565b620003c361dead60016200061f60201b60201c565b620003e5620003d7620005f760201b60201c565b6001620004f160201b60201c565b620003f8306001620004f160201b60201c565b6200040d61dead6001620004f160201b60201c565b6200041f3382620006d760201b60201c565b505062000f0a565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005016200083c60201b60201c565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200062f6200083c60201b60201c565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620006cb919062000d9d565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000748576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200073f9062000e16565b60405180910390fd5b6200075b5f8383620008cd60201b60201c565b8060025f8282546200076e919062000e36565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200081d919062000e81565b60405180910390a3620008385f8383620008d260201b60201c565b5050565b6200084c6200042760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000872620005f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008c29062000eea565b60405180910390fd5b565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200095357607f821691505b6020821081036200096957620009686200090e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620009cd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000990565b620009d9868362000990565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000a2362000a1d62000a1784620009f1565b620009fa565b620009f1565b9050919050565b5f819050919050565b62000a3e8362000a03565b62000a5662000a4d8262000a2a565b8484546200099c565b825550505050565b5f90565b62000a6c62000a5e565b62000a7981848462000a33565b505050565b5b8181101562000aa05762000a945f8262000a62565b60018101905062000a7f565b5050565b601f82111562000aef5762000ab9816200096f565b62000ac48462000981565b8101602085101562000ad4578190505b62000aec62000ae38562000981565b83018262000a7e565b50505b505050565b5f82821c905092915050565b5f62000b115f198460080262000af4565b1980831691505092915050565b5f62000b2b838362000b00565b9150826002028217905092915050565b62000b4682620008d7565b67ffffffffffffffff81111562000b625762000b61620008e1565b5b62000b6e82546200093b565b62000b7b82828562000aa4565b5f60209050601f83116001811462000bb1575f841562000b9c578287015190505b62000ba8858262000b1e565b86555062000c17565b601f19841662000bc1866200096f565b5f5b8281101562000bea5784890151825560018201915060208501945060208101905062000bc3565b8683101562000c0a578489015162000c06601f89168262000b00565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000c4e8262000c23565b9050919050565b62000c608162000c42565b811462000c6b575f80fd5b50565b5f8151905062000c7e8162000c55565b92915050565b5f6020828403121562000c9c5762000c9b62000c1f565b5b5f62000cab8482850162000c6e565b91505092915050565b62000cbf8162000c42565b82525050565b5f60408201905062000cda5f83018562000cb4565b62000ce9602083018462000cb4565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000d5682620009f1565b915062000d6383620009f1565b92508262000d765762000d7562000cf0565b5b828204905092915050565b5f8115159050919050565b62000d978162000d81565b82525050565b5f60208201905062000db25f83018462000d8c565b92915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000dfe601f8362000db8565b915062000e0b8262000dc8565b602082019050919050565b5f6020820190508181035f83015262000e2f8162000df0565b9050919050565b5f62000e4282620009f1565b915062000e4f83620009f1565b925082820190508082111562000e6a5762000e6962000d1d565b5b92915050565b62000e7b81620009f1565b82525050565b5f60208201905062000e965f83018462000e70565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f62000ed260208362000db8565b915062000edf8262000e9c565b602082019050919050565b5f6020820190508181035f83015262000f038162000ec4565b9050919050565b60805160a05161406e62000f485f395f8181610c5d015261112701525f8181610b2301528181612706015281816127e5015261280c015261406e5ff3fe608060405260043610610275575f3560e01c8063881dce601161014e578063bbc0c742116100c0578063dd62ed3e11610079578063dd62ed3e14610948578063e2f4560514610984578063eba4c333146109ae578063f2fde38b146109d6578063f8b45b05146109fe578063fabb0b4f14610a285761027c565b8063bbc0c7421461083e578063c024666814610868578063c18bc19514610890578063c8c8ebe4146108b8578063d257b34f146108e2578063d85ba0631461091e5761027c565b80639a7a23d6116101125780639a7a23d614610712578063a457c2d71461073a578063a672990c14610776578063a9059cbb1461079e578063aacebbe3146107da578063b62496f5146108025761027c565b8063881dce60146106445780638da5cb5b1461066c5780639213691314610696578063924de9b7146106c057806395d89b41146106e85761027c565b80634a62bb65116101e757806370a08231116101ab57806370a0823114610550578063715018a61461058c57806371fc4688146105a2578063751039fc146105ca5780637571336a146105f457806382aa7c681461061c5761027c565b80634a62bb651461049457806367243482146104be5780636a486a8e146104e65780636ddd1713146105105780636fc3eaec1461053a5761027c565b8063203e727e11610239578063203e727e1461037657806323b872dd1461039e57806327c8f835146103da578063313ce56714610404578063395093511461042e57806349bd5a5e1461046a5761027c565b806306fdde0314610280578063095ea7b3146102aa57806310d5de53146102e65780631694505e1461032257806318160ddd1461034c5761027c565b3661027c57005b5f80fd5b34801561028b575f80fd5b50610294610a52565b6040516102a19190612d44565b60405180910390f35b3480156102b5575f80fd5b506102d060048036038101906102cb9190612df9565b610ae2565b6040516102dd9190612e51565b60405180910390f35b3480156102f1575f80fd5b5061030c60048036038101906103079190612e6a565b610b04565b6040516103199190612e51565b60405180910390f35b34801561032d575f80fd5b50610336610b21565b6040516103439190612ef0565b60405180910390f35b348015610357575f80fd5b50610360610b45565b60405161036d9190612f18565b60405180910390f35b348015610381575f80fd5b5061039c60048036038101906103979190612f31565b610b4e565b005b3480156103a9575f80fd5b506103c460048036038101906103bf9190612f5c565b610be9565b6040516103d19190612e51565b60405180910390f35b3480156103e5575f80fd5b506103ee610c17565b6040516103fb9190612fbb565b60405180910390f35b34801561040f575f80fd5b50610418610c1d565b6040516104259190612fef565b60405180910390f35b348015610439575f80fd5b50610454600480360381019061044f9190612df9565b610c25565b6040516104619190612e51565b60405180910390f35b348015610475575f80fd5b5061047e610c5b565b60405161048b9190612fbb565b60405180910390f35b34801561049f575f80fd5b506104a8610c7f565b6040516104b59190612e51565b60405180910390f35b3480156104c9575f80fd5b506104e460048036038101906104df91906130be565b610c91565b005b3480156104f1575f80fd5b506104fa610d3a565b6040516105079190612f18565b60405180910390f35b34801561051b575f80fd5b50610524610d40565b6040516105319190612e51565b60405180910390f35b348015610545575f80fd5b5061054e610d53565b005b34801561055b575f80fd5b5061057660048036038101906105719190612e6a565b610de1565b6040516105839190612f18565b60405180910390f35b348015610597575f80fd5b506105a0610e26565b005b3480156105ad575f80fd5b506105c860048036038101906105c39190612f31565b610e39565b005b3480156105d5575f80fd5b506105de610e9a565b6040516105eb9190612e51565b60405180910390f35b3480156105ff575f80fd5b5061061a60048036038101906106159190613166565b610ec3565b005b348015610627575f80fd5b50610642600480360381019061063d9190612f31565b610f23565b005b34801561064f575f80fd5b5061066a60048036038101906106659190612f31565b610f79565b005b348015610677575f80fd5b5061068061103a565b60405161068d9190612fbb565b60405180910390f35b3480156106a1575f80fd5b506106aa611062565b6040516106b79190612f18565b60405180910390f35b3480156106cb575f80fd5b506106e660048036038101906106e191906131a4565b611068565b005b3480156106f3575f80fd5b506106fc61108d565b6040516107099190612d44565b60405180910390f35b34801561071d575f80fd5b5061073860048036038101906107339190613166565b61111d565b005b348015610745575f80fd5b50610760600480360381019061075b9190612df9565b6111c1565b60405161076d9190612e51565b60405180910390f35b348015610781575f80fd5b5061079c60048036038101906107979190613166565b611236565b005b3480156107a9575f80fd5b506107c460048036038101906107bf9190612df9565b6112ea565b6040516107d19190612e51565b60405180910390f35b3480156107e5575f80fd5b5061080060048036038101906107fb9190612e6a565b61130c565b005b34801561080d575f80fd5b5061082860048036038101906108239190612e6a565b6113d2565b6040516108359190612e51565b60405180910390f35b348015610849575f80fd5b506108526113ef565b60405161085f9190612e51565b60405180910390f35b348015610873575f80fd5b5061088e60048036038101906108899190613166565b611402565b005b34801561089b575f80fd5b506108b660048036038101906108b19190612f31565b6114b0565b005b3480156108c3575f80fd5b506108cc61154b565b6040516108d99190612f18565b60405180910390f35b3480156108ed575f80fd5b5061090860048036038101906109039190612f31565b611551565b6040516109159190612e51565b60405180910390f35b348015610929575f80fd5b50610932611631565b60405161093f9190612f18565b60405180910390f35b348015610953575f80fd5b5061096e600480360381019061096991906131cf565b611637565b60405161097b9190612f18565b60405180910390f35b34801561098f575f80fd5b506109986116b9565b6040516109a59190612f18565b60405180910390f35b3480156109b9575f80fd5b506109d460048036038101906109cf9190612f31565b6116bf565b005b3480156109e1575f80fd5b506109fc60048036038101906109f79190612e6a565b611720565b005b348015610a09575f80fd5b50610a126117a2565b604051610a1f9190612f18565b60405180910390f35b348015610a33575f80fd5b50610a3c6117a8565b604051610a499190612f18565b60405180910390f35b606060038054610a619061323a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d9061323a565b8015610ad85780601f10610aaf57610100808354040283529160200191610ad8565b820191905f5260205f20905b815481529060010190602001808311610abb57829003601f168201915b5050505050905090565b5f80610aec6117ae565b9050610af98185856117b5565b600191505092915050565b6014602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b610b56611978565b670de0b6b3a76400006103e86001610b6c610b45565b610b769190613297565b610b809190613305565b610b8a9190613305565b811015610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc3906133a5565b60405180910390fd5b670de0b6b3a764000081610be09190613297565b60078190555050565b5f80610bf36117ae565b9050610c008582856119f6565b610c0b858585611a81565b60019150509392505050565b61dead81565b5f6012905090565b5f80610c2f6117ae565b9050610c50818585610c418589611637565b610c4b91906133c3565b6117b5565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a5f9054906101000a900460ff1681565b5f84849050118015610ca857508383905082829050145b610cb0575f80fd5b5f3390505f5b85859050811015610d3257610d1f82878784818110610cd857610cd76133f6565b5b9050602002016020810190610ced9190612e6a565b670de0b6b3a7640000878786818110610d0957610d086133f6565b5b90506020020135610d1a9190613297565b611a81565b8080610d2a90613423565b915050610cb6565b505050505050565b60105481565b600a60029054906101000a900460ff1681565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610d9990613497565b5f6040518083038185875af1925050503d805f8114610dd3576040519150601f19603f3d011682016040523d82523d5f602084013e610dd8565b606091505b50508091505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610e2e611978565b610e375f6125a6565b565b610e41611978565b80600f81905550600f54600e81905550600a600e541115610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e906134f5565b60405180910390fd5b50565b5f610ea3611978565b5f600a5f6101000a81548160ff0219169083151502179055506001905090565b610ecb611978565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610f2b611978565b80600d819055506001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff02191690831515021790555043600b8190555042600c8190555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610fb96117ae565b73ffffffffffffffffffffffffffffffffffffffff1614610fd8575f80fd5b610fe130610de1565b8111158015610fef57505f81115b61102e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110259061355d565b60405180910390fd5b61103781612669565b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b611070611978565b80600a60026101000a81548160ff02191690831515021790555050565b60606004805461109c9061323a565b80601f01602080910402602001604051908101604052809291908181526020018280546110c89061323a565b80156111135780601f106110ea57610100808354040283529160200191611113565b820191905f5260205f20905b8154815290600101906020018083116110f657829003601f168201915b5050505050905090565b611125611978565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa906135eb565b60405180910390fd5b6111bd828261289c565b5050565b5f806111cb6117ae565b90505f6111d88286611637565b90508381101561121d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121490613679565b60405180910390fd5b61122a82868684036117b5565b60019250505092915050565b61123e611978565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f806112f46117ae565b9050611301818585611a81565b600191505092915050565b611314611978565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6015602052805f5260405f205f915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b61140a611978565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516114a49190612e51565b60405180910390a25050565b6114b8611978565b670de0b6b3a76400006103e860056114ce610b45565b6114d89190613297565b6114e29190613305565b6114ec9190613305565b81101561152e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152590613707565b60405180910390fd5b670de0b6b3a7640000816115429190613297565b60098190555050565b60075481565b5f61155a611978565b620186a06001611568610b45565b6115729190613297565b61157c9190613305565b8210156115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b590613795565b60405180910390fd5b6103e860056115cb610b45565b6115d59190613297565b6115df9190613305565b821115611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890613823565b60405180910390fd5b8160088190555060019050919050565b600e5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b6116c7611978565b80601181905550601154601081905550600a601054111561171d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611714906134f5565b60405180910390fd5b50565b611728611978565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178d906138b1565b60405180910390fd5b61179f816125a6565b50565b60095481565b600d5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a9061393f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611891576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611888906139cd565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161196b9190612f18565b60405180910390a3505050565b6119806117ae565b73ffffffffffffffffffffffffffffffffffffffff1661199e61103a565b73ffffffffffffffffffffffffffffffffffffffff16146119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90613a35565b60405180910390fd5b565b5f611a018484611637565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a7b5781811015611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6490613a9d565b60405180910390fd5b611a7a84848484036117b5565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae690613b2b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5490613bb9565b60405180910390fd5b5f8103611b7457611b6f83835f61293a565b6125a1565b5f439050600a5f9054906101000a900460ff16156121d757611b9461103a565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611c025750611bd261103a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611c3a57505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611c74575061dead73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611c8d5750600560149054906101000a900460ff16155b15611e0e5780600d54600b54611ca391906133c3565b10611ccf576063600f81905550600f54600e819055506063601181905550601154601081905550611e0d565b600d54600b54611cdf91906133c3565b81118015611cfb57506014600b54611cf791906133c3565b8111155b15611d4b576a108b2a2c280290940000006007819055506a108b2a2c28029094000000600981905550601e600f81905550600f54600e81905550601e601181905550601154601081905550611e0c565b6014600b54611d5a91906133c3565b81118015611d765750601e600b54611d7291906133c3565b8111155b15611dc6576a108b2a2c280290940000006007819055506a108b2a2c28029094000000600981905550600a600f81905550600f54600e81905550600a601181905550601154601081905550611e0b565b6a108b2a2c280290940000006007819055506a108b2a2c280290940000006009819055505f600f81905550600f54600e819055505f6011819055506011546010819055505b5b5b5b600a60019054906101000a900460ff16611efd5760125f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611ebd575060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef390613c21565b60405180910390fd5b5b60155f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611f9a575060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561204157600754821115611fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdb90613caf565b60405180910390fd5b600954611ff084610de1565b83611ffb91906133c3565b111561203c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203390613d17565b60405180910390fd5b6121d6565b60155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156120de575060145f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561212d57600754821115612128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211f90613da5565b60405180910390fd5b6121d5565b60145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166121d45760095461218784610de1565b8361219291906133c3565b11156121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca90613d17565b60405180910390fd5b5b5b5b5b5f6121e130610de1565b90505f60085482101590508080156122055750600a60029054906101000a900460ff165b801561221e5750600560149054906101000a900460ff16155b801561223b5750600260135f8581526020019081526020015f2054105b801561228e575060155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156122e1575060125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612334575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561239b576001600560146101000a81548160ff02191690831515021790555061235c612ba6565b60135f8481526020019081526020015f205f815461237990613423565b919050819055505f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060125f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061244a575060125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612453575f90505b5f81156125905760155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156124b157505f601054115b156124e5576124de60646124d060105489612c8690919063ffffffff16565b612c9b90919063ffffffff16565b905061256d565b60155f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561253c57505f600e54115b1561256c57612569606461255b600e5489612c8690919063ffffffff16565b612c9b90919063ffffffff16565b90505b5b5f8111156125815761258088308361293a565b5b808661258d9190613dc3565b95505b61259b88888861293a565b50505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600267ffffffffffffffff81111561268557612684613df6565b5b6040519080825280602002602001820160405280156126b35781602001602082028036833780820191505090505b50905030815f815181106126ca576126c96133f6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561276d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127919190613e37565b816001815181106127a5576127a46133f6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061280a307f0000000000000000000000000000000000000000000000000000000000000000846117b5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161286b959493929190613f52565b5f604051808303815f87803b158015612882575f80fd5b505af1158015612894573d5f803e3d5ffd5b505050505050565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299f90613b2b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0d90613bb9565b60405180910390fd5b612a21838383612cb0565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9b9061401a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b8d9190612f18565b60405180910390a3612ba0848484612cb5565b50505050565b5f612bb030610de1565b90505f808203612bc1575050612c84565b6014600854612bd09190613297565b821115612be9576014600854612be69190613297565b91505b5f829050612bf681612669565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612c3b90613497565b5f6040518083038185875af1925050503d805f8114612c75576040519150601f19603f3d011682016040523d82523d5f602084013e612c7a565b606091505b5050809250505050505b565b5f8183612c939190613297565b905092915050565b5f8183612ca89190613305565b905092915050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612cf1578082015181840152602081019050612cd6565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612d1682612cba565b612d208185612cc4565b9350612d30818560208601612cd4565b612d3981612cfc565b840191505092915050565b5f6020820190508181035f830152612d5c8184612d0c565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612d9582612d6c565b9050919050565b612da581612d8b565b8114612daf575f80fd5b50565b5f81359050612dc081612d9c565b92915050565b5f819050919050565b612dd881612dc6565b8114612de2575f80fd5b50565b5f81359050612df381612dcf565b92915050565b5f8060408385031215612e0f57612e0e612d64565b5b5f612e1c85828601612db2565b9250506020612e2d85828601612de5565b9150509250929050565b5f8115159050919050565b612e4b81612e37565b82525050565b5f602082019050612e645f830184612e42565b92915050565b5f60208284031215612e7f57612e7e612d64565b5b5f612e8c84828501612db2565b91505092915050565b5f819050919050565b5f612eb8612eb3612eae84612d6c565b612e95565b612d6c565b9050919050565b5f612ec982612e9e565b9050919050565b5f612eda82612ebf565b9050919050565b612eea81612ed0565b82525050565b5f602082019050612f035f830184612ee1565b92915050565b612f1281612dc6565b82525050565b5f602082019050612f2b5f830184612f09565b92915050565b5f60208284031215612f4657612f45612d64565b5b5f612f5384828501612de5565b91505092915050565b5f805f60608486031215612f7357612f72612d64565b5b5f612f8086828701612db2565b9350506020612f9186828701612db2565b9250506040612fa286828701612de5565b9150509250925092565b612fb581612d8b565b82525050565b5f602082019050612fce5f830184612fac565b92915050565b5f60ff82169050919050565b612fe981612fd4565b82525050565b5f6020820190506130025f830184612fe0565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261302957613028613008565b5b8235905067ffffffffffffffff8111156130465761304561300c565b5b60208301915083602082028301111561306257613061613010565b5b9250929050565b5f8083601f84011261307e5761307d613008565b5b8235905067ffffffffffffffff81111561309b5761309a61300c565b5b6020830191508360208202830111156130b7576130b6613010565b5b9250929050565b5f805f80604085870312156130d6576130d5612d64565b5b5f85013567ffffffffffffffff8111156130f3576130f2612d68565b5b6130ff87828801613014565b9450945050602085013567ffffffffffffffff81111561312257613121612d68565b5b61312e87828801613069565b925092505092959194509250565b61314581612e37565b811461314f575f80fd5b50565b5f813590506131608161313c565b92915050565b5f806040838503121561317c5761317b612d64565b5b5f61318985828601612db2565b925050602061319a85828601613152565b9150509250929050565b5f602082840312156131b9576131b8612d64565b5b5f6131c684828501613152565b91505092915050565b5f80604083850312156131e5576131e4612d64565b5b5f6131f285828601612db2565b925050602061320385828601612db2565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061325157607f821691505b6020821081036132645761326361320d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6132a182612dc6565b91506132ac83612dc6565b92508282026132ba81612dc6565b915082820484148315176132d1576132d061326a565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61330f82612dc6565b915061331a83612dc6565b92508261332a576133296132d8565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b5f61338f602f83612cc4565b915061339a82613335565b604082019050919050565b5f6020820190508181035f8301526133bc81613383565b9050919050565b5f6133cd82612dc6565b91506133d883612dc6565b92508282019050808211156133f0576133ef61326a565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f61342d82612dc6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361345f5761345e61326a565b5b600182019050919050565b5f81905092915050565b50565b5f6134825f8361346a565b915061348d82613474565b5f82019050919050565b5f6134a182613477565b9150819050919050565b7f4d757374206b6565702066656573206174203525206f72206c657373000000005f82015250565b5f6134df601c83612cc4565b91506134ea826134ab565b602082019050919050565b5f6020820190508181035f83015261350c816134d3565b9050919050565b7f57726f6e6720616d6f756e7400000000000000000000000000000000000000005f82015250565b5f613547600c83612cc4565b915061355282613513565b602082019050919050565b5f6020820190508181035f8301526135748161353b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f6135d5603983612cc4565b91506135e08261357b565b604082019050919050565b5f6020820190508181035f830152613602816135c9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613663602583612cc4565b915061366e82613609565b604082019050919050565b5f6020820190508181035f83015261369081613657565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f6136f1602483612cc4565b91506136fc82613697565b604082019050919050565b5f6020820190508181035f83015261371e816136e5565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f61377f603583612cc4565b915061378a82613725565b604082019050919050565b5f6020820190508181035f8301526137ac81613773565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f61380d603483612cc4565b9150613818826137b3565b604082019050919050565b5f6020820190508181035f83015261383a81613801565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61389b602683612cc4565b91506138a682613841565b604082019050919050565b5f6020820190508181035f8301526138c88161388f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613929602483612cc4565b9150613934826138cf565b604082019050919050565b5f6020820190508181035f8301526139568161391d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6139b7602283612cc4565b91506139c28261395d565b604082019050919050565b5f6020820190508181035f8301526139e4816139ab565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613a1f602083612cc4565b9150613a2a826139eb565b602082019050919050565b5f6020820190508181035f830152613a4c81613a13565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613a87601d83612cc4565b9150613a9282613a53565b602082019050919050565b5f6020820190508181035f830152613ab481613a7b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613b15602583612cc4565b9150613b2082613abb565b604082019050919050565b5f6020820190508181035f830152613b4281613b09565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613ba3602383612cc4565b9150613bae82613b49565b604082019050919050565b5f6020820190508181035f830152613bd081613b97565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613c0b601683612cc4565b9150613c1682613bd7565b602082019050919050565b5f6020820190508181035f830152613c3881613bff565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f613c99603583612cc4565b9150613ca482613c3f565b604082019050919050565b5f6020820190508181035f830152613cc681613c8d565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613d01601383612cc4565b9150613d0c82613ccd565b602082019050919050565b5f6020820190508181035f830152613d2e81613cf5565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f613d8f603683612cc4565b9150613d9a82613d35565b604082019050919050565b5f6020820190508181035f830152613dbc81613d83565b9050919050565b5f613dcd82612dc6565b9150613dd883612dc6565b9250828203905081811115613df057613def61326a565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f81519050613e3181612d9c565b92915050565b5f60208284031215613e4c57613e4b612d64565b5b5f613e5984828501613e23565b91505092915050565b5f819050919050565b5f613e85613e80613e7b84613e62565b612e95565b612dc6565b9050919050565b613e9581613e6b565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613ecd81612d8b565b82525050565b5f613ede8383613ec4565b60208301905092915050565b5f602082019050919050565b5f613f0082613e9b565b613f0a8185613ea5565b9350613f1583613eb5565b805f5b83811015613f45578151613f2c8882613ed3565b9750613f3783613eea565b925050600181019050613f18565b5085935050505092915050565b5f60a082019050613f655f830188612f09565b613f726020830187613e8c565b8181036040830152613f848186613ef6565b9050613f936060830185612fac565b613fa06080830184612f09565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614004602683612cc4565b915061400f82613faa565b604082019050919050565b5f6020820190508181035f83015261403181613ff8565b905091905056fea26469706673582212204c275f1404252dce690d5da4dd11e719adfae4cf9f8f39e59bbba96d4306ea7f64736f6c63430008140033

Deployed Bytecode

0x608060405260043610610275575f3560e01c8063881dce601161014e578063bbc0c742116100c0578063dd62ed3e11610079578063dd62ed3e14610948578063e2f4560514610984578063eba4c333146109ae578063f2fde38b146109d6578063f8b45b05146109fe578063fabb0b4f14610a285761027c565b8063bbc0c7421461083e578063c024666814610868578063c18bc19514610890578063c8c8ebe4146108b8578063d257b34f146108e2578063d85ba0631461091e5761027c565b80639a7a23d6116101125780639a7a23d614610712578063a457c2d71461073a578063a672990c14610776578063a9059cbb1461079e578063aacebbe3146107da578063b62496f5146108025761027c565b8063881dce60146106445780638da5cb5b1461066c5780639213691314610696578063924de9b7146106c057806395d89b41146106e85761027c565b80634a62bb65116101e757806370a08231116101ab57806370a0823114610550578063715018a61461058c57806371fc4688146105a2578063751039fc146105ca5780637571336a146105f457806382aa7c681461061c5761027c565b80634a62bb651461049457806367243482146104be5780636a486a8e146104e65780636ddd1713146105105780636fc3eaec1461053a5761027c565b8063203e727e11610239578063203e727e1461037657806323b872dd1461039e57806327c8f835146103da578063313ce56714610404578063395093511461042e57806349bd5a5e1461046a5761027c565b806306fdde0314610280578063095ea7b3146102aa57806310d5de53146102e65780631694505e1461032257806318160ddd1461034c5761027c565b3661027c57005b5f80fd5b34801561028b575f80fd5b50610294610a52565b6040516102a19190612d44565b60405180910390f35b3480156102b5575f80fd5b506102d060048036038101906102cb9190612df9565b610ae2565b6040516102dd9190612e51565b60405180910390f35b3480156102f1575f80fd5b5061030c60048036038101906103079190612e6a565b610b04565b6040516103199190612e51565b60405180910390f35b34801561032d575f80fd5b50610336610b21565b6040516103439190612ef0565b60405180910390f35b348015610357575f80fd5b50610360610b45565b60405161036d9190612f18565b60405180910390f35b348015610381575f80fd5b5061039c60048036038101906103979190612f31565b610b4e565b005b3480156103a9575f80fd5b506103c460048036038101906103bf9190612f5c565b610be9565b6040516103d19190612e51565b60405180910390f35b3480156103e5575f80fd5b506103ee610c17565b6040516103fb9190612fbb565b60405180910390f35b34801561040f575f80fd5b50610418610c1d565b6040516104259190612fef565b60405180910390f35b348015610439575f80fd5b50610454600480360381019061044f9190612df9565b610c25565b6040516104619190612e51565b60405180910390f35b348015610475575f80fd5b5061047e610c5b565b60405161048b9190612fbb565b60405180910390f35b34801561049f575f80fd5b506104a8610c7f565b6040516104b59190612e51565b60405180910390f35b3480156104c9575f80fd5b506104e460048036038101906104df91906130be565b610c91565b005b3480156104f1575f80fd5b506104fa610d3a565b6040516105079190612f18565b60405180910390f35b34801561051b575f80fd5b50610524610d40565b6040516105319190612e51565b60405180910390f35b348015610545575f80fd5b5061054e610d53565b005b34801561055b575f80fd5b5061057660048036038101906105719190612e6a565b610de1565b6040516105839190612f18565b60405180910390f35b348015610597575f80fd5b506105a0610e26565b005b3480156105ad575f80fd5b506105c860048036038101906105c39190612f31565b610e39565b005b3480156105d5575f80fd5b506105de610e9a565b6040516105eb9190612e51565b60405180910390f35b3480156105ff575f80fd5b5061061a60048036038101906106159190613166565b610ec3565b005b348015610627575f80fd5b50610642600480360381019061063d9190612f31565b610f23565b005b34801561064f575f80fd5b5061066a60048036038101906106659190612f31565b610f79565b005b348015610677575f80fd5b5061068061103a565b60405161068d9190612fbb565b60405180910390f35b3480156106a1575f80fd5b506106aa611062565b6040516106b79190612f18565b60405180910390f35b3480156106cb575f80fd5b506106e660048036038101906106e191906131a4565b611068565b005b3480156106f3575f80fd5b506106fc61108d565b6040516107099190612d44565b60405180910390f35b34801561071d575f80fd5b5061073860048036038101906107339190613166565b61111d565b005b348015610745575f80fd5b50610760600480360381019061075b9190612df9565b6111c1565b60405161076d9190612e51565b60405180910390f35b348015610781575f80fd5b5061079c60048036038101906107979190613166565b611236565b005b3480156107a9575f80fd5b506107c460048036038101906107bf9190612df9565b6112ea565b6040516107d19190612e51565b60405180910390f35b3480156107e5575f80fd5b5061080060048036038101906107fb9190612e6a565b61130c565b005b34801561080d575f80fd5b5061082860048036038101906108239190612e6a565b6113d2565b6040516108359190612e51565b60405180910390f35b348015610849575f80fd5b506108526113ef565b60405161085f9190612e51565b60405180910390f35b348015610873575f80fd5b5061088e60048036038101906108899190613166565b611402565b005b34801561089b575f80fd5b506108b660048036038101906108b19190612f31565b6114b0565b005b3480156108c3575f80fd5b506108cc61154b565b6040516108d99190612f18565b60405180910390f35b3480156108ed575f80fd5b5061090860048036038101906109039190612f31565b611551565b6040516109159190612e51565b60405180910390f35b348015610929575f80fd5b50610932611631565b60405161093f9190612f18565b60405180910390f35b348015610953575f80fd5b5061096e600480360381019061096991906131cf565b611637565b60405161097b9190612f18565b60405180910390f35b34801561098f575f80fd5b506109986116b9565b6040516109a59190612f18565b60405180910390f35b3480156109b9575f80fd5b506109d460048036038101906109cf9190612f31565b6116bf565b005b3480156109e1575f80fd5b506109fc60048036038101906109f79190612e6a565b611720565b005b348015610a09575f80fd5b50610a126117a2565b604051610a1f9190612f18565b60405180910390f35b348015610a33575f80fd5b50610a3c6117a8565b604051610a499190612f18565b60405180910390f35b606060038054610a619061323a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d9061323a565b8015610ad85780601f10610aaf57610100808354040283529160200191610ad8565b820191905f5260205f20905b815481529060010190602001808311610abb57829003601f168201915b5050505050905090565b5f80610aec6117ae565b9050610af98185856117b5565b600191505092915050565b6014602052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b610b56611978565b670de0b6b3a76400006103e86001610b6c610b45565b610b769190613297565b610b809190613305565b610b8a9190613305565b811015610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc3906133a5565b60405180910390fd5b670de0b6b3a764000081610be09190613297565b60078190555050565b5f80610bf36117ae565b9050610c008582856119f6565b610c0b858585611a81565b60019150509392505050565b61dead81565b5f6012905090565b5f80610c2f6117ae565b9050610c50818585610c418589611637565b610c4b91906133c3565b6117b5565b600191505092915050565b7f000000000000000000000000567ac1838a9746a081835d9ee8ce879d9b47cfef81565b600a5f9054906101000a900460ff1681565b5f84849050118015610ca857508383905082829050145b610cb0575f80fd5b5f3390505f5b85859050811015610d3257610d1f82878784818110610cd857610cd76133f6565b5b9050602002016020810190610ced9190612e6a565b670de0b6b3a7640000878786818110610d0957610d086133f6565b5b90506020020135610d1a9190613297565b611a81565b8080610d2a90613423565b915050610cb6565b505050505050565b60105481565b600a60029054906101000a900460ff1681565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610d9990613497565b5f6040518083038185875af1925050503d805f8114610dd3576040519150601f19603f3d011682016040523d82523d5f602084013e610dd8565b606091505b50508091505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610e2e611978565b610e375f6125a6565b565b610e41611978565b80600f81905550600f54600e81905550600a600e541115610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e906134f5565b60405180910390fd5b50565b5f610ea3611978565b5f600a5f6101000a81548160ff0219169083151502179055506001905090565b610ecb611978565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610f2b611978565b80600d819055506001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff02191690831515021790555043600b8190555042600c8190555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610fb96117ae565b73ffffffffffffffffffffffffffffffffffffffff1614610fd8575f80fd5b610fe130610de1565b8111158015610fef57505f81115b61102e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110259061355d565b60405180910390fd5b61103781612669565b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b611070611978565b80600a60026101000a81548160ff02191690831515021790555050565b60606004805461109c9061323a565b80601f01602080910402602001604051908101604052809291908181526020018280546110c89061323a565b80156111135780601f106110ea57610100808354040283529160200191611113565b820191905f5260205f20905b8154815290600101906020018083116110f657829003601f168201915b5050505050905090565b611125611978565b7f000000000000000000000000567ac1838a9746a081835d9ee8ce879d9b47cfef73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa906135eb565b60405180910390fd5b6111bd828261289c565b5050565b5f806111cb6117ae565b90505f6111d88286611637565b90508381101561121d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121490613679565b60405180910390fd5b61122a82868684036117b5565b60019250505092915050565b61123e611978565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f806112f46117ae565b9050611301818585611a81565b600191505092915050565b611314611978565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6015602052805f5260405f205f915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b61140a611978565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516114a49190612e51565b60405180910390a25050565b6114b8611978565b670de0b6b3a76400006103e860056114ce610b45565b6114d89190613297565b6114e29190613305565b6114ec9190613305565b81101561152e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152590613707565b60405180910390fd5b670de0b6b3a7640000816115429190613297565b60098190555050565b60075481565b5f61155a611978565b620186a06001611568610b45565b6115729190613297565b61157c9190613305565b8210156115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b590613795565b60405180910390fd5b6103e860056115cb610b45565b6115d59190613297565b6115df9190613305565b821115611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890613823565b60405180910390fd5b8160088190555060019050919050565b600e5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b6116c7611978565b80601181905550601154601081905550600a601054111561171d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611714906134f5565b60405180910390fd5b50565b611728611978565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178d906138b1565b60405180910390fd5b61179f816125a6565b50565b60095481565b600d5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a9061393f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611891576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611888906139cd565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161196b9190612f18565b60405180910390a3505050565b6119806117ae565b73ffffffffffffffffffffffffffffffffffffffff1661199e61103a565b73ffffffffffffffffffffffffffffffffffffffff16146119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90613a35565b60405180910390fd5b565b5f611a018484611637565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a7b5781811015611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6490613a9d565b60405180910390fd5b611a7a84848484036117b5565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae690613b2b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5490613bb9565b60405180910390fd5b5f8103611b7457611b6f83835f61293a565b6125a1565b5f439050600a5f9054906101000a900460ff16156121d757611b9461103a565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611c025750611bd261103a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611c3a57505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611c74575061dead73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611c8d5750600560149054906101000a900460ff16155b15611e0e5780600d54600b54611ca391906133c3565b10611ccf576063600f81905550600f54600e819055506063601181905550601154601081905550611e0d565b600d54600b54611cdf91906133c3565b81118015611cfb57506014600b54611cf791906133c3565b8111155b15611d4b576a108b2a2c280290940000006007819055506a108b2a2c28029094000000600981905550601e600f81905550600f54600e81905550601e601181905550601154601081905550611e0c565b6014600b54611d5a91906133c3565b81118015611d765750601e600b54611d7291906133c3565b8111155b15611dc6576a108b2a2c280290940000006007819055506a108b2a2c28029094000000600981905550600a600f81905550600f54600e81905550600a601181905550601154601081905550611e0b565b6a108b2a2c280290940000006007819055506a108b2a2c280290940000006009819055505f600f81905550600f54600e819055505f6011819055506011546010819055505b5b5b5b600a60019054906101000a900460ff16611efd5760125f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611ebd575060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef390613c21565b60405180910390fd5b5b60155f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611f9a575060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561204157600754821115611fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdb90613caf565b60405180910390fd5b600954611ff084610de1565b83611ffb91906133c3565b111561203c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203390613d17565b60405180910390fd5b6121d6565b60155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156120de575060145f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561212d57600754821115612128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211f90613da5565b60405180910390fd5b6121d5565b60145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166121d45760095461218784610de1565b8361219291906133c3565b11156121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca90613d17565b60405180910390fd5b5b5b5b5b5f6121e130610de1565b90505f60085482101590508080156122055750600a60029054906101000a900460ff165b801561221e5750600560149054906101000a900460ff16155b801561223b5750600260135f8581526020019081526020015f2054105b801561228e575060155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156122e1575060125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612334575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561239b576001600560146101000a81548160ff02191690831515021790555061235c612ba6565b60135f8481526020019081526020015f205f815461237990613423565b919050819055505f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060125f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061244a575060125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612453575f90505b5f81156125905760155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156124b157505f601054115b156124e5576124de60646124d060105489612c8690919063ffffffff16565b612c9b90919063ffffffff16565b905061256d565b60155f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561253c57505f600e54115b1561256c57612569606461255b600e5489612c8690919063ffffffff16565b612c9b90919063ffffffff16565b90505b5b5f8111156125815761258088308361293a565b5b808661258d9190613dc3565b95505b61259b88888861293a565b50505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600267ffffffffffffffff81111561268557612684613df6565b5b6040519080825280602002602001820160405280156126b35781602001602082028036833780820191505090505b50905030815f815181106126ca576126c96133f6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561276d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127919190613e37565b816001815181106127a5576127a46133f6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061280a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117b5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161286b959493929190613f52565b5f604051808303815f87803b158015612882575f80fd5b505af1158015612894573d5f803e3d5ffd5b505050505050565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299f90613b2b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0d90613bb9565b60405180910390fd5b612a21838383612cb0565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9b9061401a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b8d9190612f18565b60405180910390a3612ba0848484612cb5565b50505050565b5f612bb030610de1565b90505f808203612bc1575050612c84565b6014600854612bd09190613297565b821115612be9576014600854612be69190613297565b91505b5f829050612bf681612669565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612c3b90613497565b5f6040518083038185875af1925050503d805f8114612c75576040519150601f19603f3d011682016040523d82523d5f602084013e612c7a565b606091505b5050809250505050505b565b5f8183612c939190613297565b905092915050565b5f8183612ca89190613305565b905092915050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612cf1578082015181840152602081019050612cd6565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612d1682612cba565b612d208185612cc4565b9350612d30818560208601612cd4565b612d3981612cfc565b840191505092915050565b5f6020820190508181035f830152612d5c8184612d0c565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612d9582612d6c565b9050919050565b612da581612d8b565b8114612daf575f80fd5b50565b5f81359050612dc081612d9c565b92915050565b5f819050919050565b612dd881612dc6565b8114612de2575f80fd5b50565b5f81359050612df381612dcf565b92915050565b5f8060408385031215612e0f57612e0e612d64565b5b5f612e1c85828601612db2565b9250506020612e2d85828601612de5565b9150509250929050565b5f8115159050919050565b612e4b81612e37565b82525050565b5f602082019050612e645f830184612e42565b92915050565b5f60208284031215612e7f57612e7e612d64565b5b5f612e8c84828501612db2565b91505092915050565b5f819050919050565b5f612eb8612eb3612eae84612d6c565b612e95565b612d6c565b9050919050565b5f612ec982612e9e565b9050919050565b5f612eda82612ebf565b9050919050565b612eea81612ed0565b82525050565b5f602082019050612f035f830184612ee1565b92915050565b612f1281612dc6565b82525050565b5f602082019050612f2b5f830184612f09565b92915050565b5f60208284031215612f4657612f45612d64565b5b5f612f5384828501612de5565b91505092915050565b5f805f60608486031215612f7357612f72612d64565b5b5f612f8086828701612db2565b9350506020612f9186828701612db2565b9250506040612fa286828701612de5565b9150509250925092565b612fb581612d8b565b82525050565b5f602082019050612fce5f830184612fac565b92915050565b5f60ff82169050919050565b612fe981612fd4565b82525050565b5f6020820190506130025f830184612fe0565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261302957613028613008565b5b8235905067ffffffffffffffff8111156130465761304561300c565b5b60208301915083602082028301111561306257613061613010565b5b9250929050565b5f8083601f84011261307e5761307d613008565b5b8235905067ffffffffffffffff81111561309b5761309a61300c565b5b6020830191508360208202830111156130b7576130b6613010565b5b9250929050565b5f805f80604085870312156130d6576130d5612d64565b5b5f85013567ffffffffffffffff8111156130f3576130f2612d68565b5b6130ff87828801613014565b9450945050602085013567ffffffffffffffff81111561312257613121612d68565b5b61312e87828801613069565b925092505092959194509250565b61314581612e37565b811461314f575f80fd5b50565b5f813590506131608161313c565b92915050565b5f806040838503121561317c5761317b612d64565b5b5f61318985828601612db2565b925050602061319a85828601613152565b9150509250929050565b5f602082840312156131b9576131b8612d64565b5b5f6131c684828501613152565b91505092915050565b5f80604083850312156131e5576131e4612d64565b5b5f6131f285828601612db2565b925050602061320385828601612db2565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061325157607f821691505b6020821081036132645761326361320d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6132a182612dc6565b91506132ac83612dc6565b92508282026132ba81612dc6565b915082820484148315176132d1576132d061326a565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61330f82612dc6565b915061331a83612dc6565b92508261332a576133296132d8565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b5f61338f602f83612cc4565b915061339a82613335565b604082019050919050565b5f6020820190508181035f8301526133bc81613383565b9050919050565b5f6133cd82612dc6565b91506133d883612dc6565b92508282019050808211156133f0576133ef61326a565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f61342d82612dc6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361345f5761345e61326a565b5b600182019050919050565b5f81905092915050565b50565b5f6134825f8361346a565b915061348d82613474565b5f82019050919050565b5f6134a182613477565b9150819050919050565b7f4d757374206b6565702066656573206174203525206f72206c657373000000005f82015250565b5f6134df601c83612cc4565b91506134ea826134ab565b602082019050919050565b5f6020820190508181035f83015261350c816134d3565b9050919050565b7f57726f6e6720616d6f756e7400000000000000000000000000000000000000005f82015250565b5f613547600c83612cc4565b915061355282613513565b602082019050919050565b5f6020820190508181035f8301526135748161353b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f6135d5603983612cc4565b91506135e08261357b565b604082019050919050565b5f6020820190508181035f830152613602816135c9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613663602583612cc4565b915061366e82613609565b604082019050919050565b5f6020820190508181035f83015261369081613657565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f6136f1602483612cc4565b91506136fc82613697565b604082019050919050565b5f6020820190508181035f83015261371e816136e5565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f61377f603583612cc4565b915061378a82613725565b604082019050919050565b5f6020820190508181035f8301526137ac81613773565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f61380d603483612cc4565b9150613818826137b3565b604082019050919050565b5f6020820190508181035f83015261383a81613801565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61389b602683612cc4565b91506138a682613841565b604082019050919050565b5f6020820190508181035f8301526138c88161388f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613929602483612cc4565b9150613934826138cf565b604082019050919050565b5f6020820190508181035f8301526139568161391d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6139b7602283612cc4565b91506139c28261395d565b604082019050919050565b5f6020820190508181035f8301526139e4816139ab565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613a1f602083612cc4565b9150613a2a826139eb565b602082019050919050565b5f6020820190508181035f830152613a4c81613a13565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613a87601d83612cc4565b9150613a9282613a53565b602082019050919050565b5f6020820190508181035f830152613ab481613a7b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613b15602583612cc4565b9150613b2082613abb565b604082019050919050565b5f6020820190508181035f830152613b4281613b09565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613ba3602383612cc4565b9150613bae82613b49565b604082019050919050565b5f6020820190508181035f830152613bd081613b97565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613c0b601683612cc4565b9150613c1682613bd7565b602082019050919050565b5f6020820190508181035f830152613c3881613bff565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f613c99603583612cc4565b9150613ca482613c3f565b604082019050919050565b5f6020820190508181035f830152613cc681613c8d565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613d01601383612cc4565b9150613d0c82613ccd565b602082019050919050565b5f6020820190508181035f830152613d2e81613cf5565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f613d8f603683612cc4565b9150613d9a82613d35565b604082019050919050565b5f6020820190508181035f830152613dbc81613d83565b9050919050565b5f613dcd82612dc6565b9150613dd883612dc6565b9250828203905081811115613df057613def61326a565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f81519050613e3181612d9c565b92915050565b5f60208284031215613e4c57613e4b612d64565b5b5f613e5984828501613e23565b91505092915050565b5f819050919050565b5f613e85613e80613e7b84613e62565b612e95565b612dc6565b9050919050565b613e9581613e6b565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613ecd81612d8b565b82525050565b5f613ede8383613ec4565b60208301905092915050565b5f602082019050919050565b5f613f0082613e9b565b613f0a8185613ea5565b9350613f1583613eb5565b805f5b83811015613f45578151613f2c8882613ed3565b9750613f3783613eea565b925050600181019050613f18565b5085935050505092915050565b5f60a082019050613f655f830188612f09565b613f726020830187613e8c565b8181036040830152613f848186613ef6565b9050613f936060830185612fac565b613fa06080830184612f09565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614004602683612cc4565b915061400f82613faa565b604082019050919050565b5f6020820190508181035f83015261403181613ff8565b905091905056fea26469706673582212204c275f1404252dce690d5da4dd11e719adfae4cf9f8f39e59bbba96d4306ea7f64736f6c63430008140033

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.