ETH Price: $2,478.23 (+1.61%)

Token

World Of Wojak (WOW)
 

Overview

Max Total Supply

1,000,000,000 WOW

Holders

40

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.808461143035204277 WOW

Value
$0.00
0x5180aECB90876e27b0a7406f5cB2A8fB8E19D14C
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x089feb44...544677D83
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
WorldOfWojak

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

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

/*
"I know that feel, bro"


TG: https://t.me/WorldofWojack

TW: https://twitter.com/worldofWojack

WEB: https://www.worldofwojak.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 WorldOfWojak is ERC20, Ownable {


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

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

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

    IUniswapRouter public router;
    address public pair;

    struct Taxes {
        uint256 dev;
    }

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


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

    constructor(address _developmentwallet) ERC20("World Of Wojak", "WOW") {

        setSwapTokensAtAmount(5000000);
        updateMaxWalletAmount(20000000);
        setDevWallet(_developmentwallet);
        setMaxBuyAndSell(20000000, 20000000);
        IUniswapRouter _router = IUniswapRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        address _pair = IUniswapFactory(_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(), 1000000000 * (10**18));
    }

    receive() external payable {}

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(
            _isExcludedFromFees[account] != excluded,
            " Account is already'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 setDevWallet(address wallet) public onlyOwner {
        devWallet = wallet;
    }

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

    function setMaxBuyAndSell(uint256 maxbuy, uint256 maxsell)
        public
        onlyOwner
    {
        require(maxbuy >= 10000000, "Cannot set maxbuy lower than 1% ");
        require(maxsell >= 5000000, "Cannot set maxsell lower than 0.5% ");
        maxBuyAmount = maxbuy * 10**18;
        maxSellAmount = maxsell * 10**18;
    }


    /// @notice Update the threshold to swap tokens for liquidity,
    ///   treasury and dividends.
    function setSwapTokensAtAmount(uint256 amount) public onlyOwner {
        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;
    }

    /// @notice Withdraw tokens sent by mistake.
    /// @param tokenAddress The address of the token to withdraw
    function GetEthTokens(address tokenAddress) external onlyOwner {
        IERC20(tokenAddress).transfer(
            owner(),
            IERC20(tokenAddress).balanceOf(address(this))
        );
    }

    /// @notice Send remaining ETH to treasuryWallet
    /// @dev It will send all ETH to treasuryWallet
    function forceSendToDev() external onlyOwner {
        (bool success, ) = payable(devWallet).call{
            value: address(this).balance
        }("");
        require(success);
    }

    function setBuyTax(uint256 dev) external onlyOwner {
        require(dev <= 20, "Fee must be less then 25%");
        buyTaxes = Taxes(dev);
        totalBuyTax = dev;
    }

    function setSellTax(uint256 dev) external onlyOwner {
        require(dev <= 20, "Fee must be less then 20%");
        sellTaxes = Taxes( dev);
        totalSellTax = dev;
    }

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

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

    function Burn(uint256 amount) public {
        address sender = msg.sender;
        require(
            balanceOf(sender) >= amount,
            "ERC20: Burn Amount exceeds account balance"
        );
        require(sender != address(0), "ERC20: Invalid sender address");
        require(amount > 0, "ERC20: Enter some amount to burn");
        _burn(sender, amount);
    }


    /// @dev Set new pairs created due to listing in new DEX
    function setAutomatedMarketMakerPair(address newPair, bool value)
        external
        onlyOwner
    {
        _setAutomatedMarketMakerPair(newPair, value);
    }

    function _setAutomatedMarketMakerPair(address newPair, bool value) private {
        require(
            automatedMarketMakerPairs[newPair] != 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) {
                swapforFees(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 swapforFees(uint256 tokens) private {
        uint256 toSwap = tokens;

        swapTokensForETH(toSwap);

        uint256 contractrewardbalance = address(this).balance;

        uint256 devAmt = (contractrewardbalance * sellTaxes.dev) / totalSellTax;
        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);
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, 
            path,
            address(this),
            block.timestamp
        );
    }
}

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

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);
}

interface IUniswapRouter {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 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":"_developmentwallet","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"GetEthTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"forceSendToDev","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 IUniswapRouter","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":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setDevWallet","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":"setSellTax","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"},{"stateMutability":"payable","type":"receive"}]

60806040526001600b60016101000a81548160ff021916908315150217905550604051806020016040528060028152506011600082015181600001555050604051806020016040528060028152506012600082015181600001555050600260135560026014553480156200007257600080fd5b506040516200597a3803806200597a833981810160405281019062000098919062000c50565b6040518060400160405280600e81526020017f576f726c64204f6620576f6a616b0000000000000000000000000000000000008152506040518060400160405280600381526020017f574f570000000000000000000000000000000000000000000000000000000000815250816003908162000115919062000efc565b50806004908162000127919062000efc565b5050506200014a6200013e6200045560201b60201c565b6200045d60201b60201c565b6200015e624c4b406200052360201b60201c565b620001736301312d006200055260201b60201c565b6200018481620005c960201b60201c565b6200019a6301312d00806200061d60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000201573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000227919062000c50565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200028f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b5919062000c50565b6040518363ffffffff1660e01b8152600401620002d492919062000ff4565b6020604051808303816000875af1158015620002f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200031a919062000c50565b905081600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003c0620003b2620006fb60201b60201c565b60016200072560201b60201c565b620003d33060016200072560201b60201c565b620003e68160016200087560201b60201c565b620003f93060016200087560201b60201c565b6200040c8260016200087560201b60201c565b6200041f816001620008e060201b60201c565b6200044c62000433620006fb60201b60201c565b6b033b2e3c9fd0803ce8000000620009de60201b60201c565b5050506200147f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200053362000b4b60201b60201c565b670de0b6b3a76400008162000549919062001050565b60078190555050565b6200056262000b4b60201b60201c565b629896808111620005aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005a19062001138565b60405180910390fd5b670de0b6b3a764000081620005c0919062001050565b600a8190555050565b620005d962000b4b60201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6200062d62000b4b60201b60201c565b6298968082101562000676576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200066d90620011aa565b60405180910390fd5b624c4b40811015620006bf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006b69062001242565b60405180910390fd5b670de0b6b3a764000082620006d5919062001050565b600881905550670de0b6b3a764000081620006f1919062001050565b6009819055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200073562000b4b60201b60201c565b801515600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503620007ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007c190620012b4565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008699190620012f3565b60405180910390a25050565b6200088562000b4b60201b60201c565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b801515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036200093d57600080fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a479062001360565b60405180910390fd5b62000a646000838362000bdc60201b60201c565b806002600082825462000a78919062001382565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b2b9190620013f0565b60405180910390a362000b476000838362000be160201b60201c565b5050565b62000b5b6200045560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000b81620006fb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000bda576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bd1906200145d565b60405180910390fd5b565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c188262000beb565b9050919050565b62000c2a8162000c0b565b811462000c3657600080fd5b50565b60008151905062000c4a8162000c1f565b92915050565b60006020828403121562000c695762000c6862000be6565b5b600062000c798482850162000c39565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d0457607f821691505b60208210810362000d1a5762000d1962000cbc565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000d847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d45565b62000d90868362000d45565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000ddd62000dd762000dd18462000da8565b62000db2565b62000da8565b9050919050565b6000819050919050565b62000df98362000dbc565b62000e1162000e088262000de4565b84845462000d52565b825550505050565b600090565b62000e2862000e19565b62000e3581848462000dee565b505050565b5b8181101562000e5d5762000e5160008262000e1e565b60018101905062000e3b565b5050565b601f82111562000eac5762000e768162000d20565b62000e818462000d35565b8101602085101562000e91578190505b62000ea962000ea08562000d35565b83018262000e3a565b50505b505050565b600082821c905092915050565b600062000ed16000198460080262000eb1565b1980831691505092915050565b600062000eec838362000ebe565b9150826002028217905092915050565b62000f078262000c82565b67ffffffffffffffff81111562000f235762000f2262000c8d565b5b62000f2f825462000ceb565b62000f3c82828562000e61565b600060209050601f83116001811462000f74576000841562000f5f578287015190505b62000f6b858262000ede565b86555062000fdb565b601f19841662000f848662000d20565b60005b8281101562000fae5784890151825560018201915060208501945060208101905062000f87565b8683101562000fce578489015162000fca601f89168262000ebe565b8355505b6001600288020188555050505b505050505050565b62000fee8162000c0b565b82525050565b60006040820190506200100b600083018562000fe3565b6200101a602083018462000fe3565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200105d8262000da8565b91506200106a8362000da8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620010a657620010a562001021565b5b828202905092915050565b600082825260208201905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b600062001120602283620010b1565b91506200112d82620010c2565b604082019050919050565b60006020820190508181036000830152620011538162001111565b9050919050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b600062001192602083620010b1565b91506200119f826200115a565b602082019050919050565b60006020820190508181036000830152620011c58162001183565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b60006200122a602383620010b1565b91506200123782620011cc565b604082019050919050565b600060208201905081810360008301526200125d816200121b565b9050919050565b7f204163636f756e7420697320616c7265616479276578636c7564656427000000600082015250565b60006200129c601d83620010b1565b9150620012a98262001264565b602082019050919050565b60006020820190508181036000830152620012cf816200128d565b9050919050565b60008115159050919050565b620012ed81620012d6565b82525050565b60006020820190506200130a6000830184620012e2565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001348601f83620010b1565b9150620013558262001310565b602082019050919050565b600060208201905081810360008301526200137b8162001339565b9050919050565b60006200138f8262000da8565b91506200139c8362000da8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620013d457620013d362001021565b5b828201905092915050565b620013ea8162000da8565b82525050565b6000602082019050620014076000830184620013df565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001445602083620010b1565b915062001452826200140d565b602082019050919050565b60006020820190508181036000830152620014788162001436565b9050919050565b6144eb806200148f6000396000f3fe6080604052600436106102765760003560e01c80638ea5220f1161014f578063c492f046116100c1578063e01af92c1161007a578063e01af92c1461095b578063e2f4560514610984578063f2fde38b146109af578063f66895a3146109d8578063f887ea4014610a03578063f8b45b0514610a2e5761027d565b8063c492f04614610851578063c851cc321461087a578063d191e101146108a3578063d2fcc001146108cc578063dc1052e2146108f5578063dd62ed3e1461091e5761027d565b8063a9059cbb11610113578063a9059cbb14610733578063afa4f3b214610770578063b62496f514610799578063b90306ad146107d6578063c0246668146107ff578063c18bc195146108285761027d565b80638ea5220f1461064c57806395d89b41146106775780639a7a23d6146106a2578063a457c2d7146106cb578063a8aa1b31146107085761027d565b80634ada218b116101e8578063715018a6116101ac578063715018a61461056257806379b447bd14610579578063864701a5146105a257806388e765ff146105cd5780638cd09d50146105f85780638da5cb5b146106215761027d565b80634ada218b146104675780634fbee1931461049257806366d602ae146104cf5780636ddd1713146104fa57806370a08231146105255761027d565b80631bff78981161023a5780631bff7898146103435780631f53ac021461036e57806323b872dd14610397578063313ce567146103d457806339509351146103ff57806346469afb1461043c5761027d565b806305df49111461028257806306fdde0314610299578063095ea7b3146102c45780630bd05b691461030157806318160ddd146103185761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610a59565b005b3480156102a557600080fd5b506102ae610afc565b6040516102bb9190612d4b565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612e0b565b610b8e565b6040516102f89190612e66565b60405180910390f35b34801561030d57600080fd5b50610316610bb1565b005b34801561032457600080fd5b5061032d610c26565b60405161033a9190612e90565b60405180910390f35b34801561034f57600080fd5b50610358610c30565b6040516103659190612e90565b60405180910390f35b34801561037a57600080fd5b5061039560048036038101906103909190612eab565b610c36565b005b3480156103a357600080fd5b506103be60048036038101906103b99190612ed8565b610c82565b6040516103cb9190612e66565b60405180910390f35b3480156103e057600080fd5b506103e9610cb1565b6040516103f69190612f47565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190612e0b565b610cba565b6040516104339190612e66565b60405180910390f35b34801561044857600080fd5b50610451610cf1565b60405161045e9190612e90565b60405180910390f35b34801561047357600080fd5b5061047c610cf7565b6040516104899190612e66565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190612eab565b610d0a565b6040516104c69190612e66565b60405180910390f35b3480156104db57600080fd5b506104e4610d60565b6040516104f19190612e90565b60405180910390f35b34801561050657600080fd5b5061050f610d66565b60405161051c9190612e66565b60405180910390f35b34801561053157600080fd5b5061054c60048036038101906105479190612eab565b610d79565b6040516105599190612e90565b60405180910390f35b34801561056e57600080fd5b50610577610dc1565b005b34801561058557600080fd5b506105a0600480360381019061059b9190612f62565b610dd5565b005b3480156105ae57600080fd5b506105b7610ea1565b6040516105c49190612e90565b60405180910390f35b3480156105d957600080fd5b506105e2610ead565b6040516105ef9190612e90565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190612fa2565b610eb3565b005b34801561062d57600080fd5b50610636610f27565b6040516106439190612fde565b60405180910390f35b34801561065857600080fd5b50610661610f51565b60405161066e9190612fde565b60405180910390f35b34801561068357600080fd5b5061068c610f77565b6040516106999190612d4b565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190613025565b611009565b005b3480156106d757600080fd5b506106f260048036038101906106ed9190612e0b565b61101f565b6040516106ff9190612e66565b60405180910390f35b34801561071457600080fd5b5061071d611096565b60405161072a9190612fde565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190612e0b565b6110bc565b6040516107679190612e66565b60405180910390f35b34801561077c57600080fd5b5061079760048036038101906107929190612fa2565b6110df565b005b3480156107a557600080fd5b506107c060048036038101906107bb9190612eab565b611104565b6040516107cd9190612e66565b60405180910390f35b3480156107e257600080fd5b506107fd60048036038101906107f89190612fa2565b611124565b005b34801561080b57600080fd5b5061082660048036038101906108219190613025565b611234565b005b34801561083457600080fd5b5061084f600480360381019061084a9190612fa2565b611377565b005b34801561085d57600080fd5b50610878600480360381019061087391906130ca565b6113e1565b005b34801561088657600080fd5b506108a1600480360381019061089c9190612eab565b6114c9565b005b3480156108af57600080fd5b506108ca60048036038101906108c59190612eab565b611515565b005b3480156108d857600080fd5b506108f360048036038101906108ee9190613025565b61161f565b005b34801561090157600080fd5b5061091c60048036038101906109179190612fa2565b611682565b005b34801561092a57600080fd5b506109456004803603810190610940919061312a565b6116f6565b6040516109529190612e90565b60405180910390f35b34801561096757600080fd5b50610982600480360381019061097d919061316a565b61177d565b005b34801561099057600080fd5b506109996117a2565b6040516109a69190612e90565b60405180910390f35b3480156109bb57600080fd5b506109d660048036038101906109d19190612eab565b6117a8565b005b3480156109e457600080fd5b506109ed61182b565b6040516109fa9190612e90565b60405180910390f35b348015610a0f57600080fd5b50610a18611837565b604051610a2591906131f6565b60405180910390f35b348015610a3a57600080fd5b50610a4361185d565b604051610a509190612e90565b60405180910390f35b610a61611863565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610aa990613242565b60006040518083038185875af1925050503d8060008114610ae6576040519150601f19603f3d011682016040523d82523d6000602084013e610aeb565b606091505b5050905080610af957600080fd5b50565b606060038054610b0b90613286565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3790613286565b8015610b845780601f10610b5957610100808354040283529160200191610b84565b820191906000526020600020905b815481529060010190602001808311610b6757829003601f168201915b5050505050905090565b600080610b996118e1565b9050610ba68185856118e9565b600191505092915050565b610bb9611863565b600b60029054906101000a900460ff1615610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0090613303565b60405180910390fd5b6001600b60026101000a81548160ff021916908315150217905550565b6000600254905090565b60145481565b610c3e611863565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610c8d6118e1565b9050610c9a858285611ab2565b610ca5858585611b3e565b60019150509392505050565b60006012905090565b600080610cc56118e1565b9050610ce6818585610cd785896116f6565b610ce19190613352565b6118e9565b600191505092915050565b60135481565b600b60029054906101000a900460ff1681565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60095481565b600b60019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dc9611863565b610dd3600061234b565b565b610ddd611863565b62989680821015610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a906133f4565b60405180910390fd5b624c4b40811015610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090613486565b60405180910390fd5b670de0b6b3a764000082610e7d91906134a6565b600881905550670de0b6b3a764000081610e9791906134a6565b6009819055505050565b60118060000154905081565b60085481565b610ebb611863565b6014811115610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef69061354c565b60405180910390fd5b6040518060200160405280828152506012600082015181600001559050508060148190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610f8690613286565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb290613286565b8015610fff5780601f10610fd457610100808354040283529160200191610fff565b820191906000526020600020905b815481529060010190602001808311610fe257829003601f168201915b5050505050905090565b611011611863565b61101b8282612411565b5050565b60008061102a6118e1565b9050600061103882866116f6565b90508381101561107d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611074906135de565b60405180910390fd5b61108a82868684036118e9565b60019250505092915050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806110c76118e1565b90506110d4818585611b3e565b600191505092915050565b6110e7611863565b670de0b6b3a7640000816110fb91906134a6565b60078190555050565b600e6020528060005260406000206000915054906101000a900460ff1681565b60003390508161113382610d79565b1015611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90613670565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da906136dc565b60405180910390fd5b60008211611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d90613748565b60405180910390fd5b611230818361250e565b5050565b61123c611863565b801515600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c5906137b4565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161136b9190612e66565b60405180910390a25050565b61137f611863565b6298968081116113c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bb90613846565b60405180910390fd5b670de0b6b3a7640000816113d891906134a6565b600a8190555050565b6113e9611863565b60005b838390508110156114885781600c600086868581811061140f5761140e613866565b5b90506020020160208101906114249190612eab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061148090613895565b9150506113ec565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b358383836040516114bc939291906139a0565b60405180910390a1505050565b6114d1611863565b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61151d611863565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb611541610f27565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161157a9190612fde565b602060405180830381865afa158015611597573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115bb91906139e7565b6040518363ffffffff1660e01b81526004016115d8929190613a14565b6020604051808303816000875af11580156115f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161b9190613a52565b5050565b611627611863565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61168a611863565b60148111156116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c590613acb565b60405180910390fd5b6040518060200160405280828152506011600082015181600001559050508060138190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611785611863565b80600b60016101000a81548160ff02191690831515021790555050565b60075481565b6117b0611863565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361181f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181690613b5d565b60405180910390fd5b6118288161234b565b50565b60128060000154905081565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b61186b6118e1565b73ffffffffffffffffffffffffffffffffffffffff16611889610f27565b73ffffffffffffffffffffffffffffffffffffffff16146118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690613bc9565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90613c5b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90613ced565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611aa59190612e90565b60405180910390a3505050565b6000611abe84846116f6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b385781811015611b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2190613d59565b60405180910390fd5b611b3784848484036118e9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba490613deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390613e7d565b60405180910390fd5b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611cc05750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611cd95750600b60009054906101000a900460ff16155b15611f0d57600b60029054906101000a900460ff16611d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2490613ee9565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611dc957600954811115611dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbb90613f55565b60405180910390fd5b611e62565b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e6157600854811115611e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5790613fc1565b60405180910390fd5b5b5b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f0c57600a54611ebf83610d79565b82611eca9190613352565b1115611f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f029061402d565b60405180910390fd5b5b5b60008103611f2657611f21838360006126db565b612346565b6000611f3130610d79565b905060006007548210159050808015611f575750600b60009054906101000a900460ff16155b8015611f6f5750600b60019054906101000a900460ff165b8015611fc45750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561201a5750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120705750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120c3576001600b60006101000a81548160ff021916908315150217905550600060145411156120a7576120a6600754612951565b5b6000600b60006101000a81548160ff0219169083151502179055505b6000600b60009054906101000a900460ff16159050600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121795750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561218357600090505b600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156122275750600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561223157600090505b8015612337576000600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156122ac5760646014548661229b91906134a6565b6122a5919061407c565b905061231c565b600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561231b5760646013548661230e91906134a6565b612318919061407c565b90505b5b808561232891906140ad565b94506123358730836126db565b505b6123428686866126db565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361246d57600080fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361257d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257490614153565b60405180910390fd5b61258982600083612a65565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561260f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612606906141e5565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126c29190612e90565b60405180910390a36126d683600084612a6a565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361274a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274190613deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b090613e7d565b60405180910390fd5b6127c4838383612a65565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561284a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284190614277565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129389190612e90565b60405180910390a361294b848484612a6a565b50505050565b600081905061295f81612a6f565b600047905060006014546012600001548361297a91906134a6565b612984919061407c565b90506000811115612a5f576000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516129d790613242565b60006040518083038185875af1925050503d8060008114612a14576040519150601f19603f3d011682016040523d82523d6000602084013e612a19565b606091505b5050905080612a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5490614309565b60405180910390fd5b505b50505050565b505050565b505050565b6000600267ffffffffffffffff811115612a8c57612a8b614329565b5b604051908082528060200260200182016040528015612aba5781602001602082028036833780820191505090505b5090503081600081518110612ad257612ad1613866565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b9d919061436d565b81600181518110612bb157612bb0613866565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612c1830600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846118e9565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612c7c95949392919061445b565b600060405180830381600087803b158015612c9657600080fd5b505af1158015612caa573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cec578082015181840152602081019050612cd1565b83811115612cfb576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d1d82612cb2565b612d278185612cbd565b9350612d37818560208601612cce565b612d4081612d01565b840191505092915050565b60006020820190508181036000830152612d658184612d12565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612da282612d77565b9050919050565b612db281612d97565b8114612dbd57600080fd5b50565b600081359050612dcf81612da9565b92915050565b6000819050919050565b612de881612dd5565b8114612df357600080fd5b50565b600081359050612e0581612ddf565b92915050565b60008060408385031215612e2257612e21612d6d565b5b6000612e3085828601612dc0565b9250506020612e4185828601612df6565b9150509250929050565b60008115159050919050565b612e6081612e4b565b82525050565b6000602082019050612e7b6000830184612e57565b92915050565b612e8a81612dd5565b82525050565b6000602082019050612ea56000830184612e81565b92915050565b600060208284031215612ec157612ec0612d6d565b5b6000612ecf84828501612dc0565b91505092915050565b600080600060608486031215612ef157612ef0612d6d565b5b6000612eff86828701612dc0565b9350506020612f1086828701612dc0565b9250506040612f2186828701612df6565b9150509250925092565b600060ff82169050919050565b612f4181612f2b565b82525050565b6000602082019050612f5c6000830184612f38565b92915050565b60008060408385031215612f7957612f78612d6d565b5b6000612f8785828601612df6565b9250506020612f9885828601612df6565b9150509250929050565b600060208284031215612fb857612fb7612d6d565b5b6000612fc684828501612df6565b91505092915050565b612fd881612d97565b82525050565b6000602082019050612ff36000830184612fcf565b92915050565b61300281612e4b565b811461300d57600080fd5b50565b60008135905061301f81612ff9565b92915050565b6000806040838503121561303c5761303b612d6d565b5b600061304a85828601612dc0565b925050602061305b85828601613010565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261308a57613089613065565b5b8235905067ffffffffffffffff8111156130a7576130a661306a565b5b6020830191508360208202830111156130c3576130c261306f565b5b9250929050565b6000806000604084860312156130e3576130e2612d6d565b5b600084013567ffffffffffffffff81111561310157613100612d72565b5b61310d86828701613074565b9350935050602061312086828701613010565b9150509250925092565b6000806040838503121561314157613140612d6d565b5b600061314f85828601612dc0565b925050602061316085828601612dc0565b9150509250929050565b6000602082840312156131805761317f612d6d565b5b600061318e84828501613010565b91505092915050565b6000819050919050565b60006131bc6131b76131b284612d77565b613197565b612d77565b9050919050565b60006131ce826131a1565b9050919050565b60006131e0826131c3565b9050919050565b6131f0816131d5565b82525050565b600060208201905061320b60008301846131e7565b92915050565b600081905092915050565b50565b600061322c600083613211565b91506132378261321c565b600082019050919050565b600061324d8261321f565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061329e57607f821691505b6020821081036132b1576132b0613257565b5b50919050565b7f54726164696e6720656e61626c65640000000000000000000000000000000000600082015250565b60006132ed600f83612cbd565b91506132f8826132b7565b602082019050919050565b6000602082019050818103600083015261331c816132e0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061335d82612dd5565b915061336883612dd5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561339d5761339c613323565b5b828201905092915050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b60006133de602083612cbd565b91506133e9826133a8565b602082019050919050565b6000602082019050818103600083015261340d816133d1565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b6000613470602383612cbd565b915061347b82613414565b604082019050919050565b6000602082019050818103600083015261349f81613463565b9050919050565b60006134b182612dd5565b91506134bc83612dd5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134f5576134f4613323565b5b828202905092915050565b7f466565206d757374206265206c657373207468656e2032302500000000000000600082015250565b6000613536601983612cbd565b915061354182613500565b602082019050919050565b6000602082019050818103600083015261356581613529565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006135c8602583612cbd565b91506135d38261356c565b604082019050919050565b600060208201905081810360008301526135f7816135bb565b9050919050565b7f45524332303a204275726e20416d6f756e742065786365656473206163636f7560008201527f6e742062616c616e636500000000000000000000000000000000000000000000602082015250565b600061365a602a83612cbd565b9150613665826135fe565b604082019050919050565b600060208201905081810360008301526136898161364d565b9050919050565b7f45524332303a20496e76616c69642073656e6465722061646472657373000000600082015250565b60006136c6601d83612cbd565b91506136d182613690565b602082019050919050565b600060208201905081810360008301526136f5816136b9565b9050919050565b7f45524332303a20456e74657220736f6d6520616d6f756e7420746f206275726e600082015250565b6000613732602083612cbd565b915061373d826136fc565b602082019050919050565b6000602082019050818103600083015261376181613725565b9050919050565b7f204163636f756e7420697320616c7265616479276578636c7564656427000000600082015250565b600061379e601d83612cbd565b91506137a982613768565b602082019050919050565b600060208201905081810360008301526137cd81613791565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000613830602283612cbd565b915061383b826137d4565b604082019050919050565b6000602082019050818103600083015261385f81613823565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006138a082612dd5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138d2576138d1613323565b5b600182019050919050565b600082825260208201905092915050565b6000819050919050565b61390181612d97565b82525050565b600061391383836138f8565b60208301905092915050565b600061392e6020840184612dc0565b905092915050565b6000602082019050919050565b600061394f83856138dd565b935061395a826138ee565b8060005b8581101561399357613970828461391f565b61397a8882613907565b975061398583613936565b92505060018101905061395e565b5085925050509392505050565b600060408201905081810360008301526139bb818587613943565b90506139ca6020830184612e57565b949350505050565b6000815190506139e181612ddf565b92915050565b6000602082840312156139fd576139fc612d6d565b5b6000613a0b848285016139d2565b91505092915050565b6000604082019050613a296000830185612fcf565b613a366020830184612e81565b9392505050565b600081519050613a4c81612ff9565b92915050565b600060208284031215613a6857613a67612d6d565b5b6000613a7684828501613a3d565b91505092915050565b7f466565206d757374206265206c657373207468656e2032352500000000000000600082015250565b6000613ab5601983612cbd565b9150613ac082613a7f565b602082019050919050565b60006020820190508181036000830152613ae481613aa8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b47602683612cbd565b9150613b5282613aeb565b604082019050919050565b60006020820190508181036000830152613b7681613b3a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bb3602083612cbd565b9150613bbe82613b7d565b602082019050919050565b60006020820190508181036000830152613be281613ba6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613c45602483612cbd565b9150613c5082613be9565b604082019050919050565b60006020820190508181036000830152613c7481613c38565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cd7602283612cbd565b9150613ce282613c7b565b604082019050919050565b60006020820190508181036000830152613d0681613cca565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613d43601d83612cbd565b9150613d4e82613d0d565b602082019050919050565b60006020820190508181036000830152613d7281613d36565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613dd5602583612cbd565b9150613de082613d79565b604082019050919050565b60006020820190508181036000830152613e0481613dc8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e67602383612cbd565b9150613e7282613e0b565b604082019050919050565b60006020820190508181036000830152613e9681613e5a565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b6000613ed3601283612cbd565b9150613ede82613e9d565b602082019050919050565b60006020820190508181036000830152613f0281613ec6565b9050919050565b7f596f752061726520657863656564696e67206d617853656c6c416d6f756e7400600082015250565b6000613f3f601f83612cbd565b9150613f4a82613f09565b602082019050919050565b60006020820190508181036000830152613f6e81613f32565b9050919050565b7f596f752061726520657863656564696e67206d6178427579416d6f756e740000600082015250565b6000613fab601e83612cbd565b9150613fb682613f75565b602082019050919050565b60006020820190508181036000830152613fda81613f9e565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b6000614017601b83612cbd565b915061402282613fe1565b602082019050919050565b600060208201905081810360008301526140468161400a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061408782612dd5565b915061409283612dd5565b9250826140a2576140a161404d565b5b828204905092915050565b60006140b882612dd5565b91506140c383612dd5565b9250828210156140d6576140d5613323565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061413d602183612cbd565b9150614148826140e1565b604082019050919050565b6000602082019050818103600083015261416c81614130565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006141cf602283612cbd565b91506141da82614173565b604082019050919050565b600060208201905081810360008301526141fe816141c2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614261602683612cbd565b915061426c82614205565b604082019050919050565b6000602082019050818103600083015261429081614254565b9050919050565b7f4661696c656420746f2073656e6420457468657220746f206465762077616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b60006142f3602283612cbd565b91506142fe82614297565b604082019050919050565b60006020820190508181036000830152614322816142e6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061436781612da9565b92915050565b60006020828403121561438357614382612d6d565b5b600061439184828501614358565b91505092915050565b6000819050919050565b60006143bf6143ba6143b58461439a565b613197565b612dd5565b9050919050565b6143cf816143a4565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b6000614408826143d5565b61441281856138dd565b935061441d836143e0565b8060005b8381101561444e5781516144358882613907565b9750614440836143f0565b925050600181019050614421565b5085935050505092915050565b600060a0820190506144706000830188612e81565b61447d60208301876143c6565b818103604083015261448f81866143fd565b905061449e6060830185612fcf565b6144ab6080830184612e81565b969550505050505056fea264697066735822122086e1e36f497abd47a86cdcfe7a7da640c1a5de50d5aa4b2371d6269fc0ccc9bc64736f6c634300080f0033000000000000000000000000eb3470ff1eaa10cd0c66aeca99430b0dd895c7a6

Deployed Bytecode

0x6080604052600436106102765760003560e01c80638ea5220f1161014f578063c492f046116100c1578063e01af92c1161007a578063e01af92c1461095b578063e2f4560514610984578063f2fde38b146109af578063f66895a3146109d8578063f887ea4014610a03578063f8b45b0514610a2e5761027d565b8063c492f04614610851578063c851cc321461087a578063d191e101146108a3578063d2fcc001146108cc578063dc1052e2146108f5578063dd62ed3e1461091e5761027d565b8063a9059cbb11610113578063a9059cbb14610733578063afa4f3b214610770578063b62496f514610799578063b90306ad146107d6578063c0246668146107ff578063c18bc195146108285761027d565b80638ea5220f1461064c57806395d89b41146106775780639a7a23d6146106a2578063a457c2d7146106cb578063a8aa1b31146107085761027d565b80634ada218b116101e8578063715018a6116101ac578063715018a61461056257806379b447bd14610579578063864701a5146105a257806388e765ff146105cd5780638cd09d50146105f85780638da5cb5b146106215761027d565b80634ada218b146104675780634fbee1931461049257806366d602ae146104cf5780636ddd1713146104fa57806370a08231146105255761027d565b80631bff78981161023a5780631bff7898146103435780631f53ac021461036e57806323b872dd14610397578063313ce567146103d457806339509351146103ff57806346469afb1461043c5761027d565b806305df49111461028257806306fdde0314610299578063095ea7b3146102c45780630bd05b691461030157806318160ddd146103185761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610a59565b005b3480156102a557600080fd5b506102ae610afc565b6040516102bb9190612d4b565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612e0b565b610b8e565b6040516102f89190612e66565b60405180910390f35b34801561030d57600080fd5b50610316610bb1565b005b34801561032457600080fd5b5061032d610c26565b60405161033a9190612e90565b60405180910390f35b34801561034f57600080fd5b50610358610c30565b6040516103659190612e90565b60405180910390f35b34801561037a57600080fd5b5061039560048036038101906103909190612eab565b610c36565b005b3480156103a357600080fd5b506103be60048036038101906103b99190612ed8565b610c82565b6040516103cb9190612e66565b60405180910390f35b3480156103e057600080fd5b506103e9610cb1565b6040516103f69190612f47565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190612e0b565b610cba565b6040516104339190612e66565b60405180910390f35b34801561044857600080fd5b50610451610cf1565b60405161045e9190612e90565b60405180910390f35b34801561047357600080fd5b5061047c610cf7565b6040516104899190612e66565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190612eab565b610d0a565b6040516104c69190612e66565b60405180910390f35b3480156104db57600080fd5b506104e4610d60565b6040516104f19190612e90565b60405180910390f35b34801561050657600080fd5b5061050f610d66565b60405161051c9190612e66565b60405180910390f35b34801561053157600080fd5b5061054c60048036038101906105479190612eab565b610d79565b6040516105599190612e90565b60405180910390f35b34801561056e57600080fd5b50610577610dc1565b005b34801561058557600080fd5b506105a0600480360381019061059b9190612f62565b610dd5565b005b3480156105ae57600080fd5b506105b7610ea1565b6040516105c49190612e90565b60405180910390f35b3480156105d957600080fd5b506105e2610ead565b6040516105ef9190612e90565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190612fa2565b610eb3565b005b34801561062d57600080fd5b50610636610f27565b6040516106439190612fde565b60405180910390f35b34801561065857600080fd5b50610661610f51565b60405161066e9190612fde565b60405180910390f35b34801561068357600080fd5b5061068c610f77565b6040516106999190612d4b565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190613025565b611009565b005b3480156106d757600080fd5b506106f260048036038101906106ed9190612e0b565b61101f565b6040516106ff9190612e66565b60405180910390f35b34801561071457600080fd5b5061071d611096565b60405161072a9190612fde565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190612e0b565b6110bc565b6040516107679190612e66565b60405180910390f35b34801561077c57600080fd5b5061079760048036038101906107929190612fa2565b6110df565b005b3480156107a557600080fd5b506107c060048036038101906107bb9190612eab565b611104565b6040516107cd9190612e66565b60405180910390f35b3480156107e257600080fd5b506107fd60048036038101906107f89190612fa2565b611124565b005b34801561080b57600080fd5b5061082660048036038101906108219190613025565b611234565b005b34801561083457600080fd5b5061084f600480360381019061084a9190612fa2565b611377565b005b34801561085d57600080fd5b50610878600480360381019061087391906130ca565b6113e1565b005b34801561088657600080fd5b506108a1600480360381019061089c9190612eab565b6114c9565b005b3480156108af57600080fd5b506108ca60048036038101906108c59190612eab565b611515565b005b3480156108d857600080fd5b506108f360048036038101906108ee9190613025565b61161f565b005b34801561090157600080fd5b5061091c60048036038101906109179190612fa2565b611682565b005b34801561092a57600080fd5b506109456004803603810190610940919061312a565b6116f6565b6040516109529190612e90565b60405180910390f35b34801561096757600080fd5b50610982600480360381019061097d919061316a565b61177d565b005b34801561099057600080fd5b506109996117a2565b6040516109a69190612e90565b60405180910390f35b3480156109bb57600080fd5b506109d660048036038101906109d19190612eab565b6117a8565b005b3480156109e457600080fd5b506109ed61182b565b6040516109fa9190612e90565b60405180910390f35b348015610a0f57600080fd5b50610a18611837565b604051610a2591906131f6565b60405180910390f35b348015610a3a57600080fd5b50610a4361185d565b604051610a509190612e90565b60405180910390f35b610a61611863565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610aa990613242565b60006040518083038185875af1925050503d8060008114610ae6576040519150601f19603f3d011682016040523d82523d6000602084013e610aeb565b606091505b5050905080610af957600080fd5b50565b606060038054610b0b90613286565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3790613286565b8015610b845780601f10610b5957610100808354040283529160200191610b84565b820191906000526020600020905b815481529060010190602001808311610b6757829003601f168201915b5050505050905090565b600080610b996118e1565b9050610ba68185856118e9565b600191505092915050565b610bb9611863565b600b60029054906101000a900460ff1615610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0090613303565b60405180910390fd5b6001600b60026101000a81548160ff021916908315150217905550565b6000600254905090565b60145481565b610c3e611863565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610c8d6118e1565b9050610c9a858285611ab2565b610ca5858585611b3e565b60019150509392505050565b60006012905090565b600080610cc56118e1565b9050610ce6818585610cd785896116f6565b610ce19190613352565b6118e9565b600191505092915050565b60135481565b600b60029054906101000a900460ff1681565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60095481565b600b60019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dc9611863565b610dd3600061234b565b565b610ddd611863565b62989680821015610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a906133f4565b60405180910390fd5b624c4b40811015610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090613486565b60405180910390fd5b670de0b6b3a764000082610e7d91906134a6565b600881905550670de0b6b3a764000081610e9791906134a6565b6009819055505050565b60118060000154905081565b60085481565b610ebb611863565b6014811115610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef69061354c565b60405180910390fd5b6040518060200160405280828152506012600082015181600001559050508060148190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610f8690613286565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb290613286565b8015610fff5780601f10610fd457610100808354040283529160200191610fff565b820191906000526020600020905b815481529060010190602001808311610fe257829003601f168201915b5050505050905090565b611011611863565b61101b8282612411565b5050565b60008061102a6118e1565b9050600061103882866116f6565b90508381101561107d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611074906135de565b60405180910390fd5b61108a82868684036118e9565b60019250505092915050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806110c76118e1565b90506110d4818585611b3e565b600191505092915050565b6110e7611863565b670de0b6b3a7640000816110fb91906134a6565b60078190555050565b600e6020528060005260406000206000915054906101000a900460ff1681565b60003390508161113382610d79565b1015611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90613670565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da906136dc565b60405180910390fd5b60008211611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d90613748565b60405180910390fd5b611230818361250e565b5050565b61123c611863565b801515600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c5906137b4565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161136b9190612e66565b60405180910390a25050565b61137f611863565b6298968081116113c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bb90613846565b60405180910390fd5b670de0b6b3a7640000816113d891906134a6565b600a8190555050565b6113e9611863565b60005b838390508110156114885781600c600086868581811061140f5761140e613866565b5b90506020020160208101906114249190612eab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061148090613895565b9150506113ec565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b358383836040516114bc939291906139a0565b60405180910390a1505050565b6114d1611863565b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61151d611863565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb611541610f27565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161157a9190612fde565b602060405180830381865afa158015611597573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115bb91906139e7565b6040518363ffffffff1660e01b81526004016115d8929190613a14565b6020604051808303816000875af11580156115f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161b9190613a52565b5050565b611627611863565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61168a611863565b60148111156116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c590613acb565b60405180910390fd5b6040518060200160405280828152506011600082015181600001559050508060138190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611785611863565b80600b60016101000a81548160ff02191690831515021790555050565b60075481565b6117b0611863565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361181f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181690613b5d565b60405180910390fd5b6118288161234b565b50565b60128060000154905081565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b61186b6118e1565b73ffffffffffffffffffffffffffffffffffffffff16611889610f27565b73ffffffffffffffffffffffffffffffffffffffff16146118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690613bc9565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90613c5b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90613ced565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611aa59190612e90565b60405180910390a3505050565b6000611abe84846116f6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b385781811015611b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2190613d59565b60405180910390fd5b611b3784848484036118e9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba490613deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390613e7d565b60405180910390fd5b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611cc05750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611cd95750600b60009054906101000a900460ff16155b15611f0d57600b60029054906101000a900460ff16611d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2490613ee9565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611dc957600954811115611dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbb90613f55565b60405180910390fd5b611e62565b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e6157600854811115611e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5790613fc1565b60405180910390fd5b5b5b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f0c57600a54611ebf83610d79565b82611eca9190613352565b1115611f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f029061402d565b60405180910390fd5b5b5b60008103611f2657611f21838360006126db565b612346565b6000611f3130610d79565b905060006007548210159050808015611f575750600b60009054906101000a900460ff16155b8015611f6f5750600b60019054906101000a900460ff165b8015611fc45750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561201a5750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120705750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120c3576001600b60006101000a81548160ff021916908315150217905550600060145411156120a7576120a6600754612951565b5b6000600b60006101000a81548160ff0219169083151502179055505b6000600b60009054906101000a900460ff16159050600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121795750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561218357600090505b600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156122275750600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561223157600090505b8015612337576000600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156122ac5760646014548661229b91906134a6565b6122a5919061407c565b905061231c565b600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561231b5760646013548661230e91906134a6565b612318919061407c565b90505b5b808561232891906140ad565b94506123358730836126db565b505b6123428686866126db565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361246d57600080fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361257d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257490614153565b60405180910390fd5b61258982600083612a65565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561260f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612606906141e5565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126c29190612e90565b60405180910390a36126d683600084612a6a565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361274a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274190613deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b090613e7d565b60405180910390fd5b6127c4838383612a65565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561284a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284190614277565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129389190612e90565b60405180910390a361294b848484612a6a565b50505050565b600081905061295f81612a6f565b600047905060006014546012600001548361297a91906134a6565b612984919061407c565b90506000811115612a5f576000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516129d790613242565b60006040518083038185875af1925050503d8060008114612a14576040519150601f19603f3d011682016040523d82523d6000602084013e612a19565b606091505b5050905080612a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5490614309565b60405180910390fd5b505b50505050565b505050565b505050565b6000600267ffffffffffffffff811115612a8c57612a8b614329565b5b604051908082528060200260200182016040528015612aba5781602001602082028036833780820191505090505b5090503081600081518110612ad257612ad1613866565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b9d919061436d565b81600181518110612bb157612bb0613866565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612c1830600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846118e9565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612c7c95949392919061445b565b600060405180830381600087803b158015612c9657600080fd5b505af1158015612caa573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cec578082015181840152602081019050612cd1565b83811115612cfb576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d1d82612cb2565b612d278185612cbd565b9350612d37818560208601612cce565b612d4081612d01565b840191505092915050565b60006020820190508181036000830152612d658184612d12565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612da282612d77565b9050919050565b612db281612d97565b8114612dbd57600080fd5b50565b600081359050612dcf81612da9565b92915050565b6000819050919050565b612de881612dd5565b8114612df357600080fd5b50565b600081359050612e0581612ddf565b92915050565b60008060408385031215612e2257612e21612d6d565b5b6000612e3085828601612dc0565b9250506020612e4185828601612df6565b9150509250929050565b60008115159050919050565b612e6081612e4b565b82525050565b6000602082019050612e7b6000830184612e57565b92915050565b612e8a81612dd5565b82525050565b6000602082019050612ea56000830184612e81565b92915050565b600060208284031215612ec157612ec0612d6d565b5b6000612ecf84828501612dc0565b91505092915050565b600080600060608486031215612ef157612ef0612d6d565b5b6000612eff86828701612dc0565b9350506020612f1086828701612dc0565b9250506040612f2186828701612df6565b9150509250925092565b600060ff82169050919050565b612f4181612f2b565b82525050565b6000602082019050612f5c6000830184612f38565b92915050565b60008060408385031215612f7957612f78612d6d565b5b6000612f8785828601612df6565b9250506020612f9885828601612df6565b9150509250929050565b600060208284031215612fb857612fb7612d6d565b5b6000612fc684828501612df6565b91505092915050565b612fd881612d97565b82525050565b6000602082019050612ff36000830184612fcf565b92915050565b61300281612e4b565b811461300d57600080fd5b50565b60008135905061301f81612ff9565b92915050565b6000806040838503121561303c5761303b612d6d565b5b600061304a85828601612dc0565b925050602061305b85828601613010565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261308a57613089613065565b5b8235905067ffffffffffffffff8111156130a7576130a661306a565b5b6020830191508360208202830111156130c3576130c261306f565b5b9250929050565b6000806000604084860312156130e3576130e2612d6d565b5b600084013567ffffffffffffffff81111561310157613100612d72565b5b61310d86828701613074565b9350935050602061312086828701613010565b9150509250925092565b6000806040838503121561314157613140612d6d565b5b600061314f85828601612dc0565b925050602061316085828601612dc0565b9150509250929050565b6000602082840312156131805761317f612d6d565b5b600061318e84828501613010565b91505092915050565b6000819050919050565b60006131bc6131b76131b284612d77565b613197565b612d77565b9050919050565b60006131ce826131a1565b9050919050565b60006131e0826131c3565b9050919050565b6131f0816131d5565b82525050565b600060208201905061320b60008301846131e7565b92915050565b600081905092915050565b50565b600061322c600083613211565b91506132378261321c565b600082019050919050565b600061324d8261321f565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061329e57607f821691505b6020821081036132b1576132b0613257565b5b50919050565b7f54726164696e6720656e61626c65640000000000000000000000000000000000600082015250565b60006132ed600f83612cbd565b91506132f8826132b7565b602082019050919050565b6000602082019050818103600083015261331c816132e0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061335d82612dd5565b915061336883612dd5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561339d5761339c613323565b5b828201905092915050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b60006133de602083612cbd565b91506133e9826133a8565b602082019050919050565b6000602082019050818103600083015261340d816133d1565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b6000613470602383612cbd565b915061347b82613414565b604082019050919050565b6000602082019050818103600083015261349f81613463565b9050919050565b60006134b182612dd5565b91506134bc83612dd5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134f5576134f4613323565b5b828202905092915050565b7f466565206d757374206265206c657373207468656e2032302500000000000000600082015250565b6000613536601983612cbd565b915061354182613500565b602082019050919050565b6000602082019050818103600083015261356581613529565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006135c8602583612cbd565b91506135d38261356c565b604082019050919050565b600060208201905081810360008301526135f7816135bb565b9050919050565b7f45524332303a204275726e20416d6f756e742065786365656473206163636f7560008201527f6e742062616c616e636500000000000000000000000000000000000000000000602082015250565b600061365a602a83612cbd565b9150613665826135fe565b604082019050919050565b600060208201905081810360008301526136898161364d565b9050919050565b7f45524332303a20496e76616c69642073656e6465722061646472657373000000600082015250565b60006136c6601d83612cbd565b91506136d182613690565b602082019050919050565b600060208201905081810360008301526136f5816136b9565b9050919050565b7f45524332303a20456e74657220736f6d6520616d6f756e7420746f206275726e600082015250565b6000613732602083612cbd565b915061373d826136fc565b602082019050919050565b6000602082019050818103600083015261376181613725565b9050919050565b7f204163636f756e7420697320616c7265616479276578636c7564656427000000600082015250565b600061379e601d83612cbd565b91506137a982613768565b602082019050919050565b600060208201905081810360008301526137cd81613791565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000613830602283612cbd565b915061383b826137d4565b604082019050919050565b6000602082019050818103600083015261385f81613823565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006138a082612dd5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138d2576138d1613323565b5b600182019050919050565b600082825260208201905092915050565b6000819050919050565b61390181612d97565b82525050565b600061391383836138f8565b60208301905092915050565b600061392e6020840184612dc0565b905092915050565b6000602082019050919050565b600061394f83856138dd565b935061395a826138ee565b8060005b8581101561399357613970828461391f565b61397a8882613907565b975061398583613936565b92505060018101905061395e565b5085925050509392505050565b600060408201905081810360008301526139bb818587613943565b90506139ca6020830184612e57565b949350505050565b6000815190506139e181612ddf565b92915050565b6000602082840312156139fd576139fc612d6d565b5b6000613a0b848285016139d2565b91505092915050565b6000604082019050613a296000830185612fcf565b613a366020830184612e81565b9392505050565b600081519050613a4c81612ff9565b92915050565b600060208284031215613a6857613a67612d6d565b5b6000613a7684828501613a3d565b91505092915050565b7f466565206d757374206265206c657373207468656e2032352500000000000000600082015250565b6000613ab5601983612cbd565b9150613ac082613a7f565b602082019050919050565b60006020820190508181036000830152613ae481613aa8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b47602683612cbd565b9150613b5282613aeb565b604082019050919050565b60006020820190508181036000830152613b7681613b3a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bb3602083612cbd565b9150613bbe82613b7d565b602082019050919050565b60006020820190508181036000830152613be281613ba6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613c45602483612cbd565b9150613c5082613be9565b604082019050919050565b60006020820190508181036000830152613c7481613c38565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cd7602283612cbd565b9150613ce282613c7b565b604082019050919050565b60006020820190508181036000830152613d0681613cca565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613d43601d83612cbd565b9150613d4e82613d0d565b602082019050919050565b60006020820190508181036000830152613d7281613d36565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613dd5602583612cbd565b9150613de082613d79565b604082019050919050565b60006020820190508181036000830152613e0481613dc8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e67602383612cbd565b9150613e7282613e0b565b604082019050919050565b60006020820190508181036000830152613e9681613e5a565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b6000613ed3601283612cbd565b9150613ede82613e9d565b602082019050919050565b60006020820190508181036000830152613f0281613ec6565b9050919050565b7f596f752061726520657863656564696e67206d617853656c6c416d6f756e7400600082015250565b6000613f3f601f83612cbd565b9150613f4a82613f09565b602082019050919050565b60006020820190508181036000830152613f6e81613f32565b9050919050565b7f596f752061726520657863656564696e67206d6178427579416d6f756e740000600082015250565b6000613fab601e83612cbd565b9150613fb682613f75565b602082019050919050565b60006020820190508181036000830152613fda81613f9e565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b6000614017601b83612cbd565b915061402282613fe1565b602082019050919050565b600060208201905081810360008301526140468161400a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061408782612dd5565b915061409283612dd5565b9250826140a2576140a161404d565b5b828204905092915050565b60006140b882612dd5565b91506140c383612dd5565b9250828210156140d6576140d5613323565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061413d602183612cbd565b9150614148826140e1565b604082019050919050565b6000602082019050818103600083015261416c81614130565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006141cf602283612cbd565b91506141da82614173565b604082019050919050565b600060208201905081810360008301526141fe816141c2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614261602683612cbd565b915061426c82614205565b604082019050919050565b6000602082019050818103600083015261429081614254565b9050919050565b7f4661696c656420746f2073656e6420457468657220746f206465762077616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b60006142f3602283612cbd565b91506142fe82614297565b604082019050919050565b60006020820190508181036000830152614322816142e6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061436781612da9565b92915050565b60006020828403121561438357614382612d6d565b5b600061439184828501614358565b91505092915050565b6000819050919050565b60006143bf6143ba6143b58461439a565b613197565b612dd5565b9050919050565b6143cf816143a4565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b6000614408826143d5565b61441281856138dd565b935061441d836143e0565b8060005b8381101561444e5781516144358882613907565b9750614440836143f0565b925050600181019050614421565b5085935050505092915050565b600060a0820190506144706000830188612e81565b61447d60208301876143c6565b818103604083015261448f81866143fd565b905061449e6060830185612fcf565b6144ab6080830184612e81565b969550505050505056fea264697066735822122086e1e36f497abd47a86cdcfe7a7da640c1a5de50d5aa4b2371d6269fc0ccc9bc64736f6c634300080f0033

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.