ETH Price: $3,175.54 (-8.23%)
Gas: 3 Gwei

Token

Echo Token (ECHO)
 

Overview

Max Total Supply

99,700,128,415.144483152253482275 ECHO

Holders

188 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
champoonk.eth
Balance
141.719495382084461034 ECHO

Value
$0.00
0xb130a894187664b22b823de7bb886e5c09e27d51
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

ECHO is a community-oriented charity token project - where the final aim is to establish crypto-native on-chain microdonations and community exploration network.

IEO Information

IEO Address : 0x9c64805d784d95db2e853e019d00f8ae2d97cef6 
IEO Start Date : Apr 12, 2021
IEO End Date : Apr 26, 2021
IEO Price : 1 ETH = 120m ECHO
Public Sale Allocation : 9$
Raised : 39.2 ETH
Token Distribution Date : Apr 26, 2021

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NewEchoToken

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
No with 20 runs

Other Settings:
byzantium EvmVersion
File 1 of 14 : NewEchoToken.sol
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.3;

import './lib/EchoBase.sol';

/**
 * @title Echo Token
 * @dev DISCLAIMER
 * The Echo Token is provided by ECHO TECHNOLOGIES SAS
 * By being a holder of this ERC-20 Token (the balanceOf function returns a value greater than zero,
 * or did return a nonzero value at any point in time since your first purchase)
 * you accept the terms and conditions as laid out in [link] in their entirety.
 */
contract NewEchoToken is EchoBase {

    constructor(
        uint256 launchStartTime,
        uint256 launchVolumeLimitDuration,
        address payable charityAddress
    ) EchoBase (launchStartTime, launchVolumeLimitDuration, charityAddress) {}
}

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

// Requires openzeppelin contracts 4.0.0, uniswap v2 core and v2 periphery (node modules)
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./VolumeLimiter.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";


contract EchoBase is AccessControl, IERC20, VolumeLimiter {
    using SafeMath for uint256;
    using Address for address;

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

    mapping (address => bool) private _isExcludedFromFee;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
   
    // Supply Initialization
    uint256 private constant MAX = ~uint256(0);
    uint256 public _tTotal = 100 * 10**9 * 10**18;
    uint256 public constant _tMin = 10 * 10**9 * 10**18;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 public _tFeeTotal;
    uint256 public _tBurnTotal;
    uint256 public _tDonationTotal;

    string private _name = 'Echo Token';
    string private _symbol = 'ECHO';
    uint8 private _decimals = 18;

    // Reidstribution, burn, and donation percentage initialization

    // // minimum time interval between fee adjustments by community
    uint256 private percentChangeTimespan = 60 * 60 * 24 * 7 * 4 * 3; // 3 months in seconds

    // will be 3% donation ,2% reflect, 1% burn initially
    uint256 public _redistFee = 2;
    uint256 private _redistFeeModCounter = 0;
    uint256 private _redistFeeLastChangeDate = block.timestamp;
    uint256 private _previousRedistFee = _redistFee;
    
    uint256 public _burnFee = 1;
    uint256 private _burnFeeModCounter = 0;
    uint256 private _burnFeeLastChangeDate = block.timestamp;
    uint256 private _previousBurnFee = _burnFee;
    
    uint256 public _donationFee = 3;
    uint256 private _donationFeeModCounter = 0;
    uint256 private _donationFeeLastChangeDate = block.timestamp;
    uint256 private _previousDonationFee = _donationFee;

    bytes32 public constant COMMUNITY_DECISION_ROLE = keccak256("COMMUNITY_DECISION_ROLE");

    // Charity Address (can be any valid address - decided upon by community multisig)
    address payable public charityAddress;
    address payable public constant multisigAddress = payable(0x32cD2c588D61410bAABB55b005f2C0ae520f8Aa5);

    IUniswapV2Router02 public immutable uniswapRouter;
    address public immutable uniswapPool;

    bool public swapEnabled = true;
    bool public limitationCheckEnabled = true;

    // Set the maximum amount that can be exchanged in a single transfer => 1.2B
    uint256 public _maxTxAmount = 12 * 10**8 * 10**18;

    // Set the maximum amount that can be liquidated from the contract in the uniswap pool in a single transfer => 120M
    uint256 public _maxTxLiquidationAmount = _maxTxAmount.div(10);

    // Set the minimum amount of tokens that can be liquidated in the 
    // uniswap pool in a single call to transfer => 12M
    uint256 public _minTokenExchangeBalance = 12 * 10**6 * 10**18;

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapEnabledUpdated(bool enabled);

    // ############### REENTRANCY ##################
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status = _NOT_ENTERED;

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED); //, "[1]"); // ReentrancyGuard: reentrant call

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    // #############################################

    /**
    @dev Echo Token constructor
    @param launchStartTime - unix timestamp of launch (enable limited trading)
    @param launchVolumeLimitDuration - duration in seconds of limited trading period
    @param _charityAddress - the address of the charity that will be donated to
     */
    constructor (
        uint256 launchStartTime,
        uint256 launchVolumeLimitDuration,
        address payable _charityAddress
    ) VolumeLimiter (
        launchStartTime,
        launchVolumeLimitDuration
    ) {
        _rOwned[_msgSender()] = _rTotal;

        _isExcludedFromFee[_msgSender()] = true;
        _isExcludedFromFee[address(this)] = true;

        IUniswapV2Router02 _uniswapRouter = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // UniswapV2 for Ethereum network
        // Create a uniswap pair for this new token
        uniswapPool = IUniswapV2Factory(_uniswapRouter.factory()).createPair(address(this), _uniswapRouter.WETH());

        // set the rest of the contract variabless
        uniswapRouter = _uniswapRouter;

        // set the initial charity address
        charityAddress = _charityAddress;

        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(COMMUNITY_DECISION_ROLE, _msgSender());
        _setupRole(COMMUNITY_DECISION_ROLE, multisigAddress);

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

    function decimals() public view returns (uint8) {
        return _decimals;
    }

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

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

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

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

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

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function isExcluded(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function totalBurn() public view returns (uint256) {
        return _tBurnTotal;
    }
    
    function totalDonation() public view returns (uint256) {
        return _tDonationTotal;
    }

    function reflect(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    function excludeAccount(address account) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not admin");
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeAccount(address account) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not admin");
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function _approve(address owner, address spender, uint256 amount) private {
        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 This function:
    1. Transfers any token balance of this contract to the charity address
    2. Calls a modified version of RFI's _transfer function (_tokenTransfer)
    */
    function _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        if(!hasRole(COMMUNITY_DECISION_ROLE, sender) && !hasRole(COMMUNITY_DECISION_ROLE, recipient))
            require(amount <= _maxTxAmount);

        // Logic for transferring the token contract's balance to the charity address
        uint256 contractTokenBalance = balanceOf(address(this));

        // Price impact consideration if too much internal token accumulation due to a single 
        // large transaction - or due to needing to stop the swap while taking liquidity
        if(contractTokenBalance >= _maxTxLiquidationAmount) {
            contractTokenBalance = _maxTxLiquidationAmount;
        }
        

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap?
        // also, don't get caught in a circular charity (liquidity) event.
        // also, don't swap if sender is uniswap pair.

        bool overMinTokenBalance = contractTokenBalance >= _minTokenExchangeBalance;
        if (_status == _NOT_ENTERED && swapEnabled && overMinTokenBalance && sender != uniswapPool) {
            // We need to swap the current tokens to ETH and send to the charity wallet
            swapTokensForEth(contractTokenBalance);
            
            uint256 contractETHBalance = address(this).balance;
            if(contractETHBalance > 0) {
                sendETHToCharity(address(this).balance);
            }
        }

        bool takeFee = true;
        
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]){
            takeFee = false;
        }
        
        _tokenTransfer(sender,recipient,amount,takeFee);

    }

    // to recieve ETH from uniswapRouter when swapping
    receive() external payable {}

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

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

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

    /**
    @dev Send eth to charity - charity wallet must be an EOA or a contract
    with a payable function to receive ETH --> send all available gas by using call
     */
    function sendETHToCharity(uint256 amount) private {
        // charityAddress.transfer(amount);
        (bool success, ) = charityAddress.call{value: amount}("");
        require(success, 'Tx Failed');
    }

    /**
    @dev Check for trading volume limitations between launch and launch + volume limit duration
     */
    function preValidateTransaction(address sender, address recipient, address _uniswapPool, uint256 amount) internal override {
        super.preValidateTransaction(sender, recipient, _uniswapPool, amount);
    }

    /**
    @dev No need to call preValidateTransaction once the initial trading restrictions are lifted
    if these need to be re-enabled by changing 'launchStartTime' then this should also be set
    back to true
     */
    function setlimitationCheckEnabled(bool enabled) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()));
        limitationCheckEnabled = enabled;
    }

    /**
    @dev RFI's token transfer function - with an addtional takeFee parameter based on if called from
    account exempt from fees. NB: 'excluded' means EXEMPT from being subject to fees
    (useful for administrative adresses in the token ecosystem)
     */
    function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private {

        if(!takeFee)
            removeAllFee();

        if(takeFee && limitationCheckEnabled) {
            preValidateTransaction(sender, recipient, uniswapPool, amount);
        }
        
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        
        if(!takeFee)
            restoreAllFee();
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(sender, tLiquidity);
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _takeLiquidity(sender, tLiquidity);
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeLiquidity(sender, tLiquidity);
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _takeLiquidity(sender, tLiquidity);
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _reflectFee(uint256 rFee, uint256 rBurn, uint256 tFee, uint256 tBurn) private {
        _rTotal = _rTotal.sub(rFee).sub(rBurn);
        _tFeeTotal = _tFeeTotal.add(tFee);
        _tBurnTotal = _tBurnTotal.add(tBurn);
        // With a burnable token, the total supply initialized above cannot be a constant variable
        _tTotal = _tTotal.sub(tBurn);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tBurn, tLiquidity, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tBurn, tLiquidity);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256) {
        uint256 tFee = calculateRedistFee(tAmount);
        uint256 tBurn = calculateBurnFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tBurn).sub(tLiquidity);
        return (tTransferAmount, tFee, tBurn, tLiquidity);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rBurn = tBurn.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rBurn).sub(rLiquidity);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    /**
    @dev Add the liquidity (donation fee) from each transaction to the contract's balance itself
    to then be sent to the charity address upon next transfer and emit a transfer event
    */
    function _takeLiquidity(address sender, uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);

        emit Transfer(sender, address(this), tLiquidity);
    }

    function calculateRedistFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_redistFee).div(
            10**2
        );
    }
    
    function calculateBurnFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_burnFee).div(
            10**2
        );
    }
    
    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_donationFee).div(
            10**2
        );
    }
    
    function removeAllFee() private {
        if(_redistFee == 0 && _burnFee == 0 && _donationFee == 0) return;
        
        _previousRedistFee = _redistFee;
        _previousBurnFee = _burnFee;
        _previousDonationFee = _donationFee;
        
        _redistFee = 0;
        _burnFee = 0;
        _donationFee = 0;
    }
    
    function restoreAllFee() private {
        _redistFee = _previousRedistFee;
        _burnFee = _previousBurnFee;
        _donationFee = _previousDonationFee;
    }

    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
    function excludeFromFee(address account) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender())); // Caller is not admin
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender())); // Caller is not admin
        _isExcludedFromFee[account] = false;
    }

    /**
    * @dev enable or disable the charity swap (use in case of liqudity issues) - token contact
    * will accumulate balance regardless if donation fee is not set to 0
    * @param enabled - enabled or not
    */
    function setSwapEnabled(bool enabled) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender())); // , "Caller is not admin");
        swapEnabled = enabled;
    }

    /**
    * @dev manually swap contract token balance for eth using router
    */
    function manualSwap() external {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()));
        uint256 contractTokenBalance = balanceOf(address(this));
        // Price impact consideration if too much internal token accumulation due to a single large transaction
        if(contractTokenBalance >= _maxTxLiquidationAmount) {
            contractTokenBalance = _maxTxLiquidationAmount;
        }
        swapTokensForEth(contractTokenBalance);
    }

    /**
    * @dev manually send contract eth balance to charity address
    */
    function manualSend() external {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()));
        uint256 contractETHBalance = address(this).balance;
        sendETHToCharity(contractETHBalance);
    }

    /**
    * @dev change the reflection fee percentage - max 5 times
    * @param redistFee - percentage - between 0 and 5, lower than donation fee
    */
    function setRedistFeePercent(uint256 redistFee) external {
        require(hasRole(COMMUNITY_DECISION_ROLE, _msgSender())); // Caller is not decision maker

        uint256 newChangeDate = _redistFeeLastChangeDate.add(percentChangeTimespan);
        require(block.timestamp >= newChangeDate); // Attempting to change value before enough time elapsed
        require(redistFee <= 5 && redistFee >= 0); // percentage outside bounds
        require(redistFee < _donationFee); // Cannot redistribute more than is donated
        require(_redistFeeModCounter <= 5); // can no longer change the percentage

        _redistFeeModCounter += 1;
        _redistFeeLastChangeDate = newChangeDate;
        _redistFee = redistFee;
    }

    /**
    * @dev change the burn fee percentage - max 5 times
    * @param burnFee - percentage - between 0 and 3, lower than donation fee
    */
    function setBurnFeePercent(uint256 burnFee) external {
        require(hasRole(COMMUNITY_DECISION_ROLE, _msgSender())); // Caller is not decision maker

        uint256 newChangeDate = _burnFeeLastChangeDate.add(percentChangeTimespan);
        require(block.timestamp >= newChangeDate); // Attempting to change value before enough time elapsed
        require(burnFee <= 3 && burnFee >= 0); // percentage outside bounds
        require(burnFee < _donationFee); // Cannot burn more than is donated
        require(_burnFeeModCounter <= 5); // can no longer change the percentage

        _burnFeeModCounter += 1;
        _burnFeeLastChangeDate = newChangeDate;
        _burnFee = burnFee;
    }

    /**
    * @dev disable token burn permanently if below minimum token balance
    */
    function stopTokenBurn() external {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender())); // Caller is not admin
        // If total is below minimum supply - stop token burn forever
        if (this._tTotal() < this._tMin()) {
            _burnFeeModCounter = 6;
            _burnFee = 0;
        }
    }

    /**
    * @dev change the donation fee percentage - max 5 times
    * @param donationFee - percentage - between 0 and 25
    */
    function setDonationFeePercent(uint256 donationFee) external {
        require(hasRole(COMMUNITY_DECISION_ROLE, _msgSender())); // "Caller is not decision maker"

        uint256 newChangeDate = _donationFeeLastChangeDate.add(percentChangeTimespan);
        require(block.timestamp >= newChangeDate); // Attempting to change value before enough time elapsed
        require(donationFee <= 25 && donationFee >= 0);// percentage outside bounds
        require(_donationFeeModCounter <= 5);// can no longer change the percentage

        _donationFeeModCounter += 1;
        _donationFeeLastChangeDate = newChangeDate;
        _donationFee = donationFee;
    }
    /**
    * @dev change the charity wallet address - can be called from multisig
    * @param _charityAddress - the address of the charity wallet
    */
    function changeCharityWalletAddress(address _charityAddress) external {
        require(hasRole(COMMUNITY_DECISION_ROLE, _msgSender()));// Caller is not decision maker
        charityAddress = payable(_charityAddress);
    }

    /**
    * @dev update the minimum amount of tokens that the token contract must have
    * for the uniswap router to swap its balance for eth and send to the
    * charity address
    * @param _newMinTokenBalance - the new min token balance
    */
    function changeMinTokenBalance(uint256 _newMinTokenBalance) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()));
        require(_newMinTokenBalance > 0);
        _minTokenExchangeBalance = _newMinTokenBalance;
    }

    /** 
    * @dev update the maximum amount of tokens that the token contract can swap
    * with the uniswap router in a single transaction
    * @param _newMaxTxAmount - the new min token balance
    */
    function changeMaxTxAmount(uint256 _newMaxTxAmount) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()));
        require(_newMaxTxAmount > _minTokenExchangeBalance);
        _maxTxAmount = _newMaxTxAmount;
        _maxTxLiquidationAmount = _newMaxTxAmount.div(10);
    }
    
}

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

import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";

abstract contract VolumeLimiter is AccessControl {
    using SafeMath for uint256;

    // datetime start of uniswap lauch
    uint256 public launchStartTime;

    // duration of timespan after launch where trading volume is limited
    uint256 public launchVolumeLimitDuration;

    // maxiumum swappable amount of tokens - per transaction -between launch and launch + duration
    uint256 public maxInitialTransactionCap = 12000000 * 10**18;

    // minimum swappable amount of tokens - per account - between launch and launch + duration
    uint256 public initialMinCap = 1200000 * 10**18;

    // maxiumum swappable amount of tokens - per account - between launch and launch + duration
    uint256 public initialHardCap = 360000000 * 10**18;

    // record of contributions between launch and launch + duration
    mapping(address => uint256) public initialContributions;

    constructor (
        uint256 _launchStartTime,
        uint256 _launchVolumeLimitDuration
    ) {
        // Declare internal variables
        launchStartTime = _launchStartTime;
        launchVolumeLimitDuration = _launchVolumeLimitDuration;
    }

    function preValidateTransaction(address from, address to, address uniswapPool, uint256 amount) internal virtual {

        // If the sender or recipient is the uniswap pair and the time is before launch, block transfer
        if (block.timestamp < launchStartTime) {
            // require(from != uniswapRouterAddress || to != uniswapRouterAddress, '[V0]'); // Sender cannot be the uniswap router before launch
            require(from != uniswapPool);
            require(to != uniswapPool);
        }

        // If the sender or recipient is the uniswap pair and the time is between launch and launch + duration, limit transfers
        if (block.timestamp >= launchStartTime
        && block.timestamp <= launchStartTime.add(launchVolumeLimitDuration)
        ) {
            // if the sender is the pair - add to the recipient's contributions
            if (from == uniswapPool) {
                _updatePurchasingState(to, amount);
            }

            // if the recipient is the pair - add to the senders's contributions
            if (to == uniswapPool) {
                _updatePurchasingState(from, amount);
            }
        }
    }
    
    function _updatePurchasingState(address beneficiary, uint256 amount) private {

        require(amount < maxInitialTransactionCap, 'TXE'); // Cannot swap more tokens than the limit at this time

        uint256 _existingContribution = initialContributions[beneficiary];
        uint256 _newContribution = _existingContribution.add(amount);

        // solhint-disable-previous-line no-empty-blocks
        require(_newContribution >= initialMinCap && _newContribution <= initialHardCap, 'CE'); // Transaction amount outside acceptable bounds

        // increase contributions mapping by transferred amount
        initialContributions[beneficiary] = _newContribution; 

    }

    // function changeUniswapRouterAddress(address _uniswapRouterAddress) external {
    //     // require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), '[0]'); // Caller is not admin
    //     require(_uniswapRouterModCounter <= 1, '[V4]'); // can no longer change the uniswap router address
    //     uniswapRouterAddress = payable(_uniswapRouterAddress);
    //     _uniswapRouterModCounter += 1;
    // }

    function hasLaunched() public view returns (bool) {
        return block.timestamp > launchStartTime;
    }

    function isLimitedTrading() public view returns (bool) {
        return block.timestamp >= launchStartTime && block.timestamp <= launchStartTime.add(launchVolumeLimitDuration);
    }

    function isFreeTrading() public view returns (bool) {
        return block.timestamp > launchStartTime.add(launchVolumeLimitDuration);
    }

    // function changeLaunchStartTime(uint256 _launchStartTime) external {
    //     require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender())); // Caller is not admin
    //     launchStartTime = _launchStartTime;
    // }

    // function changeVolumeLimitDuration(uint256 _launchvolumeLimitDuration) external {
    //     require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender())); // Caller is not admin
    //     launchVolumeLimitDuration = _launchvolumeLimitDuration;
    // }
}

File 4 of 14 : AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);
    function getRoleAdmin(bytes32 role) external view returns (bytes32);
    function grantRole(bytes32 role, address account) external;
    function revokeRole(bytes32 role, address account) external;
    function renounceRole(bytes32 role, address account) external;
}

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping (address => bool) members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override {
        require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 5 of 14 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);

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

File 6 of 14 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 7 of 14 : Context.sol
// SPDX-License-Identifier: MIT

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 8 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 9 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 10 of 14 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 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 12 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 13 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 14 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;
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 20
  },
  "evmVersion": "byzantium",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"launchStartTime","type":"uint256"},{"internalType":"uint256","name":"launchVolumeLimitDuration","type":"uint256"},{"internalType":"address payable","name":"charityAddress","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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","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":"COMMUNITY_DECISION_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_donationFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxLiquidationAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_minTokenExchangeBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_redistFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tBurnTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tDonationTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tFeeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tMin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_charityAddress","type":"address"}],"name":"changeCharityWalletAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMinTokenBalance","type":"uint256"}],"name":"changeMinTokenBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"charityAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hasLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","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":"","type":"address"}],"name":"initialContributions","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialHardCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialMinCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreeTrading","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLimitedTrading","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchVolumeLimitDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitationCheckEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxInitialTransactionCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"multisigAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"reflect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"burnFee","type":"uint256"}],"name":"setBurnFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"donationFee","type":"uint256"}],"name":"setDonationFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"redistFee","type":"uint256"}],"name":"setRedistFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setlimitationCheckEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopTokenBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDonation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526a09ed194db19b238c00000060035569fe1c215e8f838e0000006004556b0129c8f71ad02e2a680000006005556c01431e0fae6d7217caa0000000600d55600d5460001962000054919062000c0c565b60001962000063919062000b49565b600e556040518060400160405280600a81526020017f4563686f20546f6b656e0000000000000000000000000000000000000000000081525060129080519060200190620000b39291906200092e565b506040518060400160405280600481526020017f4543484f0000000000000000000000000000000000000000000000000000000081525060139080519060200190620001019291906200092e565b506012601460006101000a81548160ff021916908360ff160217905550626ebe0060155560026016556000601755426018556016546019556001601a556000601b5542601c55601a54601d556003601e556000601f5542602055601e546021556001602260146101000a81548160ff0219169083151502179055506001602260156101000a81548160ff0219169083151502179055506b03e09de2596099e2b0000000602355620001cd600a6023546200078264010000000002620028c9179091906401000000009004565b6024556a09ed194db19b238c0000006025556001602655348015620001f157600080fd5b5060405162006d5a38038062006d5a833981810160405281019062000217919062000a4f565b828282828281600181905550806002819055505050600e54600760006200024c6200079a640100000000026401000000009004565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001600a6000620002a96200079a640100000000026401000000009004565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b158015620003ce57600080fd5b505afa158015620003e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000409919062000a23565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b1580156200048857600080fd5b505afa1580156200049d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004c3919062000a23565b6040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401620004fe92919062000ac7565b602060405180830381600087803b1580156200051957600080fd5b505af11580156200052e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000554919062000a23565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff166c01000000000000000000000000028152505081602260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200065160006001026200063c6200079a640100000000026401000000009004565b620007a2640100000000026401000000009004565b620006a47fff73949609e78dd12a4b34dc8efe9fe1fe4f300bddb92e56722073ad613d4dfc6200068f6200079a640100000000026401000000009004565b620007a2640100000000026401000000009004565b620006f37fff73949609e78dd12a4b34dc8efe9fe1fe4f300bddb92e56722073ad613d4dfc7332cd2c588d61410baabb55b005f2c0ae520f8aa5620007a2640100000000026401000000009004565b6200070c6200079a640100000000026401000000009004565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600d546040516200076d919062000af4565b60405180910390a35050505050505062000d1f565b6000818362000792919062000b11565b905092915050565b600033905090565b620007bd8282620007c1640100000000026401000000009004565b5050565b620007dc8282620008c4640100000000026401000000009004565b620008c057600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620008656200079a640100000000026401000000009004565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8280546200093c9062000bd6565b90600052602060002090601f016020900481019282620009605760008555620009ac565b82601f106200097b57805160ff1916838001178555620009ac565b82800160010185558215620009ac579182015b82811115620009ab5782518255916020019190600101906200098e565b5b509050620009bb9190620009bf565b5090565b5b80821115620009da576000816000905550600101620009c0565b5090565b600081519050620009ef8162000cd1565b92915050565b60008151905062000a068162000ceb565b92915050565b60008151905062000a1d8162000d05565b92915050565b60006020828403121562000a3657600080fd5b600062000a4684828501620009de565b91505092915050565b60008060006060848603121562000a6557600080fd5b600062000a758682870162000a0c565b935050602062000a888682870162000a0c565b925050604062000a9b86828701620009f5565b9150509250925092565b62000ab08162000b84565b82525050565b62000ac18162000bcc565b82525050565b600060408201905062000ade600083018562000aa5565b62000aed602083018462000aa5565b9392505050565b600060208201905062000b0b600083018462000ab6565b92915050565b600062000b1e8262000bcc565b915062000b2b8362000bcc565b92508262000b3e5762000b3d62000c73565b5b828204905092915050565b600062000b568262000bcc565b915062000b638362000bcc565b92508282101562000b795762000b7862000c44565b5b828203905092915050565b600062000b918262000bac565b9050919050565b600062000ba58262000bac565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000bef57607f821691505b6020821081141562000c065762000c0562000ca2565b5b50919050565b600062000c198262000bcc565b915062000c268362000bcc565b92508262000c395762000c3862000c73565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b62000cdc8162000b84565b811462000ce857600080fd5b50565b62000cf68162000b98565b811462000d0257600080fd5b50565b62000d108162000bcc565b811462000d1c57600080fd5b50565b6080516c01000000000000000000000000900460a0516c010000000000000000000000009004615fd262000d8860003960008181611c7101528181612d9c01526136950152600081816118e00152818161324a0152818161337c01526133a30152615fd26000f3fe608060405260043610610350576000357c01000000000000000000000000000000000000000000000000000000009004806386db9c3f116101c5578063ccb6248511610105578063ccb6248514610cc5578063cea2695814610cee578063d547741f14610d17578063d6e5530014610d40578063dd62ed3e14610d6b578063e01af92c14610da8578063ea2f0b3714610dd1578063ee2ac05f14610dfa578063f13b01f214610e25578063f24fb63814610e4e578063f2cc0c1814610e79578063f429389014610ea2578063f77ada1514610eb9578063f84354f114610ed0578063faf38f6214610ef9578063fb1eb14b14610f24578063fcad3efa14610f4f57610357565b806386db9c3f1461099257806391d14854146109bd57806395d89b41146109fa5780639b4bdd1a14610a25578063a217fddf14610a50578063a4537de214610a7b578063a457c2d714610aa6578063a544e52114610ae3578063a688d6e014610b20578063a9059cbb14610b4b578063af465a2714610b88578063afcf2fc414610bb3578063b0f4311114610bde578063b715f2aa14610c07578063bdd3d82514610c32578063c0b0fda214610c5d578063cba0e99614610c8857610357565b8063437823ec11610290578063437823ec1461069d5780634549b039146106c65780635011f3e71461070357806351bc3c851461072e5780635342acb4146107455780635462870d146107825780636286fa03146107ad57806363a2b3ab146107d8578063677daa57146108035780636bd9af891461082c5780636ddd17131461085557806370a0823114610880578063735de9f7146108bd578063783b05ef146108e85780637bb501ec146109135780637d1db4a51461093e57806386aac8a81461096957610357565b8063016e95251461035c57806301ffc9a714610387578063053ab182146103c457806306fdde03146103ed578063095ea7b31461041857806313114a9d1461045557806318160ddd14610480578063185d374c146104ab57806323b872dd146104d6578063248a9ca3146105135780632701d8ed146105505780632d8381191461057b5780632f2ff15d146105b8578063313ce567146105e157806336568abe1461060c57806339509351146106355780633c9f861d1461067257610357565b3661035757005b600080fd5b34801561036857600080fd5b50610371610f7a565b60405161037e9190615436565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190614fab565b610f8d565b6040516103bb9190615436565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190614fd4565b611007565b005b3480156103f957600080fd5b50610402611183565b60405161040f9190615487565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190614ee1565b611215565b60405161044c9190615436565b60405180910390f35b34801561046157600080fd5b5061046a611233565b60405161047791906156a9565b60405180910390f35b34801561048c57600080fd5b5061049561123d565b6040516104a291906156a9565b60405180910390f35b3480156104b757600080fd5b506104c0611247565b6040516104cd91906156a9565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190614e92565b61124d565b60405161050a9190615436565b60405180910390f35b34801561051f57600080fd5b5061053a60048036038101906105359190614f46565b611326565b6040516105479190615451565b60405180910390f35b34801561055c57600080fd5b50610565611345565b60405161057291906156a9565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d9190614fd4565b61134b565b6040516105af91906156a9565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da9190614f6f565b6113b9565b005b3480156105ed57600080fd5b506105f661141f565b604051610603919061571e565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e9190614f6f565b611436565b005b34801561064157600080fd5b5061065c60048036038101906106579190614ee1565b6114b9565b6040516106699190615436565b60405180910390f35b34801561067e57600080fd5b5061068761156c565b60405161069491906156a9565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190614e04565b611576565b005b3480156106d257600080fd5b506106ed60048036038101906106e89190615026565b6115ef565b6040516106fa91906156a9565b60405180910390f35b34801561070f57600080fd5b50610718611675565b6040516107259190615436565b60405180910390f35b34801561073a57600080fd5b50610743611695565b005b34801561075157600080fd5b5061076c60048036038101906107679190614e04565b6116db565b6040516107799190615436565b60405180910390f35b34801561078e57600080fd5b50610797611731565b6040516107a4919061541b565b60405180910390f35b3480156107b957600080fd5b506107c2611749565b6040516107cf91906156a9565b60405180910390f35b3480156107e457600080fd5b506107ed61174f565b6040516107fa9190615436565b60405180910390f35b34801561080f57600080fd5b5061082a60048036038101906108259190614fd4565b61175b565b005b34801561083857600080fd5b50610853600480360381019061084e9190614fd4565b6117ab565b005b34801561086157600080fd5b5061086a6117e0565b6040516108779190615436565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a29190614e04565b6117f3565b6040516108b491906156a9565b60405180910390f35b3480156108c957600080fd5b506108d26118de565b6040516108df919061546c565b60405180910390f35b3480156108f457600080fd5b506108fd611902565b60405161090a91906156a9565b60405180910390f35b34801561091f57600080fd5b50610928611908565b60405161093591906156a9565b60405180910390f35b34801561094a57600080fd5b5061095361190e565b60405161096091906156a9565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190614f1d565b611914565b005b34801561099e57600080fd5b506109a761194f565b6040516109b49190615436565b60405180910390f35b3480156109c957600080fd5b506109e460048036038101906109df9190614f6f565b61197e565b6040516109f19190615436565b60405180910390f35b348015610a0657600080fd5b50610a0f6119e8565b604051610a1c9190615487565b60405180910390f35b348015610a3157600080fd5b50610a3a611a7a565b604051610a4791906156a9565b60405180910390f35b348015610a5c57600080fd5b50610a65611a8a565b604051610a729190615451565b60405180910390f35b348015610a8757600080fd5b50610a90611a92565b604051610a9d91906156a9565b60405180910390f35b348015610ab257600080fd5b50610acd6004803603810190610ac89190614ee1565b611a98565b604051610ada9190615436565b60405180910390f35b348015610aef57600080fd5b50610b0a6004803603810190610b059190614e04565b611b65565b604051610b1791906156a9565b60405180910390f35b348015610b2c57600080fd5b50610b35611b7d565b604051610b429190615451565b60405180910390f35b348015610b5757600080fd5b50610b726004803603810190610b6d9190614ee1565b611ba1565b604051610b7f9190615436565b60405180910390f35b348015610b9457600080fd5b50610b9d611bbf565b604051610baa91906156a9565b60405180910390f35b348015610bbf57600080fd5b50610bc8611bc5565b604051610bd5919061541b565b60405180910390f35b348015610bea57600080fd5b50610c056004803603810190610c009190614e04565b611beb565b005b348015610c1357600080fd5b50610c1c611c69565b604051610c2991906156a9565b60405180910390f35b348015610c3e57600080fd5b50610c47611c6f565b604051610c549190615400565b60405180910390f35b348015610c6957600080fd5b50610c72611c93565b604051610c7f91906156a9565b60405180910390f35b348015610c9457600080fd5b50610caf6004803603810190610caa9190614e04565b611c99565b604051610cbc9190615436565b60405180910390f35b348015610cd157600080fd5b50610cec6004803603810190610ce79190614fd4565b611cef565b005b348015610cfa57600080fd5b50610d156004803603810190610d109190614fd4565b611db6565b005b348015610d2357600080fd5b50610d3e6004803603810190610d399190614f6f565b611e7d565b005b348015610d4c57600080fd5b50610d55611ee3565b604051610d6291906156a9565b60405180910390f35b348015610d7757600080fd5b50610d926004803603810190610d8d9190614e56565b611ee9565b604051610d9f91906156a9565b60405180910390f35b348015610db457600080fd5b50610dcf6004803603810190610dca9190614f1d565b611f70565b005b348015610ddd57600080fd5b50610df86004803603810190610df39190614e04565b611fab565b005b348015610e0657600080fd5b50610e0f612024565b604051610e1c91906156a9565b60405180910390f35b348015610e3157600080fd5b50610e4c6004803603810190610e479190614fd4565b61202e565b005b348015610e5a57600080fd5b50610e636120e7565b604051610e7091906156a9565b60405180910390f35b348015610e8557600080fd5b50610ea06004803603810190610e9b9190614e04565b6120ed565b005b348015610eae57600080fd5b50610eb7612360565b005b348015610ec557600080fd5b50610ece6123a6565b005b348015610edc57600080fd5b50610ef76004803603810190610ef29190614e04565b612511565b005b348015610f0557600080fd5b50610f0e6128b7565b604051610f1b91906156a9565b60405180910390f35b348015610f3057600080fd5b50610f396128bd565b604051610f4691906156a9565b60405180910390f35b348015610f5b57600080fd5b50610f646128c3565b604051610f7191906156a9565b60405180910390f35b602260159054906101000a900460ff1681565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806110005750610fff826128df565b5b9050919050565b6000611011612949565b9050600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790615669565b60405180910390fd5b60006110ab83612951565b505050505050905061110581600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129b990919063ffffffff16565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061115d81600e546129b990919063ffffffff16565b600e8190555061117883600f546129cf90919063ffffffff16565b600f81905550505050565b606060128054611192906159b4565b80601f01602080910402602001604051908101604052809291908181526020018280546111be906159b4565b801561120b5780601f106111e05761010080835404028352916020019161120b565b820191906000526020600020905b8154815290600101906020018083116111ee57829003601f168201915b5050505050905090565b6000611229611222612949565b84846129e5565b6001905092915050565b6000600f54905090565b6000600d54905090565b60105481565b600061125a848484612bb0565b61131b84611266612949565b61131685604051806060016040528060288152602001615f5060289139600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112cc612949565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f069092919063ffffffff16565b6129e5565b600190509392505050565b6000806000838152602001908152602001600020600101549050919050565b60245481565b6000600e54821115611392576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611389906154e9565b60405180910390fd5b600061139c612f5b565b90506113b181846128c990919063ffffffff16565b915050919050565b6113d26113c583611326565b6113cd612949565b61197e565b611411576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611408906154c9565b60405180910390fd5b61141b8282612f86565b5050565b6000601460009054906101000a900460ff16905090565b61143e612949565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a290615689565b60405180910390fd5b6114b58282613066565b5050565b60006115626114c6612949565b8461155d85600960006114d7612949565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cf90919063ffffffff16565b6129e5565b6001905092915050565b6000601054905090565b61158b6000600102611586612949565b61197e565b61159457600080fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600d54831115611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162d906155a9565b60405180910390fd5b8161165757600061164684612951565b50505050505090508091505061166f565b600061166284612951565b5050505050915050809150505b92915050565b600061168e6002546001546129cf90919063ffffffff16565b4211905090565b6116aa60006001026116a5612949565b61197e565b6116b357600080fd5b60006116be306117f3565b905060245481106116cf5760245490505b6116d881613147565b50565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b7332cd2c588d61410baabb55b005f2c0ae520f8aa581565b60165481565b60006001544211905090565b611770600060010261176b612949565b61197e565b61177957600080fd5b602554811161178757600080fd5b806023819055506117a2600a826128c990919063ffffffff16565b60248190555050565b6117c060006001026117bb612949565b61197e565b6117c957600080fd5b600081116117d657600080fd5b8060258190555050565b602260149054906101000a900460ff1681565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561188e57600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506118d9565b6118d6600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134b565b90505b919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60025481565b60015481565b60235481565b6119296000600102611924612949565b61197e565b61193257600080fd5b80602260156101000a81548160ff02191690831515021790555050565b6000600154421015801561197957506119756002546001546129cf90919063ffffffff16565b4211155b905090565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060601380546119f7906159b4565b80601f0160208091040260200160405190810160405280929190818152602001828054611a23906159b4565b8015611a705780601f10611a4557610100808354040283529160200191611a70565b820191906000526020600020905b815481529060010190602001808311611a5357829003601f168201915b5050505050905090565b6b204fce5e3e2502611000000081565b600060010281565b60115481565b6000611b5b611aa5612949565b84611b5685604051806060016040528060258152602001615f786025913960096000611acf612949565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f069092919063ffffffff16565b6129e5565b6001905092915050565b60066020528060005260406000206000915090505481565b7fff73949609e78dd12a4b34dc8efe9fe1fe4f300bddb92e56722073ad613d4dfc81565b6000611bb5611bae612949565b8484612bb0565b6001905092915050565b600d5481565b602260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c1c7fff73949609e78dd12a4b34dc8efe9fe1fe4f300bddb92e56722073ad613d4dfc611c17612949565b61197e565b611c2557600080fd5b80602260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60035481565b7f000000000000000000000000000000000000000000000000000000000000000081565b601a5481565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611d207fff73949609e78dd12a4b34dc8efe9fe1fe4f300bddb92e56722073ad613d4dfc611d1b612949565b61197e565b611d2957600080fd5b6000611d426015546018546129cf90919063ffffffff16565b905080421015611d5157600080fd5b60058211158015611d63575060008210155b611d6c57600080fd5b601e548210611d7a57600080fd5b60056017541115611d8a57600080fd5b600160176000828254611d9d9190615799565b9250508190555080601881905550816016819055505050565b611de77fff73949609e78dd12a4b34dc8efe9fe1fe4f300bddb92e56722073ad613d4dfc611de2612949565b61197e565b611df057600080fd5b6000611e09601554601c546129cf90919063ffffffff16565b905080421015611e1857600080fd5b60038211158015611e2a575060008210155b611e3357600080fd5b601e548210611e4157600080fd5b6005601b541115611e5157600080fd5b6001601b6000828254611e649190615799565b9250508190555080601c8190555081601a819055505050565b611e96611e8983611326565b611e91612949565b61197e565b611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc90615589565b60405180910390fd5b611edf8282613066565b5050565b60055481565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611f856000600102611f80612949565b61197e565b611f8e57600080fd5b80602260146101000a81548160ff02191690831515021790555050565b611fc06000600102611fbb612949565b61197e565b611fc957600080fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000601154905090565b61205f7fff73949609e78dd12a4b34dc8efe9fe1fe4f300bddb92e56722073ad613d4dfc61205a612949565b61197e565b61206857600080fd5b60006120816015546020546129cf90919063ffffffff16565b90508042101561209057600080fd5b601982111580156120a2575060008210155b6120ab57600080fd5b6005601f5411156120bb57600080fd5b6001601f60008282546120ce9190615799565b925050819055508060208190555081601e819055505050565b60045481565b61210260006001026120fd612949565b61197e565b612141576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612138906155e9565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156121ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c590615529565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156122a25761225e600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134b565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600c819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6123756000600102612370612949565b61197e565b61237e57600080fd5b60003073ffffffffffffffffffffffffffffffffffffffff163190506123a38161345d565b50565b6123bb60006001026123b6612949565b61197e565b6123c457600080fd5b3073ffffffffffffffffffffffffffffffffffffffff16639b4bdd1a6040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b15801561242657600080fd5b505afa15801561243a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061245e9190614ffd565b3073ffffffffffffffffffffffffffffffffffffffff1663af465a276040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b1580156124c057600080fd5b505afa1580156124d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124f89190614ffd565b101561250f576006601b819055506000601a819055505b565b6125266000600102612521612949565b61197e565b612565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255c906155e9565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166125f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e890615529565b60405180910390fd5b60005b600c805490508110156128b3578173ffffffffffffffffffffffffffffffffffffffff16600c8281548110612652577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128a057600c6001600c805490506126ad919061587a565b815481106126e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c8281548110612749577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600c805480612866577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556128b3565b80806128ab906159e6565b9150506125f4565b5050565b601e5481565b600f5481565b60255481565b600081836128d791906157ef565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600080600080600080600080600080600061296b8c61352f565b9350935093509350600080600061298c8f878787612987612f5b565b6135ae565b925092509250828282898989899d509d509d509d509d509d509d5050505050505050919395979092949650565b600081836129c7919061587a565b905092915050565b600081836129dd9190615799565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4c90615629565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abc90615509565b60405180910390fd5b80600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612ba391906156a9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1790615609565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c87906154a9565b60405180910390fd5b60008111612cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cca906155c9565b60405180910390fd5b612cfd7fff73949609e78dd12a4b34dc8efe9fe1fe4f300bddb92e56722073ad613d4dfc8461197e565b158015612d315750612d2f7fff73949609e78dd12a4b34dc8efe9fe1fe4f300bddb92e56722073ad613d4dfc8361197e565b155b15612d4657602354811115612d4557600080fd5b5b6000612d51306117f3565b90506024548110612d625760245490505b600060255482101590506001602654148015612d8a5750602260149054906101000a900460ff165b8015612d935750805b8015612deb57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15612e4157612df982613147565b60003073ffffffffffffffffffffffffffffffffffffffff163190506000811115612e3f57612e3e3073ffffffffffffffffffffffffffffffffffffffff163161345d565b5b505b600060019050600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ee85750600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612ef257600090505b612efe86868684613662565b505050505050565b6000838311158290612f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f459190615487565b60405180910390fd5b5082840390509392505050565b6000806000612f686139be565b91509150612f7f81836128c990919063ffffffff16565b9250505090565b612f90828261197e565b61306257600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550613007612949565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b613070828261197e565b1561314357600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506130e8612949565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6002602654141561315757600080fd5b60026026819055506000600267ffffffffffffffff8111156131a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156131d05781602001602082028036833780820191505090505b509050308160008151811061320e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b1580156132ca57600080fd5b505afa1580156132de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133029190614e2d565b8160018151811061333c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506133a1307f0000000000000000000000000000000000000000000000000000000000000000846129e5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040161341f9594939291906156c4565b600060405180830381600087803b15801561343957600080fd5b505af115801561344d573d6000803e3d6000fd5b5050505050600160268190555050565b6000602260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516134a5906153eb565b60006040518083038185875af1925050503d80600081146134e2576040519150601f19603f3d011682016040523d82523d6000602084013e6134e7565b606091505b505090508061352b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352290615549565b60405180910390fd5b5050565b600080600080600061354086613d09565b9050600061354d87613d3a565b9050600061355a88613d6b565b905060006135958261358785613579888e6129b990919063ffffffff16565b6129b990919063ffffffff16565b6129b990919063ffffffff16565b9050808484849750975097509750505050509193509193565b6000806000806135c7858a613d9c90919063ffffffff16565b905060006135de868a613d9c90919063ffffffff16565b905060006135f5878a613d9c90919063ffffffff16565b9050600061360c888a613d9c90919063ffffffff16565b90506000613647826136398561362b888a6129b990919063ffffffff16565b6129b990919063ffffffff16565b6129b990919063ffffffff16565b90508481859750975097505050505050955095509592505050565b806136705761366f613db2565b5b8080156136895750602260159054906101000a900460ff165b156136bb576136ba84847f000000000000000000000000000000000000000000000000000000000000000085613e14565b5b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561375e5750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156137735761376e848484613e26565b6139aa565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156138165750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561382b576138268484846140b3565b6139a9565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156138cf5750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156138e4576138df848484614340565b6139a8565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139865750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561399b57613996848484614538565b6139a7565b6139a6848484614340565b5b5b5b5b806139b8576139b761485a565b5b50505050565b6000806000600e5490506000600d54905060005b600c80549050811015613ccc578260076000600c8481548110613a1e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613b3257508160086000600c8481548110613aca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613b4957600e54600d5494509450505050613d05565b613bff60076000600c8481548110613b8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846129b990919063ffffffff16565b9250613cb760086000600c8481548110613c42577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836129b990919063ffffffff16565b91508080613cc4906159e6565b9150506139d2565b50613ce4600d54600e546128c990919063ffffffff16565b821015613cfc57600e54600d54935093505050613d05565b81819350935050505b9091565b6000613d336064613d2560165485613d9c90919063ffffffff16565b6128c990919063ffffffff16565b9050919050565b6000613d646064613d56601a5485613d9c90919063ffffffff16565b6128c990919063ffffffff16565b9050919050565b6000613d956064613d87601e5485613d9c90919063ffffffff16565b6128c990919063ffffffff16565b9050919050565b60008183613daa9190615820565b905092915050565b6000601654148015613dc657506000601a54145b8015613dd457506000601e54145b15613dde57613e12565b601654601981905550601a54601d81905550601e5460218190555060006016819055506000601a819055506000601e819055505b565b613e2084848484614877565b50505050565b6000613e30612f5b565b90506000806000806000806000613e4689612951565b96509650965096509650965096506000613e698984613d9c90919063ffffffff16565b9050613ebd8a600860008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129b990919063ffffffff16565b600860008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613f5288600760008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129b990919063ffffffff16565b600760008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613fe787600760008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cf90919063ffffffff16565b600760008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506140348c836149a6565b61404086828686614bb1565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161409d91906156a9565b60405180910390a3505050505050505050505050565b60006140bd612f5b565b905060008060008060008060006140d389612951565b965096509650965096509650965060006140f68984613d9c90919063ffffffff16565b905061414a88600760008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129b990919063ffffffff16565b600760008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141df85600860008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cf90919063ffffffff16565b600860008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061427487600760008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cf90919063ffffffff16565b600760008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506142c18c836149a6565b6142cd86828686614bb1565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161432a91906156a9565b60405180910390a3505050505050505050505050565b600061434a612f5b565b9050600080600080600080600061436089612951565b965096509650965096509650965060006143838984613d9c90919063ffffffff16565b90506143d788600760008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129b990919063ffffffff16565b600760008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061446c87600760008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cf90919063ffffffff16565b600760008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144b98c836149a6565b6144c586828686614bb1565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161452291906156a9565b60405180910390a3505050505050505050505050565b6000614542612f5b565b9050600080600080600080600061455889612951565b9650965096509650965096509650600061457b8984613d9c90919063ffffffff16565b90506145cf8a600860008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129b990919063ffffffff16565b600860008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061466488600760008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129b990919063ffffffff16565b600760008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146f985600860008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cf90919063ffffffff16565b600860008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061478e87600760008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cf90919063ffffffff16565b600760008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506147db8c836149a6565b6147e786828686614bb1565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161484491906156a9565b60405180910390a3505050505050505050505050565b601954601681905550601d54601a81905550602154601e81905550565b6001544210156148f4578173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156148ba57600080fd5b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156148f357600080fd5b5b600154421015801561491c57506149186002546001546129cf90919063ffffffff16565b4211155b156149a0578173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156149605761495f8382614c35565b5b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561499f5761499e8482614c35565b5b5b50505050565b60006149b0612f5b565b905060006149c78284613d9c90919063ffffffff16565b9050614a1b81600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cf90919063ffffffff16565b600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614b4657614b0283600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cf90919063ffffffff16565b600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b3073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051614ba391906156a9565b60405180910390a350505050565b614bd883614bca86600e546129b990919063ffffffff16565b6129b990919063ffffffff16565b600e81905550614bf382600f546129cf90919063ffffffff16565b600f81905550614c0e816010546129cf90919063ffffffff16565b601081905550614c2981600d546129b990919063ffffffff16565b600d8190555050505050565b6003548110614c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401614c7090615649565b60405180910390fd5b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000614cd283836129cf90919063ffffffff16565b90506004548110158015614ce857506005548111155b614d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401614d1e90615569565b60405180910390fd5b80600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b600081359050614d8081615edc565b92915050565b600081519050614d9581615edc565b92915050565b600081359050614daa81615ef3565b92915050565b600081359050614dbf81615f0a565b92915050565b600081359050614dd481615f21565b92915050565b600081359050614de981615f38565b92915050565b600081519050614dfe81615f38565b92915050565b600060208284031215614e1657600080fd5b6000614e2484828501614d71565b91505092915050565b600060208284031215614e3f57600080fd5b6000614e4d84828501614d86565b91505092915050565b60008060408385031215614e6957600080fd5b6000614e7785828601614d71565b9250506020614e8885828601614d71565b9150509250929050565b600080600060608486031215614ea757600080fd5b6000614eb586828701614d71565b9350506020614ec686828701614d71565b9250506040614ed786828701614dda565b9150509250925092565b60008060408385031215614ef457600080fd5b6000614f0285828601614d71565b9250506020614f1385828601614dda565b9150509250929050565b600060208284031215614f2f57600080fd5b6000614f3d84828501614d9b565b91505092915050565b600060208284031215614f5857600080fd5b6000614f6684828501614db0565b91505092915050565b60008060408385031215614f8257600080fd5b6000614f9085828601614db0565b9250506020614fa185828601614d71565b9150509250929050565b600060208284031215614fbd57600080fd5b6000614fcb84828501614dc5565b91505092915050565b600060208284031215614fe657600080fd5b6000614ff484828501614dda565b91505092915050565b60006020828403121561500f57600080fd5b600061501d84828501614def565b91505092915050565b6000806040838503121561503957600080fd5b600061504785828601614dda565b925050602061505885828601614d9b565b9150509250929050565b600061506e8383615089565b60208301905092915050565b615083816158c0565b82525050565b615092816158ae565b82525050565b6150a1816158ae565b82525050565b60006150b282615749565b6150bc818561576c565b93506150c783615739565b8060005b838110156150f85781516150df8882615062565b97506150ea8361575f565b9250506001810190506150cb565b5085935050505092915050565b61510e816158d2565b82525050565b61511d816158de565b82525050565b61512c8161594b565b82525050565b61513b8161596f565b82525050565b600061514c82615754565b6151568185615788565b9350615166818560208601615981565b61516f81615abc565b840191505092915050565b6000615187602383615788565b915061519282615acd565b604082019050919050565b60006151aa602f83615788565b91506151b582615b1c565b604082019050919050565b60006151cd602a83615788565b91506151d882615b6b565b604082019050919050565b60006151f0602283615788565b91506151fb82615bba565b604082019050919050565b6000615213601b83615788565b915061521e82615c09565b602082019050919050565b6000615236600983615788565b915061524182615c32565b602082019050919050565b6000615259600283615788565b915061526482615c5b565b602082019050919050565b600061527c603083615788565b915061528782615c84565b604082019050919050565b600061529f601f83615788565b91506152aa82615cd3565b602082019050919050565b60006152c2602983615788565b91506152cd82615cfc565b604082019050919050565b60006152e5601383615788565b91506152f082615d4b565b602082019050919050565b6000615308602583615788565b915061531382615d74565b604082019050919050565b600061532b60008361577d565b915061533682615dc3565b600082019050919050565b600061534e602483615788565b915061535982615dc6565b604082019050919050565b6000615371600383615788565b915061537c82615e15565b602082019050919050565b6000615394602c83615788565b915061539f82615e3e565b604082019050919050565b60006153b7602f83615788565b91506153c282615e8d565b604082019050919050565b6153d681615934565b82525050565b6153e58161593e565b82525050565b60006153f68261531e565b9150819050919050565b60006020820190506154156000830184615098565b92915050565b6000602082019050615430600083018461507a565b92915050565b600060208201905061544b6000830184615105565b92915050565b60006020820190506154666000830184615114565b92915050565b60006020820190506154816000830184615123565b92915050565b600060208201905081810360008301526154a18184615141565b905092915050565b600060208201905081810360008301526154c28161517a565b9050919050565b600060208201905081810360008301526154e28161519d565b9050919050565b60006020820190508181036000830152615502816151c0565b9050919050565b60006020820190508181036000830152615522816151e3565b9050919050565b6000602082019050818103600083015261554281615206565b9050919050565b6000602082019050818103600083015261556281615229565b9050919050565b600060208201905081810360008301526155828161524c565b9050919050565b600060208201905081810360008301526155a28161526f565b9050919050565b600060208201905081810360008301526155c281615292565b9050919050565b600060208201905081810360008301526155e2816152b5565b9050919050565b60006020820190508181036000830152615602816152d8565b9050919050565b60006020820190508181036000830152615622816152fb565b9050919050565b6000602082019050818103600083015261564281615341565b9050919050565b6000602082019050818103600083015261566281615364565b9050919050565b6000602082019050818103600083015261568281615387565b9050919050565b600060208201905081810360008301526156a2816153aa565b9050919050565b60006020820190506156be60008301846153cd565b92915050565b600060a0820190506156d960008301886153cd565b6156e66020830187615132565b81810360408301526156f881866150a7565b90506157076060830185615098565b61571460808301846153cd565b9695505050505050565b600060208201905061573360008301846153dc565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006157a482615934565b91506157af83615934565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156157e4576157e3615a2f565b5b828201905092915050565b60006157fa82615934565b915061580583615934565b92508261581557615814615a5e565b5b828204905092915050565b600061582b82615934565b915061583683615934565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561586f5761586e615a2f565b5b828202905092915050565b600061588582615934565b915061589083615934565b9250828210156158a3576158a2615a2f565b5b828203905092915050565b60006158b982615914565b9050919050565b60006158cb82615914565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006159568261595d565b9050919050565b600061596882615914565b9050919050565b600061597a82615934565b9050919050565b60005b8381101561599f578082015181840152602081019050615984565b838111156159ae576000848401525b50505050565b600060028204905060018216806159cc57607f821691505b602082108114156159e0576159df615a8d565b5b50919050565b60006159f182615934565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615a2457615a23615a2f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f206772616e740000000000000000000000000000000000602082015250565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b7f5478204661696c65640000000000000000000000000000000000000000000000600082015250565b7f4345000000000000000000000000000000000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f207265766f6b6500000000000000000000000000000000602082015250565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f742061646d696e00000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f5458450000000000000000000000000000000000000000000000000000000000600082015250565b7f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460008201527f6869732066756e6374696f6e0000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b615ee5816158ae565b8114615ef057600080fd5b50565b615efc816158d2565b8114615f0757600080fd5b50565b615f13816158de565b8114615f1e57600080fd5b50565b615f2a816158e8565b8114615f3557600080fd5b50565b615f4181615934565b8114615f4c57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200c70b12558fa058eb04f19506be5fab081a533214f721f55105b6c7f7d041b6d64736f6c6343000803003300000000000000000000000000000000000000000000000000000000608b2c240000000000000000000000000000000000000000000000000000000000001c2000000000000000000000000032cd2c588d61410baabb55b005f2c0ae520f8aa5

Deployed Bytecode

0x608060405260043610610350576000357c01000000000000000000000000000000000000000000000000000000009004806386db9c3f116101c5578063ccb6248511610105578063ccb6248514610cc5578063cea2695814610cee578063d547741f14610d17578063d6e5530014610d40578063dd62ed3e14610d6b578063e01af92c14610da8578063ea2f0b3714610dd1578063ee2ac05f14610dfa578063f13b01f214610e25578063f24fb63814610e4e578063f2cc0c1814610e79578063f429389014610ea2578063f77ada1514610eb9578063f84354f114610ed0578063faf38f6214610ef9578063fb1eb14b14610f24578063fcad3efa14610f4f57610357565b806386db9c3f1461099257806391d14854146109bd57806395d89b41146109fa5780639b4bdd1a14610a25578063a217fddf14610a50578063a4537de214610a7b578063a457c2d714610aa6578063a544e52114610ae3578063a688d6e014610b20578063a9059cbb14610b4b578063af465a2714610b88578063afcf2fc414610bb3578063b0f4311114610bde578063b715f2aa14610c07578063bdd3d82514610c32578063c0b0fda214610c5d578063cba0e99614610c8857610357565b8063437823ec11610290578063437823ec1461069d5780634549b039146106c65780635011f3e71461070357806351bc3c851461072e5780635342acb4146107455780635462870d146107825780636286fa03146107ad57806363a2b3ab146107d8578063677daa57146108035780636bd9af891461082c5780636ddd17131461085557806370a0823114610880578063735de9f7146108bd578063783b05ef146108e85780637bb501ec146109135780637d1db4a51461093e57806386aac8a81461096957610357565b8063016e95251461035c57806301ffc9a714610387578063053ab182146103c457806306fdde03146103ed578063095ea7b31461041857806313114a9d1461045557806318160ddd14610480578063185d374c146104ab57806323b872dd146104d6578063248a9ca3146105135780632701d8ed146105505780632d8381191461057b5780632f2ff15d146105b8578063313ce567146105e157806336568abe1461060c57806339509351146106355780633c9f861d1461067257610357565b3661035757005b600080fd5b34801561036857600080fd5b50610371610f7a565b60405161037e9190615436565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190614fab565b610f8d565b6040516103bb9190615436565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190614fd4565b611007565b005b3480156103f957600080fd5b50610402611183565b60405161040f9190615487565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190614ee1565b611215565b60405161044c9190615436565b60405180910390f35b34801561046157600080fd5b5061046a611233565b60405161047791906156a9565b60405180910390f35b34801561048c57600080fd5b5061049561123d565b6040516104a291906156a9565b60405180910390f35b3480156104b757600080fd5b506104c0611247565b6040516104cd91906156a9565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190614e92565b61124d565b60405161050a9190615436565b60405180910390f35b34801561051f57600080fd5b5061053a60048036038101906105359190614f46565b611326565b6040516105479190615451565b60405180910390f35b34801561055c57600080fd5b50610565611345565b60405161057291906156a9565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d9190614fd4565b61134b565b6040516105af91906156a9565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da9190614f6f565b6113b9565b005b3480156105ed57600080fd5b506105f661141f565b604051610603919061571e565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e9190614f6f565b611436565b005b34801561064157600080fd5b5061065c60048036038101906106579190614ee1565b6114b9565b6040516106699190615436565b60405180910390f35b34801561067e57600080fd5b5061068761156c565b60405161069491906156a9565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190614e04565b611576565b005b3480156106d257600080fd5b506106ed60048036038101906106e89190615026565b6115ef565b6040516106fa91906156a9565b60405180910390f35b34801561070f57600080fd5b50610718611675565b6040516107259190615436565b60405180910390f35b34801561073a57600080fd5b50610743611695565b005b34801561075157600080fd5b5061076c60048036038101906107679190614e04565b6116db565b6040516107799190615436565b60405180910390f35b34801561078e57600080fd5b50610797611731565b6040516107a4919061541b565b60405180910390f35b3480156107b957600080fd5b506107c2611749565b6040516107cf91906156a9565b60405180910390f35b3480156107e457600080fd5b506107ed61174f565b6040516107fa9190615436565b60405180910390f35b34801561080f57600080fd5b5061082a60048036038101906108259190614fd4565b61175b565b005b34801561083857600080fd5b50610853600480360381019061084e9190614fd4565b6117ab565b005b34801561086157600080fd5b5061086a6117e0565b6040516108779190615436565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a29190614e04565b6117f3565b6040516108b491906156a9565b60405180910390f35b3480156108c957600080fd5b506108d26118de565b6040516108df919061546c565b60405180910390f35b3480156108f457600080fd5b506108fd611902565b60405161090a91906156a9565b60405180910390f35b34801561091f57600080fd5b50610928611908565b60405161093591906156a9565b60405180910390f35b34801561094a57600080fd5b5061095361190e565b60405161096091906156a9565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190614f1d565b611914565b005b34801561099e57600080fd5b506109a761194f565b6040516109b49190615436565b60405180910390f35b3480156109c957600080fd5b506109e460048036038101906109df9190614f6f565b61197e565b6040516109f19190615436565b60405180910390f35b348015610a0657600080fd5b50610a0f6119e8565b604051610a1c9190615487565b60405180910390f35b348015610a3157600080fd5b50610a3a611a7a565b604051610a4791906156a9565b60405180910390f35b348015610a5c57600080fd5b50610a65611a8a565b604051610a729190615451565b60405180910390f35b348015610a8757600080fd5b50610a90611a92565b604051610a9d91906156a9565b60405180910390f35b348015610ab257600080fd5b50610acd6004803603810190610ac89190614ee1565b611a98565b604051610ada9190615436565b60405180910390f35b348015610aef57600080fd5b50610b0a6004803603810190610b059190614e04565b611b65565b604051610b1791906156a9565b60405180910390f35b348015610b2c57600080fd5b50610b35611b7d565b604051610b429190615451565b60405180910390f35b348015610b5757600080fd5b50610b726004803603810190610b6d9190614ee1565b611ba1565b604051610b7f9190615436565b60405180910390f35b348015610b9457600080fd5b50610b9d611bbf565b604051610baa91906156a9565b60405180910390f35b348015610bbf57600080fd5b50610bc8611bc5565b604051610bd5919061541b565b60405180910390f35b348015610bea57600080fd5b50610c056004803603810190610c009190614e04565b611beb565b005b348015610c1357600080fd5b50610c1c611c69565b604051610c2991906156a9565b60405180910390f35b348015610c3e57600080fd5b50610c47611c6f565b604051610c549190615400565b60405180910390f35b348015610c6957600080fd5b50610c72611c93565b604051610c7f91906156a9565b60405180910390f35b348015610c9457600080fd5b50610caf6004803603810190610caa9190614e04565b611c99565b604051610cbc9190615436565b60405180910390f35b348015610cd157600080fd5b50610cec6004803603810190610ce79190614fd4565b611cef565b005b348015610cfa57600080fd5b50610d156004803603810190610d109190614fd4565b611db6565b005b348015610d2357600080fd5b50610d3e6004803603810190610d399190614f6f565b611e7d565b005b348015610d4c57600080fd5b50610d55611ee3565b604051610d6291906156a9565b60405180910390f35b348015610d7757600080fd5b50610d926004803603810190610d8d9190614e56565b611ee9565b604051610d9f91906156a9565b60405180910390f35b348015610db457600080fd5b50610dcf6004803603810190610dca9190614f1d565b611f70565b005b348015610ddd57600080fd5b50610df86004803603810190610df39190614e04565b611fab565b005b348015610e0657600080fd5b50610e0f612024565b604051610e1c91906156a9565b60405180910390f35b348015610e3157600080fd5b50610e4c6004803603810190610e479190614fd4565b61202e565b005b348015610e5a57600080fd5b50610e636120e7565b604051610e7091906156a9565b60405180910390f35b348015610e8557600080fd5b50610ea06004803603810190610e9b9190614e04565b6120ed565b005b348015610eae57600080fd5b50610eb7612360565b005b348015610ec557600080fd5b50610ece6123a6565b005b348015610edc57600080fd5b50610ef76004803603810190610ef29190614e04565b612511565b005b348015610f0557600080fd5b50610f0e6128b7565b604051610f1b91906156a9565b60405180910390f35b348015610f3057600080fd5b50610f396128bd565b604051610f4691906156a9565b60405180910390f35b348015610f5b57600080fd5b50610f646128c3565b604051610f7191906156a9565b60405180910390f35b602260159054906101000a900460ff1681565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806110005750610fff826128df565b5b9050919050565b6000611011612949565b9050600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790615669565b60405180910390fd5b60006110ab83612951565b505050505050905061110581600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129b990919063ffffffff16565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061115d81600e546129b990919063ffffffff16565b600e8190555061117883600f546129cf90919063ffffffff16565b600f81905550505050565b606060128054611192906159b4565b80601f01602080910402602001604051908101604052809291908181526020018280546111be906159b4565b801561120b5780601f106111e05761010080835404028352916020019161120b565b820191906000526020600020905b8154815290600101906020018083116111ee57829003601f168201915b5050505050905090565b6000611229611222612949565b84846129e5565b6001905092915050565b6000600f54905090565b6000600d54905090565b60105481565b600061125a848484612bb0565b61131b84611266612949565b61131685604051806060016040528060288152602001615f5060289139600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112cc612949565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f069092919063ffffffff16565b6129e5565b600190509392505050565b6000806000838152602001908152602001600020600101549050919050565b60245481565b6000600e54821115611392576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611389906154e9565b60405180910390fd5b600061139c612f5b565b90506113b181846128c990919063ffffffff16565b915050919050565b6113d26113c583611326565b6113cd612949565b61197e565b611411576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611408906154c9565b60405180910390fd5b61141b8282612f86565b5050565b6000601460009054906101000a900460ff16905090565b61143e612949565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a290615689565b60405180910390fd5b6114b58282613066565b5050565b60006115626114c6612949565b8461155d85600960006114d7612949565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cf90919063ffffffff16565b6129e5565b6001905092915050565b6000601054905090565b61158b6000600102611586612949565b61197e565b61159457600080fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600d54831115611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162d906155a9565b60405180910390fd5b8161165757600061164684612951565b50505050505090508091505061166f565b600061166284612951565b5050505050915050809150505b92915050565b600061168e6002546001546129cf90919063ffffffff16565b4211905090565b6116aa60006001026116a5612949565b61197e565b6116b357600080fd5b60006116be306117f3565b905060245481106116cf5760245490505b6116d881613147565b50565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b7332cd2c588d61410baabb55b005f2c0ae520f8aa581565b60165481565b60006001544211905090565b611770600060010261176b612949565b61197e565b61177957600080fd5b602554811161178757600080fd5b806023819055506117a2600a826128c990919063ffffffff16565b60248190555050565b6117c060006001026117bb612949565b61197e565b6117c957600080fd5b600081116117d657600080fd5b8060258190555050565b602260149054906101000a900460ff1681565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561188e57600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506118d9565b6118d6600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134b565b90505b919050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60025481565b60015481565b60235481565b6119296000600102611924612949565b61197e565b61193257600080fd5b80602260156101000a81548160ff02191690831515021790555050565b6000600154421015801561197957506119756002546001546129cf90919063ffffffff16565b4211155b905090565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060601380546119f7906159b4565b80601f0160208091040260200160405190810160405280929190818152602001828054611a23906159b4565b8015611a705780601f10611a4557610100808354040283529160200191611a70565b820191906000526020600020905b815481529060010190602001808311611a5357829003601f168201915b5050505050905090565b6b204fce5e3e2502611000000081565b600060010281565b60115481565b6000611b5b611aa5612949565b84611b5685604051806060016040528060258152602001615f786025913960096000611acf612949565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f069092919063ffffffff16565b6129e5565b6001905092915050565b60066020528060005260406000206000915090505481565b7fff73949609e78dd12a4b34dc8efe9fe1fe4f300bddb92e56722073ad613d4dfc81565b6000611bb5611bae612949565b8484612bb0565b6001905092915050565b600d5481565b602260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c1c7fff73949609e78dd12a4b34dc8efe9fe1fe4f300bddb92e56722073ad613d4dfc611c17612949565b61197e565b611c2557600080fd5b80602260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60035481565b7f000000000000000000000000faad180045fca84b515fd40d3e265dfab6f161a381565b601a5481565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611d207fff73949609e78dd12a4b34dc8efe9fe1fe4f300bddb92e56722073ad613d4dfc611d1b612949565b61197e565b611d2957600080fd5b6000611d426015546018546129cf90919063ffffffff16565b905080421015611d5157600080fd5b60058211158015611d63575060008210155b611d6c57600080fd5b601e548210611d7a57600080fd5b60056017541115611d8a57600080fd5b600160176000828254611d9d9190615799565b9250508190555080601881905550816016819055505050565b611de77fff73949609e78dd12a4b34dc8efe9fe1fe4f300bddb92e56722073ad613d4dfc611de2612949565b61197e565b611df057600080fd5b6000611e09601554601c546129cf90919063ffffffff16565b905080421015611e1857600080fd5b60038211158015611e2a575060008210155b611e3357600080fd5b601e548210611e4157600080fd5b6005601b541115611e5157600080fd5b6001601b6000828254611e649190615799565b9250508190555080601c8190555081601a819055505050565b611e96611e8983611326565b611e91612949565b61197e565b611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc90615589565b60405180910390fd5b611edf8282613066565b5050565b60055481565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611f856000600102611f80612949565b61197e565b611f8e57600080fd5b80602260146101000a81548160ff02191690831515021790555050565b611fc06000600102611fbb612949565b61197e565b611fc957600080fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000601154905090565b61205f7fff73949609e78dd12a4b34dc8efe9fe1fe4f300bddb92e56722073ad613d4dfc61205a612949565b61197e565b61206857600080fd5b60006120816015546020546129cf90919063ffffffff16565b90508042101561209057600080fd5b601982111580156120a2575060008210155b6120ab57600080fd5b6005601f5411156120bb57600080fd5b6001601f60008282546120ce9190615799565b925050819055508060208190555081601e819055505050565b60045481565b61210260006001026120fd612949565b61197e565b612141576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612138906155e9565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156121ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c590615529565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156122a25761225e600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134b565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600c819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6123756000600102612370612949565b61197e565b61237e57600080fd5b60003073ffffffffffffffffffffffffffffffffffffffff163190506123a38161345d565b50565b6123bb60006001026123b6612949565b61197e565b6123c457600080fd5b3073ffffffffffffffffffffffffffffffffffffffff16639b4bdd1a6040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b15801561242657600080fd5b505afa15801561243a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061245e9190614ffd565b3073ffffffffffffffffffffffffffffffffffffffff1663af465a276040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b1580156124c057600080fd5b505afa1580156124d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124f89190614ffd565b101561250f576006601b819055506000601a819055505b565b6125266000600102612521612949565b61197e565b612565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255c906155e9565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166125f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e890615529565b60405180910390fd5b60005b600c805490508110156128b3578173ffffffffffffffffffffffffffffffffffffffff16600c8281548110612652577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128a057600c6001600c805490506126ad919061587a565b815481106126e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c8281548110612749577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600c805480612866577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556128b3565b80806128ab906159e6565b9150506125f4565b5050565b601e5481565b600f5481565b60255481565b600081836128d791906157ef565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600080600080600080600080600080600061296b8c61352f565b9350935093509350600080600061298c8f878787612987612f5b565b6135ae565b925092509250828282898989899d509d509d509d509d509d509d5050505050505050919395979092949650565b600081836129c7919061587a565b905092915050565b600081836129dd9190615799565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4c90615629565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abc90615509565b60405180910390fd5b80600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612ba391906156a9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1790615609565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c87906154a9565b60405180910390fd5b60008111612cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cca906155c9565b60405180910390fd5b612cfd7fff73949609e78dd12a4b34dc8efe9fe1fe4f300bddb92e56722073ad613d4dfc8461197e565b158015612d315750612d2f7fff73949609e78dd12a4b34dc8efe9fe1fe4f300bddb92e56722073ad613d4dfc8361197e565b155b15612d4657602354811115612d4557600080fd5b5b6000612d51306117f3565b90506024548110612d625760245490505b600060255482101590506001602654148015612d8a5750602260149054906101000a900460ff165b8015612d935750805b8015612deb57507f000000000000000000000000faad180045fca84b515fd40d3e265dfab6f161a373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15612e4157612df982613147565b60003073ffffffffffffffffffffffffffffffffffffffff163190506000811115612e3f57612e3e3073ffffffffffffffffffffffffffffffffffffffff163161345d565b5b505b600060019050600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ee85750600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612ef257600090505b612efe86868684613662565b505050505050565b6000838311158290612f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f459190615487565b60405180910390fd5b5082840390509392505050565b6000806000612f686139be565b91509150612f7f81836128c990919063ffffffff16565b9250505090565b612f90828261197e565b61306257600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550613007612949565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b613070828261197e565b1561314357600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506130e8612949565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6002602654141561315757600080fd5b60026026819055506000600267ffffffffffffffff8111156131a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156131d05781602001602082028036833780820191505090505b509050308160008151811061320e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b1580156132ca57600080fd5b505afa1580156132de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133029190614e2d565b8160018151811061333c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506133a1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846129e5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040161341f9594939291906156c4565b600060405180830381600087803b15801561343957600080fd5b505af115801561344d573d6000803e3d6000fd5b5050505050600160268190555050565b6000602260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516134a5906153eb565b60006040518083038185875af1925050503d80600081146134e2576040519150601f19603f3d011682016040523d82523d6000602084013e6134e7565b606091505b505090508061352b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352290615549565b60405180910390fd5b5050565b600080600080600061354086613d09565b9050600061354d87613d3a565b9050600061355a88613d6b565b905060006135958261358785613579888e6129b990919063ffffffff16565b6129b990919063ffffffff16565b6129b990919063ffffffff16565b9050808484849750975097509750505050509193509193565b6000806000806135c7858a613d9c90919063ffffffff16565b905060006135de868a613d9c90919063ffffffff16565b905060006135f5878a613d9c90919063ffffffff16565b9050600061360c888a613d9c90919063ffffffff16565b90506000613647826136398561362b888a6129b990919063ffffffff16565b6129b990919063ffffffff16565b6129b990919063ffffffff16565b90508481859750975097505050505050955095509592505050565b806136705761366f613db2565b5b8080156136895750602260159054906101000a900460ff165b156136bb576136ba84847f000000000000000000000000faad180045fca84b515fd40d3e265dfab6f161a385613e14565b5b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561375e5750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156137735761376e848484613e26565b6139aa565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156138165750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561382b576138268484846140b3565b6139a9565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156138cf5750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156138e4576138df848484614340565b6139a8565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139865750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561399b57613996848484614538565b6139a7565b6139a6848484614340565b5b5b5b5b806139b8576139b761485a565b5b50505050565b6000806000600e5490506000600d54905060005b600c80549050811015613ccc578260076000600c8481548110613a1e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613b3257508160086000600c8481548110613aca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613b4957600e54600d5494509450505050613d05565b613bff60076000600c8481548110613b8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846129b990919063ffffffff16565b9250613cb760086000600c8481548110613c42577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836129b990919063ffffffff16565b91508080613cc4906159e6565b9150506139d2565b50613ce4600d54600e546128c990919063ffffffff16565b821015613cfc57600e54600d54935093505050613d05565b81819350935050505b9091565b6000613d336064613d2560165485613d9c90919063ffffffff16565b6128c990919063ffffffff16565b9050919050565b6000613d646064613d56601a5485613d9c90919063ffffffff16565b6128c990919063ffffffff16565b9050919050565b6000613d956064613d87601e5485613d9c90919063ffffffff16565b6128c990919063ffffffff16565b9050919050565b60008183613daa9190615820565b905092915050565b6000601654148015613dc657506000601a54145b8015613dd457506000601e54145b15613dde57613e12565b601654601981905550601a54601d81905550601e5460218190555060006016819055506000601a819055506000601e819055505b565b613e2084848484614877565b50505050565b6000613e30612f5b565b90506000806000806000806000613e4689612951565b96509650965096509650965096506000613e698984613d9c90919063ffffffff16565b9050613ebd8a600860008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129b990919063ffffffff16565b600860008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613f5288600760008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129b990919063ffffffff16565b600760008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613fe787600760008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cf90919063ffffffff16565b600760008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506140348c836149a6565b61404086828686614bb1565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161409d91906156a9565b60405180910390a3505050505050505050505050565b60006140bd612f5b565b905060008060008060008060006140d389612951565b965096509650965096509650965060006140f68984613d9c90919063ffffffff16565b905061414a88600760008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129b990919063ffffffff16565b600760008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141df85600860008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cf90919063ffffffff16565b600860008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061427487600760008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cf90919063ffffffff16565b600760008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506142c18c836149a6565b6142cd86828686614bb1565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161432a91906156a9565b60405180910390a3505050505050505050505050565b600061434a612f5b565b9050600080600080600080600061436089612951565b965096509650965096509650965060006143838984613d9c90919063ffffffff16565b90506143d788600760008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129b990919063ffffffff16565b600760008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061446c87600760008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cf90919063ffffffff16565b600760008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144b98c836149a6565b6144c586828686614bb1565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161452291906156a9565b60405180910390a3505050505050505050505050565b6000614542612f5b565b9050600080600080600080600061455889612951565b9650965096509650965096509650600061457b8984613d9c90919063ffffffff16565b90506145cf8a600860008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129b990919063ffffffff16565b600860008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061466488600760008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129b990919063ffffffff16565b600760008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146f985600860008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cf90919063ffffffff16565b600860008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061478e87600760008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cf90919063ffffffff16565b600760008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506147db8c836149a6565b6147e786828686614bb1565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161484491906156a9565b60405180910390a3505050505050505050505050565b601954601681905550601d54601a81905550602154601e81905550565b6001544210156148f4578173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156148ba57600080fd5b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156148f357600080fd5b5b600154421015801561491c57506149186002546001546129cf90919063ffffffff16565b4211155b156149a0578173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156149605761495f8382614c35565b5b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561499f5761499e8482614c35565b5b5b50505050565b60006149b0612f5b565b905060006149c78284613d9c90919063ffffffff16565b9050614a1b81600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cf90919063ffffffff16565b600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614b4657614b0283600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cf90919063ffffffff16565b600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b3073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051614ba391906156a9565b60405180910390a350505050565b614bd883614bca86600e546129b990919063ffffffff16565b6129b990919063ffffffff16565b600e81905550614bf382600f546129cf90919063ffffffff16565b600f81905550614c0e816010546129cf90919063ffffffff16565b601081905550614c2981600d546129b990919063ffffffff16565b600d8190555050505050565b6003548110614c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401614c7090615649565b60405180910390fd5b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000614cd283836129cf90919063ffffffff16565b90506004548110158015614ce857506005548111155b614d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401614d1e90615569565b60405180910390fd5b80600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b600081359050614d8081615edc565b92915050565b600081519050614d9581615edc565b92915050565b600081359050614daa81615ef3565b92915050565b600081359050614dbf81615f0a565b92915050565b600081359050614dd481615f21565b92915050565b600081359050614de981615f38565b92915050565b600081519050614dfe81615f38565b92915050565b600060208284031215614e1657600080fd5b6000614e2484828501614d71565b91505092915050565b600060208284031215614e3f57600080fd5b6000614e4d84828501614d86565b91505092915050565b60008060408385031215614e6957600080fd5b6000614e7785828601614d71565b9250506020614e8885828601614d71565b9150509250929050565b600080600060608486031215614ea757600080fd5b6000614eb586828701614d71565b9350506020614ec686828701614d71565b9250506040614ed786828701614dda565b9150509250925092565b60008060408385031215614ef457600080fd5b6000614f0285828601614d71565b9250506020614f1385828601614dda565b9150509250929050565b600060208284031215614f2f57600080fd5b6000614f3d84828501614d9b565b91505092915050565b600060208284031215614f5857600080fd5b6000614f6684828501614db0565b91505092915050565b60008060408385031215614f8257600080fd5b6000614f9085828601614db0565b9250506020614fa185828601614d71565b9150509250929050565b600060208284031215614fbd57600080fd5b6000614fcb84828501614dc5565b91505092915050565b600060208284031215614fe657600080fd5b6000614ff484828501614dda565b91505092915050565b60006020828403121561500f57600080fd5b600061501d84828501614def565b91505092915050565b6000806040838503121561503957600080fd5b600061504785828601614dda565b925050602061505885828601614d9b565b9150509250929050565b600061506e8383615089565b60208301905092915050565b615083816158c0565b82525050565b615092816158ae565b82525050565b6150a1816158ae565b82525050565b60006150b282615749565b6150bc818561576c565b93506150c783615739565b8060005b838110156150f85781516150df8882615062565b97506150ea8361575f565b9250506001810190506150cb565b5085935050505092915050565b61510e816158d2565b82525050565b61511d816158de565b82525050565b61512c8161594b565b82525050565b61513b8161596f565b82525050565b600061514c82615754565b6151568185615788565b9350615166818560208601615981565b61516f81615abc565b840191505092915050565b6000615187602383615788565b915061519282615acd565b604082019050919050565b60006151aa602f83615788565b91506151b582615b1c565b604082019050919050565b60006151cd602a83615788565b91506151d882615b6b565b604082019050919050565b60006151f0602283615788565b91506151fb82615bba565b604082019050919050565b6000615213601b83615788565b915061521e82615c09565b602082019050919050565b6000615236600983615788565b915061524182615c32565b602082019050919050565b6000615259600283615788565b915061526482615c5b565b602082019050919050565b600061527c603083615788565b915061528782615c84565b604082019050919050565b600061529f601f83615788565b91506152aa82615cd3565b602082019050919050565b60006152c2602983615788565b91506152cd82615cfc565b604082019050919050565b60006152e5601383615788565b91506152f082615d4b565b602082019050919050565b6000615308602583615788565b915061531382615d74565b604082019050919050565b600061532b60008361577d565b915061533682615dc3565b600082019050919050565b600061534e602483615788565b915061535982615dc6565b604082019050919050565b6000615371600383615788565b915061537c82615e15565b602082019050919050565b6000615394602c83615788565b915061539f82615e3e565b604082019050919050565b60006153b7602f83615788565b91506153c282615e8d565b604082019050919050565b6153d681615934565b82525050565b6153e58161593e565b82525050565b60006153f68261531e565b9150819050919050565b60006020820190506154156000830184615098565b92915050565b6000602082019050615430600083018461507a565b92915050565b600060208201905061544b6000830184615105565b92915050565b60006020820190506154666000830184615114565b92915050565b60006020820190506154816000830184615123565b92915050565b600060208201905081810360008301526154a18184615141565b905092915050565b600060208201905081810360008301526154c28161517a565b9050919050565b600060208201905081810360008301526154e28161519d565b9050919050565b60006020820190508181036000830152615502816151c0565b9050919050565b60006020820190508181036000830152615522816151e3565b9050919050565b6000602082019050818103600083015261554281615206565b9050919050565b6000602082019050818103600083015261556281615229565b9050919050565b600060208201905081810360008301526155828161524c565b9050919050565b600060208201905081810360008301526155a28161526f565b9050919050565b600060208201905081810360008301526155c281615292565b9050919050565b600060208201905081810360008301526155e2816152b5565b9050919050565b60006020820190508181036000830152615602816152d8565b9050919050565b60006020820190508181036000830152615622816152fb565b9050919050565b6000602082019050818103600083015261564281615341565b9050919050565b6000602082019050818103600083015261566281615364565b9050919050565b6000602082019050818103600083015261568281615387565b9050919050565b600060208201905081810360008301526156a2816153aa565b9050919050565b60006020820190506156be60008301846153cd565b92915050565b600060a0820190506156d960008301886153cd565b6156e66020830187615132565b81810360408301526156f881866150a7565b90506157076060830185615098565b61571460808301846153cd565b9695505050505050565b600060208201905061573360008301846153dc565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006157a482615934565b91506157af83615934565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156157e4576157e3615a2f565b5b828201905092915050565b60006157fa82615934565b915061580583615934565b92508261581557615814615a5e565b5b828204905092915050565b600061582b82615934565b915061583683615934565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561586f5761586e615a2f565b5b828202905092915050565b600061588582615934565b915061589083615934565b9250828210156158a3576158a2615a2f565b5b828203905092915050565b60006158b982615914565b9050919050565b60006158cb82615914565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006159568261595d565b9050919050565b600061596882615914565b9050919050565b600061597a82615934565b9050919050565b60005b8381101561599f578082015181840152602081019050615984565b838111156159ae576000848401525b50505050565b600060028204905060018216806159cc57607f821691505b602082108114156159e0576159df615a8d565b5b50919050565b60006159f182615934565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615a2457615a23615a2f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f206772616e740000000000000000000000000000000000602082015250565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b7f5478204661696c65640000000000000000000000000000000000000000000000600082015250565b7f4345000000000000000000000000000000000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f207265766f6b6500000000000000000000000000000000602082015250565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f742061646d696e00000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f5458450000000000000000000000000000000000000000000000000000000000600082015250565b7f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460008201527f6869732066756e6374696f6e0000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b615ee5816158ae565b8114615ef057600080fd5b50565b615efc816158d2565b8114615f0757600080fd5b50565b615f13816158de565b8114615f1e57600080fd5b50565b615f2a816158e8565b8114615f3557600080fd5b50565b615f4181615934565b8114615f4c57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200c70b12558fa058eb04f19506be5fab081a533214f721f55105b6c7f7d041b6d64736f6c63430008030033

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

00000000000000000000000000000000000000000000000000000000608b2c240000000000000000000000000000000000000000000000000000000000001c2000000000000000000000000032cd2c588d61410baabb55b005f2c0ae520f8aa5

-----Decoded View---------------
Arg [0] : launchStartTime (uint256): 1619733540
Arg [1] : launchVolumeLimitDuration (uint256): 7200
Arg [2] : charityAddress (address): 0x32cD2c588D61410bAABB55b005f2C0ae520f8Aa5

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000608b2c24
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001c20
Arg [2] : 00000000000000000000000032cd2c588d61410baabb55b005f2c0ae520f8aa5


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.