Address Details
contract
token

0xC0F0D487fc66B414E4e5a1CE2EceE475a287B557

Token
cPad Token Testnet (T-cPad)
Creator
0xfe3254–432250 at 0x20e3f1–43cc5c
Balance
0 CELO ( )
Locked CELO Balance
0.00 CELO
Voting CELO Balance
0.00 CELO
Pending Unlocked Gold
0.00 CELO
Tokens
Fetching tokens...
Transactions
2 Transactions
Transfers
0 Transfers
Gas Used
66,058
Last Balance Update
7688225
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
cPadTokenTestnet




Optimization enabled
true
Compiler version
v0.8.9+commit.e5eed63a




Optimization runs
50000
EVM Version
istanbul




Verified at
2023-02-06T10:30:12.601750Z

contracts/cPad.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

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


interface IERC20 {

    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
    

}

library SafeMath {

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

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

        return c;
    }


    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

library Address {

    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

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


    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

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

    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");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            
            if (returndata.length > 0) {
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

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

    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }   
    
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
    
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    function getUnlockTime() public view returns (uint256) {
        return _lockTime;
    }
    
    function getTime() public view returns (uint256) {
        return block.timestamp;
    }

    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = block.timestamp + time;
        emit OwnershipTransferred(_owner, address(0));
    }
    
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(block.timestamp > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}

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

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

interface IUniswapV2Router01 {
    function factory() 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);
}

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

contract cPadTokenTestnet is Context, IERC20, Ownable {
    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;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 100000000 * 10**18;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
    address public CELO;

    string private _name = "cPad Token Testnet";
    string private _symbol = "T-cPad";
    uint8 private _decimals = 18;


    uint256 public _taxFee = 1;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee = 3;
    uint256 private _previousLiquidityFee = _liquidityFee;
    
    uint256 public _maxTxAmount = 1000000 * 10**18;
    uint256 private minimumTokensBeforeSwap = 100000 * 10**18;
    uint256 private buyBackUpperLimit = 50000 * 10**18;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    bool public buyBackEnabled = true;

    
    event RewardLiquidityProviders(uint256 tokenAmount);
    event BuyBackEnabledUpdated(bool enabled);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    event SwapETHForTokens(
        uint256 amountIn,
        address[] path
    );
    
    event SwapTokensForETH(
        uint256 amountIn,
        address[] path
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor () {
        _rOwned[_msgSender()] = _rTotal;
        // Testnet
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x58BEb321e392e62d51ec7a253b6CB5255D50590e);
        CELO = address(0xF194afDf50B03e69Bd7D057c1Aa9e10c9954E4C9);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this),CELO);

        uniswapV2Router = _uniswapV2Router;

        
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        
        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 isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }
    
    function minimumTokensBeforeSwapAmount() public view returns (uint256) {
        return minimumTokensBeforeSwap;
    }
    
    function buyBackUpperLimitAmount() public view returns (uint256) {
        return buyBackUpperLimit;
    }
    
    function deliver(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 excludeFromReward(address account) public onlyOwner() {

        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner() {
        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);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if(from != owner() && to != owner()) {
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinimumTokenBalance = contractTokenBalance >= minimumTokensBeforeSwap;
        
        if (!inSwapAndLiquify && swapAndLiquifyEnabled && to == uniswapV2Pair) {
            if (overMinimumTokenBalance) {
                contractTokenBalance = minimumTokensBeforeSwap;
                swapTokensForEth(contractTokenBalance);    
            }
	        uint256 balance = address(this).balance;
            if (buyBackEnabled && balance > uint256(0.01 * 10**18)) {
                
                if (balance > buyBackUpperLimit)
                    balance = buyBackUpperLimit;
                
                buyBackTokens(balance.div(100));
            }
        }
        
        bool takeFee = true;
        
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }
        
        _tokenTransfer(from,to,amount,takeFee);
    }

    function buyBackTokens(uint256 amount) private lockTheSwap {
    	if (amount > 0) {
    	    swapETHForTokens(amount);
	    }
    }
    
    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = CELO;

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this), // The contract
            block.timestamp
        );
        
        emit SwapTokensForETH(tokenAmount, path);
    }
    
    function swapETHForTokens(uint256 amount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = CELO;
        path[1] = address(this);

      // make the swap
        uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(
            0, // accept any amount of Tokens
            path,
            address(0), // Burn address
            block.timestamp.add(300)
        );
        
        emit SwapETHForTokens(amount, path);
    }
    
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        if(!takeFee)
            removeAllFee();
        
        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]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        
        if(!takeFee)
            restoreAllFee();
    }

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

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

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

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
    	_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(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

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

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

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).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);
    }
    
    function _takeLiquidity(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);
    }
    
    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**2
        );
    }
    
    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(
            10**2
        );
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        
        _taxFee = 0;
        _liquidityFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
    }

    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        _taxFee = taxFee;
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }
    
    function setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
        _maxTxAmount = maxTxAmount;
    }
    
    function setNumTokensSellToAddToLiquidity(uint256 _minimumTokensBeforeSwap) external onlyOwner() {
        minimumTokensBeforeSwap = _minimumTokensBeforeSwap;
    }
    
     function setBuybackUpperLimit(uint256 buyBackLimit) external onlyOwner() {
        buyBackUpperLimit = buyBackLimit * 10**18;
    }


    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
    function setBuyBackEnabled(bool _enabled) public onlyOwner {
        buyBackEnabled = _enabled;
        emit BuyBackEnabledUpdated(_enabled);
    }
    
    function prepareForPreSale() external onlyOwner {
        setSwapAndLiquifyEnabled(false);
        _taxFee = 0;
        _liquidityFee = 0;
        _maxTxAmount = 100000000 * 10**18;
    }
    
    function afterPreSale() external onlyOwner {
        setSwapAndLiquifyEnabled(true);
        _taxFee = 1;
        _liquidityFee = 3;
        _maxTxAmount = 1000000 * 10**18;
    }
    
    function transferToAddressETH(address payable recipient, uint256 amount) private {
        recipient.transfer(amount);
    }
    
     //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"BuyBackEnabledUpdated","inputs":[{"type":"bool","name":"enabled","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"RewardLiquidityProviders","inputs":[{"type":"uint256","name":"tokenAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"SwapAndLiquify","inputs":[{"type":"uint256","name":"tokensSwapped","internalType":"uint256","indexed":false},{"type":"uint256","name":"ethReceived","internalType":"uint256","indexed":false},{"type":"uint256","name":"tokensIntoLiqudity","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"SwapAndLiquifyEnabledUpdated","inputs":[{"type":"bool","name":"enabled","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"SwapETHForTokens","inputs":[{"type":"uint256","name":"amountIn","internalType":"uint256","indexed":false},{"type":"address[]","name":"path","internalType":"address[]","indexed":false}],"anonymous":false},{"type":"event","name":"SwapTokensForETH","inputs":[{"type":"uint256","name":"amountIn","internalType":"uint256","indexed":false},{"type":"address[]","name":"path","internalType":"address[]","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"CELO","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_liquidityFee","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_maxTxAmount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_taxFee","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"afterPreSale","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"buyBackEnabled","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"buyBackUpperLimitAmount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"deliver","inputs":[{"type":"uint256","name":"tAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"excludeFromFee","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"excludeFromReward","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getTime","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getUnlockTime","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"includeInFee","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"includeInReward","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isExcludedFromFee","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isExcludedFromReward","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"lock","inputs":[{"type":"uint256","name":"time","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"minimumTokensBeforeSwapAmount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"prepareForPreSale","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"reflectionFromToken","inputs":[{"type":"uint256","name":"tAmount","internalType":"uint256"},{"type":"bool","name":"deductTransferFee","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBuyBackEnabled","inputs":[{"type":"bool","name":"_enabled","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBuybackUpperLimit","inputs":[{"type":"uint256","name":"buyBackLimit","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setLiquidityFeePercent","inputs":[{"type":"uint256","name":"liquidityFee","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMaxTxAmount","inputs":[{"type":"uint256","name":"maxTxAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setNumTokensSellToAddToLiquidity","inputs":[{"type":"uint256","name":"_minimumTokensBeforeSwap","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setSwapAndLiquifyEnabled","inputs":[{"type":"bool","name":"_enabled","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setTaxFeePercent","inputs":[{"type":"uint256","name":"taxFee","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"swapAndLiquifyEnabled","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenFromReflection","inputs":[{"type":"uint256","name":"rAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalFees","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"uniswapV2Pair","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IUniswapV2Router02"}],"name":"uniswapV2Router","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unlock","inputs":[]},{"type":"receive","stateMutability":"payable"}]
              

Contract Creation Code

0x60c06040526a52b7d2dcc80cd2e4000000600981905562000023906000196200040a565b62000031906000196200042d565b600a556040805180820190915260128082527118d4185908151bdad95b8815195cdd1b995d60721b60209092019182526200006f91600d9162000364565b5060408051808201909152600680825265150b58d4185960d21b60209092019182526200009f91600e9162000364565b50600f8054601260ff1990911681179091556001601081905560115560039081905560135569d3c21bcecceda100000060145569152d02c7e14af6800000601555690a968163f0a57b4000006016556017805462ffff001916620101001790553480156200010c57600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a543360009081526003602090815260409182902092909255600c80546001600160a01b03191673f194afdf50b03e69bd7d057c1aa9e10c9954e4c9179055805163c45a015560e01b815290517358beb321e392e62d51ec7a253b6cb5255d50590e92839263c45a01559260048083019392829003018186803b158015620001d657600080fd5b505afa158015620001eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000211919062000453565b600c546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c6539690604401602060405180830381600087803b1580156200025e57600080fd5b505af115801562000273573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000299919062000453565b6001600160a01b0390811660a0528116608052600160066000620002c56000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260069092529020805490911660011790556200030d3390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040516200035591815260200190565b60405180910390a350620004c2565b828054620003729062000485565b90600052602060002090601f016020900481019282620003965760008555620003e1565b82601f10620003b157805160ff1916838001178555620003e1565b82800160010185558215620003e1579182015b82811115620003e1578251825591602001919060010190620003c4565b50620003ef929150620003f3565b5090565b5b80821115620003ef5760008155600101620003f4565b6000826200042857634e487b7160e01b600052601260045260246000fd5b500690565b6000828210156200044e57634e487b7160e01b600052601160045260246000fd5b500390565b6000602082840312156200046657600080fd5b81516001600160a01b03811681146200047e57600080fd5b9392505050565b600181811c908216806200049a57607f821691505b60208210811415620004bc57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161395b620005046000396000818161058101526124de0152600081816103db0152818161287d015281816128df0152612ebb015261395b6000f3fe60806040526004361061030c5760003560e01c8063602bc62b1161019a578063a457c2d7116100e1578063dd62ed3e1161008a578063f0f165af11610064578063f0f165af146108fe578063f2fde38b1461091e578063f60e673e1461093e57600080fd5b8063dd62ed3e1461086b578063ea2f0b37146108be578063ec28438a146108de57600080fd5b8063bdc653ef116100bb578063bdc653ef14610816578063c49b9a801461082b578063dd4670641461084b57600080fd5b8063a457c2d7146107c1578063a69df4b5146107e1578063a9059cbb146107f657600080fd5b806382d2a4bb116101435780638ee88c531161011d5780638ee88c531461077757806395d89b4114610797578063a073d37f146107ac57600080fd5b806382d2a4bb146106e657806388f82020146107065780638da5cb5b1461074c57600080fd5b806370a082311161017457806370a082311461069b578063715018a6146106bb5780637d1db4a5146106d057600080fd5b8063602bc62b146106505780636053a0e3146106655780636bc87c3a1461068557600080fd5b80633685d4191161025e57806349bd5a5e1161020757806352390c02116101e157806352390c02146105d75780635342acb4146105f7578063557ed1ba1461063d57600080fd5b806349bd5a5e1461056f5780634a74bb02146105a35780635134f6ab146105c257600080fd5b80633bd5d173116102385780633bd5d1731461050f578063437823ec1461052f5780634549b0391461054f57600080fd5b80633685d419146104b957806339509351146104d95780633b124fe7146104f957600080fd5b80631694505e116102c057806329370cc61161029a57806329370cc6146104575780632d83811914610477578063313ce5671461049757600080fd5b80631694505e146103c957806318160ddd1461042257806323b872dd1461043757600080fd5b806307efbfdc116102f157806307efbfdc14610365578063095ea7b31461037a57806313114a9d146103aa57600080fd5b8063061c82d01461031857806306fdde031461033a57600080fd5b3661031357005b600080fd5b34801561032457600080fd5b50610338610333366004613463565b61096b565b005b34801561034657600080fd5b5061034f6109f6565b60405161035c919061347c565b60405180910390f35b34801561037157600080fd5b50610338610a88565b34801561038657600080fd5b5061039a610395366004613518565b610b2d565b604051901515815260200161035c565b3480156103b657600080fd5b50600b545b60405190815260200161035c565b3480156103d557600080fd5b506103fd7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161035c565b34801561042e57600080fd5b506009546103bb565b34801561044357600080fd5b5061039a610452366004613542565b610b44565b34801561046357600080fd5b5061033861047236600461358e565b610bba565b34801561048357600080fd5b506103bb610492366004613463565b610cad565b3480156104a357600080fd5b50600f5460405160ff909116815260200161035c565b3480156104c557600080fd5b506103386104d43660046135a9565b610d5e565b3480156104e557600080fd5b5061039a6104f4366004613518565b611033565b34801561050557600080fd5b506103bb60105481565b34801561051b57600080fd5b5061033861052a366004613463565b611076565b34801561053b57600080fd5b5061033861054a3660046135a9565b6111a5565b34801561055b57600080fd5b506103bb61056a3660046135c4565b611275565b34801561057b57600080fd5b506103fd7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105af57600080fd5b5060175461039a90610100900460ff1681565b3480156105ce57600080fd5b5061033861131c565b3480156105e357600080fd5b506103386105f23660046135a9565b6113c2565b34801561060357600080fd5b5061039a6106123660046135a9565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205460ff1690565b34801561064957600080fd5b50426103bb565b34801561065c57600080fd5b506002546103bb565b34801561067157600080fd5b5060175461039a9062010000900460ff1681565b34801561069157600080fd5b506103bb60125481565b3480156106a757600080fd5b506103bb6106b63660046135a9565b6115fd565b3480156106c757600080fd5b50610338611683565b3480156106dc57600080fd5b506103bb60145481565b3480156106f257600080fd5b50610338610701366004613463565b611773565b34801561071257600080fd5b5061039a6107213660046135a9565b73ffffffffffffffffffffffffffffffffffffffff1660009081526007602052604090205460ff1690565b34801561075857600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166103fd565b34801561078357600080fd5b50610338610792366004613463565b61180c565b3480156107a357600080fd5b5061034f611892565b3480156107b857600080fd5b506015546103bb565b3480156107cd57600080fd5b5061039a6107dc366004613518565b6118a1565b3480156107ed57600080fd5b506103386118fd565b34801561080257600080fd5b5061039a610811366004613518565b611aa2565b34801561082257600080fd5b506016546103bb565b34801561083757600080fd5b5061033861084636600461358e565b611aaf565b34801561085757600080fd5b50610338610866366004613463565b611b96565b34801561087757600080fd5b506103bb6108863660046135f0565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205490565b3480156108ca57600080fd5b506103386108d93660046135a9565b611cb6565b3480156108ea57600080fd5b506103386108f9366004613463565b611d83565b34801561090a57600080fd5b50610338610919366004613463565b611e09565b34801561092a57600080fd5b506103386109393660046135a9565b611e8f565b34801561094a57600080fd5b50600c546103fd9073ffffffffffffffffffffffffffffffffffffffff1681565b60005473ffffffffffffffffffffffffffffffffffffffff1633146109f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b601055565b6060600d8054610a059061361a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a319061361a565b8015610a7e5780601f10610a5357610100808354040283529160200191610a7e565b820191906000526020600020905b815481529060010190602001808311610a6157829003601f168201915b5050505050905090565b60005473ffffffffffffffffffffffffffffffffffffffff163314610b09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b610b136001611aaf565b6001601055600360125569d3c21bcecceda1000000601455565b6000610b3a338484612040565b5060015b92915050565b6000610b518484846121f3565b610bb08433610bab856040518060600160405280602881526020016138d96028913973ffffffffffffffffffffffffffffffffffffffff8a1660009081526005602090815260408083203384529091529020549190612607565b612040565b5060019392505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610c3b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b6017805482151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff9091161790556040517f3794234fa370c9f3b948dda3e3040530785b2ef1eb27dda3ffde478f4e2643c090610ca290831515815260200190565b60405180910390a150565b6000600a54821115610d41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e730000000000000000000000000000000000000000000060648201526084016109e8565b6000610d4b61265b565b9050610d57838261267e565b9392505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610ddf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b73ffffffffffffffffffffffffffffffffffffffff811660009081526007602052604090205460ff16610e6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016109e8565b60005b60085481101561102f578173ffffffffffffffffffffffffffffffffffffffff1660088281548110610ea557610ea561366e565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141561101d5760088054610edd906001906136cc565b81548110610eed57610eed61366e565b6000918252602090912001546008805473ffffffffffffffffffffffffffffffffffffffff9092169183908110610f2657610f2661366e565b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff948516179055918416815260048252604080822082905560079092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690556008805480610fc157610fc16136e3565b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190555050565b8061102781613712565b915050610e71565b5050565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610b3a918590610bab90866126c0565b3360008181526007602052604090205460ff1615611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201527f6869732066756e6374696f6e000000000000000000000000000000000000000060648201526084016109e8565b600061112183612739565b5050505073ffffffffffffffffffffffffffffffffffffffff841660009081526003602052604090205491925061115a91905082612788565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260036020526040902055600a5461118d9082612788565b600a55600b5461119d90846126c0565b600b55505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b73ffffffffffffffffffffffffffffffffffffffff16600090815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60006009548311156112e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016109e8565b816113025760006112f384612739565b50939550610b3e945050505050565b600061130d84612739565b50929550610b3e945050505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461139d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b6113a76000611aaf565b600060108190556012556a52b7d2dcc80cd2e4000000601455565b60005473ffffffffffffffffffffffffffffffffffffffff163314611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b73ffffffffffffffffffffffffffffffffffffffff811660009081526007602052604090205460ff16156114d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016109e8565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260036020526040902054156115545773ffffffffffffffffffffffffffffffffffffffff811660009081526003602052604090205461152d90610cad565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260409020555b73ffffffffffffffffffffffffffffffffffffffff16600081815260076020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b73ffffffffffffffffffffffffffffffffffffffff811660009081526007602052604081205460ff1615611654575073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040902054610b3e90610cad565b60005473ffffffffffffffffffffffffffffffffffffffff163314611704576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146117f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b61180681670de0b6b3a764000061374b565b60165550565b60005473ffffffffffffffffffffffffffffffffffffffff16331461188d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b601255565b6060600e8054610a059061361a565b6000610b3a3384610bab856040518060600160405280602581526020016139016025913933600090815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d1684529091529020549190612607565b60015473ffffffffffffffffffffffffffffffffffffffff1633146119a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c60448201527f6f636b000000000000000000000000000000000000000000000000000000000060648201526084016109e8565b6002544211611a0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c203720646179730060448201526064016109e8565b6001546000805460405173ffffffffffffffffffffffffffffffffffffffff93841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600154600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055565b6000610b3a3384846121f3565b60005473ffffffffffffffffffffffffffffffffffffffff163314611b30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b60178054821515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610ca290831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff163314611c17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b60008054600180547fffffffffffffffffffffffff000000000000000000000000000000000000000090811673ffffffffffffffffffffffffffffffffffffffff841617909155169055611c6b8142613788565b6002556000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a350565b60005473ffffffffffffffffffffffffffffffffffffffff163314611d37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b73ffffffffffffffffffffffffffffffffffffffff16600090815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611e04576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b601455565b60005473ffffffffffffffffffffffffffffffffffffffff163314611e8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b601555565b60005473ffffffffffffffffffffffffffffffffffffffff163314611f10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b73ffffffffffffffffffffffffffffffffffffffff8116611fb3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109e8565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff83166120e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109e8565b73ffffffffffffffffffffffffffffffffffffffff8216612185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016109e8565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316612296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016109e8565b73ffffffffffffffffffffffffffffffffffffffff8216612339576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016109e8565b600081116123c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f000000000000000000000000000000000000000000000060648201526084016109e8565b60005473ffffffffffffffffffffffffffffffffffffffff84811691161480159061240f575060005473ffffffffffffffffffffffffffffffffffffffff838116911614155b156124a6576014548111156124a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785460448201527f78416d6f756e742e00000000000000000000000000000000000000000000000060648201526084016109e8565b60006124b1306115fd565b6015546017549192508210159060ff161580156124d55750601754610100900460ff165b801561252c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b1561258e578015612545576015549150612545826127ca565b601754479062010000900460ff1680156125655750662386f26fc1000081115b1561258c5760165481111561257957506016545b61258c61258782606461267e565b61298c565b505b73ffffffffffffffffffffffffffffffffffffffff851660009081526006602052604090205460019060ff16806125ea575073ffffffffffffffffffffffffffffffffffffffff851660009081526006602052604090205460ff165b156125f3575060005b6125ff868686846129f1565b505050505050565b60008184841115612645576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e8919061347c565b50600061265284866136cc565b95945050505050565b6000806000612668612b6a565b9092509050612677828261267e565b9250505090565b6000610d5783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612d20565b6000806126cd8385613788565b905083811015610d57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016109e8565b60008060008060008060008060006127508a612d68565b925092509250600080600061276e8d868661276961265b565b612daa565b919f909e50909c50959a5093985091965092945050505050565b6000610d5783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612607565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106127ff576127ff61366e565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600c5482519116908290600190811061283d5761283d61366e565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506128a2307f000000000000000000000000000000000000000000000000000000000000000084612040565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061291d9085906000908690309042906004016137f1565b600060405180830381600087803b15801561293757600080fd5b505af115801561294b573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a7828260405161298092919061383a565b60405180910390a15050565b601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905580156129c6576129c681612dfa565b50601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b806129fe576129fe612f73565b73ffffffffffffffffffffffffffffffffffffffff841660009081526007602052604090205460ff168015612a59575073ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604090205460ff16155b15612a6e57612a69848484612fa1565b612b4e565b73ffffffffffffffffffffffffffffffffffffffff841660009081526007602052604090205460ff16158015612ac9575073ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604090205460ff165b15612ad957612a69848484613115565b73ffffffffffffffffffffffffffffffffffffffff841660009081526007602052604090205460ff168015612b33575073ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604090205460ff165b15612b4357612a698484846131e5565b612b4e848484613272565b80612b6457612b64601154601055601354601255565b50505050565b600a546009546000918291825b600854811015612cf057826003600060088481548110612b9957612b9961366e565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020541180612c1e5750816004600060088481548110612bea57612bea61366e565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054115b15612c3457600a54600954945094505050509091565b612c876003600060088481548110612c4e57612c4e61366e565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020548490612788565b9250612cdc6004600060088481548110612ca357612ca361366e565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020548390612788565b915080612ce881613712565b915050612b77565b50600954600a54612d009161267e565b821015612d1757600a546009549350935050509091565b90939092509050565b60008183612d5b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e8919061347c565b506000612652848661385b565b600080600080612d77856132c3565b90506000612d84866132e5565b90506000612d9c82612d968986612788565b90612788565b979296509094509092505050565b6000808080612db98886613301565b90506000612dc78887613301565b90506000612dd58888613301565b90506000612de782612d968686612788565b939b939a50919850919650505050505050565b6040805160028082526060820183526000926020830190803683375050600c54825192935073ffffffffffffffffffffffffffffffffffffffff1691839150600090612e4857612e4861366e565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110612e9657612e9661366e565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101527f00000000000000000000000000000000000000000000000000000000000000001663b6f9de958360008481612ef14261012c6126c0565b6040518663ffffffff1660e01b8152600401612f109493929190613896565b6000604051808303818588803b158015612f2957600080fd5b505af1158015612f3d573d6000803e3d6000fd5b50505050507f6fd378a9d8b7345c2e5b18229aaf1e39d32b177b501d0a0d26a0a858a23a9624828260405161298092919061383a565b601054158015612f835750601254155b15612f8a57565b601080546011556012805460135560009182905555565b600080600080600080612fb387612739565b73ffffffffffffffffffffffffffffffffffffffff8f16600090815260046020526040902054959b50939950919750955093509150612ff29088612788565b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526004602090815260408083209390935560039052205461302e9087612788565b73ffffffffffffffffffffffffffffffffffffffff808b1660009081526003602052604080822093909355908a168152205461306a90866126c0565b73ffffffffffffffffffffffffffffffffffffffff8916600090815260036020526040902055613099816133b6565b6130a3848361343f565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161310291815260200190565b60405180910390a3505050505050505050565b60008060008060008061312787612739565b73ffffffffffffffffffffffffffffffffffffffff8f16600090815260036020526040902054959b509399509197509550935091506131669087612788565b73ffffffffffffffffffffffffffffffffffffffff808b16600090815260036020908152604080832094909455918b168152600490915220546131a990846126c0565b73ffffffffffffffffffffffffffffffffffffffff891660009081526004602090815260408083209390935560039052205461306a90866126c0565b6000806000806000806131f787612739565b73ffffffffffffffffffffffffffffffffffffffff8f16600090815260046020526040902054959b509399509197509550935091506132369088612788565b73ffffffffffffffffffffffffffffffffffffffff8a166000908152600460209081526040808320939093556003905220546131669087612788565b60008060008060008061328487612739565b73ffffffffffffffffffffffffffffffffffffffff8f16600090815260036020526040902054959b5093995091975095509350915061302e9087612788565b6000610b3e60646132df6010548561330190919063ffffffff16565b9061267e565b6000610b3e60646132df6012548561330190919063ffffffff16565b60008261331057506000610b3e565b600061331c838561374b565b905082613329858361385b565b14610d57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f770000000000000000000000000000000000000000000000000000000000000060648201526084016109e8565b60006133c061265b565b905060006133ce8383613301565b306000908152600360205260409020549091506133eb90826126c0565b3060009081526003602090815260408083209390935560079052205460ff161561343a573060009081526004602052604090205461342990846126c0565b306000908152600460205260409020555b505050565b600a5461344c9083612788565b600a55600b5461345c90826126c0565b600b555050565b60006020828403121561347557600080fd5b5035919050565b600060208083528351808285015260005b818110156134a95785810183015185820160400152820161348d565b818111156134bb576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461351357600080fd5b919050565b6000806040838503121561352b57600080fd5b613534836134ef565b946020939093013593505050565b60008060006060848603121561355757600080fd5b613560846134ef565b925061356e602085016134ef565b9150604084013590509250925092565b8035801515811461351357600080fd5b6000602082840312156135a057600080fd5b610d578261357e565b6000602082840312156135bb57600080fd5b610d57826134ef565b600080604083850312156135d757600080fd5b823591506135e76020840161357e565b90509250929050565b6000806040838503121561360357600080fd5b61360c836134ef565b91506135e7602084016134ef565b600181811c9082168061362e57607f821691505b60208210811415613668577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000828210156136de576136de61369d565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137445761374461369d565b5060010190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137835761378361369d565b500290565b6000821982111561379b5761379b61369d565b500190565b600081518084526020808501945080840160005b838110156137e657815173ffffffffffffffffffffffffffffffffffffffff16875295820195908201906001016137b4565b509495945050505050565b85815284602082015260a06040820152600061381060a08301866137a0565b73ffffffffffffffffffffffffffffffffffffffff94909416606083015250608001529392505050565b82815260406020820152600061385360408301846137a0565b949350505050565b600082613891577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b8481526080602082015260006138af60808301866137a0565b73ffffffffffffffffffffffffffffffffffffffff94909416604083015250606001529291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f8e65e4415bec9ef5bbf25706376b7d18c6771f466aa57076624bcdbd2a8c6dd64736f6c63430008090033

Deployed ByteCode

0x60806040526004361061030c5760003560e01c8063602bc62b1161019a578063a457c2d7116100e1578063dd62ed3e1161008a578063f0f165af11610064578063f0f165af146108fe578063f2fde38b1461091e578063f60e673e1461093e57600080fd5b8063dd62ed3e1461086b578063ea2f0b37146108be578063ec28438a146108de57600080fd5b8063bdc653ef116100bb578063bdc653ef14610816578063c49b9a801461082b578063dd4670641461084b57600080fd5b8063a457c2d7146107c1578063a69df4b5146107e1578063a9059cbb146107f657600080fd5b806382d2a4bb116101435780638ee88c531161011d5780638ee88c531461077757806395d89b4114610797578063a073d37f146107ac57600080fd5b806382d2a4bb146106e657806388f82020146107065780638da5cb5b1461074c57600080fd5b806370a082311161017457806370a082311461069b578063715018a6146106bb5780637d1db4a5146106d057600080fd5b8063602bc62b146106505780636053a0e3146106655780636bc87c3a1461068557600080fd5b80633685d4191161025e57806349bd5a5e1161020757806352390c02116101e157806352390c02146105d75780635342acb4146105f7578063557ed1ba1461063d57600080fd5b806349bd5a5e1461056f5780634a74bb02146105a35780635134f6ab146105c257600080fd5b80633bd5d173116102385780633bd5d1731461050f578063437823ec1461052f5780634549b0391461054f57600080fd5b80633685d419146104b957806339509351146104d95780633b124fe7146104f957600080fd5b80631694505e116102c057806329370cc61161029a57806329370cc6146104575780632d83811914610477578063313ce5671461049757600080fd5b80631694505e146103c957806318160ddd1461042257806323b872dd1461043757600080fd5b806307efbfdc116102f157806307efbfdc14610365578063095ea7b31461037a57806313114a9d146103aa57600080fd5b8063061c82d01461031857806306fdde031461033a57600080fd5b3661031357005b600080fd5b34801561032457600080fd5b50610338610333366004613463565b61096b565b005b34801561034657600080fd5b5061034f6109f6565b60405161035c919061347c565b60405180910390f35b34801561037157600080fd5b50610338610a88565b34801561038657600080fd5b5061039a610395366004613518565b610b2d565b604051901515815260200161035c565b3480156103b657600080fd5b50600b545b60405190815260200161035c565b3480156103d557600080fd5b506103fd7f00000000000000000000000058beb321e392e62d51ec7a253b6cb5255d50590e81565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161035c565b34801561042e57600080fd5b506009546103bb565b34801561044357600080fd5b5061039a610452366004613542565b610b44565b34801561046357600080fd5b5061033861047236600461358e565b610bba565b34801561048357600080fd5b506103bb610492366004613463565b610cad565b3480156104a357600080fd5b50600f5460405160ff909116815260200161035c565b3480156104c557600080fd5b506103386104d43660046135a9565b610d5e565b3480156104e557600080fd5b5061039a6104f4366004613518565b611033565b34801561050557600080fd5b506103bb60105481565b34801561051b57600080fd5b5061033861052a366004613463565b611076565b34801561053b57600080fd5b5061033861054a3660046135a9565b6111a5565b34801561055b57600080fd5b506103bb61056a3660046135c4565b611275565b34801561057b57600080fd5b506103fd7f000000000000000000000000caf307d0657ea95549cf10cd4ce9e85a851d4bea81565b3480156105af57600080fd5b5060175461039a90610100900460ff1681565b3480156105ce57600080fd5b5061033861131c565b3480156105e357600080fd5b506103386105f23660046135a9565b6113c2565b34801561060357600080fd5b5061039a6106123660046135a9565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205460ff1690565b34801561064957600080fd5b50426103bb565b34801561065c57600080fd5b506002546103bb565b34801561067157600080fd5b5060175461039a9062010000900460ff1681565b34801561069157600080fd5b506103bb60125481565b3480156106a757600080fd5b506103bb6106b63660046135a9565b6115fd565b3480156106c757600080fd5b50610338611683565b3480156106dc57600080fd5b506103bb60145481565b3480156106f257600080fd5b50610338610701366004613463565b611773565b34801561071257600080fd5b5061039a6107213660046135a9565b73ffffffffffffffffffffffffffffffffffffffff1660009081526007602052604090205460ff1690565b34801561075857600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166103fd565b34801561078357600080fd5b50610338610792366004613463565b61180c565b3480156107a357600080fd5b5061034f611892565b3480156107b857600080fd5b506015546103bb565b3480156107cd57600080fd5b5061039a6107dc366004613518565b6118a1565b3480156107ed57600080fd5b506103386118fd565b34801561080257600080fd5b5061039a610811366004613518565b611aa2565b34801561082257600080fd5b506016546103bb565b34801561083757600080fd5b5061033861084636600461358e565b611aaf565b34801561085757600080fd5b50610338610866366004613463565b611b96565b34801561087757600080fd5b506103bb6108863660046135f0565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205490565b3480156108ca57600080fd5b506103386108d93660046135a9565b611cb6565b3480156108ea57600080fd5b506103386108f9366004613463565b611d83565b34801561090a57600080fd5b50610338610919366004613463565b611e09565b34801561092a57600080fd5b506103386109393660046135a9565b611e8f565b34801561094a57600080fd5b50600c546103fd9073ffffffffffffffffffffffffffffffffffffffff1681565b60005473ffffffffffffffffffffffffffffffffffffffff1633146109f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b601055565b6060600d8054610a059061361a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a319061361a565b8015610a7e5780601f10610a5357610100808354040283529160200191610a7e565b820191906000526020600020905b815481529060010190602001808311610a6157829003601f168201915b5050505050905090565b60005473ffffffffffffffffffffffffffffffffffffffff163314610b09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b610b136001611aaf565b6001601055600360125569d3c21bcecceda1000000601455565b6000610b3a338484612040565b5060015b92915050565b6000610b518484846121f3565b610bb08433610bab856040518060600160405280602881526020016138d96028913973ffffffffffffffffffffffffffffffffffffffff8a1660009081526005602090815260408083203384529091529020549190612607565b612040565b5060019392505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610c3b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b6017805482151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff9091161790556040517f3794234fa370c9f3b948dda3e3040530785b2ef1eb27dda3ffde478f4e2643c090610ca290831515815260200190565b60405180910390a150565b6000600a54821115610d41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e730000000000000000000000000000000000000000000060648201526084016109e8565b6000610d4b61265b565b9050610d57838261267e565b9392505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610ddf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b73ffffffffffffffffffffffffffffffffffffffff811660009081526007602052604090205460ff16610e6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016109e8565b60005b60085481101561102f578173ffffffffffffffffffffffffffffffffffffffff1660088281548110610ea557610ea561366e565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141561101d5760088054610edd906001906136cc565b81548110610eed57610eed61366e565b6000918252602090912001546008805473ffffffffffffffffffffffffffffffffffffffff9092169183908110610f2657610f2661366e565b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff948516179055918416815260048252604080822082905560079092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690556008805480610fc157610fc16136e3565b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190555050565b8061102781613712565b915050610e71565b5050565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610b3a918590610bab90866126c0565b3360008181526007602052604090205460ff1615611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201527f6869732066756e6374696f6e000000000000000000000000000000000000000060648201526084016109e8565b600061112183612739565b5050505073ffffffffffffffffffffffffffffffffffffffff841660009081526003602052604090205491925061115a91905082612788565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260036020526040902055600a5461118d9082612788565b600a55600b5461119d90846126c0565b600b55505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b73ffffffffffffffffffffffffffffffffffffffff16600090815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60006009548311156112e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016109e8565b816113025760006112f384612739565b50939550610b3e945050505050565b600061130d84612739565b50929550610b3e945050505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461139d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b6113a76000611aaf565b600060108190556012556a52b7d2dcc80cd2e4000000601455565b60005473ffffffffffffffffffffffffffffffffffffffff163314611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b73ffffffffffffffffffffffffffffffffffffffff811660009081526007602052604090205460ff16156114d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016109e8565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260036020526040902054156115545773ffffffffffffffffffffffffffffffffffffffff811660009081526003602052604090205461152d90610cad565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260409020555b73ffffffffffffffffffffffffffffffffffffffff16600081815260076020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b73ffffffffffffffffffffffffffffffffffffffff811660009081526007602052604081205460ff1615611654575073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040902054610b3e90610cad565b60005473ffffffffffffffffffffffffffffffffffffffff163314611704576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146117f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b61180681670de0b6b3a764000061374b565b60165550565b60005473ffffffffffffffffffffffffffffffffffffffff16331461188d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b601255565b6060600e8054610a059061361a565b6000610b3a3384610bab856040518060600160405280602581526020016139016025913933600090815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d1684529091529020549190612607565b60015473ffffffffffffffffffffffffffffffffffffffff1633146119a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c60448201527f6f636b000000000000000000000000000000000000000000000000000000000060648201526084016109e8565b6002544211611a0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c203720646179730060448201526064016109e8565b6001546000805460405173ffffffffffffffffffffffffffffffffffffffff93841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600154600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055565b6000610b3a3384846121f3565b60005473ffffffffffffffffffffffffffffffffffffffff163314611b30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b60178054821515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610ca290831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff163314611c17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b60008054600180547fffffffffffffffffffffffff000000000000000000000000000000000000000090811673ffffffffffffffffffffffffffffffffffffffff841617909155169055611c6b8142613788565b6002556000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a350565b60005473ffffffffffffffffffffffffffffffffffffffff163314611d37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b73ffffffffffffffffffffffffffffffffffffffff16600090815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611e04576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b601455565b60005473ffffffffffffffffffffffffffffffffffffffff163314611e8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b601555565b60005473ffffffffffffffffffffffffffffffffffffffff163314611f10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e8565b73ffffffffffffffffffffffffffffffffffffffff8116611fb3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109e8565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff83166120e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109e8565b73ffffffffffffffffffffffffffffffffffffffff8216612185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016109e8565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316612296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016109e8565b73ffffffffffffffffffffffffffffffffffffffff8216612339576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016109e8565b600081116123c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f000000000000000000000000000000000000000000000060648201526084016109e8565b60005473ffffffffffffffffffffffffffffffffffffffff84811691161480159061240f575060005473ffffffffffffffffffffffffffffffffffffffff838116911614155b156124a6576014548111156124a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785460448201527f78416d6f756e742e00000000000000000000000000000000000000000000000060648201526084016109e8565b60006124b1306115fd565b6015546017549192508210159060ff161580156124d55750601754610100900460ff165b801561252c57507f000000000000000000000000caf307d0657ea95549cf10cd4ce9e85a851d4bea73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b1561258e578015612545576015549150612545826127ca565b601754479062010000900460ff1680156125655750662386f26fc1000081115b1561258c5760165481111561257957506016545b61258c61258782606461267e565b61298c565b505b73ffffffffffffffffffffffffffffffffffffffff851660009081526006602052604090205460019060ff16806125ea575073ffffffffffffffffffffffffffffffffffffffff851660009081526006602052604090205460ff165b156125f3575060005b6125ff868686846129f1565b505050505050565b60008184841115612645576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e8919061347c565b50600061265284866136cc565b95945050505050565b6000806000612668612b6a565b9092509050612677828261267e565b9250505090565b6000610d5783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612d20565b6000806126cd8385613788565b905083811015610d57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016109e8565b60008060008060008060008060006127508a612d68565b925092509250600080600061276e8d868661276961265b565b612daa565b919f909e50909c50959a5093985091965092945050505050565b6000610d5783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612607565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106127ff576127ff61366e565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600c5482519116908290600190811061283d5761283d61366e565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506128a2307f00000000000000000000000058beb321e392e62d51ec7a253b6cb5255d50590e84612040565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000058beb321e392e62d51ec7a253b6cb5255d50590e169063791ac9479061291d9085906000908690309042906004016137f1565b600060405180830381600087803b15801561293757600080fd5b505af115801561294b573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a7828260405161298092919061383a565b60405180910390a15050565b601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905580156129c6576129c681612dfa565b50601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b806129fe576129fe612f73565b73ffffffffffffffffffffffffffffffffffffffff841660009081526007602052604090205460ff168015612a59575073ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604090205460ff16155b15612a6e57612a69848484612fa1565b612b4e565b73ffffffffffffffffffffffffffffffffffffffff841660009081526007602052604090205460ff16158015612ac9575073ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604090205460ff165b15612ad957612a69848484613115565b73ffffffffffffffffffffffffffffffffffffffff841660009081526007602052604090205460ff168015612b33575073ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604090205460ff165b15612b4357612a698484846131e5565b612b4e848484613272565b80612b6457612b64601154601055601354601255565b50505050565b600a546009546000918291825b600854811015612cf057826003600060088481548110612b9957612b9961366e565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020541180612c1e5750816004600060088481548110612bea57612bea61366e565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054115b15612c3457600a54600954945094505050509091565b612c876003600060088481548110612c4e57612c4e61366e565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020548490612788565b9250612cdc6004600060088481548110612ca357612ca361366e565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020548390612788565b915080612ce881613712565b915050612b77565b50600954600a54612d009161267e565b821015612d1757600a546009549350935050509091565b90939092509050565b60008183612d5b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e8919061347c565b506000612652848661385b565b600080600080612d77856132c3565b90506000612d84866132e5565b90506000612d9c82612d968986612788565b90612788565b979296509094509092505050565b6000808080612db98886613301565b90506000612dc78887613301565b90506000612dd58888613301565b90506000612de782612d968686612788565b939b939a50919850919650505050505050565b6040805160028082526060820183526000926020830190803683375050600c54825192935073ffffffffffffffffffffffffffffffffffffffff1691839150600090612e4857612e4861366e565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110612e9657612e9661366e565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101527f00000000000000000000000058beb321e392e62d51ec7a253b6cb5255d50590e1663b6f9de958360008481612ef14261012c6126c0565b6040518663ffffffff1660e01b8152600401612f109493929190613896565b6000604051808303818588803b158015612f2957600080fd5b505af1158015612f3d573d6000803e3d6000fd5b50505050507f6fd378a9d8b7345c2e5b18229aaf1e39d32b177b501d0a0d26a0a858a23a9624828260405161298092919061383a565b601054158015612f835750601254155b15612f8a57565b601080546011556012805460135560009182905555565b600080600080600080612fb387612739565b73ffffffffffffffffffffffffffffffffffffffff8f16600090815260046020526040902054959b50939950919750955093509150612ff29088612788565b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526004602090815260408083209390935560039052205461302e9087612788565b73ffffffffffffffffffffffffffffffffffffffff808b1660009081526003602052604080822093909355908a168152205461306a90866126c0565b73ffffffffffffffffffffffffffffffffffffffff8916600090815260036020526040902055613099816133b6565b6130a3848361343f565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161310291815260200190565b60405180910390a3505050505050505050565b60008060008060008061312787612739565b73ffffffffffffffffffffffffffffffffffffffff8f16600090815260036020526040902054959b509399509197509550935091506131669087612788565b73ffffffffffffffffffffffffffffffffffffffff808b16600090815260036020908152604080832094909455918b168152600490915220546131a990846126c0565b73ffffffffffffffffffffffffffffffffffffffff891660009081526004602090815260408083209390935560039052205461306a90866126c0565b6000806000806000806131f787612739565b73ffffffffffffffffffffffffffffffffffffffff8f16600090815260046020526040902054959b509399509197509550935091506132369088612788565b73ffffffffffffffffffffffffffffffffffffffff8a166000908152600460209081526040808320939093556003905220546131669087612788565b60008060008060008061328487612739565b73ffffffffffffffffffffffffffffffffffffffff8f16600090815260036020526040902054959b5093995091975095509350915061302e9087612788565b6000610b3e60646132df6010548561330190919063ffffffff16565b9061267e565b6000610b3e60646132df6012548561330190919063ffffffff16565b60008261331057506000610b3e565b600061331c838561374b565b905082613329858361385b565b14610d57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f770000000000000000000000000000000000000000000000000000000000000060648201526084016109e8565b60006133c061265b565b905060006133ce8383613301565b306000908152600360205260409020549091506133eb90826126c0565b3060009081526003602090815260408083209390935560079052205460ff161561343a573060009081526004602052604090205461342990846126c0565b306000908152600460205260409020555b505050565b600a5461344c9083612788565b600a55600b5461345c90826126c0565b600b555050565b60006020828403121561347557600080fd5b5035919050565b600060208083528351808285015260005b818110156134a95785810183015185820160400152820161348d565b818111156134bb576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461351357600080fd5b919050565b6000806040838503121561352b57600080fd5b613534836134ef565b946020939093013593505050565b60008060006060848603121561355757600080fd5b613560846134ef565b925061356e602085016134ef565b9150604084013590509250925092565b8035801515811461351357600080fd5b6000602082840312156135a057600080fd5b610d578261357e565b6000602082840312156135bb57600080fd5b610d57826134ef565b600080604083850312156135d757600080fd5b823591506135e76020840161357e565b90509250929050565b6000806040838503121561360357600080fd5b61360c836134ef565b91506135e7602084016134ef565b600181811c9082168061362e57607f821691505b60208210811415613668577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000828210156136de576136de61369d565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137445761374461369d565b5060010190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137835761378361369d565b500290565b6000821982111561379b5761379b61369d565b500190565b600081518084526020808501945080840160005b838110156137e657815173ffffffffffffffffffffffffffffffffffffffff16875295820195908201906001016137b4565b509495945050505050565b85815284602082015260a06040820152600061381060a08301866137a0565b73ffffffffffffffffffffffffffffffffffffffff94909416606083015250608001529392505050565b82815260406020820152600061385360408301846137a0565b949350505050565b600082613891577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b8481526080602082015260006138af60808301866137a0565b73ffffffffffffffffffffffffffffffffffffffff94909416604083015250606001529291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f8e65e4415bec9ef5bbf25706376b7d18c6771f466aa57076624bcdbd2a8c6dd64736f6c63430008090033