ETH Price: $2,704.60 (+0.18%)

Token

Parrot (PRT)
 

Overview

Max Total Supply

1,000,000,000 PRT

Holders

147

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
204,454 PRT

Value
$0.00
0x24584d75176cdf226db337514b71afede7ae1f72
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:
Parrot

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : Parrot.sol
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.9;

import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';
import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol';
import './FeeProcessor.sol';
import './ParrotRewards.sol';

contract Parrot is ERC20, Ownable {
  uint256 private constant PERCENT_DENOMENATOR = 1000;
  address private constant DEX_ROUTER =
    0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;

  uint256 public buyDevelopmentFee = 20; // 2%
  uint256 public buyTreasuryFee = 20; // 2%
  uint256 public buyLiquidityFee = 20; // 2%
  uint256 public buyTotalFees =
    buyDevelopmentFee + buyTreasuryFee + buyLiquidityFee;

  uint256 public sellDevelopmentFee = 20; // 2%
  uint256 public sellTreasuryFee = 20; // 2%
  uint256 public sellLiquidityFee = 20; // 2%
  uint256 public sellTotalFees =
    sellDevelopmentFee + sellTreasuryFee + sellLiquidityFee;

  uint256 public tokensForDevelopment;
  uint256 public tokensForTreasury;
  uint256 public tokensForLiquidity;

  FeeProcessor private _feeProcessor;
  ParrotRewards private _rewards;
  mapping(address => bool) private _isTaxExcluded;
  bool private _taxesOff;

  uint256 public maxTxnAmount;
  mapping(address => bool) public isExcludedMaxTxnAmount;
  uint256 public maxWallet;
  mapping(address => bool) public isExcludedMaxWallet;

  uint256 public liquifyRate = 5; // 0.5% of LP balance

  address public USDC;
  address public uniswapV2Pair;
  IUniswapV2Router02 public uniswapV2Router;
  mapping(address => bool) public marketMakingPairs;

  mapping(address => bool) private _isBlacklisted;

  bool private _swapEnabled = true;
  bool private _swapping = false;
  modifier lockSwap() {
    _swapping = true;
    _;
    _swapping = false;
  }

  constructor(address _usdc) ERC20('Parrot', 'PRT') {
    _mint(msg.sender, 1_000_000_000 * 10**18);

    IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(DEX_ROUTER);
    address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
      .createPair(address(this), _usdc);
    USDC = _usdc;
    marketMakingPairs[_uniswapV2Pair] = true;
    uniswapV2Pair = _uniswapV2Pair;
    uniswapV2Router = _uniswapV2Router;

    maxTxnAmount = (totalSupply() * 1) / 100; // 1% supply
    maxWallet = (totalSupply() * 1) / 100; // 1% supply

    _feeProcessor = new FeeProcessor(address(this), USDC, DEX_ROUTER);
    _feeProcessor.transferOwnership(msg.sender);
    _rewards = new ParrotRewards(address(this));
    _rewards.setUSDCAddress(USDC);
    _rewards.transferOwnership(msg.sender);
    _isTaxExcluded[address(this)] = true;
    _isTaxExcluded[address(_feeProcessor)] = true;
    _isTaxExcluded[msg.sender] = true;
    isExcludedMaxTxnAmount[address(this)] = true;
    isExcludedMaxTxnAmount[address(_feeProcessor)] = true;
    isExcludedMaxTxnAmount[msg.sender] = true;
    isExcludedMaxWallet[address(this)] = true;
    isExcludedMaxWallet[address(_feeProcessor)] = true;
    isExcludedMaxWallet[address(_rewards)] = true;
    isExcludedMaxWallet[msg.sender] = true;
  }

  function _transfer(
    address sender,
    address recipient,
    uint256 amount
  ) internal virtual override {
    bool _isBuy = marketMakingPairs[sender] &&
      recipient != address(uniswapV2Router);
    bool _isSell = marketMakingPairs[recipient];
    bool _isSwap = _isBuy || _isSell;
    address _marketMakingPair;

    if (!_isBuy) {
      require(!_isBlacklisted[recipient], 'blacklisted wallet');
      require(!_isBlacklisted[sender], 'blacklisted wallet');
      require(!_isBlacklisted[_msgSender()], 'blacklisted wallet');
    }

    if (_isSwap) {
      if (_isBuy) {
        // buy
        _marketMakingPair = sender;

        if (!isExcludedMaxTxnAmount[recipient]) {
          require(
            amount <= maxTxnAmount,
            'cannot swap more than max transaction amount'
          );
        }
      } else {
        // sell
        _marketMakingPair = recipient;

        if (!isExcludedMaxTxnAmount[sender]) {
          require(
            amount <= maxTxnAmount,
            'cannot swap more than max transaction amount'
          );
        }
      }
    }

    // enforce on buys and wallet/wallet transfers only
    if (!_isSell && !isExcludedMaxWallet[recipient]) {
      require(
        amount + balanceOf(recipient) <= maxWallet,
        'max wallet exceeded'
      );
    }

    uint256 _minSwap = totalSupply();
    if (_marketMakingPair != address(0)) {
      _minSwap =
        (balanceOf(_marketMakingPair) * liquifyRate) /
        PERCENT_DENOMENATOR;
      _minSwap = _minSwap == 0 ? totalSupply() : _minSwap;
    }
    bool _overMin = tokensForDevelopment +
      tokensForTreasury +
      tokensForLiquidity >=
      _minSwap;
    if (_swapEnabled && !_swapping && _overMin && sender != _marketMakingPair) {
      _swap(_minSwap);
    }

    uint256 tax = 0;
    if (
      _isSwap &&
      !_taxesOff &&
      !(_isTaxExcluded[sender] || _isTaxExcluded[recipient])
    ) {
      if (_isBuy) {
        tax = (amount * buyTotalFees) / PERCENT_DENOMENATOR;
        tokensForDevelopment += (tax * buyDevelopmentFee) / buyTotalFees;
        tokensForTreasury += (tax * buyTreasuryFee) / buyTotalFees;
        tokensForLiquidity += (tax * buyLiquidityFee) / buyTotalFees;
      } else {
        // sell
        tax = (amount * sellTotalFees) / PERCENT_DENOMENATOR;
        tokensForDevelopment += (tax * sellDevelopmentFee) / sellTotalFees;
        tokensForTreasury += (tax * sellTreasuryFee) / sellTotalFees;
        tokensForLiquidity += (tax * sellLiquidityFee) / sellTotalFees;
      }
      if (tax > 0) {
        super._transfer(sender, address(this), tax);
      }

      _trueUpTaxTokens();
    }

    super._transfer(sender, recipient, amount - tax);
  }

  function _swap(uint256 _amountToSwap) private lockSwap {
    uint256 _tokensForDevelopment = tokensForDevelopment;
    uint256 _tokensForTreasury = tokensForTreasury;
    uint256 _tokensForLiquidity = tokensForLiquidity;

    // the max amount we want to swap is _amountToSwap, so make sure if
    // the amount of tokens that are available to swap is more than that,
    // that we adjust the tokens to swap to be max that amount.
    if (
      _tokensForDevelopment + _tokensForTreasury + _tokensForLiquidity >
      _amountToSwap
    ) {
      _tokensForLiquidity = _tokensForLiquidity > _amountToSwap
        ? _amountToSwap
        : _tokensForLiquidity;
      uint256 _remaining = _amountToSwap - _tokensForLiquidity;
      _tokensForTreasury =
        (_remaining * buyTreasuryFee) /
        (buyTreasuryFee + buyDevelopmentFee);
      _tokensForDevelopment = _remaining - _tokensForTreasury;
    }

    uint256 _liquidityTokens = _tokensForLiquidity / 2;
    uint256 _finalAmountToSwap = _tokensForDevelopment +
      _tokensForTreasury +
      _liquidityTokens;

    // generate the uniswap pair path of token -> USDC
    address[] memory path = new address[](2);
    path[0] = address(this);
    path[1] = USDC;

    _approve(address(this), address(uniswapV2Router), _finalAmountToSwap);
    uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
      _finalAmountToSwap,
      0,
      path,
      address(_feeProcessor),
      block.timestamp
    );
    if (_liquidityTokens > 0) {
      super._transfer(address(this), address(_feeProcessor), _liquidityTokens);
    }
    _feeProcessor.processAndDistribute(
      _tokensForDevelopment,
      _tokensForTreasury,
      _liquidityTokens
    );

    tokensForDevelopment -= _tokensForDevelopment;
    tokensForTreasury -= _tokensForTreasury;
    tokensForLiquidity -= _tokensForLiquidity;
  }

  function _trueUpTaxTokens() internal {
    uint256 _latestBalance = balanceOf(address(this));
    uint256 _latestDesiredBal = tokensForDevelopment +
      tokensForTreasury +
      tokensForLiquidity;
    if (_latestDesiredBal != _latestBalance) {
      if (_latestDesiredBal > _latestBalance) {
        bool _areExcessMoreThanBal = tokensForDevelopment + tokensForTreasury >
          _latestBalance;
        tokensForTreasury = _areExcessMoreThanBal ? 0 : tokensForTreasury;
        tokensForDevelopment = _areExcessMoreThanBal ? 0 : tokensForDevelopment;
      }
      tokensForLiquidity =
        _latestBalance -
        tokensForTreasury -
        tokensForDevelopment;
    }
  }

  function feeProcessor() external view returns (address) {
    return address(_feeProcessor);
  }

  function rewardsContract() external view returns (address) {
    return address(_rewards);
  }

  function isBlacklisted(address wallet) external view returns (bool) {
    return _isBlacklisted[wallet];
  }

  function blacklistWallet(address wallet) external onlyOwner {
    require(
      wallet != address(uniswapV2Router),
      'cannot not blacklist dex router'
    );
    require(!_isBlacklisted[wallet], 'wallet is already blacklisted');
    _isBlacklisted[wallet] = true;
  }

  function forgiveBlacklistedWallet(address wallet) external onlyOwner {
    require(_isBlacklisted[wallet], 'wallet is not blacklisted');
    _isBlacklisted[wallet] = false;
  }

  function setBuyTaxes(
    uint256 _developmentFee,
    uint256 _treasuryFee,
    uint256 _liquidityFee
  ) external onlyOwner {
    buyDevelopmentFee = _developmentFee;
    buyTreasuryFee = _treasuryFee;
    buyLiquidityFee = _liquidityFee;
    buyTotalFees = buyDevelopmentFee + buyTreasuryFee + buyLiquidityFee;
    require(
      buyTotalFees <= (PERCENT_DENOMENATOR * 15) / 100,
      'tax cannot be more than 15%'
    );
  }

  function setSellTaxes(
    uint256 _developmentFee,
    uint256 _treasuryFee,
    uint256 _liquidityFee
  ) external onlyOwner {
    sellDevelopmentFee = _developmentFee;
    sellTreasuryFee = _treasuryFee;
    sellLiquidityFee = _liquidityFee;
    sellTotalFees = sellDevelopmentFee + sellTreasuryFee + sellLiquidityFee;
    require(
      sellTotalFees <= (PERCENT_DENOMENATOR * 15) / 100,
      'tax cannot be more than 15%'
    );
  }

  function setMarketMakingPair(address _addy, bool _isPair) external onlyOwner {
    marketMakingPairs[_addy] = _isPair;
  }

  function setMaxTxnAmount(uint256 _numTokens) external onlyOwner {
    require(
      _numTokens >= (totalSupply() * 1) / 1000,
      'must be more than 0.1% supply'
    );
    maxTxnAmount = _numTokens;
  }

  function setMaxWallet(uint256 _numTokens) external onlyOwner {
    require(
      _numTokens >= (totalSupply() * 5) / 1000,
      'must be more than 0.5% supply'
    );
    maxWallet = _numTokens;
  }

  function setLiquifyRate(uint256 _rate) external onlyOwner {
    require(_rate <= PERCENT_DENOMENATOR / 10, 'must be less than 10%');
    liquifyRate = _rate;
  }

  function setIsTaxExcluded(address _wallet, bool _isExcluded)
    external
    onlyOwner
  {
    _isTaxExcluded[_wallet] = _isExcluded;
  }

  function setIsExcludeFromMaxTxnAmount(address _wallet, bool _isExcluded)
    external
    onlyOwner
  {
    isExcludedMaxTxnAmount[_wallet] = _isExcluded;
  }

  function setIsExcludeFromMaxWallet(address _wallet, bool _isExcluded)
    external
    onlyOwner
  {
    isExcludedMaxWallet[_wallet] = _isExcluded;
  }

  function setTaxesOff(bool _areOff) external onlyOwner {
    _taxesOff = _areOff;
  }

  function setSwapEnabled(bool _enabled) external onlyOwner {
    _swapEnabled = _enabled;
  }

  function withdrawTokens(address _tokenAddy, uint256 _amount)
    external
    onlyOwner
  {
    require(_tokenAddy != address(this), 'cannot withdraw this token');
    IERC20 _token = IERC20(_tokenAddy);
    _amount = _amount > 0 ? _amount : _token.balanceOf(address(this));
    require(_amount > 0, 'make sure there is a balance available to withdraw');
    _token.transfer(owner(), _amount);
  }
}

File 2 of 14 : ParrotRewards.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/interfaces/IERC20.sol";
import "./IParrotRewards.sol";

contract ParrotRewards is IParrotRewards, Ownable {
    event DistributeReward(address indexed wallet, address receiver);
    event DepositRewards(address indexed wallet, uint256 amountETH);

    IERC20 public usdc;

    address public immutable shareholderToken;
    uint256 public totalLockedUsers;
    uint256 public totalSharesDeposited;
    uint256 public totalRewards;
    uint256 public totalDistributed;

    uint160[] private shareHolders;

    mapping(address => uint256) private shares;
    mapping(address => uint256) private unclaimedRewards;
    mapping(address => uint256) private claimedRewards;

    uint256 private constant ACC_FACTOR = 10 ** 36;

    constructor(address _shareholderToken) {
        shareholderToken = _shareholderToken;
    }

    function deposit(uint256 _amount) external {
        IERC20 tokenContract = IERC20(shareholderToken);
        tokenContract.transferFrom(msg.sender, address(this), _amount);
        _addShares(msg.sender, _amount);
    }

    function withdraw(uint256 _amount) external {
        address shareholder = msg.sender;
        _removeShares(shareholder, _amount);
        IERC20(shareholderToken).transfer(shareholder, _amount);
    }

    function _addShares(address shareholder, uint256 amount) internal {
        uint256 sharesBefore = shares[shareholder];
        totalSharesDeposited += amount;
        shares[shareholder] += amount;
        if (sharesBefore == 0 && shares[shareholder] > 0) {
            shareHolders.push(uint160(shareholder));
            totalLockedUsers++;
        }
    }

    function _removeShares(address shareholder, uint256 amount) internal {
        require(
            shares[shareholder] > 0 && amount <= shares[shareholder],
            "only withdraw what you deposited"
        );
        _distributeReward(shareholder);

        totalSharesDeposited -= amount;
        shares[shareholder] -= amount;
        if (shares[shareholder] == 0) {
            if (shareHolders.length > 1) {
                for (uint256 i = 0; i < shareHolders.length; ) {
                    if (shareHolders[i] == uint160(shareholder)) {
                        shareHolders[i] = shareHolders[shareHolders.length - 1];
                        delete shareHolders[shareHolders.length - 1];
                    }
                    unchecked {
                        ++i;
                    }
                }
            } else {
                delete shareHolders[0];
            }
            totalLockedUsers--;
        }
    }

    function depositRewards(uint256 _amount) external {
        require(totalSharesDeposited > 0, "no reward recipients");
        usdc.transferFrom(msg.sender, address(this), _amount);

        uint256 shareAmount = (ACC_FACTOR * _amount) / totalSharesDeposited;
        for (uint256 i = 0; i < shareHolders.length; ) {
            uint256 userCut = shareAmount * shares[address(shareHolders[i])];
            // Calculate the USDC equivalent of the share amount
            uint256 usdcAmount = userCut / ACC_FACTOR;
            unclaimedRewards[address(shareHolders[i])] += usdcAmount;
            unchecked {
                ++i;
            }
        }

        totalRewards += _amount;
        emit DepositRewards(msg.sender, _amount);
    }

    function _distributeReward(address shareholder) internal {
        require(shares[shareholder] > 0, "no shares owned");

        uint256 amount = getUnpaid(shareholder);
        if (amount > 0) {
            claimedRewards[shareholder] += amount;
            totalDistributed += amount;
            unclaimedRewards[shareholder] = 0;

            usdc.transfer(shareholder, amount);
            emit DistributeReward(shareholder, shareholder);
        }
    }

    function claimReward() external {
        _distributeReward(msg.sender);
    }

    function setUSDCAddress(address _usdc) external onlyOwner {
        usdc = IERC20(_usdc);
    }

    function getUnpaid(address shareholder) public view returns (uint256) {
        return unclaimedRewards[shareholder];
    }

    function getClaimed(address shareholder) public view returns (uint256) {
        return claimedRewards[shareholder];
    }

    function getShares(address user) external view returns (uint256) {
        return shares[user];
    }
}

File 3 of 14 : FeeProcessor.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/interfaces/IERC20.sol';
import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol';

contract FeeProcessor is Ownable {
  address public developmentWallet;
  address public treasuryWallet;
  address public liquidityWallet;

  address public PRT;
  address public USDC;
  IUniswapV2Router02 public uniswapV2Router;

  modifier onlyPrt() {
    require(msg.sender == PRT, 'only PRT contract can call');
    _;
  }

  constructor(
    address _prt,
    address _usdc,
    address _dexRouter
  ) {
    PRT = _prt;
    USDC = _usdc;
    IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(_dexRouter);
    uniswapV2Router = _uniswapV2Router;
  }

  function processAndDistribute(
    uint256 _tokensForDevelopment,
    uint256 _tokensForTreasury,
    uint256 _liquidityPRT
  ) external onlyPrt {
    uint256 _finalSwapAmount = _tokensForDevelopment +
      _tokensForTreasury +
      _liquidityPRT;
    uint256 _usdcBalToProcess = IERC20(USDC).balanceOf(address(this));
    if (_usdcBalToProcess > 0) {
      uint256 _treasuryUSDC = (_usdcBalToProcess * _tokensForTreasury) /
        _finalSwapAmount;
      uint256 _developmentUSDC = (_usdcBalToProcess * _tokensForDevelopment) /
        _finalSwapAmount;
      uint256 _liquidityUSDC = _usdcBalToProcess -
        _treasuryUSDC -
        _developmentUSDC;
      _processFees(
        _developmentUSDC,
        _treasuryUSDC,
        _liquidityUSDC,
        _liquidityPRT
      );
    }
  }

  function _processFees(
    uint256 _developmentUSDC,
    uint256 _treasuryUSDC,
    uint256 _liquidityUSDC,
    uint256 _liquidityPRT
  ) internal {
    IERC20 _usdc = IERC20(USDC);
    if (_developmentUSDC > 0) {
      address _developmentWallet = developmentWallet == address(0)
        ? owner()
        : developmentWallet;
      _usdc.transfer(_developmentWallet, _developmentUSDC);
    }

    if (_treasuryUSDC > 0) {
      address _treasuryWallet = treasuryWallet == address(0)
        ? owner()
        : treasuryWallet;
      _usdc.transfer(_treasuryWallet, _treasuryUSDC);
    }

    if (_liquidityUSDC > 0 && _liquidityPRT > 0) {
      _addLp(_liquidityPRT, _liquidityUSDC);
    }
  }

  function _addLp(uint256 prtAmount, uint256 usdcAmount) internal {
    address _liquidityWallet = liquidityWallet == address(0)
      ? owner()
      : liquidityWallet;
    IERC20 _prt = IERC20(PRT);
    IERC20 _usdc = IERC20(USDC);

    _prt.approve(address(uniswapV2Router), prtAmount);
    _usdc.approve(address(uniswapV2Router), usdcAmount);
    uniswapV2Router.addLiquidity(
      USDC,
      PRT,
      usdcAmount,
      prtAmount,
      0,
      0,
      _liquidityWallet,
      block.timestamp
    );
    uint256 _contUSDCBal = _usdc.balanceOf(address(this));
    if (_contUSDCBal > 0) {
      _usdc.transfer(_liquidityWallet, _contUSDCBal);
    }
    uint256 _contPRTBal = _prt.balanceOf(address(this));
    if (_contPRTBal > 0) {
      _prt.transfer(_liquidityWallet, _contPRTBal);
    }
  }

  function setDevelopmentWallet(address _wallet) external onlyOwner {
    developmentWallet = _wallet;
  }

  function setTreasuryWallet(address _wallet) external onlyOwner {
    treasuryWallet = _wallet;
  }

  function setLiquidityWallet(address _wallet) external onlyOwner {
    liquidityWallet = _wallet;
  }
}

File 4 of 14 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

File 5 of 14 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

File 6 of 14 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 7 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 8 of 14 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 14 : IParrotRewards.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

interface IParrotRewards {
  function claimReward() external;

  function depositRewards(uint256 _amount) external;

  function getShares(address wallet) external view returns (uint256);

  function deposit(uint256 amount) external;

  function withdraw(uint256 amount) external;
}

File 10 of 14 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/IERC20.sol";

File 11 of 14 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_usdc","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"blacklistWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyDevelopmentFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeProcessor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"forgiveBlacklistedWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedMaxTxnAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedMaxWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquifyRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"marketMakingPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxnAmount","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevelopmentFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_isExcluded","type":"bool"}],"name":"setIsExcludeFromMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_isExcluded","type":"bool"}],"name":"setIsExcludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_isExcluded","type":"bool"}],"name":"setIsTaxExcluded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rate","type":"uint256"}],"name":"setLiquifyRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addy","type":"address"},{"internalType":"bool","name":"_isPair","type":"bool"}],"name":"setMarketMakingPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"setMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_areOff","type":"bool"}],"name":"setTaxesOff","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDevelopment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTreasury","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddy","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260146006556014600755601460085560085460075460065462000028919062000dde565b62000034919062000dde565b6009556014600a556014600b556014600c55600c54600b54600a546200005b919062000dde565b62000067919062000dde565b600d5560056019556001601f60006101000a81548160ff0219169083151502179055506000601f60016101000a81548160ff021916908315150217905550348015620000b257600080fd5b506040516200866d3803806200866d8339818101604052810190620000d8919062000e83565b6040518060400160405280600681526020017f506172726f7400000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5052540000000000000000000000000000000000000000000000000000000000815250816003908162000155919062001125565b50806004908162000167919062001125565b5050506200018a6200017e62000b3a60201b60201c565b62000b4260201b60201c565b620001a8336b033b2e3c9fd0803ce800000062000c0860201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200020f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000235919062000e83565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630856040518363ffffffff1660e01b8152600401620002719291906200121d565b6020604051808303816000875af115801562000291573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b7919062000e83565b905082601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060646001620003e862000d7560201b60201c565b620003f491906200124a565b620004009190620012c4565b601581905550606460016200041a62000d7560201b60201c565b6200042691906200124a565b620004329190620012c4565b60178190555030601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16737a250d5630b4cf539739df2c5dacb4c659f2488d6040516200047f9062000d89565b6200048d93929190620012fc565b604051809103906000f080158015620004aa573d6000803e3d6000fd5b50601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f2fde38b336040518263ffffffff1660e01b815260040162000548919062001339565b600060405180830381600087803b1580156200056357600080fd5b505af115801562000578573d6000803e3d6000fd5b50505050306040516200058b9062000d97565b62000597919062001339565b604051809103906000f080158015620005b4573d6000803e3d6000fd5b50601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663aaf5bfc3601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b815260040162000674919062001339565b600060405180830381600087803b1580156200068f57600080fd5b505af1158015620006a4573d6000803e3d6000fd5b50505050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f2fde38b336040518263ffffffff1660e01b815260040162000705919062001339565b600060405180830381600087803b1580156200072057600080fd5b505af115801562000735573d6000803e3d6000fd5b505050506001601360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160136000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160166000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160186000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160186000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505062001407565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000c7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c7190620013b7565b60405180910390fd5b62000c8e6000838362000d7f60201b60201c565b806002600082825462000ca2919062000dde565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000d559190620013ea565b60405180910390a362000d716000838362000d8460201b60201c565b5050565b6000600254905090565b505050565b505050565b6118c2806200525983390190565b611b528062006b1b83390190565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000deb8262000da5565b915062000df88362000da5565b925082820190508082111562000e135762000e1262000daf565b5b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e4b8262000e1e565b9050919050565b62000e5d8162000e3e565b811462000e6957600080fd5b50565b60008151905062000e7d8162000e52565b92915050565b60006020828403121562000e9c5762000e9b62000e19565b5b600062000eac8482850162000e6c565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f3757607f821691505b60208210810362000f4d5762000f4c62000eef565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000fb77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000f78565b62000fc3868362000f78565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620010066200100062000ffa8462000da5565b62000fdb565b62000da5565b9050919050565b6000819050919050565b620010228362000fe5565b6200103a62001031826200100d565b84845462000f85565b825550505050565b600090565b6200105162001042565b6200105e81848462001017565b505050565b5b8181101562001086576200107a60008262001047565b60018101905062001064565b5050565b601f821115620010d5576200109f8162000f53565b620010aa8462000f68565b81016020851015620010ba578190505b620010d2620010c98562000f68565b83018262001063565b50505b505050565b600082821c905092915050565b6000620010fa60001984600802620010da565b1980831691505092915050565b6000620011158383620010e7565b9150826002028217905092915050565b620011308262000eb5565b67ffffffffffffffff8111156200114c576200114b62000ec0565b5b62001158825462000f1e565b620011658282856200108a565b600060209050601f8311600181146200119d576000841562001188578287015190505b62001194858262001107565b86555062001204565b601f198416620011ad8662000f53565b60005b82811015620011d757848901518255600182019150602085019450602081019050620011b0565b86831015620011f75784890151620011f3601f891682620010e7565b8355505b6001600288020188555050505b505050505050565b620012178162000e3e565b82525050565b60006040820190506200123460008301856200120c565b6200124360208301846200120c565b9392505050565b6000620012578262000da5565b9150620012648362000da5565b9250828202620012748162000da5565b915082820484148315176200128e576200128d62000daf565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620012d18262000da5565b9150620012de8362000da5565b925082620012f157620012f062001295565b5b828204905092915050565b60006060820190506200131360008301866200120c565b6200132260208301856200120c565b6200133160408301846200120c565b949350505050565b60006020820190506200135060008301846200120c565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200139f601f8362001356565b9150620013ac8262001367565b602082019050919050565b60006020820190508181036000830152620013d28162001390565b9050919050565b620013e48162000da5565b82525050565b6000602082019050620014016000830184620013d9565b92915050565b613e4280620014176000396000f3fe608060405234801561001057600080fd5b50600436106102f05760003560e01c806374010ece1161019d578063cf46f24c116100e9578063ef8700e5116100a2578063f63743421161007c578063f6374342146108fb578063f8b45b0514610919578063fbeedd8814610937578063fe575a8714610953576102f0565b8063ef8700e5146108a3578063f11a24d3146108c1578063f2fde38b146108df576102f0565b8063cf46f24c146107cf578063d6594eda146107ed578063d85ba06314610809578063dd62ed3e14610827578063e01af92c14610857578063e1ab04c914610873576102f0565b8063a457c2d711610156578063b204141111610130578063b204141114610759578063b9c3420714610777578063c228215c14610793578063cc2ffe7c146107b1576102f0565b8063a457c2d7146106dd578063a9059cbb1461070d578063b1aeb39e1461073d576102f0565b806374010ece1461062d5780637ab1ec061461064957806389a30271146106655780638da5cb5b1461068357806394f0d0bf146106a157806395d89b41146106bf576102f0565b8063220cce971161025c5780635c068a8c116102155780636a486a8e116101ef5780636a486a8e146105b75780636b2fb124146105d557806370a08231146105f3578063715018a614610623576102f0565b80635c068a8c146105615780635d0044ca1461057f57806362441bf61461059b576102f0565b8063220cce971461047757806323b872dd14610495578063313ce567146104c557806339509351146104e357806349bd5a5e146105135780635470ff9114610531576102f0565b80631694505e116102ae5780631694505e146103c757806318160ddd146103e55780631870517a1461040357806318a94cf11461041f5780631a8145bb1461043d5780631b96d58b1461045b576102f0565b8062d6f177146102f557806306b091f91461032557806306fdde0314610341578063087332141461035f578063095ea7b31461037b57806314ea796d146103ab575b600080fd5b61030f600480360381019061030a9190612b70565b610983565b60405161031c9190612bb8565b60405180910390f35b61033f600480360381019061033a9190612c09565b6109a3565b005b610349610b77565b6040516103569190612cd9565b60405180910390f35b61037960048036038101906103749190612cfb565b610c09565b005b61039560048036038101906103909190612c09565b610cad565b6040516103a29190612bb8565b60405180910390f35b6103c560048036038101906103c09190612d7a565b610cd0565b005b6103cf610cf5565b6040516103dc9190612e06565b60405180910390f35b6103ed610d1b565b6040516103fa9190612e30565b60405180910390f35b61041d60048036038101906104189190612cfb565b610d25565b005b610427610dc9565b6040516104349190612e30565b60405180910390f35b610445610dcf565b6040516104529190612e30565b60405180910390f35b61047560048036038101906104709190612e4b565b610dd5565b005b61047f610e38565b60405161048c9190612e9a565b60405180910390f35b6104af60048036038101906104aa9190612eb5565b610e62565b6040516104bc9190612bb8565b60405180910390f35b6104cd610e91565b6040516104da9190612f24565b60405180910390f35b6104fd60048036038101906104f89190612c09565b610e9a565b60405161050a9190612bb8565b60405180910390f35b61051b610ed1565b6040516105289190612e9a565b60405180910390f35b61054b60048036038101906105469190612b70565b610ef7565b6040516105589190612bb8565b60405180910390f35b610569610f17565b6040516105769190612e30565b60405180910390f35b61059960048036038101906105949190612f3f565b610f1d565b005b6105b560048036038101906105b09190612b70565b610f92565b005b6105bf611112565b6040516105cc9190612e30565b60405180910390f35b6105dd611118565b6040516105ea9190612e30565b60405180910390f35b61060d60048036038101906106089190612b70565b61111e565b60405161061a9190612e30565b60405180910390f35b61062b611166565b005b61064760048036038101906106429190612f3f565b61117a565b005b610663600480360381019061065e9190612b70565b6111ef565b005b61066d6112de565b60405161067a9190612e9a565b60405180910390f35b61068b611304565b6040516106989190612e9a565b60405180910390f35b6106a961132e565b6040516106b69190612e9a565b60405180910390f35b6106c7611358565b6040516106d49190612cd9565b60405180910390f35b6106f760048036038101906106f29190612c09565b6113ea565b6040516107049190612bb8565b60405180910390f35b61072760048036038101906107229190612c09565b611461565b6040516107349190612bb8565b60405180910390f35b61075760048036038101906107529190612e4b565b611484565b005b6107616114e7565b60405161076e9190612e30565b60405180910390f35b610791600480360381019061078c9190612e4b565b6114ed565b005b61079b611550565b6040516107a89190612e30565b60405180910390f35b6107b9611556565b6040516107c69190612e30565b60405180910390f35b6107d761155c565b6040516107e49190612e30565b60405180910390f35b61080760048036038101906108029190612f3f565b611562565b005b6108116115c5565b60405161081e9190612e30565b60405180910390f35b610841600480360381019061083c9190612f6c565b6115cb565b60405161084e9190612e30565b60405180910390f35b610871600480360381019061086c9190612d7a565b611652565b005b61088d60048036038101906108889190612b70565b611677565b60405161089a9190612bb8565b60405180910390f35b6108ab611697565b6040516108b89190612e30565b60405180910390f35b6108c961169d565b6040516108d69190612e30565b60405180910390f35b6108f960048036038101906108f49190612b70565b6116a3565b005b610903611726565b6040516109109190612e30565b60405180910390f35b61092161172c565b60405161092e9190612e30565b60405180910390f35b610951600480360381019061094c9190612e4b565b611732565b005b61096d60048036038101906109689190612b70565b611795565b60405161097a9190612bb8565b60405180910390f35b60166020528060005260406000206000915054906101000a900460ff1681565b6109ab6117eb565b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1090612ff8565b60405180910390fd5b600082905060008211610aa5578073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a5f9190612e9a565b602060405180830381865afa158015610a7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa0919061302d565b610aa7565b815b915060008211610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae3906130cc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610b10611304565b846040518363ffffffff1660e01b8152600401610b2e9291906130ec565b6020604051808303816000875af1158015610b4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b71919061312a565b50505050565b606060038054610b8690613186565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb290613186565b8015610bff5780601f10610bd457610100808354040283529160200191610bff565b820191906000526020600020905b815481529060010190602001808311610be257829003601f168201915b5050505050905090565b610c116117eb565b82600a8190555081600b8190555080600c81905550600c54600b54600a54610c3991906131e6565b610c4391906131e6565b600d819055506064600f6103e8610c5a919061321a565b610c64919061328b565b600d541115610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f90613308565b60405180910390fd5b505050565b600080610cb8611869565b9050610cc5818585611871565b600191505092915050565b610cd86117eb565b80601460006101000a81548160ff02191690831515021790555050565b601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610d2d6117eb565b826006819055508160078190555080600881905550600854600754600654610d5591906131e6565b610d5f91906131e6565b6009819055506064600f6103e8610d76919061321a565b610d80919061328b565b6009541115610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb90613308565b60405180910390fd5b505050565b600a5481565b60105481565b610ddd6117eb565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080610e6d611869565b9050610e7a858285611a3a565b610e85858585611ac6565b60019150509392505050565b60006012905090565b600080610ea5611869565b9050610ec6818585610eb785896115cb565b610ec191906131e6565b611871565b600191505092915050565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601d6020528060005260406000206000915054906101000a900460ff1681565b60075481565b610f256117eb565b6103e86005610f32610d1b565b610f3c919061321a565b610f46919061328b565b811015610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90613374565b60405180910390fd5b8060178190555050565b610f9a6117eb565b601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361102a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611021906133e0565b60405180910390fd5b601e60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae9061344c565b60405180910390fd5b6001601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600d5481565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61116e6117eb565b6111786000612321565b565b6111826117eb565b6103e8600161118f610d1b565b611199919061321a565b6111a3919061328b565b8110156111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc906134b8565b60405180910390fd5b8060158190555050565b6111f76117eb565b601e60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a90613524565b60405180910390fd5b6000601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461136790613186565b80601f016020809104026020016040519081016040528092919081815260200182805461139390613186565b80156113e05780601f106113b5576101008083540402835291602001916113e0565b820191906000526020600020905b8154815290600101906020018083116113c357829003601f168201915b5050505050905090565b6000806113f5611869565b9050600061140382866115cb565b905083811015611448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143f906135b6565b60405180910390fd5b6114558286868403611871565b60019250505092915050565b60008061146c611869565b9050611479818585611ac6565b600191505092915050565b61148c6117eb565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60065481565b6114f56117eb565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60195481565b600f5481565b60155481565b61156a6117eb565b600a6103e8611579919061328b565b8111156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290613622565b60405180910390fd5b8060198190555050565b60095481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61165a6117eb565b80601f60006101000a81548160ff02191690831515021790555050565b60186020528060005260406000206000915054906101000a900460ff1681565b600e5481565b60085481565b6116ab6117eb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361171a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611711906136b4565b60405180910390fd5b61172381612321565b50565b600c5481565b60175481565b61173a6117eb565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6117f3611869565b73ffffffffffffffffffffffffffffffffffffffff16611811611304565b73ffffffffffffffffffffffffffffffffffffffff1614611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e90613720565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d7906137b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361194f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194690613844565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a2d9190612e30565b60405180910390a3505050565b6000611a4684846115cb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611ac05781811015611ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa9906138b0565b60405180910390fd5b611abf8484848403611871565b5b50505050565b6000601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611b6f5750601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b90506000601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905060008280611bcd5750815b9050600083611d8557601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5a9061391c565b60405180910390fd5b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce79061391c565b60405180910390fd5b601e6000611cfc611869565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b9061391c565b60405180910390fd5b5b8115611ecc578315611e3057869050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e2b57601554851115611e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e21906139ae565b60405180910390fd5b5b611ecb565b859050601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611eca57601554851115611ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec0906139ae565b60405180910390fd5b5b5b5b82158015611f245750601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f8257601754611f358761111e565b86611f4091906131e6565b1115611f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7890613a1a565b60405180910390fd5b5b6000611f8c610d1b565b9050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612001576103e8601954611fd18461111e565b611fdb919061321a565b611fe5919061328b565b905060008114611ff55780611ffe565b611ffd610d1b565b5b90505b600081601054600f54600e5461201791906131e6565b61202191906131e6565b10159050601f60009054906101000a900460ff16801561204e5750601f60019054906101000a900460ff16155b80156120575750805b801561208f57508273ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b1561209e5761209d826123e7565b5b60008480156120ba5750601460009054906101000a900460ff16155b80156121645750601360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121625750601360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b155b156122ff57861561222a576103e860095489612180919061321a565b61218a919061328b565b90506009546006548261219d919061321a565b6121a7919061328b565b600e60008282546121b891906131e6565b92505081905550600954600754826121d0919061321a565b6121da919061328b565b600f60008282546121eb91906131e6565b9250508190555060095460085482612203919061321a565b61220d919061328b565b6010600082825461221e91906131e6565b925050819055506122e1565b6103e8600d548961223b919061321a565b612245919061328b565b9050600d54600a5482612258919061321a565b612262919061328b565b600e600082825461227391906131e6565b92505081905550600d54600b548261228b919061321a565b612295919061328b565b600f60008282546122a691906131e6565b92505081905550600d54600c54826122be919061321a565b6122c8919061328b565b601060008282546122d991906131e6565b925050819055505b60008111156122f6576122f58a30836127e6565b5b6122fe612a5c565b5b6123158a8a838b6123109190613a3a565b6127e6565b50505050505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601f60016101000a81548160ff0219169083151502179055506000600e5490506000600f549050600060105490508381838561242591906131e6565b61242f91906131e6565b1115612490578381116124425780612444565b835b9050600081856124549190613a3a565b905060065460075461246691906131e6565b60075482612474919061321a565b61247e919061328b565b9250828161248c9190613a3a565b9350505b600060028261249f919061328b565b905060008184866124b091906131e6565b6124ba91906131e6565b90506000600267ffffffffffffffff8111156124d9576124d8613a6e565b5b6040519080825280602002602001820160405280156125075781602001602082028036833780820191505090505b509050308160008151811061251f5761251e613a9d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816001815181106125905761258f613a9d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506125f730601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611871565b601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040161267d959493929190613bc5565b600060405180830381600087803b15801561269757600080fd5b505af11580156126ab573d6000803e3d6000fd5b5050505060008311156126e6576126e530601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856127e6565b5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b3a22cec8787866040518463ffffffff1660e01b815260040161274593929190613c1f565b600060405180830381600087803b15801561275f57600080fd5b505af1158015612773573d6000803e3d6000fd5b5050505085600e60008282546127899190613a3a565b9250508190555084600f60008282546127a29190613a3a565b9250508190555083601060008282546127bb9190613a3a565b925050819055505050505050506000601f60016101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284c90613cc8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036128c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bb90613d5a565b60405180910390fd5b6128cf838383612b03565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294c90613dec565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612a439190612e30565b60405180910390a3612a56848484612b08565b50505050565b6000612a673061111e565b90506000601054600f54600e54612a7e91906131e6565b612a8891906131e6565b9050818114612aff5781811115612add57600082600f54600e54612aac91906131e6565b11905080612abc57600f54612abf565b60005b600f8190555080612ad257600e54612ad5565b60005b600e81905550505b600e54600f5483612aee9190613a3a565b612af89190613a3a565b6010819055505b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b3d82612b12565b9050919050565b612b4d81612b32565b8114612b5857600080fd5b50565b600081359050612b6a81612b44565b92915050565b600060208284031215612b8657612b85612b0d565b5b6000612b9484828501612b5b565b91505092915050565b60008115159050919050565b612bb281612b9d565b82525050565b6000602082019050612bcd6000830184612ba9565b92915050565b6000819050919050565b612be681612bd3565b8114612bf157600080fd5b50565b600081359050612c0381612bdd565b92915050565b60008060408385031215612c2057612c1f612b0d565b5b6000612c2e85828601612b5b565b9250506020612c3f85828601612bf4565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c83578082015181840152602081019050612c68565b60008484015250505050565b6000601f19601f8301169050919050565b6000612cab82612c49565b612cb58185612c54565b9350612cc5818560208601612c65565b612cce81612c8f565b840191505092915050565b60006020820190508181036000830152612cf38184612ca0565b905092915050565b600080600060608486031215612d1457612d13612b0d565b5b6000612d2286828701612bf4565b9350506020612d3386828701612bf4565b9250506040612d4486828701612bf4565b9150509250925092565b612d5781612b9d565b8114612d6257600080fd5b50565b600081359050612d7481612d4e565b92915050565b600060208284031215612d9057612d8f612b0d565b5b6000612d9e84828501612d65565b91505092915050565b6000819050919050565b6000612dcc612dc7612dc284612b12565b612da7565b612b12565b9050919050565b6000612dde82612db1565b9050919050565b6000612df082612dd3565b9050919050565b612e0081612de5565b82525050565b6000602082019050612e1b6000830184612df7565b92915050565b612e2a81612bd3565b82525050565b6000602082019050612e456000830184612e21565b92915050565b60008060408385031215612e6257612e61612b0d565b5b6000612e7085828601612b5b565b9250506020612e8185828601612d65565b9150509250929050565b612e9481612b32565b82525050565b6000602082019050612eaf6000830184612e8b565b92915050565b600080600060608486031215612ece57612ecd612b0d565b5b6000612edc86828701612b5b565b9350506020612eed86828701612b5b565b9250506040612efe86828701612bf4565b9150509250925092565b600060ff82169050919050565b612f1e81612f08565b82525050565b6000602082019050612f396000830184612f15565b92915050565b600060208284031215612f5557612f54612b0d565b5b6000612f6384828501612bf4565b91505092915050565b60008060408385031215612f8357612f82612b0d565b5b6000612f9185828601612b5b565b9250506020612fa285828601612b5b565b9150509250929050565b7f63616e6e6f74207769746864726177207468697320746f6b656e000000000000600082015250565b6000612fe2601a83612c54565b9150612fed82612fac565b602082019050919050565b6000602082019050818103600083015261301181612fd5565b9050919050565b60008151905061302781612bdd565b92915050565b60006020828403121561304357613042612b0d565b5b600061305184828501613018565b91505092915050565b7f6d616b65207375726520746865726520697320612062616c616e63652061766160008201527f696c61626c6520746f2077697468647261770000000000000000000000000000602082015250565b60006130b6603283612c54565b91506130c18261305a565b604082019050919050565b600060208201905081810360008301526130e5816130a9565b9050919050565b60006040820190506131016000830185612e8b565b61310e6020830184612e21565b9392505050565b60008151905061312481612d4e565b92915050565b6000602082840312156131405761313f612b0d565b5b600061314e84828501613115565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061319e57607f821691505b6020821081036131b1576131b0613157565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006131f182612bd3565b91506131fc83612bd3565b9250828201905080821115613214576132136131b7565b5b92915050565b600061322582612bd3565b915061323083612bd3565b925082820261323e81612bd3565b91508282048414831517613255576132546131b7565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061329682612bd3565b91506132a183612bd3565b9250826132b1576132b061325c565b5b828204905092915050565b7f7461782063616e6e6f74206265206d6f7265207468616e203135250000000000600082015250565b60006132f2601b83612c54565b91506132fd826132bc565b602082019050919050565b60006020820190508181036000830152613321816132e5565b9050919050565b7f6d757374206265206d6f7265207468616e20302e352520737570706c79000000600082015250565b600061335e601d83612c54565b915061336982613328565b602082019050919050565b6000602082019050818103600083015261338d81613351565b9050919050565b7f63616e6e6f74206e6f7420626c61636b6c6973742064657820726f7574657200600082015250565b60006133ca601f83612c54565b91506133d582613394565b602082019050919050565b600060208201905081810360008301526133f9816133bd565b9050919050565b7f77616c6c657420697320616c726561647920626c61636b6c6973746564000000600082015250565b6000613436601d83612c54565b915061344182613400565b602082019050919050565b6000602082019050818103600083015261346581613429565b9050919050565b7f6d757374206265206d6f7265207468616e20302e312520737570706c79000000600082015250565b60006134a2601d83612c54565b91506134ad8261346c565b602082019050919050565b600060208201905081810360008301526134d181613495565b9050919050565b7f77616c6c6574206973206e6f7420626c61636b6c697374656400000000000000600082015250565b600061350e601983612c54565b9150613519826134d8565b602082019050919050565b6000602082019050818103600083015261353d81613501565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006135a0602583612c54565b91506135ab82613544565b604082019050919050565b600060208201905081810360008301526135cf81613593565b9050919050565b7f6d757374206265206c657373207468616e203130250000000000000000000000600082015250565b600061360c601583612c54565b9150613617826135d6565b602082019050919050565b6000602082019050818103600083015261363b816135ff565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061369e602683612c54565b91506136a982613642565b604082019050919050565b600060208201905081810360008301526136cd81613691565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061370a602083612c54565b9150613715826136d4565b602082019050919050565b60006020820190508181036000830152613739816136fd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061379c602483612c54565b91506137a782613740565b604082019050919050565b600060208201905081810360008301526137cb8161378f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061382e602283612c54565b9150613839826137d2565b604082019050919050565b6000602082019050818103600083015261385d81613821565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061389a601d83612c54565b91506138a582613864565b602082019050919050565b600060208201905081810360008301526138c98161388d565b9050919050565b7f626c61636b6c69737465642077616c6c65740000000000000000000000000000600082015250565b6000613906601283612c54565b9150613911826138d0565b602082019050919050565b60006020820190508181036000830152613935816138f9565b9050919050565b7f63616e6e6f742073776170206d6f7265207468616e206d6178207472616e736160008201527f6374696f6e20616d6f756e740000000000000000000000000000000000000000602082015250565b6000613998602c83612c54565b91506139a38261393c565b604082019050919050565b600060208201905081810360008301526139c78161398b565b9050919050565b7f6d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613a04601383612c54565b9150613a0f826139ce565b602082019050919050565b60006020820190508181036000830152613a33816139f7565b9050919050565b6000613a4582612bd3565b9150613a5083612bd3565b9250828203905081811115613a6857613a676131b7565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613af1613aec613ae784613acc565b612da7565b612bd3565b9050919050565b613b0181613ad6565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b3c81612b32565b82525050565b6000613b4e8383613b33565b60208301905092915050565b6000602082019050919050565b6000613b7282613b07565b613b7c8185613b12565b9350613b8783613b23565b8060005b83811015613bb8578151613b9f8882613b42565b9750613baa83613b5a565b925050600181019050613b8b565b5085935050505092915050565b600060a082019050613bda6000830188612e21565b613be76020830187613af8565b8181036040830152613bf98186613b67565b9050613c086060830185612e8b565b613c156080830184612e21565b9695505050505050565b6000606082019050613c346000830186612e21565b613c416020830185612e21565b613c4e6040830184612e21565b949350505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613cb2602583612c54565b9150613cbd82613c56565b604082019050919050565b60006020820190508181036000830152613ce181613ca5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613d44602383612c54565b9150613d4f82613ce8565b604082019050919050565b60006020820190508181036000830152613d7381613d37565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613dd6602683612c54565b9150613de182613d7a565b604082019050919050565b60006020820190508181036000830152613e0581613dc9565b905091905056fea2646970667358221220841b81889078108a03252196992e15258ab542aa574aa32cfda89b55c4daa6d664736f6c6343000811003360806040523480156200001157600080fd5b50604051620018c2380380620018c283398181016040528101906200003791906200025f565b620000576200004b6200012960201b60201c565b6200013160201b60201c565b82600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600081905080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050620002bb565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200022782620001fa565b9050919050565b62000239816200021a565b81146200024557600080fd5b50565b60008151905062000259816200022e565b92915050565b6000806000606084860312156200027b576200027a620001f5565b5b60006200028b8682870162000248565b93505060206200029e8682870162000248565b9250506040620002b18682870162000248565b9150509250925092565b6115f780620002cb6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80638da5cb5b1161008c578063c04a541411610066578063c04a5414146101c6578063d4698016146101e4578063dda5d79914610202578063f2fde38b14610220576100cf565b80638da5cb5b14610170578063a8602fea1461018e578063b3a22cec146101aa576100cf565b80631694505e146100d4578063296f0a0c146100f25780634626402b1461010e578063715018a61461012c57806372ac24861461013657806389a3027114610152575b600080fd5b6100dc61023c565b6040516100e99190610fe4565b60405180910390f35b61010c60048036038101906101079190611042565b610262565b005b6101166102ae565b604051610123919061107e565b60405180910390f35b6101346102d4565b005b610150600480360381019061014b9190611042565b6102e8565b005b61015a610334565b604051610167919061107e565b60405180910390f35b61017861035a565b604051610185919061107e565b60405180910390f35b6101a860048036038101906101a39190611042565b610383565b005b6101c460048036038101906101bf91906110cf565b6103cf565b005b6101ce61058b565b6040516101db919061107e565b60405180910390f35b6101ec6105b1565b6040516101f9919061107e565b60405180910390f35b61020a6105d7565b604051610217919061107e565b60405180910390f35b61023a60048036038101906102359190611042565b6105fd565b005b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61026a610680565b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6102dc610680565b6102e660006106fe565b565b6102f0610680565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61038b610680565b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461045f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104569061117f565b60405180910390fd5b600081838561046e91906111ce565b61047891906111ce565b90506000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016104d7919061107e565b602060405180830381865afa1580156104f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105189190611217565b905060008111156105845760008285836105329190611244565b61053c91906112b5565b9050600083878461054d9190611244565b61055791906112b5565b9050600081838561056891906112e6565b61057291906112e6565b9050610580828483896107c2565b5050505b5050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610605610680565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066b9061138c565b60405180910390fd5b61067d816106fe565b50565b610688610a38565b73ffffffffffffffffffffffffffffffffffffffff166106a661035a565b73ffffffffffffffffffffffffffffffffffffffff16146106fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f3906113f8565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008511156108fd5760008073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461087157600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661087a565b61087961035a565b5b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82886040518363ffffffff1660e01b81526004016108b7929190611427565b6020604051808303816000875af11580156108d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108fa9190611488565b50505b6000841115610a115760008073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461098557600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661098e565b61098d61035a565b5b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82876040518363ffffffff1660e01b81526004016109cb929190611427565b6020604051808303816000875af11580156109ea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0e9190611488565b50505b600083118015610a215750600082115b15610a3157610a308284610a40565b5b5050505050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610abf57600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610ac8565b610ac761035a565b5b90506000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508173ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16876040518363ffffffff1660e01b8152600401610b75929190611427565b6020604051808303816000875af1158015610b94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb89190611488565b508073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866040518363ffffffff1660e01b8152600401610c16929190611427565b6020604051808303816000875af1158015610c35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c599190611488565b50600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e8e33700600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1687896000808a426040518963ffffffff1660e01b8152600401610d089897969594939291906114f0565b6060604051808303816000875af1158015610d27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4b919061156e565b50505060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610d89919061107e565b602060405180830381865afa158015610da6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dca9190611217565b90506000811115610e55578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85836040518363ffffffff1660e01b8152600401610e10929190611427565b6020604051808303816000875af1158015610e2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e539190611488565b505b60008373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610e90919061107e565b602060405180830381865afa158015610ead573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed19190611217565b90506000811115610f5c578373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86836040518363ffffffff1660e01b8152600401610f17929190611427565b6020604051808303816000875af1158015610f36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5a9190611488565b505b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000610faa610fa5610fa084610f65565b610f85565b610f65565b9050919050565b6000610fbc82610f8f565b9050919050565b6000610fce82610fb1565b9050919050565b610fde81610fc3565b82525050565b6000602082019050610ff96000830184610fd5565b92915050565b600080fd5b600061100f82610f65565b9050919050565b61101f81611004565b811461102a57600080fd5b50565b60008135905061103c81611016565b92915050565b60006020828403121561105857611057610fff565b5b60006110668482850161102d565b91505092915050565b61107881611004565b82525050565b6000602082019050611093600083018461106f565b92915050565b6000819050919050565b6110ac81611099565b81146110b757600080fd5b50565b6000813590506110c9816110a3565b92915050565b6000806000606084860312156110e8576110e7610fff565b5b60006110f6868287016110ba565b9350506020611107868287016110ba565b9250506040611118868287016110ba565b9150509250925092565b600082825260208201905092915050565b7f6f6e6c792050525420636f6e74726163742063616e2063616c6c000000000000600082015250565b6000611169601a83611122565b915061117482611133565b602082019050919050565b600060208201905081810360008301526111988161115c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006111d982611099565b91506111e483611099565b92508282019050808211156111fc576111fb61119f565b5b92915050565b600081519050611211816110a3565b92915050565b60006020828403121561122d5761122c610fff565b5b600061123b84828501611202565b91505092915050565b600061124f82611099565b915061125a83611099565b925082820261126881611099565b9150828204841483151761127f5761127e61119f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006112c082611099565b91506112cb83611099565b9250826112db576112da611286565b5b828204905092915050565b60006112f182611099565b91506112fc83611099565b92508282039050818111156113145761131361119f565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611376602683611122565b91506113818261131a565b604082019050919050565b600060208201905081810360008301526113a581611369565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006113e2602083611122565b91506113ed826113ac565b602082019050919050565b60006020820190508181036000830152611411816113d5565b9050919050565b61142181611099565b82525050565b600060408201905061143c600083018561106f565b6114496020830184611418565b9392505050565b60008115159050919050565b61146581611450565b811461147057600080fd5b50565b6000815190506114828161145c565b92915050565b60006020828403121561149e5761149d610fff565b5b60006114ac84828501611473565b91505092915050565b6000819050919050565b60006114da6114d56114d0846114b5565b610f85565b611099565b9050919050565b6114ea816114bf565b82525050565b600061010082019050611506600083018b61106f565b611513602083018a61106f565b6115206040830189611418565b61152d6060830188611418565b61153a60808301876114e1565b61154760a08301866114e1565b61155460c083018561106f565b61156160e0830184611418565b9998505050505050505050565b60008060006060848603121561158757611586610fff565b5b600061159586828701611202565b93505060206115a686828701611202565b92505060406115b786828701611202565b915050925092509256fea26469706673582212208b15bf949218f432b4a506ef9d95b2c96f6d8a7cd24837b812e5d856c23e4db964736f6c6343000811003360a06040523480156200001157600080fd5b5060405162001b5238038062001b528339818101604052810190620000379190620001c8565b620000576200004b6200009260201b60201c565b6200009a60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505050620001fa565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620001908262000163565b9050919050565b620001a28162000183565b8114620001ae57600080fd5b50565b600081519050620001c28162000197565b92915050565b600060208284031215620001e157620001e06200015e565b5b6000620001f184828501620001b1565b91505092915050565b60805161192e6200022460003960008181610329015281816107a90152610866015261192e6000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063aaf5bfc3116100a2578063e0395c1e11610071578063e0395c1e1461025a578063eb46260e14610278578063efca2eed146102a8578063f04da65b146102c6578063f2fde38b146102f65761010b565b8063aaf5bfc3146101fa578063b6b55f2514610216578063b88a802f14610232578063beb68d051461023c5761010b565b8063715018a6116100de578063715018a61461018657806389d96917146101905780638bdf67f2146101c05780638da5cb5b146101dc5761010b565b80630e15561a146101105780632e1a7d4d1461012e5780633c6e67891461014a5780633e413bee14610168575b600080fd5b610118610312565b604051610125919061125f565b60405180910390f35b610148600480360381019061014391906112ab565b610318565b005b6101526103ca565b60405161015f919061125f565b60405180910390f35b6101706103d0565b60405161017d9190611357565b60405180910390f35b61018e6103f6565b005b6101aa60048036038101906101a591906113b0565b61040a565b6040516101b7919061125f565b60405180910390f35b6101da60048036038101906101d591906112ab565b610453565b005b6101e4610730565b6040516101f191906113ec565b60405180910390f35b610214600480360381019061020f91906113b0565b610759565b005b610230600480360381019061022b91906112ab565b6107a5565b005b61023a610859565b005b610244610864565b60405161025191906113ec565b60405180910390f35b610262610888565b60405161026f919061125f565b60405180910390f35b610292600480360381019061028d91906113b0565b61088e565b60405161029f919061125f565b60405180910390f35b6102b06108d7565b6040516102bd919061125f565b60405180910390f35b6102e060048036038101906102db91906113b0565b6108dd565b6040516102ed919061125f565b60405180910390f35b610310600480360381019061030b91906113b0565b610926565b005b60045481565b600033905061032781836109a9565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82846040518363ffffffff1660e01b8152600401610382929190611407565b6020604051808303816000875af11580156103a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103c59190611468565b505050565b60035481565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6103fe610d34565b6104086000610db2565b565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600060035411610498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048f906114f2565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b81526004016104f793929190611512565b6020604051808303816000875af1158015610516573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061053a9190611468565b506000600354826ec097ce7bc90715b34b9f100000000061055b9190611578565b61056591906115e9565b905060005b6006805490508110156106c457600060076000600684815481106105915761059061161a565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836106029190611578565b905060006ec097ce7bc90715b34b9f10000000008261062191906115e9565b905080600860006006868154811061063c5761063b61161a565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546106b09190611649565b92505081905550826001019250505061056a565b5081600460008282546106d79190611649565b925050819055503373ffffffffffffffffffffffffffffffffffffffff167fb9ad861b752f80117b35bea6dec99933d8a5ae360f2839ee8784b750d561340983604051610724919061125f565b60405180910390a25050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610761610d34565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b815260040161080793929190611512565b6020604051808303816000875af1158015610826573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084a9190611468565b506108553383610e76565b5050565b61086233610ffe565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b60025481565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60055481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61092e610d34565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361099d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610994906116ef565b60405180910390fd5b6109a681610db2565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118015610a375750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548111155b610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d9061175b565b60405180910390fd5b610a7f82610ffe565b8060036000828254610a91919061177b565b9250508190555080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ae7919061177b565b925050819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610d305760016006805490501115610cd45760005b600680549050811015610cce578273ffffffffffffffffffffffffffffffffffffffff1660068281548110610b7e57610b7d61161a565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610cc35760066001600680549050610bd8919061177b565b81548110610be957610be861161a565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068281548110610c2857610c2761161a565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060066001600680549050610c84919061177b565b81548110610c9557610c9461161a565b5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b806001019050610b46565b50610d17565b6006600081548110610ce957610ce861161a565b5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60026000815480929190610d2a906117af565b91905055505b5050565b610d3c61123e565b73ffffffffffffffffffffffffffffffffffffffff16610d5a610730565b73ffffffffffffffffffffffffffffffffffffffff1614610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790611824565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508160036000828254610ecc9190611649565b9250508190555081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f229190611649565b92505081905550600081148015610f7857506000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15610ff9576006839080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060026000815480929190610ff390611844565b91905055505b505050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611080576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611077906118d8565b60405180910390fd5b600061108b8261040a565b9050600081111561123a5780600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110e59190611649565b9250508190555080600560008282546110fe9190611649565b925050819055506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016111a7929190611407565b6020604051808303816000875af11580156111c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ea9190611468565b508173ffffffffffffffffffffffffffffffffffffffff167f762e3e2d1a38b40402072407d6eed487e6836ef3ced426a733334e8b304c779b8360405161123191906113ec565b60405180910390a25b5050565b600033905090565b6000819050919050565b61125981611246565b82525050565b60006020820190506112746000830184611250565b92915050565b600080fd5b61128881611246565b811461129357600080fd5b50565b6000813590506112a58161127f565b92915050565b6000602082840312156112c1576112c061127a565b5b60006112cf84828501611296565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061131d611318611313846112d8565b6112f8565b6112d8565b9050919050565b600061132f82611302565b9050919050565b600061134182611324565b9050919050565b61135181611336565b82525050565b600060208201905061136c6000830184611348565b92915050565b600061137d826112d8565b9050919050565b61138d81611372565b811461139857600080fd5b50565b6000813590506113aa81611384565b92915050565b6000602082840312156113c6576113c561127a565b5b60006113d48482850161139b565b91505092915050565b6113e681611372565b82525050565b600060208201905061140160008301846113dd565b92915050565b600060408201905061141c60008301856113dd565b6114296020830184611250565b9392505050565b60008115159050919050565b61144581611430565b811461145057600080fd5b50565b6000815190506114628161143c565b92915050565b60006020828403121561147e5761147d61127a565b5b600061148c84828501611453565b91505092915050565b600082825260208201905092915050565b7f6e6f2072657761726420726563697069656e7473000000000000000000000000600082015250565b60006114dc601483611495565b91506114e7826114a6565b602082019050919050565b6000602082019050818103600083015261150b816114cf565b9050919050565b600060608201905061152760008301866113dd565b61153460208301856113dd565b6115416040830184611250565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061158382611246565b915061158e83611246565b925082820261159c81611246565b915082820484148315176115b3576115b2611549565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006115f482611246565b91506115ff83611246565b92508261160f5761160e6115ba565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061165482611246565b915061165f83611246565b925082820190508082111561167757611676611549565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116d9602683611495565b91506116e48261167d565b604082019050919050565b60006020820190508181036000830152611708816116cc565b9050919050565b7f6f6e6c79207769746864726177207768617420796f75206465706f7369746564600082015250565b6000611745602083611495565b91506117508261170f565b602082019050919050565b6000602082019050818103600083015261177481611738565b9050919050565b600061178682611246565b915061179183611246565b92508282039050818111156117a9576117a8611549565b5b92915050565b60006117ba82611246565b9150600082036117cd576117cc611549565b5b600182039050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061180e602083611495565b9150611819826117d8565b602082019050919050565b6000602082019050818103600083015261183d81611801565b9050919050565b600061184f82611246565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361188157611880611549565b5b600182019050919050565b7f6e6f20736861726573206f776e65640000000000000000000000000000000000600082015250565b60006118c2600f83611495565b91506118cd8261188c565b602082019050919050565b600060208201905081810360008301526118f1816118b5565b905091905056fea264697066735822122010e5dd13520f8fc2484833ce40f713bf1b9de7bb77ef9595be9109efc9ce31b464736f6c63430008110033000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102f05760003560e01c806374010ece1161019d578063cf46f24c116100e9578063ef8700e5116100a2578063f63743421161007c578063f6374342146108fb578063f8b45b0514610919578063fbeedd8814610937578063fe575a8714610953576102f0565b8063ef8700e5146108a3578063f11a24d3146108c1578063f2fde38b146108df576102f0565b8063cf46f24c146107cf578063d6594eda146107ed578063d85ba06314610809578063dd62ed3e14610827578063e01af92c14610857578063e1ab04c914610873576102f0565b8063a457c2d711610156578063b204141111610130578063b204141114610759578063b9c3420714610777578063c228215c14610793578063cc2ffe7c146107b1576102f0565b8063a457c2d7146106dd578063a9059cbb1461070d578063b1aeb39e1461073d576102f0565b806374010ece1461062d5780637ab1ec061461064957806389a30271146106655780638da5cb5b1461068357806394f0d0bf146106a157806395d89b41146106bf576102f0565b8063220cce971161025c5780635c068a8c116102155780636a486a8e116101ef5780636a486a8e146105b75780636b2fb124146105d557806370a08231146105f3578063715018a614610623576102f0565b80635c068a8c146105615780635d0044ca1461057f57806362441bf61461059b576102f0565b8063220cce971461047757806323b872dd14610495578063313ce567146104c557806339509351146104e357806349bd5a5e146105135780635470ff9114610531576102f0565b80631694505e116102ae5780631694505e146103c757806318160ddd146103e55780631870517a1461040357806318a94cf11461041f5780631a8145bb1461043d5780631b96d58b1461045b576102f0565b8062d6f177146102f557806306b091f91461032557806306fdde0314610341578063087332141461035f578063095ea7b31461037b57806314ea796d146103ab575b600080fd5b61030f600480360381019061030a9190612b70565b610983565b60405161031c9190612bb8565b60405180910390f35b61033f600480360381019061033a9190612c09565b6109a3565b005b610349610b77565b6040516103569190612cd9565b60405180910390f35b61037960048036038101906103749190612cfb565b610c09565b005b61039560048036038101906103909190612c09565b610cad565b6040516103a29190612bb8565b60405180910390f35b6103c560048036038101906103c09190612d7a565b610cd0565b005b6103cf610cf5565b6040516103dc9190612e06565b60405180910390f35b6103ed610d1b565b6040516103fa9190612e30565b60405180910390f35b61041d60048036038101906104189190612cfb565b610d25565b005b610427610dc9565b6040516104349190612e30565b60405180910390f35b610445610dcf565b6040516104529190612e30565b60405180910390f35b61047560048036038101906104709190612e4b565b610dd5565b005b61047f610e38565b60405161048c9190612e9a565b60405180910390f35b6104af60048036038101906104aa9190612eb5565b610e62565b6040516104bc9190612bb8565b60405180910390f35b6104cd610e91565b6040516104da9190612f24565b60405180910390f35b6104fd60048036038101906104f89190612c09565b610e9a565b60405161050a9190612bb8565b60405180910390f35b61051b610ed1565b6040516105289190612e9a565b60405180910390f35b61054b60048036038101906105469190612b70565b610ef7565b6040516105589190612bb8565b60405180910390f35b610569610f17565b6040516105769190612e30565b60405180910390f35b61059960048036038101906105949190612f3f565b610f1d565b005b6105b560048036038101906105b09190612b70565b610f92565b005b6105bf611112565b6040516105cc9190612e30565b60405180910390f35b6105dd611118565b6040516105ea9190612e30565b60405180910390f35b61060d60048036038101906106089190612b70565b61111e565b60405161061a9190612e30565b60405180910390f35b61062b611166565b005b61064760048036038101906106429190612f3f565b61117a565b005b610663600480360381019061065e9190612b70565b6111ef565b005b61066d6112de565b60405161067a9190612e9a565b60405180910390f35b61068b611304565b6040516106989190612e9a565b60405180910390f35b6106a961132e565b6040516106b69190612e9a565b60405180910390f35b6106c7611358565b6040516106d49190612cd9565b60405180910390f35b6106f760048036038101906106f29190612c09565b6113ea565b6040516107049190612bb8565b60405180910390f35b61072760048036038101906107229190612c09565b611461565b6040516107349190612bb8565b60405180910390f35b61075760048036038101906107529190612e4b565b611484565b005b6107616114e7565b60405161076e9190612e30565b60405180910390f35b610791600480360381019061078c9190612e4b565b6114ed565b005b61079b611550565b6040516107a89190612e30565b60405180910390f35b6107b9611556565b6040516107c69190612e30565b60405180910390f35b6107d761155c565b6040516107e49190612e30565b60405180910390f35b61080760048036038101906108029190612f3f565b611562565b005b6108116115c5565b60405161081e9190612e30565b60405180910390f35b610841600480360381019061083c9190612f6c565b6115cb565b60405161084e9190612e30565b60405180910390f35b610871600480360381019061086c9190612d7a565b611652565b005b61088d60048036038101906108889190612b70565b611677565b60405161089a9190612bb8565b60405180910390f35b6108ab611697565b6040516108b89190612e30565b60405180910390f35b6108c961169d565b6040516108d69190612e30565b60405180910390f35b6108f960048036038101906108f49190612b70565b6116a3565b005b610903611726565b6040516109109190612e30565b60405180910390f35b61092161172c565b60405161092e9190612e30565b60405180910390f35b610951600480360381019061094c9190612e4b565b611732565b005b61096d60048036038101906109689190612b70565b611795565b60405161097a9190612bb8565b60405180910390f35b60166020528060005260406000206000915054906101000a900460ff1681565b6109ab6117eb565b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1090612ff8565b60405180910390fd5b600082905060008211610aa5578073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a5f9190612e9a565b602060405180830381865afa158015610a7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa0919061302d565b610aa7565b815b915060008211610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae3906130cc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610b10611304565b846040518363ffffffff1660e01b8152600401610b2e9291906130ec565b6020604051808303816000875af1158015610b4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b71919061312a565b50505050565b606060038054610b8690613186565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb290613186565b8015610bff5780601f10610bd457610100808354040283529160200191610bff565b820191906000526020600020905b815481529060010190602001808311610be257829003601f168201915b5050505050905090565b610c116117eb565b82600a8190555081600b8190555080600c81905550600c54600b54600a54610c3991906131e6565b610c4391906131e6565b600d819055506064600f6103e8610c5a919061321a565b610c64919061328b565b600d541115610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f90613308565b60405180910390fd5b505050565b600080610cb8611869565b9050610cc5818585611871565b600191505092915050565b610cd86117eb565b80601460006101000a81548160ff02191690831515021790555050565b601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610d2d6117eb565b826006819055508160078190555080600881905550600854600754600654610d5591906131e6565b610d5f91906131e6565b6009819055506064600f6103e8610d76919061321a565b610d80919061328b565b6009541115610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb90613308565b60405180910390fd5b505050565b600a5481565b60105481565b610ddd6117eb565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080610e6d611869565b9050610e7a858285611a3a565b610e85858585611ac6565b60019150509392505050565b60006012905090565b600080610ea5611869565b9050610ec6818585610eb785896115cb565b610ec191906131e6565b611871565b600191505092915050565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601d6020528060005260406000206000915054906101000a900460ff1681565b60075481565b610f256117eb565b6103e86005610f32610d1b565b610f3c919061321a565b610f46919061328b565b811015610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90613374565b60405180910390fd5b8060178190555050565b610f9a6117eb565b601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361102a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611021906133e0565b60405180910390fd5b601e60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae9061344c565b60405180910390fd5b6001601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600d5481565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61116e6117eb565b6111786000612321565b565b6111826117eb565b6103e8600161118f610d1b565b611199919061321a565b6111a3919061328b565b8110156111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc906134b8565b60405180910390fd5b8060158190555050565b6111f76117eb565b601e60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a90613524565b60405180910390fd5b6000601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461136790613186565b80601f016020809104026020016040519081016040528092919081815260200182805461139390613186565b80156113e05780601f106113b5576101008083540402835291602001916113e0565b820191906000526020600020905b8154815290600101906020018083116113c357829003601f168201915b5050505050905090565b6000806113f5611869565b9050600061140382866115cb565b905083811015611448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143f906135b6565b60405180910390fd5b6114558286868403611871565b60019250505092915050565b60008061146c611869565b9050611479818585611ac6565b600191505092915050565b61148c6117eb565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60065481565b6114f56117eb565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60195481565b600f5481565b60155481565b61156a6117eb565b600a6103e8611579919061328b565b8111156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290613622565b60405180910390fd5b8060198190555050565b60095481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61165a6117eb565b80601f60006101000a81548160ff02191690831515021790555050565b60186020528060005260406000206000915054906101000a900460ff1681565b600e5481565b60085481565b6116ab6117eb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361171a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611711906136b4565b60405180910390fd5b61172381612321565b50565b600c5481565b60175481565b61173a6117eb565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6117f3611869565b73ffffffffffffffffffffffffffffffffffffffff16611811611304565b73ffffffffffffffffffffffffffffffffffffffff1614611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e90613720565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d7906137b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361194f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194690613844565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a2d9190612e30565b60405180910390a3505050565b6000611a4684846115cb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611ac05781811015611ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa9906138b0565b60405180910390fd5b611abf8484848403611871565b5b50505050565b6000601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611b6f5750601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b90506000601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905060008280611bcd5750815b9050600083611d8557601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5a9061391c565b60405180910390fd5b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce79061391c565b60405180910390fd5b601e6000611cfc611869565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b9061391c565b60405180910390fd5b5b8115611ecc578315611e3057869050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e2b57601554851115611e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e21906139ae565b60405180910390fd5b5b611ecb565b859050601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611eca57601554851115611ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec0906139ae565b60405180910390fd5b5b5b5b82158015611f245750601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f8257601754611f358761111e565b86611f4091906131e6565b1115611f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7890613a1a565b60405180910390fd5b5b6000611f8c610d1b565b9050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612001576103e8601954611fd18461111e565b611fdb919061321a565b611fe5919061328b565b905060008114611ff55780611ffe565b611ffd610d1b565b5b90505b600081601054600f54600e5461201791906131e6565b61202191906131e6565b10159050601f60009054906101000a900460ff16801561204e5750601f60019054906101000a900460ff16155b80156120575750805b801561208f57508273ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b1561209e5761209d826123e7565b5b60008480156120ba5750601460009054906101000a900460ff16155b80156121645750601360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121625750601360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b155b156122ff57861561222a576103e860095489612180919061321a565b61218a919061328b565b90506009546006548261219d919061321a565b6121a7919061328b565b600e60008282546121b891906131e6565b92505081905550600954600754826121d0919061321a565b6121da919061328b565b600f60008282546121eb91906131e6565b9250508190555060095460085482612203919061321a565b61220d919061328b565b6010600082825461221e91906131e6565b925050819055506122e1565b6103e8600d548961223b919061321a565b612245919061328b565b9050600d54600a5482612258919061321a565b612262919061328b565b600e600082825461227391906131e6565b92505081905550600d54600b548261228b919061321a565b612295919061328b565b600f60008282546122a691906131e6565b92505081905550600d54600c54826122be919061321a565b6122c8919061328b565b601060008282546122d991906131e6565b925050819055505b60008111156122f6576122f58a30836127e6565b5b6122fe612a5c565b5b6123158a8a838b6123109190613a3a565b6127e6565b50505050505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601f60016101000a81548160ff0219169083151502179055506000600e5490506000600f549050600060105490508381838561242591906131e6565b61242f91906131e6565b1115612490578381116124425780612444565b835b9050600081856124549190613a3a565b905060065460075461246691906131e6565b60075482612474919061321a565b61247e919061328b565b9250828161248c9190613a3a565b9350505b600060028261249f919061328b565b905060008184866124b091906131e6565b6124ba91906131e6565b90506000600267ffffffffffffffff8111156124d9576124d8613a6e565b5b6040519080825280602002602001820160405280156125075781602001602082028036833780820191505090505b509050308160008151811061251f5761251e613a9d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816001815181106125905761258f613a9d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506125f730601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611871565b601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040161267d959493929190613bc5565b600060405180830381600087803b15801561269757600080fd5b505af11580156126ab573d6000803e3d6000fd5b5050505060008311156126e6576126e530601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856127e6565b5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b3a22cec8787866040518463ffffffff1660e01b815260040161274593929190613c1f565b600060405180830381600087803b15801561275f57600080fd5b505af1158015612773573d6000803e3d6000fd5b5050505085600e60008282546127899190613a3a565b9250508190555084600f60008282546127a29190613a3a565b9250508190555083601060008282546127bb9190613a3a565b925050819055505050505050506000601f60016101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284c90613cc8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036128c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bb90613d5a565b60405180910390fd5b6128cf838383612b03565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294c90613dec565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612a439190612e30565b60405180910390a3612a56848484612b08565b50505050565b6000612a673061111e565b90506000601054600f54600e54612a7e91906131e6565b612a8891906131e6565b9050818114612aff5781811115612add57600082600f54600e54612aac91906131e6565b11905080612abc57600f54612abf565b60005b600f8190555080612ad257600e54612ad5565b60005b600e81905550505b600e54600f5483612aee9190613a3a565b612af89190613a3a565b6010819055505b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b3d82612b12565b9050919050565b612b4d81612b32565b8114612b5857600080fd5b50565b600081359050612b6a81612b44565b92915050565b600060208284031215612b8657612b85612b0d565b5b6000612b9484828501612b5b565b91505092915050565b60008115159050919050565b612bb281612b9d565b82525050565b6000602082019050612bcd6000830184612ba9565b92915050565b6000819050919050565b612be681612bd3565b8114612bf157600080fd5b50565b600081359050612c0381612bdd565b92915050565b60008060408385031215612c2057612c1f612b0d565b5b6000612c2e85828601612b5b565b9250506020612c3f85828601612bf4565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c83578082015181840152602081019050612c68565b60008484015250505050565b6000601f19601f8301169050919050565b6000612cab82612c49565b612cb58185612c54565b9350612cc5818560208601612c65565b612cce81612c8f565b840191505092915050565b60006020820190508181036000830152612cf38184612ca0565b905092915050565b600080600060608486031215612d1457612d13612b0d565b5b6000612d2286828701612bf4565b9350506020612d3386828701612bf4565b9250506040612d4486828701612bf4565b9150509250925092565b612d5781612b9d565b8114612d6257600080fd5b50565b600081359050612d7481612d4e565b92915050565b600060208284031215612d9057612d8f612b0d565b5b6000612d9e84828501612d65565b91505092915050565b6000819050919050565b6000612dcc612dc7612dc284612b12565b612da7565b612b12565b9050919050565b6000612dde82612db1565b9050919050565b6000612df082612dd3565b9050919050565b612e0081612de5565b82525050565b6000602082019050612e1b6000830184612df7565b92915050565b612e2a81612bd3565b82525050565b6000602082019050612e456000830184612e21565b92915050565b60008060408385031215612e6257612e61612b0d565b5b6000612e7085828601612b5b565b9250506020612e8185828601612d65565b9150509250929050565b612e9481612b32565b82525050565b6000602082019050612eaf6000830184612e8b565b92915050565b600080600060608486031215612ece57612ecd612b0d565b5b6000612edc86828701612b5b565b9350506020612eed86828701612b5b565b9250506040612efe86828701612bf4565b9150509250925092565b600060ff82169050919050565b612f1e81612f08565b82525050565b6000602082019050612f396000830184612f15565b92915050565b600060208284031215612f5557612f54612b0d565b5b6000612f6384828501612bf4565b91505092915050565b60008060408385031215612f8357612f82612b0d565b5b6000612f9185828601612b5b565b9250506020612fa285828601612b5b565b9150509250929050565b7f63616e6e6f74207769746864726177207468697320746f6b656e000000000000600082015250565b6000612fe2601a83612c54565b9150612fed82612fac565b602082019050919050565b6000602082019050818103600083015261301181612fd5565b9050919050565b60008151905061302781612bdd565b92915050565b60006020828403121561304357613042612b0d565b5b600061305184828501613018565b91505092915050565b7f6d616b65207375726520746865726520697320612062616c616e63652061766160008201527f696c61626c6520746f2077697468647261770000000000000000000000000000602082015250565b60006130b6603283612c54565b91506130c18261305a565b604082019050919050565b600060208201905081810360008301526130e5816130a9565b9050919050565b60006040820190506131016000830185612e8b565b61310e6020830184612e21565b9392505050565b60008151905061312481612d4e565b92915050565b6000602082840312156131405761313f612b0d565b5b600061314e84828501613115565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061319e57607f821691505b6020821081036131b1576131b0613157565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006131f182612bd3565b91506131fc83612bd3565b9250828201905080821115613214576132136131b7565b5b92915050565b600061322582612bd3565b915061323083612bd3565b925082820261323e81612bd3565b91508282048414831517613255576132546131b7565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061329682612bd3565b91506132a183612bd3565b9250826132b1576132b061325c565b5b828204905092915050565b7f7461782063616e6e6f74206265206d6f7265207468616e203135250000000000600082015250565b60006132f2601b83612c54565b91506132fd826132bc565b602082019050919050565b60006020820190508181036000830152613321816132e5565b9050919050565b7f6d757374206265206d6f7265207468616e20302e352520737570706c79000000600082015250565b600061335e601d83612c54565b915061336982613328565b602082019050919050565b6000602082019050818103600083015261338d81613351565b9050919050565b7f63616e6e6f74206e6f7420626c61636b6c6973742064657820726f7574657200600082015250565b60006133ca601f83612c54565b91506133d582613394565b602082019050919050565b600060208201905081810360008301526133f9816133bd565b9050919050565b7f77616c6c657420697320616c726561647920626c61636b6c6973746564000000600082015250565b6000613436601d83612c54565b915061344182613400565b602082019050919050565b6000602082019050818103600083015261346581613429565b9050919050565b7f6d757374206265206d6f7265207468616e20302e312520737570706c79000000600082015250565b60006134a2601d83612c54565b91506134ad8261346c565b602082019050919050565b600060208201905081810360008301526134d181613495565b9050919050565b7f77616c6c6574206973206e6f7420626c61636b6c697374656400000000000000600082015250565b600061350e601983612c54565b9150613519826134d8565b602082019050919050565b6000602082019050818103600083015261353d81613501565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006135a0602583612c54565b91506135ab82613544565b604082019050919050565b600060208201905081810360008301526135cf81613593565b9050919050565b7f6d757374206265206c657373207468616e203130250000000000000000000000600082015250565b600061360c601583612c54565b9150613617826135d6565b602082019050919050565b6000602082019050818103600083015261363b816135ff565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061369e602683612c54565b91506136a982613642565b604082019050919050565b600060208201905081810360008301526136cd81613691565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061370a602083612c54565b9150613715826136d4565b602082019050919050565b60006020820190508181036000830152613739816136fd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061379c602483612c54565b91506137a782613740565b604082019050919050565b600060208201905081810360008301526137cb8161378f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061382e602283612c54565b9150613839826137d2565b604082019050919050565b6000602082019050818103600083015261385d81613821565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061389a601d83612c54565b91506138a582613864565b602082019050919050565b600060208201905081810360008301526138c98161388d565b9050919050565b7f626c61636b6c69737465642077616c6c65740000000000000000000000000000600082015250565b6000613906601283612c54565b9150613911826138d0565b602082019050919050565b60006020820190508181036000830152613935816138f9565b9050919050565b7f63616e6e6f742073776170206d6f7265207468616e206d6178207472616e736160008201527f6374696f6e20616d6f756e740000000000000000000000000000000000000000602082015250565b6000613998602c83612c54565b91506139a38261393c565b604082019050919050565b600060208201905081810360008301526139c78161398b565b9050919050565b7f6d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613a04601383612c54565b9150613a0f826139ce565b602082019050919050565b60006020820190508181036000830152613a33816139f7565b9050919050565b6000613a4582612bd3565b9150613a5083612bd3565b9250828203905081811115613a6857613a676131b7565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613af1613aec613ae784613acc565b612da7565b612bd3565b9050919050565b613b0181613ad6565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b3c81612b32565b82525050565b6000613b4e8383613b33565b60208301905092915050565b6000602082019050919050565b6000613b7282613b07565b613b7c8185613b12565b9350613b8783613b23565b8060005b83811015613bb8578151613b9f8882613b42565b9750613baa83613b5a565b925050600181019050613b8b565b5085935050505092915050565b600060a082019050613bda6000830188612e21565b613be76020830187613af8565b8181036040830152613bf98186613b67565b9050613c086060830185612e8b565b613c156080830184612e21565b9695505050505050565b6000606082019050613c346000830186612e21565b613c416020830185612e21565b613c4e6040830184612e21565b949350505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613cb2602583612c54565b9150613cbd82613c56565b604082019050919050565b60006020820190508181036000830152613ce181613ca5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613d44602383612c54565b9150613d4f82613ce8565b604082019050919050565b60006020820190508181036000830152613d7381613d37565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613dd6602683612c54565b9150613de182613d7a565b604082019050919050565b60006020820190508181036000830152613e0581613dc9565b905091905056fea2646970667358221220841b81889078108a03252196992e15258ab542aa574aa32cfda89b55c4daa6d664736f6c63430008110033

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

000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48

-----Decoded View---------------
Arg [0] : _usdc (address): 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48


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.