ETH Price: $2,434.87 (+1.32%)

Token

Pump This Shitcoin Dev (PTSD)
 

Overview

Max Total Supply

100,000,000 PTSD

Holders

37

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
PumpThisShitcoinDev

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

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

/*
"We all have PTSD, so lets get this shitcoin dev to pumpit"

Tg: https://t.me/PTSD_Entry

Twitter: twitter.com/ptsd__eth

Web: https://www.cryptoptsd.tech/
*/

pragma solidity =0.8.15;

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

contract PumpThisShitcoinDev is ERC20, Ownable {

    IUniRouter public router;
    address public pair;

    address public devWallet;
    uint256 public swapTokensAtAmount;
    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
    uint256 public maxWallet;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromMaxWallet;
    mapping(address => bool) public automatedMarketMakerPairs;

    bool private swapping;
    bool public swapEnabled = true;
    bool public tradingEnabled;

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    struct Taxes {
        uint256 dev;
    }


    Taxes public buyTaxes = Taxes(1);
    Taxes public sellTaxes = Taxes(1);
    uint256 public totalBuyTax = 1;
    uint256 public totalSellTax = 1;

    constructor(address _dev) ERC20("Pump This Shitcoin Dev", "PTSD") {
        setSwapTokensAtAmount(500000);
        updateMaxWalletAmount(2000000);
        setMaxBuyAndSell(2000000, 1000000);
        setDevWall(_dev);
        IUniRouter _router = IUniRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        address _pair = IUniFactory(_router.factory()).createPair(
            address(this),
            _router.WETH()
        );

        router = _router;
        pair = _pair;

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromMaxWallet(_pair, true);
        excludeFromMaxWallet(address(this), true);
        excludeFromMaxWallet(address(_router), true);
        _setAutomatedMarketMakerPair(_pair, true);

        _mint(owner(), 100000000 * (10**18));
    }

    receive() external payable {}


    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(
            _isExcludedFromFees[account] != excluded,
            " Account is already the value of 'excluded'"
        );
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

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

    function excludeMultipleAccountsFromFees(
        address[] calldata accounts,
        bool excluded
    ) public onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = excluded;
        }
        emit ExcludeMultipleAccountsFromFees(accounts, excluded);
    }


    function setDevWall(address newWallet) public onlyOwner {
        devWallet = newWallet;
    }

    function updateMaxWalletAmount(uint256 newNum) public onlyOwner {
        require(newNum > (1000000 * 1), "Cannot set maxWallet lower than 1%");
        maxWallet = newNum * (10**18);
    }


    /// @notice Update the threshold to swap tokens for liquidity,
    ///   treasury and dividends.
    function setSwapTokensAtAmount(uint256 amount) public onlyOwner {
        require(amount < 10000000, "Cannot set swaptokens higher then than 10% ");
        swapTokensAtAmount = amount * 10**18;
    }

    /// @notice Enable or disable internal swaps
    /// @dev Set "true" to enable internal swaps for liquidity, treasury and dividends
    function setSwapEnabled(bool _enabled) external onlyOwner {
        swapEnabled = _enabled;
    }


    function withdrawETH20Tokens(address tokenAddress) external onlyOwner {
        IERC20(tokenAddress).transfer(
            owner(),
            IERC20(tokenAddress).balanceOf(address(this))
        );
    }
    function setMaxBuyAndSell(uint256 maxBuy, uint256 maxSell)
        public
        onlyOwner
    {
        require(maxBuy >= 1000000, "Cannot set maxbuy lower than 1% ");
        require(maxSell >= 50000, "Cannot set maxsell lower than 0.5% ");
        maxBuyAmount = maxBuy * 10**18;
        maxSellAmount = maxSell * 10**18;
    }

    function setBuyTaxes(
        uint256 _dev
    ) external onlyOwner {
        require(_dev <= 20, "Fee must be <= 20%");
        buyTaxes = Taxes(_dev);
        totalBuyTax = _dev;
    }

    function setSellTaxes(
        uint256 _dev
    ) external onlyOwner {
        require(_dev <= 20, "Fee must be <= 20%");
        sellTaxes = Taxes(_dev);
        totalSellTax = _dev;
    }

    function forceSend() external onlyOwner {
        (bool success, ) = payable(devWallet).call{
            value: address(this).balance
        }("");
        require(success, "Failed to send Ether to dev wallet");
    }

    function updateRouter(address newRouter) external onlyOwner {
        router = IUniRouter(newRouter);
    }

    function activateTrading() external onlyOwner {
        require(!tradingEnabled, "Trading already enabled");
        tradingEnabled = true;
    }



    function setAutomatedMarketMakerPair(address newPair, bool value)
        external
        onlyOwner
    {
        _setAutomatedMarketMakerPair(newPair, value);
    }

    function _setAutomatedMarketMakerPair(address newPair, bool value) private {
        require(
            automatedMarketMakerPairs[newPair] != value,
            "Automated market maker pair is already set to that value"
        );
        automatedMarketMakerPairs[newPair] = value;

        emit SetAutomatedMarketMakerPair(newPair, value);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    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 (
            !_isExcludedFromFees[from] && !_isExcludedFromFees[to] && !swapping
        ) {
            require(tradingEnabled, "Trading not active");
            if (automatedMarketMakerPairs[to]) {
                require(
                    amount <= maxSellAmount,
                    "You are exceeding maxSellAmount"
                );
            } else if (automatedMarketMakerPairs[from])
                require(
                    amount <= maxBuyAmount,
                    "You are exceeding maxBuyAmount"
                );
            if (!_isExcludedFromMaxWallet[to]) {
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "Unable to exceed Max Wallet"
                );
            }
        }

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

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            if (totalSellTax > 0) {
                swapAndLiquify(swapTokensAtAmount);
            }

            swapping = false;
        }

        bool takeFee = !swapping;

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

        if (!automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from])
            takeFee = false;

        if (takeFee) {
            uint256 feeAmt;
            if (automatedMarketMakerPairs[to])
                feeAmt = (amount * totalSellTax) / 100;
            else if (automatedMarketMakerPairs[from])
                feeAmt = (amount * totalBuyTax) / 100;

            amount = amount - feeAmt;
            super._transfer(from, address(this), feeAmt);
        }
        super._transfer(from, to, amount);
    }

  function swapAndLiquify(uint256 tokens) private {
        uint256 toSwap = tokens; //- tokensToAddLiquidityWith;

        uint256 totalTax = (totalSellTax);

        swapTokensForETH(toSwap);

        uint256 contractrewardbalance = address(this).balance;
        
        uint256 devAmt = (contractrewardbalance * sellTaxes.dev) / totalTax;
        if (devAmt > 0) {
            (bool success, ) = payable(devWallet).call{value: devAmt}("");
            require(success, "Failed to send Ether to dev wallet");
        }
    }

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

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

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



interface IUniFactory{
        function createPair(address tokenA, address tokenB) external returns (address pair);
        function getPair(address tokenA, address tokenB) external view returns (address pair);
}

interface IUniRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline) external;
}

File 2 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 7 : 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 7 : 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 5 of 7 : 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 6 of 7 : 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 7 of 7 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_dev","type":"address"}],"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":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"activateTrading","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":"buyTaxes","outputs":[{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSend","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newPair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_dev","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBuy","type":"uint256"},{"internalType":"uint256","name":"maxSell","type":"uint256"}],"name":"setMaxBuyAndSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_dev","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","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":"totalBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","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":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"withdrawETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526001601060016101000a81548160ff021916908315150217905550604051806020016040528060018152506011600082015181600001555050604051806020016040528060018152506012600082015181600001555050600160135560016014553480156200007257600080fd5b506040516200574438038062005744833981810160405281019062000098919062000ccf565b6040518060400160405280601681526020017f50756d7020546869732053686974636f696e20446576000000000000000000008152506040518060400160405280600481526020017f5054534400000000000000000000000000000000000000000000000000000000815250816003908162000115919062000f7b565b50806004908162000127919062000f7b565b5050506200014a6200013e6200045560201b60201c565b6200045d60201b60201c565b6200015e6207a1206200052360201b60201c565b62000172621e84806200059a60201b60201c565b6200018a621e8480620f42406200061160201b60201c565b6200019b81620006ee60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000202573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000228919062000ccf565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000290573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b6919062000ccf565b6040518363ffffffff1660e01b8152600401620002d592919062001073565b6020604051808303816000875af1158015620002f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200031b919062000ccf565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003c1620003b36200074260201b60201c565b60016200076c60201b60201c565b620003d43060016200076c60201b60201c565b620003e7816001620008bc60201b60201c565b620003fa306001620008bc60201b60201c565b6200040d826001620008bc60201b60201c565b620004208160016200092760201b60201c565b6200044c620004346200074260201b60201c565b6a52b7d2dcc80cd2e400000062000a5d60201b60201c565b50505062001654565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200053362000bca60201b60201c565b6298968081106200057b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005729062001127565b60405180910390fd5b670de0b6b3a76400008162000591919062001178565b60098190555050565b620005aa62000bca60201b60201c565b620f42408111620005f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005e9906200124f565b60405180910390fd5b670de0b6b3a76400008162000608919062001178565b600c8190555050565b6200062162000bca60201b60201c565b620f42408210156200066a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200066190620012c1565b60405180910390fd5b61c350811015620006b2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006a99062001359565b60405180910390fd5b670de0b6b3a764000082620006c8919062001178565b600a81905550670de0b6b3a764000081620006e4919062001178565b600b819055505050565b620006fe62000bca60201b60201c565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200077c62000bca60201b60201c565b801515600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000811576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200080890620013f1565b60405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008b0919062001430565b60405180910390a25050565b620008cc62000bca60201b60201c565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b801515600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503620009bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009b390620014c3565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000acf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ac69062001535565b60405180910390fd5b62000ae36000838362000c5b60201b60201c565b806002600082825462000af7919062001557565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000baa9190620015c5565b60405180910390a362000bc66000838362000c6060201b60201c565b5050565b62000bda6200045560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000c006200074260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000c59576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c509062001632565b60405180910390fd5b565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c978262000c6a565b9050919050565b62000ca98162000c8a565b811462000cb557600080fd5b50565b60008151905062000cc98162000c9e565b92915050565b60006020828403121562000ce85762000ce762000c65565b5b600062000cf88482850162000cb8565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d8357607f821691505b60208210810362000d995762000d9862000d3b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000e037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000dc4565b62000e0f868362000dc4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000e5c62000e5662000e508462000e27565b62000e31565b62000e27565b9050919050565b6000819050919050565b62000e788362000e3b565b62000e9062000e878262000e63565b84845462000dd1565b825550505050565b600090565b62000ea762000e98565b62000eb481848462000e6d565b505050565b5b8181101562000edc5762000ed060008262000e9d565b60018101905062000eba565b5050565b601f82111562000f2b5762000ef58162000d9f565b62000f008462000db4565b8101602085101562000f10578190505b62000f2862000f1f8562000db4565b83018262000eb9565b50505b505050565b600082821c905092915050565b600062000f506000198460080262000f30565b1980831691505092915050565b600062000f6b838362000f3d565b9150826002028217905092915050565b62000f868262000d01565b67ffffffffffffffff81111562000fa25762000fa162000d0c565b5b62000fae825462000d6a565b62000fbb82828562000ee0565b600060209050601f83116001811462000ff3576000841562000fde578287015190505b62000fea858262000f5d565b8655506200105a565b601f198416620010038662000d9f565b60005b828110156200102d5784890151825560018201915060208501945060208101905062001006565b868310156200104d578489015162001049601f89168262000f3d565b8355505b6001600288020188555050505b505050505050565b6200106d8162000c8a565b82525050565b60006040820190506200108a600083018562001062565b62001099602083018462001062565b9392505050565b600082825260208201905092915050565b7f43616e6e6f74207365742073776170746f6b656e73206869676865722074686560008201527f6e207468616e2031302520000000000000000000000000000000000000000000602082015250565b60006200110f602b83620010a0565b91506200111c82620010b1565b604082019050919050565b60006020820190508181036000830152620011428162001100565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620011858262000e27565b9150620011928362000e27565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620011ce57620011cd62001149565b5b828202905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b600062001237602283620010a0565b91506200124482620011d9565b604082019050919050565b600060208201905081810360008301526200126a8162001228565b9050919050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b6000620012a9602083620010a0565b9150620012b68262001271565b602082019050919050565b60006020820190508181036000830152620012dc816200129a565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b600062001341602383620010a0565b91506200134e82620012e3565b604082019050919050565b60006020820190508181036000830152620013748162001332565b9050919050565b7f204163636f756e7420697320616c7265616479207468652076616c7565206f6660008201527f20276578636c7564656427000000000000000000000000000000000000000000602082015250565b6000620013d9602b83620010a0565b9150620013e6826200137b565b604082019050919050565b600060208201905081810360008301526200140c81620013ca565b9050919050565b60008115159050919050565b6200142a8162001413565b82525050565b60006020820190506200144760008301846200141f565b92915050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b6000620014ab603883620010a0565b9150620014b8826200144d565b604082019050919050565b60006020820190508181036000830152620014de816200149c565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200151d601f83620010a0565b91506200152a82620014e5565b602082019050919050565b6000602082019050818103600083015262001550816200150e565b9050919050565b6000620015648262000e27565b9150620015718362000e27565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620015a957620015a862001149565b5b828201905092915050565b620015bf8162000e27565b82525050565b6000602082019050620015dc6000830184620015b4565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200161a602083620010a0565b91506200162782620015e2565b602082019050919050565b600060208201905081810360008301526200164d816200160b565b9050919050565b6140e080620016646000396000f3fe60806040526004361061026b5760003560e01c80638ea5220f11610144578063c492f046116100b6578063e2f456051161007a578063e2f4560514610927578063f2fde38b14610952578063f42615021461097b578063f66895a3146109a4578063f887ea40146109cf578063f8b45b05146109fa57610272565b8063c492f04614610846578063c851cc321461086f578063d2fcc00114610898578063dd62ed3e146108c1578063e01af92c146108fe57610272565b8063a8aa1b3111610108578063a8aa1b3114610726578063a9059cbb14610751578063afa4f3b21461078e578063b62496f5146107b7578063c0246668146107f4578063c18bc1951461081d57610272565b80638ea5220f1461064157806395d89b411461066c5780639a7a23d614610697578063a3ca847d146106c0578063a457c2d7146106e957610272565b806346469afb116101dd57806370a08231116101a157806370a0823114610543578063715018a61461058057806379b447bd14610597578063864701a5146105c057806388e765ff146105eb5780638da5cb5b1461061657610272565b806346469afb1461045a5780634ada218b146104855780634fbee193146104b057806366d602ae146104ed5780636ddd17131461051857610272565b806312b77e8a1161022f57806312b77e8a1461034857806318160ddd1461035f5780631bff78981461038a57806323b872dd146103b5578063313ce567146103f2578063395093511461041d57610272565b806301ca92411461027757806306fdde03146102a05780630940bbc7146102cb578063095ea7b3146102f45780630bd05b691461033157610272565b3661027257005b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190612abf565b610a25565b005b3480156102ac57600080fd5b506102b5610a71565b6040516102c29190612b85565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612bdd565b610b03565b005b34801561030057600080fd5b5061031b60048036038101906103169190612c0a565b610b77565b6040516103289190612c65565b60405180910390f35b34801561033d57600080fd5b50610346610b9a565b005b34801561035457600080fd5b5061035d610c0f565b005b34801561036b57600080fd5b50610374610ce8565b6040516103819190612c8f565b60405180910390f35b34801561039657600080fd5b5061039f610cf2565b6040516103ac9190612c8f565b60405180910390f35b3480156103c157600080fd5b506103dc60048036038101906103d79190612caa565b610cf8565b6040516103e99190612c65565b60405180910390f35b3480156103fe57600080fd5b50610407610d27565b6040516104149190612d19565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190612c0a565b610d30565b6040516104519190612c65565b60405180910390f35b34801561046657600080fd5b5061046f610d67565b60405161047c9190612c8f565b60405180910390f35b34801561049157600080fd5b5061049a610d6d565b6040516104a79190612c65565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d29190612abf565b610d80565b6040516104e49190612c65565b60405180910390f35b3480156104f957600080fd5b50610502610dd6565b60405161050f9190612c8f565b60405180910390f35b34801561052457600080fd5b5061052d610ddc565b60405161053a9190612c65565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190612abf565b610def565b6040516105779190612c8f565b60405180910390f35b34801561058c57600080fd5b50610595610e37565b005b3480156105a357600080fd5b506105be60048036038101906105b99190612d34565b610e4b565b005b3480156105cc57600080fd5b506105d5610f16565b6040516105e29190612c8f565b60405180910390f35b3480156105f757600080fd5b50610600610f22565b60405161060d9190612c8f565b60405180910390f35b34801561062257600080fd5b5061062b610f28565b6040516106389190612d83565b60405180910390f35b34801561064d57600080fd5b50610656610f52565b6040516106639190612d83565b60405180910390f35b34801561067857600080fd5b50610681610f78565b60405161068e9190612b85565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190612dca565b61100a565b005b3480156106cc57600080fd5b506106e760048036038101906106e29190612bdd565b611020565b005b3480156106f557600080fd5b50610710600480360381019061070b9190612c0a565b611094565b60405161071d9190612c65565b60405180910390f35b34801561073257600080fd5b5061073b61110b565b6040516107489190612d83565b60405180910390f35b34801561075d57600080fd5b5061077860048036038101906107739190612c0a565b611131565b6040516107859190612c65565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190612bdd565b611154565b005b3480156107c357600080fd5b506107de60048036038101906107d99190612abf565b6111be565b6040516107eb9190612c65565b60405180910390f35b34801561080057600080fd5b5061081b60048036038101906108169190612dca565b6111de565b005b34801561082957600080fd5b50610844600480360381019061083f9190612bdd565b611321565b005b34801561085257600080fd5b5061086d60048036038101906108689190612e6f565b61138b565b005b34801561087b57600080fd5b5061089660048036038101906108919190612abf565b611473565b005b3480156108a457600080fd5b506108bf60048036038101906108ba9190612dca565b6114bf565b005b3480156108cd57600080fd5b506108e860048036038101906108e39190612ecf565b611522565b6040516108f59190612c8f565b60405180910390f35b34801561090a57600080fd5b5061092560048036038101906109209190612f0f565b6115a9565b005b34801561093357600080fd5b5061093c6115ce565b6040516109499190612c8f565b60405180910390f35b34801561095e57600080fd5b5061097960048036038101906109749190612abf565b6115d4565b005b34801561098757600080fd5b506109a2600480360381019061099d9190612abf565b611657565b005b3480156109b057600080fd5b506109b9611761565b6040516109c69190612c8f565b60405180910390f35b3480156109db57600080fd5b506109e461176d565b6040516109f19190612f9b565b60405180910390f35b348015610a0657600080fd5b50610a0f611793565b604051610a1c9190612c8f565b60405180910390f35b610a2d611799565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060038054610a8090612fe5565b80601f0160208091040260200160405190810160405280929190818152602001828054610aac90612fe5565b8015610af95780601f10610ace57610100808354040283529160200191610af9565b820191906000526020600020905b815481529060010190602001808311610adc57829003601f168201915b5050505050905090565b610b0b611799565b6014811115610b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4690613062565b60405180910390fd5b6040518060200160405280828152506012600082015181600001559050508060148190555050565b600080610b82611817565b9050610b8f81858561181f565b600191505092915050565b610ba2611799565b601060029054906101000a900460ff1615610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be9906130ce565b60405180910390fd5b6001601060026101000a81548160ff021916908315150217905550565b610c17611799565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610c5f9061311f565b60006040518083038185875af1925050503d8060008114610c9c576040519150601f19603f3d011682016040523d82523d6000602084013e610ca1565b606091505b5050905080610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc906131a6565b60405180910390fd5b50565b6000600254905090565b60145481565b600080610d03611817565b9050610d108582856119e8565b610d1b858585611a74565b60019150509392505050565b60006012905090565b600080610d3b611817565b9050610d5c818585610d4d8589611522565b610d5791906131f5565b61181f565b600191505092915050565b60135481565b601060029054906101000a900460ff1681565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600b5481565b601060019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e3f611799565b610e496000612281565b565b610e53611799565b620f4240821015610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090613297565b60405180910390fd5b61c350811015610ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed590613329565b60405180910390fd5b670de0b6b3a764000082610ef29190613349565b600a81905550670de0b6b3a764000081610f0c9190613349565b600b819055505050565b60118060000154905081565b600a5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610f8790612fe5565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb390612fe5565b80156110005780601f10610fd557610100808354040283529160200191611000565b820191906000526020600020905b815481529060010190602001808311610fe357829003601f168201915b5050505050905090565b611012611799565b61101c8282612347565b5050565b611028611799565b601481111561106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390613062565b60405180910390fd5b6040518060200160405280828152506011600082015181600001559050508060138190555050565b60008061109f611817565b905060006110ad8286611522565b9050838110156110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990613415565b60405180910390fd5b6110ff828686840361181f565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061113c611817565b9050611149818585611a74565b600191505092915050565b61115c611799565b6298968081106111a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611198906134a7565b60405180910390fd5b670de0b6b3a7640000816111b59190613349565b60098190555050565b600f6020528060005260406000206000915054906101000a900460ff1681565b6111e6611799565b801515600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90613539565b60405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516113159190612c65565b60405180910390a25050565b611329611799565b620f4240811161136e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611365906135cb565b60405180910390fd5b670de0b6b3a7640000816113829190613349565b600c8190555050565b611393611799565b60005b838390508110156114325781600d60008686858181106113b9576113b86135eb565b5b90506020020160208101906113ce9190612abf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061142a9061361a565b915050611396565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b3583838360405161146693929190613725565b60405180910390a1505050565b61147b611799565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6114c7611799565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6115b1611799565b80601060016101000a81548160ff02191690831515021790555050565b60095481565b6115dc611799565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361164b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611642906137c9565b60405180910390fd5b61165481612281565b50565b61165f611799565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb611683610f28565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016116bc9190612d83565b602060405180830381865afa1580156116d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116fd91906137fe565b6040518363ffffffff1660e01b815260040161171a92919061382b565b6020604051808303816000875af1158015611739573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175d9190613869565b5050565b60128060000154905081565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6117a1611817565b73ffffffffffffffffffffffffffffffffffffffff166117bf610f28565b73ffffffffffffffffffffffffffffffffffffffff1614611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c906138e2565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590613974565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f490613a06565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119db9190612c8f565b60405180910390a3505050565b60006119f48484611522565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a6e5781811015611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5790613a72565b60405180910390fd5b611a6d848484840361181f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ada90613b04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4990613b96565b60405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611bf65750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611c0f5750601060009054906101000a900460ff16155b15611e4357601060029054906101000a900460ff16611c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5a90613c02565b60405180910390fd5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cff57600b54811115611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf190613c6e565b60405180910390fd5b611d98565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d9757600a54811115611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d90613cda565b60405180910390fd5b5b5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e4257600c54611df583610def565b82611e0091906131f5565b1115611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3890613d46565b60405180910390fd5b5b5b60008103611e5c57611e578383600061247a565b61227c565b6000611e6730610def565b905060006009548210159050808015611e8d5750601060009054906101000a900460ff16155b8015611ea55750601060019054906101000a900460ff165b8015611efa5750600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015611f505750600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611fa65750600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611ff9576001601060006101000a81548160ff02191690831515021790555060006014541115611fdd57611fdc6009546126f0565b5b6000601060006101000a81548160ff0219169083151502179055505b6000601060009054906101000a900460ff16159050600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120af5750600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156120b957600090505b600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561215d5750600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561216757600090505b801561226d576000600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156121e2576064601454866121d19190613349565b6121db9190613d95565b9050612252565b600f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612251576064601354866122449190613349565b61224e9190613d95565b90505b5b808561225e9190613dc6565b945061226b87308361247a565b505b61227886868661247a565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036123d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d090613e6c565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e090613b04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254f90613b96565b60405180910390fd5b61256383838361280a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156125e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e090613efe565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126d79190612c8f565b60405180910390a36126ea84848461280f565b50505050565b60008190506000601454905061270582612814565b60004790506000826012600001548361271e9190613349565b6127289190613d95565b90506000811115612803576000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161277b9061311f565b60006040518083038185875af1925050503d80600081146127b8576040519150601f19603f3d011682016040523d82523d6000602084013e6127bd565b606091505b5050905080612801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f8906131a6565b60405180910390fd5b505b5050505050565b505050565b505050565b6000600267ffffffffffffffff81111561283157612830613f1e565b5b60405190808252806020026020018201604052801561285f5781602001602082028036833780820191505090505b5090503081600081518110612877576128766135eb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561291e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129429190613f62565b81600181518110612956576129556135eb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506129bd30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461181f565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612a21959493929190614050565b600060405180830381600087803b158015612a3b57600080fd5b505af1158015612a4f573d6000803e3d6000fd5b505050505050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a8c82612a61565b9050919050565b612a9c81612a81565b8114612aa757600080fd5b50565b600081359050612ab981612a93565b92915050565b600060208284031215612ad557612ad4612a57565b5b6000612ae384828501612aaa565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b26578082015181840152602081019050612b0b565b83811115612b35576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b5782612aec565b612b618185612af7565b9350612b71818560208601612b08565b612b7a81612b3b565b840191505092915050565b60006020820190508181036000830152612b9f8184612b4c565b905092915050565b6000819050919050565b612bba81612ba7565b8114612bc557600080fd5b50565b600081359050612bd781612bb1565b92915050565b600060208284031215612bf357612bf2612a57565b5b6000612c0184828501612bc8565b91505092915050565b60008060408385031215612c2157612c20612a57565b5b6000612c2f85828601612aaa565b9250506020612c4085828601612bc8565b9150509250929050565b60008115159050919050565b612c5f81612c4a565b82525050565b6000602082019050612c7a6000830184612c56565b92915050565b612c8981612ba7565b82525050565b6000602082019050612ca46000830184612c80565b92915050565b600080600060608486031215612cc357612cc2612a57565b5b6000612cd186828701612aaa565b9350506020612ce286828701612aaa565b9250506040612cf386828701612bc8565b9150509250925092565b600060ff82169050919050565b612d1381612cfd565b82525050565b6000602082019050612d2e6000830184612d0a565b92915050565b60008060408385031215612d4b57612d4a612a57565b5b6000612d5985828601612bc8565b9250506020612d6a85828601612bc8565b9150509250929050565b612d7d81612a81565b82525050565b6000602082019050612d986000830184612d74565b92915050565b612da781612c4a565b8114612db257600080fd5b50565b600081359050612dc481612d9e565b92915050565b60008060408385031215612de157612de0612a57565b5b6000612def85828601612aaa565b9250506020612e0085828601612db5565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112612e2f57612e2e612e0a565b5b8235905067ffffffffffffffff811115612e4c57612e4b612e0f565b5b602083019150836020820283011115612e6857612e67612e14565b5b9250929050565b600080600060408486031215612e8857612e87612a57565b5b600084013567ffffffffffffffff811115612ea657612ea5612a5c565b5b612eb286828701612e19565b93509350506020612ec586828701612db5565b9150509250925092565b60008060408385031215612ee657612ee5612a57565b5b6000612ef485828601612aaa565b9250506020612f0585828601612aaa565b9150509250929050565b600060208284031215612f2557612f24612a57565b5b6000612f3384828501612db5565b91505092915050565b6000819050919050565b6000612f61612f5c612f5784612a61565b612f3c565b612a61565b9050919050565b6000612f7382612f46565b9050919050565b6000612f8582612f68565b9050919050565b612f9581612f7a565b82525050565b6000602082019050612fb06000830184612f8c565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ffd57607f821691505b6020821081036130105761300f612fb6565b5b50919050565b7f466565206d757374206265203c3d203230250000000000000000000000000000600082015250565b600061304c601283612af7565b915061305782613016565b602082019050919050565b6000602082019050818103600083015261307b8161303f565b9050919050565b7f54726164696e6720616c726561647920656e61626c6564000000000000000000600082015250565b60006130b8601783612af7565b91506130c382613082565b602082019050919050565b600060208201905081810360008301526130e7816130ab565b9050919050565b600081905092915050565b50565b60006131096000836130ee565b9150613114826130f9565b600082019050919050565b600061312a826130fc565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f206465762077616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b6000613190602283612af7565b915061319b82613134565b604082019050919050565b600060208201905081810360008301526131bf81613183565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061320082612ba7565b915061320b83612ba7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132405761323f6131c6565b5b828201905092915050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b6000613281602083612af7565b915061328c8261324b565b602082019050919050565b600060208201905081810360008301526132b081613274565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b6000613313602383612af7565b915061331e826132b7565b604082019050919050565b6000602082019050818103600083015261334281613306565b9050919050565b600061335482612ba7565b915061335f83612ba7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613398576133976131c6565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006133ff602583612af7565b915061340a826133a3565b604082019050919050565b6000602082019050818103600083015261342e816133f2565b9050919050565b7f43616e6e6f74207365742073776170746f6b656e73206869676865722074686560008201527f6e207468616e2031302520000000000000000000000000000000000000000000602082015250565b6000613491602b83612af7565b915061349c82613435565b604082019050919050565b600060208201905081810360008301526134c081613484565b9050919050565b7f204163636f756e7420697320616c7265616479207468652076616c7565206f6660008201527f20276578636c7564656427000000000000000000000000000000000000000000602082015250565b6000613523602b83612af7565b915061352e826134c7565b604082019050919050565b6000602082019050818103600083015261355281613516565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b60006135b5602283612af7565b91506135c082613559565b604082019050919050565b600060208201905081810360008301526135e4816135a8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061362582612ba7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613657576136566131c6565b5b600182019050919050565b600082825260208201905092915050565b6000819050919050565b61368681612a81565b82525050565b6000613698838361367d565b60208301905092915050565b60006136b36020840184612aaa565b905092915050565b6000602082019050919050565b60006136d48385613662565b93506136df82613673565b8060005b85811015613718576136f582846136a4565b6136ff888261368c565b975061370a836136bb565b9250506001810190506136e3565b5085925050509392505050565b600060408201905081810360008301526137408185876136c8565b905061374f6020830184612c56565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137b3602683612af7565b91506137be82613757565b604082019050919050565b600060208201905081810360008301526137e2816137a6565b9050919050565b6000815190506137f881612bb1565b92915050565b60006020828403121561381457613813612a57565b5b6000613822848285016137e9565b91505092915050565b60006040820190506138406000830185612d74565b61384d6020830184612c80565b9392505050565b60008151905061386381612d9e565b92915050565b60006020828403121561387f5761387e612a57565b5b600061388d84828501613854565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138cc602083612af7565b91506138d782613896565b602082019050919050565b600060208201905081810360008301526138fb816138bf565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061395e602483612af7565b915061396982613902565b604082019050919050565b6000602082019050818103600083015261398d81613951565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006139f0602283612af7565b91506139fb82613994565b604082019050919050565b60006020820190508181036000830152613a1f816139e3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613a5c601d83612af7565b9150613a6782613a26565b602082019050919050565b60006020820190508181036000830152613a8b81613a4f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613aee602583612af7565b9150613af982613a92565b604082019050919050565b60006020820190508181036000830152613b1d81613ae1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613b80602383612af7565b9150613b8b82613b24565b604082019050919050565b60006020820190508181036000830152613baf81613b73565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b6000613bec601283612af7565b9150613bf782613bb6565b602082019050919050565b60006020820190508181036000830152613c1b81613bdf565b9050919050565b7f596f752061726520657863656564696e67206d617853656c6c416d6f756e7400600082015250565b6000613c58601f83612af7565b9150613c6382613c22565b602082019050919050565b60006020820190508181036000830152613c8781613c4b565b9050919050565b7f596f752061726520657863656564696e67206d6178427579416d6f756e740000600082015250565b6000613cc4601e83612af7565b9150613ccf82613c8e565b602082019050919050565b60006020820190508181036000830152613cf381613cb7565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b6000613d30601b83612af7565b9150613d3b82613cfa565b602082019050919050565b60006020820190508181036000830152613d5f81613d23565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613da082612ba7565b9150613dab83612ba7565b925082613dbb57613dba613d66565b5b828204905092915050565b6000613dd182612ba7565b9150613ddc83612ba7565b925082821015613def57613dee6131c6565b5b828203905092915050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b6000613e56603883612af7565b9150613e6182613dfa565b604082019050919050565b60006020820190508181036000830152613e8581613e49565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613ee8602683612af7565b9150613ef382613e8c565b604082019050919050565b60006020820190508181036000830152613f1781613edb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050613f5c81612a93565b92915050565b600060208284031215613f7857613f77612a57565b5b6000613f8684828501613f4d565b91505092915050565b6000819050919050565b6000613fb4613faf613faa84613f8f565b612f3c565b612ba7565b9050919050565b613fc481613f99565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b6000613ffd82613fca565b6140078185613662565b935061401283613fd5565b8060005b8381101561404357815161402a888261368c565b975061403583613fe5565b925050600181019050614016565b5085935050505092915050565b600060a0820190506140656000830188612c80565b6140726020830187613fbb565b81810360408301526140848186613ff2565b90506140936060830185612d74565b6140a06080830184612c80565b969550505050505056fea26469706673582212205af02973630b14262a6c88ae6b3e79de0df67f6ef7097417bfe45d56f5ef210d64736f6c634300080f0033000000000000000000000000717b9e7a01a6130a7c50fecac63789c97e3ab905

Deployed Bytecode

0x60806040526004361061026b5760003560e01c80638ea5220f11610144578063c492f046116100b6578063e2f456051161007a578063e2f4560514610927578063f2fde38b14610952578063f42615021461097b578063f66895a3146109a4578063f887ea40146109cf578063f8b45b05146109fa57610272565b8063c492f04614610846578063c851cc321461086f578063d2fcc00114610898578063dd62ed3e146108c1578063e01af92c146108fe57610272565b8063a8aa1b3111610108578063a8aa1b3114610726578063a9059cbb14610751578063afa4f3b21461078e578063b62496f5146107b7578063c0246668146107f4578063c18bc1951461081d57610272565b80638ea5220f1461064157806395d89b411461066c5780639a7a23d614610697578063a3ca847d146106c0578063a457c2d7146106e957610272565b806346469afb116101dd57806370a08231116101a157806370a0823114610543578063715018a61461058057806379b447bd14610597578063864701a5146105c057806388e765ff146105eb5780638da5cb5b1461061657610272565b806346469afb1461045a5780634ada218b146104855780634fbee193146104b057806366d602ae146104ed5780636ddd17131461051857610272565b806312b77e8a1161022f57806312b77e8a1461034857806318160ddd1461035f5780631bff78981461038a57806323b872dd146103b5578063313ce567146103f2578063395093511461041d57610272565b806301ca92411461027757806306fdde03146102a05780630940bbc7146102cb578063095ea7b3146102f45780630bd05b691461033157610272565b3661027257005b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190612abf565b610a25565b005b3480156102ac57600080fd5b506102b5610a71565b6040516102c29190612b85565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612bdd565b610b03565b005b34801561030057600080fd5b5061031b60048036038101906103169190612c0a565b610b77565b6040516103289190612c65565b60405180910390f35b34801561033d57600080fd5b50610346610b9a565b005b34801561035457600080fd5b5061035d610c0f565b005b34801561036b57600080fd5b50610374610ce8565b6040516103819190612c8f565b60405180910390f35b34801561039657600080fd5b5061039f610cf2565b6040516103ac9190612c8f565b60405180910390f35b3480156103c157600080fd5b506103dc60048036038101906103d79190612caa565b610cf8565b6040516103e99190612c65565b60405180910390f35b3480156103fe57600080fd5b50610407610d27565b6040516104149190612d19565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190612c0a565b610d30565b6040516104519190612c65565b60405180910390f35b34801561046657600080fd5b5061046f610d67565b60405161047c9190612c8f565b60405180910390f35b34801561049157600080fd5b5061049a610d6d565b6040516104a79190612c65565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d29190612abf565b610d80565b6040516104e49190612c65565b60405180910390f35b3480156104f957600080fd5b50610502610dd6565b60405161050f9190612c8f565b60405180910390f35b34801561052457600080fd5b5061052d610ddc565b60405161053a9190612c65565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190612abf565b610def565b6040516105779190612c8f565b60405180910390f35b34801561058c57600080fd5b50610595610e37565b005b3480156105a357600080fd5b506105be60048036038101906105b99190612d34565b610e4b565b005b3480156105cc57600080fd5b506105d5610f16565b6040516105e29190612c8f565b60405180910390f35b3480156105f757600080fd5b50610600610f22565b60405161060d9190612c8f565b60405180910390f35b34801561062257600080fd5b5061062b610f28565b6040516106389190612d83565b60405180910390f35b34801561064d57600080fd5b50610656610f52565b6040516106639190612d83565b60405180910390f35b34801561067857600080fd5b50610681610f78565b60405161068e9190612b85565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190612dca565b61100a565b005b3480156106cc57600080fd5b506106e760048036038101906106e29190612bdd565b611020565b005b3480156106f557600080fd5b50610710600480360381019061070b9190612c0a565b611094565b60405161071d9190612c65565b60405180910390f35b34801561073257600080fd5b5061073b61110b565b6040516107489190612d83565b60405180910390f35b34801561075d57600080fd5b5061077860048036038101906107739190612c0a565b611131565b6040516107859190612c65565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190612bdd565b611154565b005b3480156107c357600080fd5b506107de60048036038101906107d99190612abf565b6111be565b6040516107eb9190612c65565b60405180910390f35b34801561080057600080fd5b5061081b60048036038101906108169190612dca565b6111de565b005b34801561082957600080fd5b50610844600480360381019061083f9190612bdd565b611321565b005b34801561085257600080fd5b5061086d60048036038101906108689190612e6f565b61138b565b005b34801561087b57600080fd5b5061089660048036038101906108919190612abf565b611473565b005b3480156108a457600080fd5b506108bf60048036038101906108ba9190612dca565b6114bf565b005b3480156108cd57600080fd5b506108e860048036038101906108e39190612ecf565b611522565b6040516108f59190612c8f565b60405180910390f35b34801561090a57600080fd5b5061092560048036038101906109209190612f0f565b6115a9565b005b34801561093357600080fd5b5061093c6115ce565b6040516109499190612c8f565b60405180910390f35b34801561095e57600080fd5b5061097960048036038101906109749190612abf565b6115d4565b005b34801561098757600080fd5b506109a2600480360381019061099d9190612abf565b611657565b005b3480156109b057600080fd5b506109b9611761565b6040516109c69190612c8f565b60405180910390f35b3480156109db57600080fd5b506109e461176d565b6040516109f19190612f9b565b60405180910390f35b348015610a0657600080fd5b50610a0f611793565b604051610a1c9190612c8f565b60405180910390f35b610a2d611799565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060038054610a8090612fe5565b80601f0160208091040260200160405190810160405280929190818152602001828054610aac90612fe5565b8015610af95780601f10610ace57610100808354040283529160200191610af9565b820191906000526020600020905b815481529060010190602001808311610adc57829003601f168201915b5050505050905090565b610b0b611799565b6014811115610b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4690613062565b60405180910390fd5b6040518060200160405280828152506012600082015181600001559050508060148190555050565b600080610b82611817565b9050610b8f81858561181f565b600191505092915050565b610ba2611799565b601060029054906101000a900460ff1615610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be9906130ce565b60405180910390fd5b6001601060026101000a81548160ff021916908315150217905550565b610c17611799565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610c5f9061311f565b60006040518083038185875af1925050503d8060008114610c9c576040519150601f19603f3d011682016040523d82523d6000602084013e610ca1565b606091505b5050905080610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc906131a6565b60405180910390fd5b50565b6000600254905090565b60145481565b600080610d03611817565b9050610d108582856119e8565b610d1b858585611a74565b60019150509392505050565b60006012905090565b600080610d3b611817565b9050610d5c818585610d4d8589611522565b610d5791906131f5565b61181f565b600191505092915050565b60135481565b601060029054906101000a900460ff1681565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600b5481565b601060019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e3f611799565b610e496000612281565b565b610e53611799565b620f4240821015610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090613297565b60405180910390fd5b61c350811015610ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed590613329565b60405180910390fd5b670de0b6b3a764000082610ef29190613349565b600a81905550670de0b6b3a764000081610f0c9190613349565b600b819055505050565b60118060000154905081565b600a5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610f8790612fe5565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb390612fe5565b80156110005780601f10610fd557610100808354040283529160200191611000565b820191906000526020600020905b815481529060010190602001808311610fe357829003601f168201915b5050505050905090565b611012611799565b61101c8282612347565b5050565b611028611799565b601481111561106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390613062565b60405180910390fd5b6040518060200160405280828152506011600082015181600001559050508060138190555050565b60008061109f611817565b905060006110ad8286611522565b9050838110156110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990613415565b60405180910390fd5b6110ff828686840361181f565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061113c611817565b9050611149818585611a74565b600191505092915050565b61115c611799565b6298968081106111a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611198906134a7565b60405180910390fd5b670de0b6b3a7640000816111b59190613349565b60098190555050565b600f6020528060005260406000206000915054906101000a900460ff1681565b6111e6611799565b801515600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90613539565b60405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516113159190612c65565b60405180910390a25050565b611329611799565b620f4240811161136e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611365906135cb565b60405180910390fd5b670de0b6b3a7640000816113829190613349565b600c8190555050565b611393611799565b60005b838390508110156114325781600d60008686858181106113b9576113b86135eb565b5b90506020020160208101906113ce9190612abf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061142a9061361a565b915050611396565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b3583838360405161146693929190613725565b60405180910390a1505050565b61147b611799565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6114c7611799565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6115b1611799565b80601060016101000a81548160ff02191690831515021790555050565b60095481565b6115dc611799565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361164b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611642906137c9565b60405180910390fd5b61165481612281565b50565b61165f611799565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb611683610f28565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016116bc9190612d83565b602060405180830381865afa1580156116d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116fd91906137fe565b6040518363ffffffff1660e01b815260040161171a92919061382b565b6020604051808303816000875af1158015611739573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175d9190613869565b5050565b60128060000154905081565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6117a1611817565b73ffffffffffffffffffffffffffffffffffffffff166117bf610f28565b73ffffffffffffffffffffffffffffffffffffffff1614611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c906138e2565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590613974565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f490613a06565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119db9190612c8f565b60405180910390a3505050565b60006119f48484611522565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a6e5781811015611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5790613a72565b60405180910390fd5b611a6d848484840361181f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ada90613b04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4990613b96565b60405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611bf65750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611c0f5750601060009054906101000a900460ff16155b15611e4357601060029054906101000a900460ff16611c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5a90613c02565b60405180910390fd5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cff57600b54811115611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf190613c6e565b60405180910390fd5b611d98565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d9757600a54811115611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d90613cda565b60405180910390fd5b5b5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e4257600c54611df583610def565b82611e0091906131f5565b1115611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3890613d46565b60405180910390fd5b5b5b60008103611e5c57611e578383600061247a565b61227c565b6000611e6730610def565b905060006009548210159050808015611e8d5750601060009054906101000a900460ff16155b8015611ea55750601060019054906101000a900460ff165b8015611efa5750600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015611f505750600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611fa65750600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611ff9576001601060006101000a81548160ff02191690831515021790555060006014541115611fdd57611fdc6009546126f0565b5b6000601060006101000a81548160ff0219169083151502179055505b6000601060009054906101000a900460ff16159050600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120af5750600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156120b957600090505b600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561215d5750600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561216757600090505b801561226d576000600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156121e2576064601454866121d19190613349565b6121db9190613d95565b9050612252565b600f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612251576064601354866122449190613349565b61224e9190613d95565b90505b5b808561225e9190613dc6565b945061226b87308361247a565b505b61227886868661247a565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036123d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d090613e6c565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e090613b04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254f90613b96565b60405180910390fd5b61256383838361280a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156125e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e090613efe565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126d79190612c8f565b60405180910390a36126ea84848461280f565b50505050565b60008190506000601454905061270582612814565b60004790506000826012600001548361271e9190613349565b6127289190613d95565b90506000811115612803576000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161277b9061311f565b60006040518083038185875af1925050503d80600081146127b8576040519150601f19603f3d011682016040523d82523d6000602084013e6127bd565b606091505b5050905080612801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f8906131a6565b60405180910390fd5b505b5050505050565b505050565b505050565b6000600267ffffffffffffffff81111561283157612830613f1e565b5b60405190808252806020026020018201604052801561285f5781602001602082028036833780820191505090505b5090503081600081518110612877576128766135eb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561291e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129429190613f62565b81600181518110612956576129556135eb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506129bd30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461181f565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612a21959493929190614050565b600060405180830381600087803b158015612a3b57600080fd5b505af1158015612a4f573d6000803e3d6000fd5b505050505050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a8c82612a61565b9050919050565b612a9c81612a81565b8114612aa757600080fd5b50565b600081359050612ab981612a93565b92915050565b600060208284031215612ad557612ad4612a57565b5b6000612ae384828501612aaa565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b26578082015181840152602081019050612b0b565b83811115612b35576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b5782612aec565b612b618185612af7565b9350612b71818560208601612b08565b612b7a81612b3b565b840191505092915050565b60006020820190508181036000830152612b9f8184612b4c565b905092915050565b6000819050919050565b612bba81612ba7565b8114612bc557600080fd5b50565b600081359050612bd781612bb1565b92915050565b600060208284031215612bf357612bf2612a57565b5b6000612c0184828501612bc8565b91505092915050565b60008060408385031215612c2157612c20612a57565b5b6000612c2f85828601612aaa565b9250506020612c4085828601612bc8565b9150509250929050565b60008115159050919050565b612c5f81612c4a565b82525050565b6000602082019050612c7a6000830184612c56565b92915050565b612c8981612ba7565b82525050565b6000602082019050612ca46000830184612c80565b92915050565b600080600060608486031215612cc357612cc2612a57565b5b6000612cd186828701612aaa565b9350506020612ce286828701612aaa565b9250506040612cf386828701612bc8565b9150509250925092565b600060ff82169050919050565b612d1381612cfd565b82525050565b6000602082019050612d2e6000830184612d0a565b92915050565b60008060408385031215612d4b57612d4a612a57565b5b6000612d5985828601612bc8565b9250506020612d6a85828601612bc8565b9150509250929050565b612d7d81612a81565b82525050565b6000602082019050612d986000830184612d74565b92915050565b612da781612c4a565b8114612db257600080fd5b50565b600081359050612dc481612d9e565b92915050565b60008060408385031215612de157612de0612a57565b5b6000612def85828601612aaa565b9250506020612e0085828601612db5565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112612e2f57612e2e612e0a565b5b8235905067ffffffffffffffff811115612e4c57612e4b612e0f565b5b602083019150836020820283011115612e6857612e67612e14565b5b9250929050565b600080600060408486031215612e8857612e87612a57565b5b600084013567ffffffffffffffff811115612ea657612ea5612a5c565b5b612eb286828701612e19565b93509350506020612ec586828701612db5565b9150509250925092565b60008060408385031215612ee657612ee5612a57565b5b6000612ef485828601612aaa565b9250506020612f0585828601612aaa565b9150509250929050565b600060208284031215612f2557612f24612a57565b5b6000612f3384828501612db5565b91505092915050565b6000819050919050565b6000612f61612f5c612f5784612a61565b612f3c565b612a61565b9050919050565b6000612f7382612f46565b9050919050565b6000612f8582612f68565b9050919050565b612f9581612f7a565b82525050565b6000602082019050612fb06000830184612f8c565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ffd57607f821691505b6020821081036130105761300f612fb6565b5b50919050565b7f466565206d757374206265203c3d203230250000000000000000000000000000600082015250565b600061304c601283612af7565b915061305782613016565b602082019050919050565b6000602082019050818103600083015261307b8161303f565b9050919050565b7f54726164696e6720616c726561647920656e61626c6564000000000000000000600082015250565b60006130b8601783612af7565b91506130c382613082565b602082019050919050565b600060208201905081810360008301526130e7816130ab565b9050919050565b600081905092915050565b50565b60006131096000836130ee565b9150613114826130f9565b600082019050919050565b600061312a826130fc565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f206465762077616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b6000613190602283612af7565b915061319b82613134565b604082019050919050565b600060208201905081810360008301526131bf81613183565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061320082612ba7565b915061320b83612ba7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132405761323f6131c6565b5b828201905092915050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b6000613281602083612af7565b915061328c8261324b565b602082019050919050565b600060208201905081810360008301526132b081613274565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b6000613313602383612af7565b915061331e826132b7565b604082019050919050565b6000602082019050818103600083015261334281613306565b9050919050565b600061335482612ba7565b915061335f83612ba7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613398576133976131c6565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006133ff602583612af7565b915061340a826133a3565b604082019050919050565b6000602082019050818103600083015261342e816133f2565b9050919050565b7f43616e6e6f74207365742073776170746f6b656e73206869676865722074686560008201527f6e207468616e2031302520000000000000000000000000000000000000000000602082015250565b6000613491602b83612af7565b915061349c82613435565b604082019050919050565b600060208201905081810360008301526134c081613484565b9050919050565b7f204163636f756e7420697320616c7265616479207468652076616c7565206f6660008201527f20276578636c7564656427000000000000000000000000000000000000000000602082015250565b6000613523602b83612af7565b915061352e826134c7565b604082019050919050565b6000602082019050818103600083015261355281613516565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b60006135b5602283612af7565b91506135c082613559565b604082019050919050565b600060208201905081810360008301526135e4816135a8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061362582612ba7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613657576136566131c6565b5b600182019050919050565b600082825260208201905092915050565b6000819050919050565b61368681612a81565b82525050565b6000613698838361367d565b60208301905092915050565b60006136b36020840184612aaa565b905092915050565b6000602082019050919050565b60006136d48385613662565b93506136df82613673565b8060005b85811015613718576136f582846136a4565b6136ff888261368c565b975061370a836136bb565b9250506001810190506136e3565b5085925050509392505050565b600060408201905081810360008301526137408185876136c8565b905061374f6020830184612c56565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137b3602683612af7565b91506137be82613757565b604082019050919050565b600060208201905081810360008301526137e2816137a6565b9050919050565b6000815190506137f881612bb1565b92915050565b60006020828403121561381457613813612a57565b5b6000613822848285016137e9565b91505092915050565b60006040820190506138406000830185612d74565b61384d6020830184612c80565b9392505050565b60008151905061386381612d9e565b92915050565b60006020828403121561387f5761387e612a57565b5b600061388d84828501613854565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138cc602083612af7565b91506138d782613896565b602082019050919050565b600060208201905081810360008301526138fb816138bf565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061395e602483612af7565b915061396982613902565b604082019050919050565b6000602082019050818103600083015261398d81613951565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006139f0602283612af7565b91506139fb82613994565b604082019050919050565b60006020820190508181036000830152613a1f816139e3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613a5c601d83612af7565b9150613a6782613a26565b602082019050919050565b60006020820190508181036000830152613a8b81613a4f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613aee602583612af7565b9150613af982613a92565b604082019050919050565b60006020820190508181036000830152613b1d81613ae1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613b80602383612af7565b9150613b8b82613b24565b604082019050919050565b60006020820190508181036000830152613baf81613b73565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b6000613bec601283612af7565b9150613bf782613bb6565b602082019050919050565b60006020820190508181036000830152613c1b81613bdf565b9050919050565b7f596f752061726520657863656564696e67206d617853656c6c416d6f756e7400600082015250565b6000613c58601f83612af7565b9150613c6382613c22565b602082019050919050565b60006020820190508181036000830152613c8781613c4b565b9050919050565b7f596f752061726520657863656564696e67206d6178427579416d6f756e740000600082015250565b6000613cc4601e83612af7565b9150613ccf82613c8e565b602082019050919050565b60006020820190508181036000830152613cf381613cb7565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b6000613d30601b83612af7565b9150613d3b82613cfa565b602082019050919050565b60006020820190508181036000830152613d5f81613d23565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613da082612ba7565b9150613dab83612ba7565b925082613dbb57613dba613d66565b5b828204905092915050565b6000613dd182612ba7565b9150613ddc83612ba7565b925082821015613def57613dee6131c6565b5b828203905092915050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b6000613e56603883612af7565b9150613e6182613dfa565b604082019050919050565b60006020820190508181036000830152613e8581613e49565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613ee8602683612af7565b9150613ef382613e8c565b604082019050919050565b60006020820190508181036000830152613f1781613edb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050613f5c81612a93565b92915050565b600060208284031215613f7857613f77612a57565b5b6000613f8684828501613f4d565b91505092915050565b6000819050919050565b6000613fb4613faf613faa84613f8f565b612f3c565b612ba7565b9050919050565b613fc481613f99565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b6000613ffd82613fca565b6140078185613662565b935061401283613fd5565b8060005b8381101561404357815161402a888261368c565b975061403583613fe5565b925050600181019050614016565b5085935050505092915050565b600060a0820190506140656000830188612c80565b6140726020830187613fbb565b81810360408301526140848186613ff2565b90506140936060830185612d74565b6140a06080830184612c80565b969550505050505056fea26469706673582212205af02973630b14262a6c88ae6b3e79de0df67f6ef7097417bfe45d56f5ef210d64736f6c634300080f0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000717b9e7a01a6130a7c50fecac63789c97e3ab905

-----Decoded View---------------
Arg [0] : _dev (address): 0x717b9E7a01A6130A7c50FEcaC63789c97e3AB905

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000717b9e7a01a6130a7c50fecac63789c97e3ab905


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.