ETH Price: $3,114.60 (-5.84%)
 

Overview

Max Total Supply

1,000,000,000 OTAKU

Holders

21

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
youwantsome.eth
Balance
4,026,753.709867945384398899 OTAKU

Value
$0.00
0x308092d19C2680B590E3fAc72184DbB0Da4De28C
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
OtakuSenpai

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

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

/*❀

This is a relaunch due to incorrect socials on the last contract
and trading was unexpectantly enabled after adding liquidity.
Both are fixed now. Everyone will be refunded from the last launch.

Website ❀ https: // otakusenpai.xyz/

Telegram ❀ https: // t.me/otakusenpaieth

❀*/

pragma solidity 0.8.14;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this;  //  silence state mutability warning without generating bytecode - see https: // github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the cal ler's tokens.
     *
     * Returns a boolean value indicating whether the op eration succeeded.
     *
     * IMPORTANT: Beware that changing an allowan ce 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 spe nder's allowance to 0 and set the
     * desired valu  afterwards:
     * https: // github.co m/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

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

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

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

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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

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

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

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

        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] + addedValue
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

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

        emit Transfer(sender, recipient, amount);
    }

    function _createInitialSupply(address account, uint256 amount)
        internal
        virtual
    {
        require(account != address(0), "ERC20: mint to the zero address");
        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

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

library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @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) {
         //  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 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
         //  assert(a == b * c + a % b);  //  There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

         //  Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
         //  Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

         //  Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }

    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns (int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

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

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

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

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

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

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

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

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

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

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

      IUniswapV2Router02 public immutable uniswapV2Router;
      address public immutable uniswapV2Pair;

      bool private swapping;

      uint256 public swapTokensAtAmount;
      uint256 public maxTransactionAmount;

      uint256 public liquidityActiveBlock = 0;  //  0 means liquidity is not active yet
      uint256 public tradingActiveBlock = 0;  //  0 means trading is not active

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


      address public constant burnWallet =
            0x000000000000000000000000000000000000dEaD;
      address public marketingWallet = 0xC8555F805FaD29c774b540a7D450c98a2b5Ca073;

      uint256 public constant feeDivisor = 1000;

      uint256 public marketingBuyFee;
      uint256 public totalBuyFees;

      uint256 public marketingSellFee;
      uint256 public totalSellFees;

      uint256 public tokensForFees;
      uint256 public tokensForMarketing;


      bool public transferDelayEnabled = true;
      uint256 public maxWallet;


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

      mapping(address => bool) public automatedMarketMakerPairs;


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

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

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

      constructor() ERC20("Otaku Senpai", "OTAKU") {
            uint256 totalSupply = 1 * 1e9 * 1e18;

            swapTokensAtAmount = (totalSupply * 1) / 10000;  //  0.01% swap tokens amount
            maxTransactionAmount = (totalSupply * 10) / 1000;  //  1% maxTransactionAmountTxn
            maxWallet = (totalSupply * 20) / 1000;  //  2% maxWallet

            marketingBuyFee = 30;  //  3%
            totalBuyFees = marketingBuyFee; 

            marketingSellFee = 20;  //  2%
            totalSellFees = marketingSellFee;


            IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
                  0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
            );

             //  Create a uniswap pair for this new token
            address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
                  .createPair(address(this), _uniswapV2Router.WETH());

            uniswapV2Router = _uniswapV2Router;
            uniswapV2Pair = _uniswapV2Pair;

            _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

             //  exclude from paying fees or having max transaction amount
            excludeFromFees(owner(), true);
            excludeFromFees(address(this), true);
            excludeFromFees(address(0xdead), true);
            excludeFromFees(address(_uniswapV2Router), true);
            excludeFromFees(address(marketingWallet), true);

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

            _createInitialSupply(address(owner()), totalSupply);
      }

      receive() external payable {}

      function enableTrading() external onlyOwner {
            require(!tradingActive, "Cannot re-enable trading");
            tradingActive = true;
            swapEnabled = true;
            tradingActiveBlock = block.number;
      }

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

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

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

            emit ExcludeFromFees(account, excluded);
      }

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

            emit ExcludeMultipleAccountsFromFees(accounts, excluded);
      }

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

            _setAutomatedMarketMakerPair(pair, value);
      }

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

      function isExcludedFromFees(address account) external 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 (amount == 0) {
                  super._transfer(from, to, 0);
                  return;
            }

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

            if (limitsInEffect) {
                  if (
                        from != owner() &&
                        to != owner() &&
                        to != address(0) &&
                        to != address(0xdead) &&
                        !swapping
                  ) {
                        if (!tradingActive) {
                              require(
                                    _isExcludedFromFees[from] || _isExcludedFromFees[to],
                                    "Trading is not active."
                              );
                        }

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

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

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

            bool takeFee = !swapping;

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

            uint256 fees = 0;

             //  no taxes on transfers (non buys/sells)
            if (takeFee) {
                   //  on sell take fees, purchase token and burn it
                  if (automatedMarketMakerPairs[to] && totalSellFees > 0) {
                        fees = amount.mul(totalSellFees).div(feeDivisor);
                        tokensForFees += fees;
                        tokensForMarketing += (fees * marketingSellFee) / totalSellFees;
                  }
                   //  on buy
                  else if (automatedMarketMakerPairs[from]) {
                        fees = amount.mul(totalBuyFees).div(feeDivisor);
                        tokensForFees += fees;
                        tokensForMarketing += (fees * marketingBuyFee) / totalBuyFees;
                  }

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

                  amount -= fees;
            }

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

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

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

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

      function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
             //  approve token transfer to cover all possible scenarios
            _approve(address(this), address(uniswapV2Router), tokenAmount);

             //  add the liquidity
            uniswapV2Router.addLiquidityETH{value: ethAmount}(
                  address(this),
                  tokenAmount,
                  0,  //  slippage is unavoidable
                  0,  //  slippage is unavoidable
                  address(0xdead),
                  block.timestamp
            );
      }

      function manualSwap() external onlyOwner {
            uint256 contractBalance = balanceOf(address(this));
            swapTokensForEth(contractBalance);
      }

       //  remove limits after token is stable
      function removeLimits() external onlyOwner returns (bool) {
            limitsInEffect = false;
            return true;
      }

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

            if (contractBalance == 0 || totalTokensToSwap == 0) {
                  return;
            }

            uint256 amountToSwapForETH = contractBalance;
            swapTokensForEth(amountToSwapForETH);

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

            tokensForMarketing = 0;
            tokensForFees = 0;
      }



}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":"burnWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","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":"feeDivisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600060085560006009556000600a60006101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff02191690831515021790555073c8555f805fad29c774b540a7d450c98a2b5ca073600a60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601160006101000a81548160ff021916908315150217905550348015620000dc57600080fd5b506040518060400160405280600c81526020017f4f74616b752053656e70616900000000000000000000000000000000000000008152506040518060400160405280600581526020017f4f54414b5500000000000000000000000000000000000000000000000000000081525081600390805190602001906200016192919062000a72565b5080600490805190602001906200017a92919062000a72565b50505060006200018f6200060560201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060006b033b2e3c9fd0803ce8000000905061271060018262000251919062000b5b565b6200025d919062000beb565b6006819055506103e8600a8262000275919062000b5b565b62000281919062000beb565b6007819055506103e860148262000299919062000b5b565b620002a5919062000beb565b601281905550601e600b81905550600b54600c819055506014600d81905550600d54600e819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000334573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200035a919062000c8d565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003e8919062000c8d565b6040518363ffffffff1660e01b81526004016200040792919062000cd0565b6020604051808303816000875af115801562000427573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200044d919062000c8d565b90508173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620004ca8160016200060d60201b60201c565b620004ec620004de620006ae60201b60201c565b6001620006d860201b60201c565b620004ff306001620006d860201b60201c565b6200051461dead6001620006d860201b60201c565b62000527826001620006d860201b60201c565b6200055c600a60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006d860201b60201c565b6200057e62000570620006ae60201b60201c565b60016200082560201b60201c565b620005913060016200082560201b60201c565b620005a661dead60016200082560201b60201c565b620005db600a60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200082560201b60201c565b620005fc620005ef620006ae60201b60201c565b846200092260201b60201c565b50505062000f1b565b600033905090565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006e86200060560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007719062000d5e565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000819919062000d9d565b60405180910390a25050565b620008356200060560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620008c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008be9062000d5e565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000994576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200098b9062000e0a565b60405180910390fd5b8060026000828254620009a8919062000e2c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620009ff919062000e2c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a66919062000e9a565b60405180910390a35050565b82805462000a809062000ee6565b90600052602060002090601f01602090048101928262000aa4576000855562000af0565b82601f1062000abf57805160ff191683800117855562000af0565b8280016001018555821562000af0579182015b8281111562000aef57825182559160200191906001019062000ad2565b5b50905062000aff919062000b03565b5090565b5b8082111562000b1e57600081600090555060010162000b04565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b688262000b22565b915062000b758362000b22565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000bb15762000bb062000b2c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000bf88262000b22565b915062000c058362000b22565b92508262000c185762000c1762000bbc565b5b828204905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c558262000c28565b9050919050565b62000c678162000c48565b811462000c7357600080fd5b50565b60008151905062000c878162000c5c565b92915050565b60006020828403121562000ca65762000ca562000c23565b5b600062000cb68482850162000c76565b91505092915050565b62000cca8162000c48565b82525050565b600060408201905062000ce7600083018562000cbf565b62000cf6602083018462000cbf565b9392505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000d4660208362000cfd565b915062000d538262000d0e565b602082019050919050565b6000602082019050818103600083015262000d798162000d37565b9050919050565b60008115159050919050565b62000d978162000d80565b82525050565b600060208201905062000db4600083018462000d8c565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000df2601f8362000cfd565b915062000dff8262000dba565b602082019050919050565b6000602082019050818103600083015262000e258162000de3565b9050919050565b600062000e398262000b22565b915062000e468362000b22565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e7e5762000e7d62000b2c565b5b828201905092915050565b62000e948162000b22565b82525050565b600060208201905062000eb1600083018462000e89565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000eff57607f821691505b60208210810362000f155762000f1462000eb7565b5b50919050565b60805160a05161440f62000f5d60003960008181610d42015261153e015260008181610b5b01528181612a0901528181612aea0152612b11015261440f6000f3fe6080604052600436106102765760003560e01c806375f0a8741161014f578063bbc0c742116100c1578063dd62ed3e1161007a578063dd62ed3e1461096b578063e2f45605146109a8578063e7f444b3146109d3578063ee40166e146109fe578063f2fde38b14610a29578063f8b45b0514610a525761027d565b8063bbc0c7421461086d578063c024666814610898578063c492f046146108c1578063c876d0b9146108ea578063c8c8ebe414610915578063d0a39814146109405761027d565b80639a36f932116101135780639a36f932146107375780639a7a23d614610762578063a457c2d71461078b578063a9059cbb146107c8578063b62496f514610805578063b9e93700146108425761027d565b806375f0a874146106765780638a8c523c146106a15780638da5cb5b146106b8578063924de9b7146106e357806395d89b411461070c5761027d565b80633f8a6204116101e857806368078952116101ac57806368078952146105785780636ddd1713146105a357806370a08231146105ce578063715018a61461060b578063751039fc146106225780637571336a1461064d5761027d565b80633f8a6204146104a357806349bd5a5e146104ce5780634a62bb65146104f95780634fbee1931461052457806351bc3c85146105615761027d565b80631694505e1161023a5780631694505e1461037d57806318160ddd146103a85780631f3fed8f146103d357806323b872dd146103fe578063313ce5671461043b57806339509351146104665761027d565b8063062287491461028257806306fdde03146102ad578063095ea7b3146102d85780630f4432e31461031557806310d5de53146103405761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610a7d565b6040516102a491906130fd565b60405180910390f35b3480156102b957600080fd5b506102c2610a83565b6040516102cf91906131b1565b60405180910390f35b3480156102e457600080fd5b506102ff60048036038101906102fa919061323f565b610b15565b60405161030c919061329a565b60405180910390f35b34801561032157600080fd5b5061032a610b33565b60405161033791906132c4565b60405180910390f35b34801561034c57600080fd5b50610367600480360381019061036291906132df565b610b39565b604051610374919061329a565b60405180910390f35b34801561038957600080fd5b50610392610b59565b60405161039f919061336b565b60405180910390f35b3480156103b457600080fd5b506103bd610b7d565b6040516103ca91906132c4565b60405180910390f35b3480156103df57600080fd5b506103e8610b87565b6040516103f591906132c4565b60405180910390f35b34801561040a57600080fd5b5061042560048036038101906104209190613386565b610b8d565b604051610432919061329a565b60405180910390f35b34801561044757600080fd5b50610450610c85565b60405161045d91906133f5565b60405180910390f35b34801561047257600080fd5b5061048d6004803603810190610488919061323f565b610c8e565b60405161049a919061329a565b60405180910390f35b3480156104af57600080fd5b506104b8610d3a565b6040516104c591906132c4565b60405180910390f35b3480156104da57600080fd5b506104e3610d40565b6040516104f091906130fd565b60405180910390f35b34801561050557600080fd5b5061050e610d64565b60405161051b919061329a565b60405180910390f35b34801561053057600080fd5b5061054b600480360381019061054691906132df565b610d77565b604051610558919061329a565b60405180910390f35b34801561056d57600080fd5b50610576610dcd565b005b34801561058457600080fd5b5061058d610e7d565b60405161059a91906132c4565b60405180910390f35b3480156105af57600080fd5b506105b8610e83565b6040516105c5919061329a565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f091906132df565b610e96565b60405161060291906132c4565b60405180910390f35b34801561061757600080fd5b50610620610ede565b005b34801561062e57600080fd5b50610637611036565b604051610644919061329a565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f919061343c565b6110f1565b005b34801561068257600080fd5b5061068b6111e3565b60405161069891906130fd565b60405180910390f35b3480156106ad57600080fd5b506106b6611209565b005b3480156106c457600080fd5b506106cd61132f565b6040516106da91906130fd565b60405180910390f35b3480156106ef57600080fd5b5061070a6004803603810190610705919061347c565b611359565b005b34801561071857600080fd5b5061072161140d565b60405161072e91906131b1565b60405180910390f35b34801561074357600080fd5b5061074c61149f565b60405161075991906132c4565b60405180910390f35b34801561076e57600080fd5b506107896004803603810190610784919061343c565b6114a5565b005b34801561079757600080fd5b506107b260048036038101906107ad919061323f565b6115d8565b6040516107bf919061329a565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea919061323f565b6116c3565b6040516107fc919061329a565b60405180910390f35b34801561081157600080fd5b5061082c600480360381019061082791906132df565b6116e1565b604051610839919061329a565b60405180910390f35b34801561084e57600080fd5b50610857611701565b60405161086491906132c4565b60405180910390f35b34801561087957600080fd5b50610882611707565b60405161088f919061329a565b60405180910390f35b3480156108a457600080fd5b506108bf60048036038101906108ba919061343c565b61171a565b005b3480156108cd57600080fd5b506108e860048036038101906108e3919061350e565b61185a565b005b3480156108f657600080fd5b506108ff6119d1565b60405161090c919061329a565b60405180910390f35b34801561092157600080fd5b5061092a6119e4565b60405161093791906132c4565b60405180910390f35b34801561094c57600080fd5b506109556119ea565b60405161096291906132c4565b60405180910390f35b34801561097757600080fd5b50610992600480360381019061098d919061356e565b6119f0565b60405161099f91906132c4565b60405180910390f35b3480156109b457600080fd5b506109bd611a77565b6040516109ca91906132c4565b60405180910390f35b3480156109df57600080fd5b506109e8611a7d565b6040516109f591906132c4565b60405180910390f35b348015610a0a57600080fd5b50610a13611a83565b604051610a2091906132c4565b60405180910390f35b348015610a3557600080fd5b50610a506004803603810190610a4b91906132df565b611a89565b005b348015610a5e57600080fd5b50610a67611c4f565b604051610a7491906132c4565b60405180910390f35b61dead81565b606060038054610a92906135dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610abe906135dd565b8015610b0b5780601f10610ae057610100808354040283529160200191610b0b565b820191906000526020600020905b815481529060010190602001808311610aee57829003601f168201915b5050505050905090565b6000610b29610b22611c55565b8484611c5d565b6001905092915050565b60085481565b60146020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60105481565b6000610b9a848484611e26565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610be5611c55565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90613680565b60405180910390fd5b610c7985610c71611c55565b858403611c5d565b60019150509392505050565b60006012905090565b6000610d30610c9b611c55565b848460016000610ca9611c55565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2b91906136cf565b611c5d565b6001905092915050565b600f5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60019054906101000a900460ff1681565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610dd5611c55565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90613771565b60405180910390fd5b6000610e6f30610e96565b9050610e7a8161296a565b50565b600b5481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ee6611c55565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90613771565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611040611c55565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690613771565b60405180910390fd5b6000600a60016101000a81548160ff0219169083151502179055506001905090565b6110f9611c55565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90613771565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600a60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611211611c55565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129790613771565b60405180910390fd5b600a60009054906101000a900460ff16156112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e7906137dd565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff02191690831515021790555043600981905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611361611c55565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790613771565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b60606004805461141c906135dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611448906135dd565b80156114955780601f1061146a57610100808354040283529160200191611495565b820191906000526020600020905b81548152906001019060200180831161147857829003601f168201915b5050505050905090565b6103e881565b6114ad611c55565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390613771565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c190613895565b60405180910390fd5b6115d48282612ba7565b5050565b600080600160006115e7611c55565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b90613927565b60405180910390fd5b6116b86116af611c55565b85858403611c5d565b600191505092915050565b60006116d76116d0611c55565b8484611e26565b6001905092915050565b60156020528060005260406000206000915054906101000a900460ff1681565b600c5481565b600a60009054906101000a900460ff1681565b611722611c55565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a890613771565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161184e919061329a565b60405180910390a25050565b611862611c55565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e890613771565b60405180910390fd5b60005b8383905081101561199057816013600086868581811061191757611916613947565b5b905060200201602081019061192c91906132df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061198890613976565b9150506118f4565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b358383836040516119c493929190613a81565b60405180910390a1505050565b601160009054906101000a900460ff1681565b60075481565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60065481565b600d5481565b60095481565b611a91611c55565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1790613771565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8690613b25565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60125481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc390613bb7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3290613c49565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611e1991906132c4565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8c90613cdb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efb90613d6d565b60405180910390fd5b60008103611f1d57611f1883836000612c48565b612965565b600a60009054906101000a900460ff1661201257601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611fd25750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200890613dd9565b60405180910390fd5b5b600a60019054906101000a900460ff16156125335761202f61132f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561209d575061206d61132f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120d65750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612110575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121295750600560149054906101000a900460ff16155b1561253257600a60009054906101000a900460ff1661222357601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121e35750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221990613e45565b60405180910390fd5b5b601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156122c65750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561238057670de0b6b3a76400006007546122e191906136cf565b811115612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a90613ed7565b60405180910390fd5b60125461232f83610e96565b8261233a91906136cf565b111561237b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237290613f43565b60405180910390fd5b612531565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124235750601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561248557670de0b6b3a764000060075461243e91906136cf565b811115612480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247790613fd5565b60405180910390fd5b612530565b601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661252f576012546124e283610e96565b826124ed91906136cf565b111561252e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252590613f43565b60405180910390fd5b5b5b5b5b5b600061253e30610e96565b9050600060065482101590508080156125635750600a60029054906101000a900460ff165b801561257c5750600560149054906101000a900460ff16155b80156125d25750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126285750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561267e5750601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156126c2576001600560146101000a81548160ff0219169083151502179055506126a6612eb1565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127785750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561278257600090505b6000811561295557601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127e557506000600e54115b15612866576128136103e8612805600e5488612f9590919063ffffffff16565b61300f90919063ffffffff16565b905080600f600082825461282791906136cf565b92505081905550600e54600d548261283f9190613ff5565b612849919061407e565b6010600082825461285a91906136cf565b92505081905550612931565b601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612930576128e16103e86128d3600c5488612f9590919063ffffffff16565b61300f90919063ffffffff16565b905080600f60008282546128f591906136cf565b92505081905550600c54600b548261290d9190613ff5565b612917919061407e565b6010600082825461292891906136cf565b925050819055505b5b600081111561294657612945873083612c48565b5b808561295291906140af565b94505b612960878787612c48565b505050505b505050565b6000600267ffffffffffffffff811115612987576129866140e3565b5b6040519080825280602002602001820160405280156129b55781602001602082028036833780820191505090505b50905030816000815181106129cd576129cc613947565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a969190614127565b81600181518110612aaa57612aa9613947565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612b0f307f000000000000000000000000000000000000000000000000000000000000000084611c5d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612b71959493929190614215565b600060405180830381600087803b158015612b8b57600080fd5b505af1158015612b9f573d6000803e3d6000fd5b505050505050565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cae90613cdb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1d90613d6d565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da3906142e1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e3f91906136cf565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612ea391906132c4565b60405180910390a350505050565b6000612ebc30610e96565b905060006010549050600080831480612ed55750600082145b15612ee257505050612f93565b6000839050612ef08161296a565b600a60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612f3690614332565b60006040518083038185875af1925050503d8060008114612f73576040519150601f19603f3d011682016040523d82523d6000602084013e612f78565b606091505b50508092505060006010819055506000600f81905550505050505b565b6000808303612fa75760009050613009565b60008284612fb59190613ff5565b9050828482612fc4919061407e565b14613004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffb906143b9565b60405180910390fd5b809150505b92915050565b600061305183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613059565b905092915050565b600080831182906130a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309791906131b1565b60405180910390fd5b50600083856130af919061407e565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130e7826130bc565b9050919050565b6130f7816130dc565b82525050565b600060208201905061311260008301846130ee565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613152578082015181840152602081019050613137565b83811115613161576000848401525b50505050565b6000601f19601f8301169050919050565b600061318382613118565b61318d8185613123565b935061319d818560208601613134565b6131a681613167565b840191505092915050565b600060208201905081810360008301526131cb8184613178565b905092915050565b600080fd5b600080fd5b6131e6816130dc565b81146131f157600080fd5b50565b600081359050613203816131dd565b92915050565b6000819050919050565b61321c81613209565b811461322757600080fd5b50565b60008135905061323981613213565b92915050565b60008060408385031215613256576132556131d3565b5b6000613264858286016131f4565b92505060206132758582860161322a565b9150509250929050565b60008115159050919050565b6132948161327f565b82525050565b60006020820190506132af600083018461328b565b92915050565b6132be81613209565b82525050565b60006020820190506132d960008301846132b5565b92915050565b6000602082840312156132f5576132f46131d3565b5b6000613303848285016131f4565b91505092915050565b6000819050919050565b600061333161332c613327846130bc565b61330c565b6130bc565b9050919050565b600061334382613316565b9050919050565b600061335582613338565b9050919050565b6133658161334a565b82525050565b6000602082019050613380600083018461335c565b92915050565b60008060006060848603121561339f5761339e6131d3565b5b60006133ad868287016131f4565b93505060206133be868287016131f4565b92505060406133cf8682870161322a565b9150509250925092565b600060ff82169050919050565b6133ef816133d9565b82525050565b600060208201905061340a60008301846133e6565b92915050565b6134198161327f565b811461342457600080fd5b50565b60008135905061343681613410565b92915050565b60008060408385031215613453576134526131d3565b5b6000613461858286016131f4565b925050602061347285828601613427565b9150509250929050565b600060208284031215613492576134916131d3565b5b60006134a084828501613427565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126134ce576134cd6134a9565b5b8235905067ffffffffffffffff8111156134eb576134ea6134ae565b5b602083019150836020820283011115613507576135066134b3565b5b9250929050565b600080600060408486031215613527576135266131d3565b5b600084013567ffffffffffffffff811115613545576135446131d8565b5b613551868287016134b8565b9350935050602061356486828701613427565b9150509250925092565b60008060408385031215613585576135846131d3565b5b6000613593858286016131f4565b92505060206135a4858286016131f4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806135f557607f821691505b602082108103613608576136076135ae565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061366a602883613123565b91506136758261360e565b604082019050919050565b600060208201905081810360008301526136998161365d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136da82613209565b91506136e583613209565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561371a576137196136a0565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061375b602083613123565b915061376682613725565b602082019050919050565b6000602082019050818103600083015261378a8161374e565b9050919050565b7f43616e6e6f742072652d656e61626c652074726164696e670000000000000000600082015250565b60006137c7601883613123565b91506137d282613791565b602082019050919050565b600060208201905081810360008301526137f6816137ba565b9050919050565b7f54686520556e697377617020706169722063616e6e6f742062652072656d6f7660008201527f65642066726f6d206175746f6d617465644d61726b65744d616b65725061697260208201527f7300000000000000000000000000000000000000000000000000000000000000604082015250565b600061387f604183613123565b915061388a826137fd565b606082019050919050565b600060208201905081810360008301526138ae81613872565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613911602583613123565b915061391c826138b5565b604082019050919050565b6000602082019050818103600083015261394081613904565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061398182613209565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036139b3576139b26136a0565b5b600182019050919050565b600082825260208201905092915050565b6000819050919050565b6139e2816130dc565b82525050565b60006139f483836139d9565b60208301905092915050565b6000613a0f60208401846131f4565b905092915050565b6000602082019050919050565b6000613a3083856139be565b9350613a3b826139cf565b8060005b85811015613a7457613a518284613a00565b613a5b88826139e8565b9750613a6683613a17565b925050600181019050613a3f565b5085925050509392505050565b60006040820190508181036000830152613a9c818587613a24565b9050613aab602083018461328b565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b0f602683613123565b9150613b1a82613ab3565b604082019050919050565b60006020820190508181036000830152613b3e81613b02565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ba1602483613123565b9150613bac82613b45565b604082019050919050565b60006020820190508181036000830152613bd081613b94565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c33602283613123565b9150613c3e82613bd7565b604082019050919050565b60006020820190508181036000830152613c6281613c26565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613cc5602583613123565b9150613cd082613c69565b604082019050919050565b60006020820190508181036000830152613cf481613cb8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613d57602383613123565b9150613d6282613cfb565b604082019050919050565b60006020820190508181036000830152613d8681613d4a565b9050919050565b7f54726164696e67206973206e6f7420616374697665207965742e000000000000600082015250565b6000613dc3601a83613123565b9150613dce82613d8d565b602082019050919050565b60006020820190508181036000830152613df281613db6565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613e2f601683613123565b9150613e3a82613df9565b602082019050919050565b60006020820190508181036000830152613e5e81613e22565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613ec1603583613123565b9150613ecc82613e65565b604082019050919050565b60006020820190508181036000830152613ef081613eb4565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613f2d601383613123565b9150613f3882613ef7565b602082019050919050565b60006020820190508181036000830152613f5c81613f20565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613fbf603683613123565b9150613fca82613f63565b604082019050919050565b60006020820190508181036000830152613fee81613fb2565b9050919050565b600061400082613209565b915061400b83613209565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614044576140436136a0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061408982613209565b915061409483613209565b9250826140a4576140a361404f565b5b828204905092915050565b60006140ba82613209565b91506140c583613209565b9250828210156140d8576140d76136a0565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050614121816131dd565b92915050565b60006020828403121561413d5761413c6131d3565b5b600061414b84828501614112565b91505092915050565b6000819050919050565b600061417961417461416f84614154565b61330c565b613209565b9050919050565b6141898161415e565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b60006141c28261418f565b6141cc81856139be565b93506141d78361419a565b8060005b838110156142085781516141ef88826139e8565b97506141fa836141aa565b9250506001810190506141db565b5085935050505092915050565b600060a08201905061422a60008301886132b5565b6142376020830187614180565b818103604083015261424981866141b7565b905061425860608301856130ee565b61426560808301846132b5565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006142cb602683613123565b91506142d68261426f565b604082019050919050565b600060208201905081810360008301526142fa816142be565b9050919050565b600081905092915050565b50565b600061431c600083614301565b91506143278261430c565b600082019050919050565b600061433d8261430f565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006143a3602183613123565b91506143ae82614347565b604082019050919050565b600060208201905081810360008301526143d281614396565b905091905056fea26469706673582212209d340a285877795b7d0b6e2702fbff85676b43ea8b25e4a64f8b00542a10296064736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106102765760003560e01c806375f0a8741161014f578063bbc0c742116100c1578063dd62ed3e1161007a578063dd62ed3e1461096b578063e2f45605146109a8578063e7f444b3146109d3578063ee40166e146109fe578063f2fde38b14610a29578063f8b45b0514610a525761027d565b8063bbc0c7421461086d578063c024666814610898578063c492f046146108c1578063c876d0b9146108ea578063c8c8ebe414610915578063d0a39814146109405761027d565b80639a36f932116101135780639a36f932146107375780639a7a23d614610762578063a457c2d71461078b578063a9059cbb146107c8578063b62496f514610805578063b9e93700146108425761027d565b806375f0a874146106765780638a8c523c146106a15780638da5cb5b146106b8578063924de9b7146106e357806395d89b411461070c5761027d565b80633f8a6204116101e857806368078952116101ac57806368078952146105785780636ddd1713146105a357806370a08231146105ce578063715018a61461060b578063751039fc146106225780637571336a1461064d5761027d565b80633f8a6204146104a357806349bd5a5e146104ce5780634a62bb65146104f95780634fbee1931461052457806351bc3c85146105615761027d565b80631694505e1161023a5780631694505e1461037d57806318160ddd146103a85780631f3fed8f146103d357806323b872dd146103fe578063313ce5671461043b57806339509351146104665761027d565b8063062287491461028257806306fdde03146102ad578063095ea7b3146102d85780630f4432e31461031557806310d5de53146103405761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610a7d565b6040516102a491906130fd565b60405180910390f35b3480156102b957600080fd5b506102c2610a83565b6040516102cf91906131b1565b60405180910390f35b3480156102e457600080fd5b506102ff60048036038101906102fa919061323f565b610b15565b60405161030c919061329a565b60405180910390f35b34801561032157600080fd5b5061032a610b33565b60405161033791906132c4565b60405180910390f35b34801561034c57600080fd5b50610367600480360381019061036291906132df565b610b39565b604051610374919061329a565b60405180910390f35b34801561038957600080fd5b50610392610b59565b60405161039f919061336b565b60405180910390f35b3480156103b457600080fd5b506103bd610b7d565b6040516103ca91906132c4565b60405180910390f35b3480156103df57600080fd5b506103e8610b87565b6040516103f591906132c4565b60405180910390f35b34801561040a57600080fd5b5061042560048036038101906104209190613386565b610b8d565b604051610432919061329a565b60405180910390f35b34801561044757600080fd5b50610450610c85565b60405161045d91906133f5565b60405180910390f35b34801561047257600080fd5b5061048d6004803603810190610488919061323f565b610c8e565b60405161049a919061329a565b60405180910390f35b3480156104af57600080fd5b506104b8610d3a565b6040516104c591906132c4565b60405180910390f35b3480156104da57600080fd5b506104e3610d40565b6040516104f091906130fd565b60405180910390f35b34801561050557600080fd5b5061050e610d64565b60405161051b919061329a565b60405180910390f35b34801561053057600080fd5b5061054b600480360381019061054691906132df565b610d77565b604051610558919061329a565b60405180910390f35b34801561056d57600080fd5b50610576610dcd565b005b34801561058457600080fd5b5061058d610e7d565b60405161059a91906132c4565b60405180910390f35b3480156105af57600080fd5b506105b8610e83565b6040516105c5919061329a565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f091906132df565b610e96565b60405161060291906132c4565b60405180910390f35b34801561061757600080fd5b50610620610ede565b005b34801561062e57600080fd5b50610637611036565b604051610644919061329a565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f919061343c565b6110f1565b005b34801561068257600080fd5b5061068b6111e3565b60405161069891906130fd565b60405180910390f35b3480156106ad57600080fd5b506106b6611209565b005b3480156106c457600080fd5b506106cd61132f565b6040516106da91906130fd565b60405180910390f35b3480156106ef57600080fd5b5061070a6004803603810190610705919061347c565b611359565b005b34801561071857600080fd5b5061072161140d565b60405161072e91906131b1565b60405180910390f35b34801561074357600080fd5b5061074c61149f565b60405161075991906132c4565b60405180910390f35b34801561076e57600080fd5b506107896004803603810190610784919061343c565b6114a5565b005b34801561079757600080fd5b506107b260048036038101906107ad919061323f565b6115d8565b6040516107bf919061329a565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea919061323f565b6116c3565b6040516107fc919061329a565b60405180910390f35b34801561081157600080fd5b5061082c600480360381019061082791906132df565b6116e1565b604051610839919061329a565b60405180910390f35b34801561084e57600080fd5b50610857611701565b60405161086491906132c4565b60405180910390f35b34801561087957600080fd5b50610882611707565b60405161088f919061329a565b60405180910390f35b3480156108a457600080fd5b506108bf60048036038101906108ba919061343c565b61171a565b005b3480156108cd57600080fd5b506108e860048036038101906108e3919061350e565b61185a565b005b3480156108f657600080fd5b506108ff6119d1565b60405161090c919061329a565b60405180910390f35b34801561092157600080fd5b5061092a6119e4565b60405161093791906132c4565b60405180910390f35b34801561094c57600080fd5b506109556119ea565b60405161096291906132c4565b60405180910390f35b34801561097757600080fd5b50610992600480360381019061098d919061356e565b6119f0565b60405161099f91906132c4565b60405180910390f35b3480156109b457600080fd5b506109bd611a77565b6040516109ca91906132c4565b60405180910390f35b3480156109df57600080fd5b506109e8611a7d565b6040516109f591906132c4565b60405180910390f35b348015610a0a57600080fd5b50610a13611a83565b604051610a2091906132c4565b60405180910390f35b348015610a3557600080fd5b50610a506004803603810190610a4b91906132df565b611a89565b005b348015610a5e57600080fd5b50610a67611c4f565b604051610a7491906132c4565b60405180910390f35b61dead81565b606060038054610a92906135dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610abe906135dd565b8015610b0b5780601f10610ae057610100808354040283529160200191610b0b565b820191906000526020600020905b815481529060010190602001808311610aee57829003601f168201915b5050505050905090565b6000610b29610b22611c55565b8484611c5d565b6001905092915050565b60085481565b60146020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60105481565b6000610b9a848484611e26565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610be5611c55565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90613680565b60405180910390fd5b610c7985610c71611c55565b858403611c5d565b60019150509392505050565b60006012905090565b6000610d30610c9b611c55565b848460016000610ca9611c55565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2b91906136cf565b611c5d565b6001905092915050565b600f5481565b7f000000000000000000000000d7dfae0f3df5108e6b9d346acd34f64a0a45573581565b600a60019054906101000a900460ff1681565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610dd5611c55565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90613771565b60405180910390fd5b6000610e6f30610e96565b9050610e7a8161296a565b50565b600b5481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ee6611c55565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90613771565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611040611c55565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690613771565b60405180910390fd5b6000600a60016101000a81548160ff0219169083151502179055506001905090565b6110f9611c55565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90613771565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600a60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611211611c55565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129790613771565b60405180910390fd5b600a60009054906101000a900460ff16156112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e7906137dd565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff02191690831515021790555043600981905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611361611c55565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790613771565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b60606004805461141c906135dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611448906135dd565b80156114955780601f1061146a57610100808354040283529160200191611495565b820191906000526020600020905b81548152906001019060200180831161147857829003601f168201915b5050505050905090565b6103e881565b6114ad611c55565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390613771565b60405180910390fd5b7f000000000000000000000000d7dfae0f3df5108e6b9d346acd34f64a0a45573573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c190613895565b60405180910390fd5b6115d48282612ba7565b5050565b600080600160006115e7611c55565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b90613927565b60405180910390fd5b6116b86116af611c55565b85858403611c5d565b600191505092915050565b60006116d76116d0611c55565b8484611e26565b6001905092915050565b60156020528060005260406000206000915054906101000a900460ff1681565b600c5481565b600a60009054906101000a900460ff1681565b611722611c55565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a890613771565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161184e919061329a565b60405180910390a25050565b611862611c55565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e890613771565b60405180910390fd5b60005b8383905081101561199057816013600086868581811061191757611916613947565b5b905060200201602081019061192c91906132df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061198890613976565b9150506118f4565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b358383836040516119c493929190613a81565b60405180910390a1505050565b601160009054906101000a900460ff1681565b60075481565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60065481565b600d5481565b60095481565b611a91611c55565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1790613771565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8690613b25565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60125481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc390613bb7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3290613c49565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611e1991906132c4565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8c90613cdb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efb90613d6d565b60405180910390fd5b60008103611f1d57611f1883836000612c48565b612965565b600a60009054906101000a900460ff1661201257601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611fd25750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200890613dd9565b60405180910390fd5b5b600a60019054906101000a900460ff16156125335761202f61132f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561209d575061206d61132f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120d65750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612110575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121295750600560149054906101000a900460ff16155b1561253257600a60009054906101000a900460ff1661222357601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121e35750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221990613e45565b60405180910390fd5b5b601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156122c65750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561238057670de0b6b3a76400006007546122e191906136cf565b811115612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a90613ed7565b60405180910390fd5b60125461232f83610e96565b8261233a91906136cf565b111561237b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237290613f43565b60405180910390fd5b612531565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124235750601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561248557670de0b6b3a764000060075461243e91906136cf565b811115612480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247790613fd5565b60405180910390fd5b612530565b601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661252f576012546124e283610e96565b826124ed91906136cf565b111561252e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252590613f43565b60405180910390fd5b5b5b5b5b5b600061253e30610e96565b9050600060065482101590508080156125635750600a60029054906101000a900460ff165b801561257c5750600560149054906101000a900460ff16155b80156125d25750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126285750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561267e5750601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156126c2576001600560146101000a81548160ff0219169083151502179055506126a6612eb1565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127785750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561278257600090505b6000811561295557601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127e557506000600e54115b15612866576128136103e8612805600e5488612f9590919063ffffffff16565b61300f90919063ffffffff16565b905080600f600082825461282791906136cf565b92505081905550600e54600d548261283f9190613ff5565b612849919061407e565b6010600082825461285a91906136cf565b92505081905550612931565b601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612930576128e16103e86128d3600c5488612f9590919063ffffffff16565b61300f90919063ffffffff16565b905080600f60008282546128f591906136cf565b92505081905550600c54600b548261290d9190613ff5565b612917919061407e565b6010600082825461292891906136cf565b925050819055505b5b600081111561294657612945873083612c48565b5b808561295291906140af565b94505b612960878787612c48565b505050505b505050565b6000600267ffffffffffffffff811115612987576129866140e3565b5b6040519080825280602002602001820160405280156129b55781602001602082028036833780820191505090505b50905030816000815181106129cd576129cc613947565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a969190614127565b81600181518110612aaa57612aa9613947565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612b0f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c5d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612b71959493929190614215565b600060405180830381600087803b158015612b8b57600080fd5b505af1158015612b9f573d6000803e3d6000fd5b505050505050565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cae90613cdb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1d90613d6d565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da3906142e1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e3f91906136cf565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612ea391906132c4565b60405180910390a350505050565b6000612ebc30610e96565b905060006010549050600080831480612ed55750600082145b15612ee257505050612f93565b6000839050612ef08161296a565b600a60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612f3690614332565b60006040518083038185875af1925050503d8060008114612f73576040519150601f19603f3d011682016040523d82523d6000602084013e612f78565b606091505b50508092505060006010819055506000600f81905550505050505b565b6000808303612fa75760009050613009565b60008284612fb59190613ff5565b9050828482612fc4919061407e565b14613004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffb906143b9565b60405180910390fd5b809150505b92915050565b600061305183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613059565b905092915050565b600080831182906130a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309791906131b1565b60405180910390fd5b50600083856130af919061407e565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130e7826130bc565b9050919050565b6130f7816130dc565b82525050565b600060208201905061311260008301846130ee565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613152578082015181840152602081019050613137565b83811115613161576000848401525b50505050565b6000601f19601f8301169050919050565b600061318382613118565b61318d8185613123565b935061319d818560208601613134565b6131a681613167565b840191505092915050565b600060208201905081810360008301526131cb8184613178565b905092915050565b600080fd5b600080fd5b6131e6816130dc565b81146131f157600080fd5b50565b600081359050613203816131dd565b92915050565b6000819050919050565b61321c81613209565b811461322757600080fd5b50565b60008135905061323981613213565b92915050565b60008060408385031215613256576132556131d3565b5b6000613264858286016131f4565b92505060206132758582860161322a565b9150509250929050565b60008115159050919050565b6132948161327f565b82525050565b60006020820190506132af600083018461328b565b92915050565b6132be81613209565b82525050565b60006020820190506132d960008301846132b5565b92915050565b6000602082840312156132f5576132f46131d3565b5b6000613303848285016131f4565b91505092915050565b6000819050919050565b600061333161332c613327846130bc565b61330c565b6130bc565b9050919050565b600061334382613316565b9050919050565b600061335582613338565b9050919050565b6133658161334a565b82525050565b6000602082019050613380600083018461335c565b92915050565b60008060006060848603121561339f5761339e6131d3565b5b60006133ad868287016131f4565b93505060206133be868287016131f4565b92505060406133cf8682870161322a565b9150509250925092565b600060ff82169050919050565b6133ef816133d9565b82525050565b600060208201905061340a60008301846133e6565b92915050565b6134198161327f565b811461342457600080fd5b50565b60008135905061343681613410565b92915050565b60008060408385031215613453576134526131d3565b5b6000613461858286016131f4565b925050602061347285828601613427565b9150509250929050565b600060208284031215613492576134916131d3565b5b60006134a084828501613427565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126134ce576134cd6134a9565b5b8235905067ffffffffffffffff8111156134eb576134ea6134ae565b5b602083019150836020820283011115613507576135066134b3565b5b9250929050565b600080600060408486031215613527576135266131d3565b5b600084013567ffffffffffffffff811115613545576135446131d8565b5b613551868287016134b8565b9350935050602061356486828701613427565b9150509250925092565b60008060408385031215613585576135846131d3565b5b6000613593858286016131f4565b92505060206135a4858286016131f4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806135f557607f821691505b602082108103613608576136076135ae565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061366a602883613123565b91506136758261360e565b604082019050919050565b600060208201905081810360008301526136998161365d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136da82613209565b91506136e583613209565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561371a576137196136a0565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061375b602083613123565b915061376682613725565b602082019050919050565b6000602082019050818103600083015261378a8161374e565b9050919050565b7f43616e6e6f742072652d656e61626c652074726164696e670000000000000000600082015250565b60006137c7601883613123565b91506137d282613791565b602082019050919050565b600060208201905081810360008301526137f6816137ba565b9050919050565b7f54686520556e697377617020706169722063616e6e6f742062652072656d6f7660008201527f65642066726f6d206175746f6d617465644d61726b65744d616b65725061697260208201527f7300000000000000000000000000000000000000000000000000000000000000604082015250565b600061387f604183613123565b915061388a826137fd565b606082019050919050565b600060208201905081810360008301526138ae81613872565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613911602583613123565b915061391c826138b5565b604082019050919050565b6000602082019050818103600083015261394081613904565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061398182613209565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036139b3576139b26136a0565b5b600182019050919050565b600082825260208201905092915050565b6000819050919050565b6139e2816130dc565b82525050565b60006139f483836139d9565b60208301905092915050565b6000613a0f60208401846131f4565b905092915050565b6000602082019050919050565b6000613a3083856139be565b9350613a3b826139cf565b8060005b85811015613a7457613a518284613a00565b613a5b88826139e8565b9750613a6683613a17565b925050600181019050613a3f565b5085925050509392505050565b60006040820190508181036000830152613a9c818587613a24565b9050613aab602083018461328b565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b0f602683613123565b9150613b1a82613ab3565b604082019050919050565b60006020820190508181036000830152613b3e81613b02565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ba1602483613123565b9150613bac82613b45565b604082019050919050565b60006020820190508181036000830152613bd081613b94565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c33602283613123565b9150613c3e82613bd7565b604082019050919050565b60006020820190508181036000830152613c6281613c26565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613cc5602583613123565b9150613cd082613c69565b604082019050919050565b60006020820190508181036000830152613cf481613cb8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613d57602383613123565b9150613d6282613cfb565b604082019050919050565b60006020820190508181036000830152613d8681613d4a565b9050919050565b7f54726164696e67206973206e6f7420616374697665207965742e000000000000600082015250565b6000613dc3601a83613123565b9150613dce82613d8d565b602082019050919050565b60006020820190508181036000830152613df281613db6565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613e2f601683613123565b9150613e3a82613df9565b602082019050919050565b60006020820190508181036000830152613e5e81613e22565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613ec1603583613123565b9150613ecc82613e65565b604082019050919050565b60006020820190508181036000830152613ef081613eb4565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613f2d601383613123565b9150613f3882613ef7565b602082019050919050565b60006020820190508181036000830152613f5c81613f20565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613fbf603683613123565b9150613fca82613f63565b604082019050919050565b60006020820190508181036000830152613fee81613fb2565b9050919050565b600061400082613209565b915061400b83613209565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614044576140436136a0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061408982613209565b915061409483613209565b9250826140a4576140a361404f565b5b828204905092915050565b60006140ba82613209565b91506140c583613209565b9250828210156140d8576140d76136a0565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050614121816131dd565b92915050565b60006020828403121561413d5761413c6131d3565b5b600061414b84828501614112565b91505092915050565b6000819050919050565b600061417961417461416f84614154565b61330c565b613209565b9050919050565b6141898161415e565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b60006141c28261418f565b6141cc81856139be565b93506141d78361419a565b8060005b838110156142085781516141ef88826139e8565b97506141fa836141aa565b9250506001810190506141db565b5085935050505092915050565b600060a08201905061422a60008301886132b5565b6142376020830187614180565b818103604083015261424981866141b7565b905061425860608301856130ee565b61426560808301846132b5565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006142cb602683613123565b91506142d68261426f565b604082019050919050565b600060208201905081810360008301526142fa816142be565b9050919050565b600081905092915050565b50565b600061431c600083614301565b91506143278261430c565b600082019050919050565b600061433d8261430f565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006143a3602183613123565b91506143ae82614347565b604082019050919050565b600060208201905081810360008301526143d281614396565b905091905056fea26469706673582212209d340a285877795b7d0b6e2702fbff85676b43ea8b25e4a64f8b00542a10296064736f6c634300080e0033

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.