ETH Price: $2,303.25 (+0.92%)

Token

SHIBJITSU (SHJITSU)
 

Overview

Max Total Supply

1,000,000,000,000,000 SHJITSU

Holders

41

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
3,267,213,648,357.674079395 SHJITSU

Value
$0.00
0x83e9Ec9962fAD92C9CeEd4b9Eee7D76301476Bc0
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ShibJitsu

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 7 of 7: ShibaJitsu.sol
import './SafeMath.sol';
import './IERC20.sol';
import './IUniswapV2Factory.sol';
import './Context.sol';
import './Ownable.sol';
import './Address.sol';

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

contract ShibJitsu is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    string private _name = "SHIBJITSU";
    string private _symbol = "SHJITSU";
    uint8 private _decimals = 9;

    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;
    mapping(address => bool) private _isBlackListedBot;
    mapping(address => bool) private _isExcludedFromLimit;
    
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1 * 10**15 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    address[] private _blackListedBots;
    address[] private _excluded;

    address payable private _marketingAddress = payable(address(0x34e9E92505c995E284C207bA8DE8fD097679f8Be));
    address payable private _devAddress = payable(address(0x34e9E92505c995E284C207bA8DE8fD097679f8Be));
    
    uint16 private _taxFee;
    uint16 private _liquidityFee;
    uint16 private _marketingFee;
    uint16 private _devFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    uint256 public _maxTxAmount = 20 * 10**12 * 10**9;   // 2% max per transaction
    uint256 public _numTokensSellToAddToLiquidity = 1 * 10**12 * 10**9;
    uint256 public _maxWalletSize = 20 * 10**12 * 10**9; // 2% max per wallet

    struct BuyFee {
        uint16 tax;
        uint16 liquidity;
        uint16 marketing;
        uint16 dev;
    }

    struct SellFee {
        uint16 tax;
        uint16 liquidity;
        uint16 marketing;
        uint16 dev;
    }

    BuyFee public buyFee;
    SellFee public sellFee;

    event botAddedToBlacklist(address account);
    event botRemovedFromBlacklist(address account);

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor() {
        _rOwned[_msgSender()] = _rTotal;

        buyFee.tax = 0;
        buyFee.liquidity = 2;
        buyFee.marketing = 10;
        buyFee.dev = 0;

        sellFee.tax = 0;
        sellFee.liquidity = 2;
        sellFee.marketing = 10;
        sellFee.dev = 0;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_marketingAddress] = true;
        _isExcludedFromFee[_devAddress] = true;

        _isExcludedFromLimit[owner()] = true;
        _isExcludedFromLimit[address(this)] = true;
        _isExcludedFromLimit[_marketingAddress] = true;
        _isExcludedFromLimit[_devAddress] = 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 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 setMarketingWallet(address payable newAddress) external onlyOwner {
        _marketingAddress = newAddress;
    }

    function setDevWallet(address payable newAddress) external onlyOwner {
        _devAddress = newAddress;
    }

    function addBotToBlacklist(address account) external onlyOwner {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, "We cannot blacklist UniSwap router");
        require(!_isBlackListedBot[account], "Account is already blacklisted");
        _isBlackListedBot[account] = true;
        _blackListedBots.push(account);
    }

    function removeBotFromBlacklist(address account) external onlyOwner {
        require(_isBlackListedBot[account], "Account is not blacklisted");
        for (uint256 i = 0; i < _blackListedBots.length; i++) {
            if (_blackListedBots[i] == account) {
                _blackListedBots[i] = _blackListedBots[
                    _blackListedBots.length - 1
                ];
                _isBlackListedBot[account] = false;
                _blackListedBots.pop();
                break;
            }
        }
    }

    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 not 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 excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function excludeFromLimit(address account) public onlyOwner {
        _isExcludedFromLimit[account] = true;
    }

    function includeInLimit(address account) public onlyOwner {
        _isExcludedFromLimit[account] = false;
    }

    function setBuyFee(uint16 tax, uint16 liquidity, uint16 marketing, uint16 dev) external onlyOwner {
        buyFee.tax = tax;
        buyFee.marketing = marketing;
        buyFee.liquidity = liquidity;
        buyFee.dev = dev;
    }

    function setSellFee(uint16 tax, uint16 liquidity, uint16 marketing, uint16 dev) external onlyOwner {
        sellFee.tax = tax;
        sellFee.marketing = marketing;
        sellFee.liquidity = liquidity;
        sellFee.dev = dev;
    }

    function setAllFees(uint16 bTax, uint16 bLiquidity, uint16 bMarketing, uint16 bDev, uint16 sTax, uint16 sLiquidity, uint16 sMarketing, uint16 sDev) external onlyOwner {
        buyFee.tax = bTax;
        buyFee.marketing = bMarketing;
        buyFee.liquidity = bLiquidity;
        buyFee.dev = bDev;

        sellFee.tax = sTax;
        sellFee.marketing = sMarketing;
        sellFee.liquidity = sLiquidity;
        sellFee.dev = sDev;
    }

    function setNumTokensSellToAddToLiquidity(uint256 numTokens) external onlyOwner {
        _numTokensSellToAddToLiquidity = numTokens;
    }

    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(10**3);
    }

    function setMaxWalletSizePercent(uint256 maxWalletSize) external onlyOwner {
        _maxWalletSize = _tTotal.mul(maxWalletSize).div(10**3);
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

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

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

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

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tWallet, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rWallet = tWallet.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity).sub(rWallet);
        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 _takeWalletFee(uint256 tWallet) private {
        uint256 currentRate = _getRate();
        uint256 rWallet = tWallet.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rWallet);
        if (_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tWallet);
    }

    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 calculateMarketingFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_marketingFee).div(10**2);
    }

    function calculateDevFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_devFee).div(10**2);
    }

    function removeAllFee() private {
        _taxFee = 0;
        _liquidityFee = 0;
        _marketingFee = 0;
        _devFee = 0;
    }

    function setBuy() private {
        _taxFee = buyFee.tax;
        _liquidityFee = buyFee.liquidity;
        _marketingFee = buyFee.marketing;
        _devFee = buyFee.dev;
    }

    function setSell() private {
        _taxFee = sellFee.tax;
        _liquidityFee = sellFee.liquidity;
        _marketingFee = sellFee.marketing;
        _devFee = sellFee.dev;
    }

    function isExcludedFromFee(address account) public view returns (bool) {
        return _isExcludedFromFee[account];
    }

    function isExcludedFromLimit(address account) public view returns (bool) {
        return _isExcludedFromLimit[account];
    }

    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");
        require(!_isBlackListedBot[from], "You are blacklisted");
        require(!_isBlackListedBot[msg.sender], "blacklisted");
        require(!_isBlackListedBot[tx.origin], "blacklisted");

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));

        if (contractTokenBalance >= _maxTxAmount) {
            contractTokenBalance = _maxTxAmount;
        }

        bool overMinTokenBalance = contractTokenBalance >= _numTokensSellToAddToLiquidity;

        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = _numTokensSellToAddToLiquidity;
            swapAndLiquify(contractTokenBalance); //add liquidity
        }

        bool takeFee = true;

        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            takeFee = false;
        }

        if (takeFee) {
            if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) {
                require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
                if (to != uniswapV2Pair) {
                    require(amount + balanceOf(to) <= _maxWalletSize, "Recipient exceeds max wallet size.");
                }
            }
        }

        _tokenTransfer(from, to, amount, takeFee);
    }

    function swapAndLiquify(uint256 tokens) private lockTheSwap {
        // Split the contract balance into halves
        uint256 denominator = (buyFee.liquidity + sellFee.liquidity + buyFee.marketing + sellFee.marketing + buyFee.dev + sellFee.dev) * 2;
        uint256 tokensToAddLiquidityWith = (tokens * (buyFee.liquidity + sellFee.liquidity)) / denominator;
        uint256 toSwap = tokens - tokensToAddLiquidityWith;
        uint256 initialBalance = address(this).balance;

        swapTokensForEth(toSwap);

        uint256 deltaBalance = address(this).balance - initialBalance;
        uint256 unitBalance = deltaBalance / (denominator - (buyFee.liquidity + sellFee.liquidity));
        uint256 ethToAddLiquidityWith = unitBalance * (buyFee.liquidity + sellFee.liquidity);

        if (ethToAddLiquidityWith > 0) {
            addLiquidity(tokensToAddLiquidityWith, ethToAddLiquidityWith);
        }

        uint256 marketingAmt = unitBalance * 2 * (buyFee.marketing + sellFee.marketing);
        uint256 devAmt = unitBalance * 2 * (buyFee.dev + sellFee.dev) > address(this).balance ? address(this).balance : unitBalance * 2 * (buyFee.dev + sellFee.dev);

        if (marketingAmt > 0) {
            _marketingAddress.transfer(marketingAmt);
        }

        if (devAmt > 0) {
            _devAddress.transfer(devAmt);
        }
    }

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

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private {
        if (takeFee) {
            removeAllFee();
            if (sender == uniswapV2Pair) {
                setBuy();
            }
            if (recipient == uniswapV2Pair) {
                setSell();
            }
        }

        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        removeAllFee();
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tWallet) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tWallet, _getRate());

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeWalletFee(tWallet);
        _reflectFee(rFee, tFee);

        emit Transfer(sender, recipient, tTransferAmount);
    }


    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tWallet) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tWallet, _getRate());

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeWalletFee(tWallet);
        _reflectFee(rFee, tFee);

        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tWallet) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tWallet, _getRate());

        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeWalletFee(tWallet);
        _reflectFee(rFee, tFee);

        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tWallet) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tWallet, _getRate());

        _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);
        _takeWalletFee(tWallet);
        _reflectFee(rFee, tFee);
        
        emit Transfer(sender, recipient, tTransferAmount);
    }
}

File 1 of 7: Address.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 7: IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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 Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

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

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

    function initialize(address, address) external;
}

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

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

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

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

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

File 5 of 7: Ownable.sol
import './Context.sol';

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

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

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

    /**
    * @dev Initializes the contract setting the deployer as the initial owner.
    */
    constructor () {
        _owner = _msgSender();
        emit OwnershipTransferred(address(0), _owner);
    }

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

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

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

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

File 6 of 7: SafeMath.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botAddedToBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botRemovedFromBlacklist","type":"event"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint16","name":"tax","type":"uint16"},{"internalType":"uint16","name":"liquidity","type":"uint16"},{"internalType":"uint16","name":"marketing","type":"uint16"},{"internalType":"uint16","name":"dev","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint16","name":"tax","type":"uint16"},{"internalType":"uint16","name":"liquidity","type":"uint16"},{"internalType":"uint16","name":"marketing","type":"uint16"},{"internalType":"uint16","name":"dev","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"bTax","type":"uint16"},{"internalType":"uint16","name":"bLiquidity","type":"uint16"},{"internalType":"uint16","name":"bMarketing","type":"uint16"},{"internalType":"uint16","name":"bDev","type":"uint16"},{"internalType":"uint16","name":"sTax","type":"uint16"},{"internalType":"uint16","name":"sLiquidity","type":"uint16"},{"internalType":"uint16","name":"sMarketing","type":"uint16"},{"internalType":"uint16","name":"sDev","type":"uint16"}],"name":"setAllFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"tax","type":"uint16"},{"internalType":"uint16","name":"liquidity","type":"uint16"},{"internalType":"uint16","name":"marketing","type":"uint16"},{"internalType":"uint16","name":"dev","type":"uint16"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newAddress","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newAddress","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"setMaxWalletSizePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"tax","type":"uint16"},{"internalType":"uint16","name":"liquidity","type":"uint16"},{"internalType":"uint16","name":"marketing","type":"uint16"},{"internalType":"uint16","name":"dev","type":"uint16"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

610100604052600960c081905268534849424a4954535560b81b60e09081526200002d9160019190620004a6565b506040805180820190915260078082526653484a4954535560c81b60209092019182526200005e91600291620004a6565b506003805460ff1916600917905569d3c21bcecceda1000000600b8190556200008a906000196200054c565b62000098906000196200056f565b600c55601080546001600160a01b0319167334e9e92505c995e284c207ba8de8fd097679f8be179055601180547d0100000000000000000034e9e92505c995e284c207ba8de8fd097679f8be6001600160a01b0360ff60e81b011990911617905569043c33c19375648000006012819055683635c9adc5dea000006013556014553480156200012657600080fd5b50600080546001600160a01b0319163390811782556040519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3600c54336000908152600460208181526040928390209390935560158054640a000200006001600160401b03199182168117909255601680549091169091179055815163c45a015560e01b81529151737a250d5630b4cf539739df2c5dacb4c659f2488d93849363c45a0155938181019391829003018186803b158015620001ed57600080fd5b505afa15801562000202573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000228919062000595565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027157600080fd5b505afa15801562000286573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ac919062000595565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620002f557600080fd5b505af11580156200030a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000330919062000595565b6001600160a01b0390811660a05281166080526001600760006200035c6000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526007909352818320805485166001908117909155601054821684528284208054861682179055601154909116835290822080549093168117909255600a90620003de6000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600a9093528183208054851660019081179091556010548216845282842080548616821790556011549091168352912080549092161790556200044f3390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040516200049791815260200190565b60405180910390a35062000604565b828054620004b490620005c7565b90600052602060002090601f016020900481019282620004d8576000855562000523565b82601f10620004f357805160ff191683800117855562000523565b8280016001018555821562000523579182015b828111156200052357825182559160200191906001019062000506565b506200053192915062000535565b5090565b5b8082111562000531576000815560010162000536565b6000826200056a57634e487b7160e01b600052601260045260246000fd5b500690565b6000828210156200059057634e487b7160e01b600052601160045260246000fd5b500390565b600060208284031215620005a857600080fd5b81516001600160a01b0381168114620005c057600080fd5b9392505050565b600181811c90821680620005dc57607f821691505b60208210811415620005fe57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516130c062000669600039600081816104fd01528181611a0c01528181611b6601528181611f9801526120420152600081816102f001528181612436015281816124fe0152818161253a015281816125ac015261260801526130c06000f3fe6080604052600436106102555760003560e01c80636fcd477b11610139578063a457c2d7116100b6578063d543dbeb1161007a578063d543dbeb1461079c578063d94160e0146107bc578063dd62ed3e146107f5578063ea2f0b371461083b578063f0f165af1461085b578063fcb7e0851461087b57600080fd5b8063a457c2d714610706578063a9059cbb14610726578063b030b34a14610746578063b3f22ce314610766578063c49b9a801461077c57600080fd5b80638da5cb5b116100fd5780638da5cb5b1461067d5780638dc644391461069b5780638f9a55c0146106bb57806391d919a9146106d157806395d89b41146106f157600080fd5b80636fcd477b146105d957806370a08231146105f9578063715018a6146106195780637d1db4a51461062e57806388f820201461064457600080fd5b8063313ce567116101d257806349bd5a5e1161019657806349bd5a5e146104eb5780634a74bb021461051f57806352390c02146105405780635342acb4146105605780635bcbe877146105995780635d098b38146105b957600080fd5b8063313ce567146104305780633685d419146104525780633950935114610472578063437823ec1461049257806347062402146104b257600080fd5b80631d7ef879116102195780631d7ef879146103495780631f53ac021461036957806323b872dd146103895780632b14ca56146103a95780632d8381191461041057600080fd5b806306fdde0314610261578063095ea7b31461028c5780630bd3a7f9146102bc5780631694505e146102de57806318160ddd1461032a57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061027661089b565b6040516102839190612b87565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004612bf4565b61092d565b6040519015158152602001610283565b3480156102c857600080fd5b506102dc6102d7366004612c20565b610943565b005b3480156102ea57600080fd5b506103127f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610283565b34801561033657600080fd5b50600b545b604051908152602001610283565b34801561035557600080fd5b506102dc610364366004612c20565b61099a565b34801561037557600080fd5b506102dc610384366004612c20565b610b0b565b34801561039557600080fd5b506102ac6103a4366004612c3d565b610b57565b3480156103b557600080fd5b506016546103e29061ffff80821691620100008104821691600160201b8204811691600160301b90041684565b6040805161ffff95861681529385166020850152918416918301919091529091166060820152608001610283565b34801561041c57600080fd5b5061033b61042b366004612c7e565b610bc0565b34801561043c57600080fd5b5060035460405160ff9091168152602001610283565b34801561045e57600080fd5b506102dc61046d366004612c20565b610c44565b34801561047e57600080fd5b506102ac61048d366004612bf4565b610dfb565b34801561049e57600080fd5b506102dc6104ad366004612c20565b610e31565b3480156104be57600080fd5b506015546103e29061ffff80821691620100008104821691600160201b8204811691600160301b90041684565b3480156104f757600080fd5b506103127f000000000000000000000000000000000000000000000000000000000000000081565b34801561052b57600080fd5b506011546102ac90600160e81b900460ff1681565b34801561054c57600080fd5b506102dc61055b366004612c20565b610e7f565b34801561056c57600080fd5b506102ac61057b366004612c20565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156105a557600080fd5b506102dc6105b4366004612cae565b610fd2565b3480156105c557600080fd5b506102dc6105d4366004612c20565b611056565b3480156105e557600080fd5b506102dc6105f4366004612d02565b6110a2565b34801561060557600080fd5b5061033b610614366004612c20565b611154565b34801561062557600080fd5b506102dc6111b9565b34801561063a57600080fd5b5061033b60125481565b34801561065057600080fd5b506102ac61065f366004612c20565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561068957600080fd5b506000546001600160a01b0316610312565b3480156106a757600080fd5b506102dc6106b6366004612cae565b61122d565b3480156106c757600080fd5b5061033b60145481565b3480156106dd57600080fd5b506102dc6106ec366004612c20565b6112b1565b3480156106fd57600080fd5b506102766112fc565b34801561071257600080fd5b506102ac610721366004612bf4565b61130b565b34801561073257600080fd5b506102ac610741366004612bf4565b61135a565b34801561075257600080fd5b506102dc610761366004612c20565b611367565b34801561077257600080fd5b5061033b60135481565b34801561078857600080fd5b506102dc610797366004612d99565b6114eb565b3480156107a857600080fd5b506102dc6107b7366004612c7e565b61156d565b3480156107c857600080fd5b506102ac6107d7366004612c20565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561080157600080fd5b5061033b610810366004612dbb565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b34801561084757600080fd5b506102dc610856366004612c20565b6115be565b34801561086757600080fd5b506102dc610876366004612c7e565b611609565b34801561088757600080fd5b506102dc610896366004612c7e565b611638565b6060600180546108aa90612df4565b80601f01602080910402602001604051908101604052809291908181526020018280546108d690612df4565b80156109235780601f106108f857610100808354040283529160200191610923565b820191906000526020600020905b81548152906001019060200180831161090657829003601f168201915b5050505050905090565b600061093a338484611683565b50600192915050565b6000546001600160a01b031633146109765760405162461bcd60e51b815260040161096d90612e2f565b60405180910390fd5b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b6000546001600160a01b031633146109c45760405162461bcd60e51b815260040161096d90612e2f565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610a3c5760405162461bcd60e51b815260206004820152602260248201527f57652063616e6e6f7420626c61636b6c69737420556e695377617020726f757460448201526132b960f11b606482015260840161096d565b6001600160a01b03811660009081526009602052604090205460ff1615610aa55760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015260640161096d565b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600e805491820181559091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319169091179055565b6000546001600160a01b03163314610b355760405162461bcd60e51b815260040161096d90612e2f565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b648484846117a7565b610bb68433610bb18560405180606001604052806028815260200161303e602891396001600160a01b038a1660009081526006602090815260408083203384529091529020549190611c20565b611683565b5060019392505050565b6000600c54821115610c275760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b606482015260840161096d565b6000610c31611c4c565b9050610c3d8382611c6f565b9392505050565b6000546001600160a01b03163314610c6e5760405162461bcd60e51b815260040161096d90612e2f565b6001600160a01b03811660009081526008602052604090205460ff16610cd65760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c75646564000000000000000000604482015260640161096d565b60005b600f54811015610df757816001600160a01b0316600f8281548110610d0057610d00612e64565b6000918252602090912001546001600160a01b03161415610de557600f8054610d2b90600190612e90565b81548110610d3b57610d3b612e64565b600091825260209091200154600f80546001600160a01b039092169183908110610d6757610d67612e64565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600890925220805460ff19169055600f805480610dbf57610dbf612ea7565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610def81612ebd565b915050610cd9565b5050565b3360008181526006602090815260408083206001600160a01b0387168452909152812054909161093a918590610bb19086611c7b565b6000546001600160a01b03163314610e5b5760405162461bcd60e51b815260040161096d90612e2f565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6000546001600160a01b03163314610ea95760405162461bcd60e51b815260040161096d90612e2f565b6001600160a01b03811660009081526008602052604090205460ff1615610f125760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161096d565b6001600160a01b03811660009081526004602052604090205415610f6c576001600160a01b038116600090815260046020526040902054610f5290610bc0565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600860205260408120805460ff19166001908117909155600f805491820181559091527f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319169091179055565b6000546001600160a01b03163314610ffc5760405162461bcd60e51b815260040161096d90612e2f565b6016805461ffff928316600160301b0261ffff60301b1995841662010000029590951667ffff0000ffff000019948416600160201b0265ffff0000ffff199092169390961692909217919091179190911692909217179055565b6000546001600160a01b031633146110805760405162461bcd60e51b815260040161096d90612e2f565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146110cc5760405162461bcd60e51b815260040161096d90612e2f565b6015805461ffff998a1665ffff0000ffff1991821617600160201b988b1689021767ffff0000ffff000019908116620100009a8c168b0261ffff60301b1990811691909117600160301b998d168a021790935560168054978c169790921696909617938a16909702929092179093169187169095029094169390931792909316909202179055565b6001600160a01b03811660009081526008602052604081205460ff161561119157506001600160a01b031660009081526005602052604090205490565b6001600160a01b0382166000908152600460205260409020546111b390610bc0565b92915050565b6000546001600160a01b031633146111e35760405162461bcd60e51b815260040161096d90612e2f565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146112575760405162461bcd60e51b815260040161096d90612e2f565b6015805461ffff928316600160301b0261ffff60301b1995841662010000029590951667ffff0000ffff000019948416600160201b0265ffff0000ffff199092169390961692909217919091179190911692909217179055565b6000546001600160a01b031633146112db5760405162461bcd60e51b815260040161096d90612e2f565b6001600160a01b03166000908152600a60205260409020805460ff19169055565b6060600280546108aa90612df4565b600061093a3384610bb185604051806060016040528060258152602001613066602591393360009081526006602090815260408083206001600160a01b038d1684529091529020549190611c20565b600061093a3384846117a7565b6000546001600160a01b031633146113915760405162461bcd60e51b815260040161096d90612e2f565b6001600160a01b03811660009081526009602052604090205460ff166113f95760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015260640161096d565b60005b600e54811015610df757816001600160a01b0316600e828154811061142357611423612e64565b6000918252602090912001546001600160a01b031614156114d957600e805461144e90600190612e90565b8154811061145e5761145e612e64565b600091825260209091200154600e80546001600160a01b03909216918390811061148a5761148a612e64565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600e805480610dbf57610dbf612ea7565b806114e381612ebd565b9150506113fc565b6000546001600160a01b031633146115155760405162461bcd60e51b815260040161096d90612e2f565b60118054821515600160e81b0260ff60e81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061156290831515815260200190565b60405180910390a150565b6000546001600160a01b031633146115975760405162461bcd60e51b815260040161096d90612e2f565b6115b86103e86115b283600b54611c8790919063ffffffff16565b90611c6f565b60125550565b6000546001600160a01b031633146115e85760405162461bcd60e51b815260040161096d90612e2f565b6001600160a01b03166000908152600760205260409020805460ff19169055565b6000546001600160a01b031633146116335760405162461bcd60e51b815260040161096d90612e2f565b601355565b6000546001600160a01b031633146116625760405162461bcd60e51b815260040161096d90612e2f565b61167d6103e86115b283600b54611c8790919063ffffffff16565b60145550565b6001600160a01b0383166116e55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161096d565b6001600160a01b0382166117465760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161096d565b6001600160a01b0383811660008181526006602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661180b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161096d565b6001600160a01b03821661186d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161096d565b600081116118cf5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161096d565b6001600160a01b03831660009081526009602052604090205460ff161561192e5760405162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015260640161096d565b3360009081526009602052604090205460ff161561197c5760405162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b604482015260640161096d565b3260009081526009602052604090205460ff16156119ca5760405162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b604482015260640161096d565b60006119d530611154565b905060125481106119e557506012545b60135481108015908190611a035750601154600160e01b900460ff16155b8015611a4157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611a565750601154600160e81b900460ff165b15611a69576013549150611a6982611c93565b6001600160a01b03851660009081526007602052604090205460019060ff1680611aab57506001600160a01b03851660009081526007602052604090205460ff165b15611ab4575060005b8015611c0c576001600160a01b0386166000908152600a602052604090205460ff16158015611afc57506001600160a01b0385166000908152600a602052604090205460ff16155b15611c0c57601254841115611b645760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b606482015260840161096d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614611c0c57601454611ba986611154565b611bb39086612ed8565b1115611c0c5760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b606482015260840161096d565b611c1886868684611f77565b505050505050565b60008184841115611c445760405162461bcd60e51b815260040161096d9190612b87565b505050900390565b6000806000611c5961225d565b9092509050611c688282611c6f565b9250505090565b6000610c3d8284612ef0565b6000610c3d8284612ed8565b6000610c3d8284612f12565b6011805460ff60e01b1916600160e01b17905560165460155460009161ffff600160301b808304821693908104821692600160201b808204841693908304811692611ceb926201000090819004831692910416612f31565b611cf59190612f31565b611cff9190612f31565b611d099190612f31565b611d139190612f31565b611d1e906002612f57565b60165460155461ffff92831693506000928492611d4992620100009182900483169291900416612f31565b611d579061ffff1685612f12565b611d619190612ef0565b90506000611d6f8285612e90565b905047611d7b826123df565b6000611d878247612e90565b601654601554919250600091611daf9161ffff62010000918290048116929190910416612f31565b611dbd9061ffff1687612e90565b611dc79083612ef0565b601654601554919250600091611def9161ffff62010000918290048116929190910416612f31565b611dfd9061ffff1683612f12565b90508015611e0f57611e0f86826125a6565b601654601554600091611e349161ffff600160201b9283900481169290910416612f31565b61ffff16611e43846002612f12565b611e4d9190612f12565b6016546015549192506000914791611e779161ffff600160301b9283900481169290910416612f31565b61ffff16611e86866002612f12565b611e909190612f12565b11611ed657601654601554611eb89161ffff600160301b918290048116929190910416612f31565b61ffff16611ec7856002612f12565b611ed19190612f12565b611ed8565b475b90508115611f1c576010546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015611f1a573d6000803e3d6000fd5b505b8015611f5e576011546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611f5c573d6000803e3d6000fd5b505b50506011805460ff60e01b191690555050505050505050565b80156120ea57611f966011805467ffffffffffffffff60a01b19169055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03161415612040576015546011805463ffffffff60a01b191661ffff808416600160a01b0261ffff60b01b1916919091176201000084048216600160b01b021763ffffffff60c01b1916600160201b84048216600160c01b0261ffff60d01b191617600160301b90930416600160d01b029190911790555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614156120ea576016546011805463ffffffff60a01b191661ffff808416600160a01b0261ffff60b01b1916919091176201000084048216600160b01b021763ffffffff60c01b1916600160201b84048216600160c01b0261ffff60d01b191617600160301b90930416600160d01b029190911790555b6001600160a01b03841660009081526008602052604090205460ff16801561212b57506001600160a01b03831660009081526008602052604090205460ff16155b156121405761213b848484612695565b61223e565b6001600160a01b03841660009081526008602052604090205460ff1615801561218157506001600160a01b03831660009081526008602052604090205460ff165b156121915761213b8484846127dc565b6001600160a01b03841660009081526008602052604090205460ff161580156121d357506001600160a01b03831660009081526008602052604090205460ff16155b156121e35761213b848484612897565b6001600160a01b03841660009081526008602052604090205460ff16801561222357506001600160a01b03831660009081526008602052604090205460ff165b156122335761213b8484846128ed565b61223e848484612897565b6122576011805467ffffffffffffffff60a01b19169055565b50505050565b600c54600b546000918291825b600f548110156123af578260046000600f848154811061228c5761228c612e64565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806122f757508160056000600f84815481106122d0576122d0612e64565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561230d57600c54600b54945094505050509091565b61235360046000600f848154811061232757612327612e64565b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061296e565b925061239b60056000600f848154811061236f5761236f612e64565b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061296e565b9150806123a781612ebd565b91505061226a565b50600b54600c546123bf91611c6f565b8210156123d657600c54600b549350935050509091565b90939092509050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061241457612414612e64565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561248d57600080fd5b505afa1580156124a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124c59190612f81565b816001815181106124d8576124d8612e64565b60200260200101906001600160a01b031690816001600160a01b031681525050612523307f000000000000000000000000000000000000000000000000000000000000000084611683565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612578908590600090869030904290600401612f9e565b600060405180830381600087803b15801561259257600080fd5b505af1158015611c18573d6000803e3d6000fd5b6125d1307f000000000000000000000000000000000000000000000000000000000000000084611683565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561265557600080fd5b505af1158015612669573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061268e919061300f565b5050505050565b6000806000806126a48561297a565b935093509350935060008060006126c5888787876126c0611c4c565b6129ec565b6001600160a01b038d1660009081526005602052604090205492955090935091506126f0908961296e565b6001600160a01b038b1660009081526005602090815260408083209390935560049052205461271f908461296e565b6001600160a01b03808c1660009081526004602052604080822093909355908b168152205461274e9083611c7b565b6001600160a01b038a1660009081526004602052604090205561277085612a4e565b61277984612a4e565b6127838187612ad7565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef896040516127c891815260200190565b60405180910390a350505050505050505050565b6000806000806127eb8561297a565b93509350935093506000806000612807888787876126c0611c4c565b6001600160a01b038d166000908152600460205260409020549295509093509150612832908461296e565b6001600160a01b03808c16600090815260046020908152604080832094909455918c168152600590915220546128689088611c7b565b6001600160a01b038a1660009081526005602090815260408083209390935560049052205461274e9083611c7b565b6000806000806128a68561297a565b935093509350935060008060006128c2888787876126c0611c4c565b6001600160a01b038d16600090815260046020526040902054929550909350915061271f908461296e565b6000806000806128fc8561297a565b93509350935093506000806000612918888787876126c0611c4c565b6001600160a01b038d166000908152600560205260409020549295509093509150612943908961296e565b6001600160a01b038b1660009081526005602090815260408083209390935560049052205461283290845b6000610c3d8284612e90565b600080600080600061298b86612afb565b9050600061299887612b1e565b905060006129a588612b41565b6129ae89612b64565b6129b89190612ed8565b905060006129d0836129ca8b8761296e565b9061296e565b90506129dc818361296e565b9993985091965094509092505050565b60008080806129fb8986611c87565b90506000612a098987611c87565b90506000612a178988611c87565b90506000612a258989611c87565b90506000612a39826129ca8581898961296e565b949d949c50929a509298505050505050505050565b6000612a58611c4c565b90506000612a668383611c87565b30600090815260046020526040902054909150612a839082611c7b565b3060009081526004602090815260408083209390935560089052205460ff1615612ad25730600090815260056020526040902054612ac19084611c7b565b306000908152600560205260409020555b505050565b600c54612ae4908361296e565b600c55600d54612af49082611c7b565b600d555050565b6011546000906111b3906064906115b2908590600160a01b900461ffff16611c87565b6011546000906111b3906064906115b2908590600160b01b900461ffff16611c87565b6011546000906111b3906064906115b2908590600160d01b900461ffff16611c87565b6011546000906111b3906064906115b2908590600160c01b900461ffff16611c87565b600060208083528351808285015260005b81811015612bb457858101830151858201604001528201612b98565b81811115612bc6576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114612bf157600080fd5b50565b60008060408385031215612c0757600080fd5b8235612c1281612bdc565b946020939093013593505050565b600060208284031215612c3257600080fd5b8135610c3d81612bdc565b600080600060608486031215612c5257600080fd5b8335612c5d81612bdc565b92506020840135612c6d81612bdc565b929592945050506040919091013590565b600060208284031215612c9057600080fd5b5035919050565b803561ffff81168114612ca957600080fd5b919050565b60008060008060808587031215612cc457600080fd5b612ccd85612c97565b9350612cdb60208601612c97565b9250612ce960408601612c97565b9150612cf760608601612c97565b905092959194509250565b600080600080600080600080610100898b031215612d1f57600080fd5b612d2889612c97565b9750612d3660208a01612c97565b9650612d4460408a01612c97565b9550612d5260608a01612c97565b9450612d6060808a01612c97565b9350612d6e60a08a01612c97565b9250612d7c60c08a01612c97565b9150612d8a60e08a01612c97565b90509295985092959890939650565b600060208284031215612dab57600080fd5b81358015158114610c3d57600080fd5b60008060408385031215612dce57600080fd5b8235612dd981612bdc565b91506020830135612de981612bdc565b809150509250929050565b600181811c90821680612e0857607f821691505b60208210811415612e2957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082821015612ea257612ea2612e7a565b500390565b634e487b7160e01b600052603160045260246000fd5b6000600019821415612ed157612ed1612e7a565b5060010190565b60008219821115612eeb57612eeb612e7a565b500190565b600082612f0d57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612f2c57612f2c612e7a565b500290565b600061ffff808316818516808303821115612f4e57612f4e612e7a565b01949350505050565b600061ffff80831681851681830481118215151615612f7857612f78612e7a565b02949350505050565b600060208284031215612f9357600080fd5b8151610c3d81612bdc565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612fee5784516001600160a01b031683529383019391830191600101612fc9565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561302457600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122066311934681b08d12cafff5b08bd1364dd895944b2026211dc8181253cfc325d64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102555760003560e01c80636fcd477b11610139578063a457c2d7116100b6578063d543dbeb1161007a578063d543dbeb1461079c578063d94160e0146107bc578063dd62ed3e146107f5578063ea2f0b371461083b578063f0f165af1461085b578063fcb7e0851461087b57600080fd5b8063a457c2d714610706578063a9059cbb14610726578063b030b34a14610746578063b3f22ce314610766578063c49b9a801461077c57600080fd5b80638da5cb5b116100fd5780638da5cb5b1461067d5780638dc644391461069b5780638f9a55c0146106bb57806391d919a9146106d157806395d89b41146106f157600080fd5b80636fcd477b146105d957806370a08231146105f9578063715018a6146106195780637d1db4a51461062e57806388f820201461064457600080fd5b8063313ce567116101d257806349bd5a5e1161019657806349bd5a5e146104eb5780634a74bb021461051f57806352390c02146105405780635342acb4146105605780635bcbe877146105995780635d098b38146105b957600080fd5b8063313ce567146104305780633685d419146104525780633950935114610472578063437823ec1461049257806347062402146104b257600080fd5b80631d7ef879116102195780631d7ef879146103495780631f53ac021461036957806323b872dd146103895780632b14ca56146103a95780632d8381191461041057600080fd5b806306fdde0314610261578063095ea7b31461028c5780630bd3a7f9146102bc5780631694505e146102de57806318160ddd1461032a57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061027661089b565b6040516102839190612b87565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004612bf4565b61092d565b6040519015158152602001610283565b3480156102c857600080fd5b506102dc6102d7366004612c20565b610943565b005b3480156102ea57600080fd5b506103127f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610283565b34801561033657600080fd5b50600b545b604051908152602001610283565b34801561035557600080fd5b506102dc610364366004612c20565b61099a565b34801561037557600080fd5b506102dc610384366004612c20565b610b0b565b34801561039557600080fd5b506102ac6103a4366004612c3d565b610b57565b3480156103b557600080fd5b506016546103e29061ffff80821691620100008104821691600160201b8204811691600160301b90041684565b6040805161ffff95861681529385166020850152918416918301919091529091166060820152608001610283565b34801561041c57600080fd5b5061033b61042b366004612c7e565b610bc0565b34801561043c57600080fd5b5060035460405160ff9091168152602001610283565b34801561045e57600080fd5b506102dc61046d366004612c20565b610c44565b34801561047e57600080fd5b506102ac61048d366004612bf4565b610dfb565b34801561049e57600080fd5b506102dc6104ad366004612c20565b610e31565b3480156104be57600080fd5b506015546103e29061ffff80821691620100008104821691600160201b8204811691600160301b90041684565b3480156104f757600080fd5b506103127f000000000000000000000000820f88e75ce5656b5839c78bde2a0f71e1bdcee181565b34801561052b57600080fd5b506011546102ac90600160e81b900460ff1681565b34801561054c57600080fd5b506102dc61055b366004612c20565b610e7f565b34801561056c57600080fd5b506102ac61057b366004612c20565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156105a557600080fd5b506102dc6105b4366004612cae565b610fd2565b3480156105c557600080fd5b506102dc6105d4366004612c20565b611056565b3480156105e557600080fd5b506102dc6105f4366004612d02565b6110a2565b34801561060557600080fd5b5061033b610614366004612c20565b611154565b34801561062557600080fd5b506102dc6111b9565b34801561063a57600080fd5b5061033b60125481565b34801561065057600080fd5b506102ac61065f366004612c20565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561068957600080fd5b506000546001600160a01b0316610312565b3480156106a757600080fd5b506102dc6106b6366004612cae565b61122d565b3480156106c757600080fd5b5061033b60145481565b3480156106dd57600080fd5b506102dc6106ec366004612c20565b6112b1565b3480156106fd57600080fd5b506102766112fc565b34801561071257600080fd5b506102ac610721366004612bf4565b61130b565b34801561073257600080fd5b506102ac610741366004612bf4565b61135a565b34801561075257600080fd5b506102dc610761366004612c20565b611367565b34801561077257600080fd5b5061033b60135481565b34801561078857600080fd5b506102dc610797366004612d99565b6114eb565b3480156107a857600080fd5b506102dc6107b7366004612c7e565b61156d565b3480156107c857600080fd5b506102ac6107d7366004612c20565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561080157600080fd5b5061033b610810366004612dbb565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b34801561084757600080fd5b506102dc610856366004612c20565b6115be565b34801561086757600080fd5b506102dc610876366004612c7e565b611609565b34801561088757600080fd5b506102dc610896366004612c7e565b611638565b6060600180546108aa90612df4565b80601f01602080910402602001604051908101604052809291908181526020018280546108d690612df4565b80156109235780601f106108f857610100808354040283529160200191610923565b820191906000526020600020905b81548152906001019060200180831161090657829003601f168201915b5050505050905090565b600061093a338484611683565b50600192915050565b6000546001600160a01b031633146109765760405162461bcd60e51b815260040161096d90612e2f565b60405180910390fd5b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b6000546001600160a01b031633146109c45760405162461bcd60e51b815260040161096d90612e2f565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610a3c5760405162461bcd60e51b815260206004820152602260248201527f57652063616e6e6f7420626c61636b6c69737420556e695377617020726f757460448201526132b960f11b606482015260840161096d565b6001600160a01b03811660009081526009602052604090205460ff1615610aa55760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015260640161096d565b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600e805491820181559091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319169091179055565b6000546001600160a01b03163314610b355760405162461bcd60e51b815260040161096d90612e2f565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b648484846117a7565b610bb68433610bb18560405180606001604052806028815260200161303e602891396001600160a01b038a1660009081526006602090815260408083203384529091529020549190611c20565b611683565b5060019392505050565b6000600c54821115610c275760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b606482015260840161096d565b6000610c31611c4c565b9050610c3d8382611c6f565b9392505050565b6000546001600160a01b03163314610c6e5760405162461bcd60e51b815260040161096d90612e2f565b6001600160a01b03811660009081526008602052604090205460ff16610cd65760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c75646564000000000000000000604482015260640161096d565b60005b600f54811015610df757816001600160a01b0316600f8281548110610d0057610d00612e64565b6000918252602090912001546001600160a01b03161415610de557600f8054610d2b90600190612e90565b81548110610d3b57610d3b612e64565b600091825260209091200154600f80546001600160a01b039092169183908110610d6757610d67612e64565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600890925220805460ff19169055600f805480610dbf57610dbf612ea7565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610def81612ebd565b915050610cd9565b5050565b3360008181526006602090815260408083206001600160a01b0387168452909152812054909161093a918590610bb19086611c7b565b6000546001600160a01b03163314610e5b5760405162461bcd60e51b815260040161096d90612e2f565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6000546001600160a01b03163314610ea95760405162461bcd60e51b815260040161096d90612e2f565b6001600160a01b03811660009081526008602052604090205460ff1615610f125760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161096d565b6001600160a01b03811660009081526004602052604090205415610f6c576001600160a01b038116600090815260046020526040902054610f5290610bc0565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600860205260408120805460ff19166001908117909155600f805491820181559091527f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319169091179055565b6000546001600160a01b03163314610ffc5760405162461bcd60e51b815260040161096d90612e2f565b6016805461ffff928316600160301b0261ffff60301b1995841662010000029590951667ffff0000ffff000019948416600160201b0265ffff0000ffff199092169390961692909217919091179190911692909217179055565b6000546001600160a01b031633146110805760405162461bcd60e51b815260040161096d90612e2f565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146110cc5760405162461bcd60e51b815260040161096d90612e2f565b6015805461ffff998a1665ffff0000ffff1991821617600160201b988b1689021767ffff0000ffff000019908116620100009a8c168b0261ffff60301b1990811691909117600160301b998d168a021790935560168054978c169790921696909617938a16909702929092179093169187169095029094169390931792909316909202179055565b6001600160a01b03811660009081526008602052604081205460ff161561119157506001600160a01b031660009081526005602052604090205490565b6001600160a01b0382166000908152600460205260409020546111b390610bc0565b92915050565b6000546001600160a01b031633146111e35760405162461bcd60e51b815260040161096d90612e2f565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146112575760405162461bcd60e51b815260040161096d90612e2f565b6015805461ffff928316600160301b0261ffff60301b1995841662010000029590951667ffff0000ffff000019948416600160201b0265ffff0000ffff199092169390961692909217919091179190911692909217179055565b6000546001600160a01b031633146112db5760405162461bcd60e51b815260040161096d90612e2f565b6001600160a01b03166000908152600a60205260409020805460ff19169055565b6060600280546108aa90612df4565b600061093a3384610bb185604051806060016040528060258152602001613066602591393360009081526006602090815260408083206001600160a01b038d1684529091529020549190611c20565b600061093a3384846117a7565b6000546001600160a01b031633146113915760405162461bcd60e51b815260040161096d90612e2f565b6001600160a01b03811660009081526009602052604090205460ff166113f95760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015260640161096d565b60005b600e54811015610df757816001600160a01b0316600e828154811061142357611423612e64565b6000918252602090912001546001600160a01b031614156114d957600e805461144e90600190612e90565b8154811061145e5761145e612e64565b600091825260209091200154600e80546001600160a01b03909216918390811061148a5761148a612e64565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600e805480610dbf57610dbf612ea7565b806114e381612ebd565b9150506113fc565b6000546001600160a01b031633146115155760405162461bcd60e51b815260040161096d90612e2f565b60118054821515600160e81b0260ff60e81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061156290831515815260200190565b60405180910390a150565b6000546001600160a01b031633146115975760405162461bcd60e51b815260040161096d90612e2f565b6115b86103e86115b283600b54611c8790919063ffffffff16565b90611c6f565b60125550565b6000546001600160a01b031633146115e85760405162461bcd60e51b815260040161096d90612e2f565b6001600160a01b03166000908152600760205260409020805460ff19169055565b6000546001600160a01b031633146116335760405162461bcd60e51b815260040161096d90612e2f565b601355565b6000546001600160a01b031633146116625760405162461bcd60e51b815260040161096d90612e2f565b61167d6103e86115b283600b54611c8790919063ffffffff16565b60145550565b6001600160a01b0383166116e55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161096d565b6001600160a01b0382166117465760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161096d565b6001600160a01b0383811660008181526006602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661180b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161096d565b6001600160a01b03821661186d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161096d565b600081116118cf5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161096d565b6001600160a01b03831660009081526009602052604090205460ff161561192e5760405162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015260640161096d565b3360009081526009602052604090205460ff161561197c5760405162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b604482015260640161096d565b3260009081526009602052604090205460ff16156119ca5760405162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b604482015260640161096d565b60006119d530611154565b905060125481106119e557506012545b60135481108015908190611a035750601154600160e01b900460ff16155b8015611a4157507f000000000000000000000000820f88e75ce5656b5839c78bde2a0f71e1bdcee16001600160a01b0316856001600160a01b031614155b8015611a565750601154600160e81b900460ff165b15611a69576013549150611a6982611c93565b6001600160a01b03851660009081526007602052604090205460019060ff1680611aab57506001600160a01b03851660009081526007602052604090205460ff165b15611ab4575060005b8015611c0c576001600160a01b0386166000908152600a602052604090205460ff16158015611afc57506001600160a01b0385166000908152600a602052604090205460ff16155b15611c0c57601254841115611b645760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b606482015260840161096d565b7f000000000000000000000000820f88e75ce5656b5839c78bde2a0f71e1bdcee16001600160a01b0316856001600160a01b031614611c0c57601454611ba986611154565b611bb39086612ed8565b1115611c0c5760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b606482015260840161096d565b611c1886868684611f77565b505050505050565b60008184841115611c445760405162461bcd60e51b815260040161096d9190612b87565b505050900390565b6000806000611c5961225d565b9092509050611c688282611c6f565b9250505090565b6000610c3d8284612ef0565b6000610c3d8284612ed8565b6000610c3d8284612f12565b6011805460ff60e01b1916600160e01b17905560165460155460009161ffff600160301b808304821693908104821692600160201b808204841693908304811692611ceb926201000090819004831692910416612f31565b611cf59190612f31565b611cff9190612f31565b611d099190612f31565b611d139190612f31565b611d1e906002612f57565b60165460155461ffff92831693506000928492611d4992620100009182900483169291900416612f31565b611d579061ffff1685612f12565b611d619190612ef0565b90506000611d6f8285612e90565b905047611d7b826123df565b6000611d878247612e90565b601654601554919250600091611daf9161ffff62010000918290048116929190910416612f31565b611dbd9061ffff1687612e90565b611dc79083612ef0565b601654601554919250600091611def9161ffff62010000918290048116929190910416612f31565b611dfd9061ffff1683612f12565b90508015611e0f57611e0f86826125a6565b601654601554600091611e349161ffff600160201b9283900481169290910416612f31565b61ffff16611e43846002612f12565b611e4d9190612f12565b6016546015549192506000914791611e779161ffff600160301b9283900481169290910416612f31565b61ffff16611e86866002612f12565b611e909190612f12565b11611ed657601654601554611eb89161ffff600160301b918290048116929190910416612f31565b61ffff16611ec7856002612f12565b611ed19190612f12565b611ed8565b475b90508115611f1c576010546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015611f1a573d6000803e3d6000fd5b505b8015611f5e576011546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611f5c573d6000803e3d6000fd5b505b50506011805460ff60e01b191690555050505050505050565b80156120ea57611f966011805467ffffffffffffffff60a01b19169055565b7f000000000000000000000000820f88e75ce5656b5839c78bde2a0f71e1bdcee16001600160a01b0316846001600160a01b03161415612040576015546011805463ffffffff60a01b191661ffff808416600160a01b0261ffff60b01b1916919091176201000084048216600160b01b021763ffffffff60c01b1916600160201b84048216600160c01b0261ffff60d01b191617600160301b90930416600160d01b029190911790555b7f000000000000000000000000820f88e75ce5656b5839c78bde2a0f71e1bdcee16001600160a01b0316836001600160a01b031614156120ea576016546011805463ffffffff60a01b191661ffff808416600160a01b0261ffff60b01b1916919091176201000084048216600160b01b021763ffffffff60c01b1916600160201b84048216600160c01b0261ffff60d01b191617600160301b90930416600160d01b029190911790555b6001600160a01b03841660009081526008602052604090205460ff16801561212b57506001600160a01b03831660009081526008602052604090205460ff16155b156121405761213b848484612695565b61223e565b6001600160a01b03841660009081526008602052604090205460ff1615801561218157506001600160a01b03831660009081526008602052604090205460ff165b156121915761213b8484846127dc565b6001600160a01b03841660009081526008602052604090205460ff161580156121d357506001600160a01b03831660009081526008602052604090205460ff16155b156121e35761213b848484612897565b6001600160a01b03841660009081526008602052604090205460ff16801561222357506001600160a01b03831660009081526008602052604090205460ff165b156122335761213b8484846128ed565b61223e848484612897565b6122576011805467ffffffffffffffff60a01b19169055565b50505050565b600c54600b546000918291825b600f548110156123af578260046000600f848154811061228c5761228c612e64565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806122f757508160056000600f84815481106122d0576122d0612e64565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561230d57600c54600b54945094505050509091565b61235360046000600f848154811061232757612327612e64565b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061296e565b925061239b60056000600f848154811061236f5761236f612e64565b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061296e565b9150806123a781612ebd565b91505061226a565b50600b54600c546123bf91611c6f565b8210156123d657600c54600b549350935050509091565b90939092509050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061241457612414612e64565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561248d57600080fd5b505afa1580156124a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124c59190612f81565b816001815181106124d8576124d8612e64565b60200260200101906001600160a01b031690816001600160a01b031681525050612523307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611683565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612578908590600090869030904290600401612f9e565b600060405180830381600087803b15801561259257600080fd5b505af1158015611c18573d6000803e3d6000fd5b6125d1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611683565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561265557600080fd5b505af1158015612669573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061268e919061300f565b5050505050565b6000806000806126a48561297a565b935093509350935060008060006126c5888787876126c0611c4c565b6129ec565b6001600160a01b038d1660009081526005602052604090205492955090935091506126f0908961296e565b6001600160a01b038b1660009081526005602090815260408083209390935560049052205461271f908461296e565b6001600160a01b03808c1660009081526004602052604080822093909355908b168152205461274e9083611c7b565b6001600160a01b038a1660009081526004602052604090205561277085612a4e565b61277984612a4e565b6127838187612ad7565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef896040516127c891815260200190565b60405180910390a350505050505050505050565b6000806000806127eb8561297a565b93509350935093506000806000612807888787876126c0611c4c565b6001600160a01b038d166000908152600460205260409020549295509093509150612832908461296e565b6001600160a01b03808c16600090815260046020908152604080832094909455918c168152600590915220546128689088611c7b565b6001600160a01b038a1660009081526005602090815260408083209390935560049052205461274e9083611c7b565b6000806000806128a68561297a565b935093509350935060008060006128c2888787876126c0611c4c565b6001600160a01b038d16600090815260046020526040902054929550909350915061271f908461296e565b6000806000806128fc8561297a565b93509350935093506000806000612918888787876126c0611c4c565b6001600160a01b038d166000908152600560205260409020549295509093509150612943908961296e565b6001600160a01b038b1660009081526005602090815260408083209390935560049052205461283290845b6000610c3d8284612e90565b600080600080600061298b86612afb565b9050600061299887612b1e565b905060006129a588612b41565b6129ae89612b64565b6129b89190612ed8565b905060006129d0836129ca8b8761296e565b9061296e565b90506129dc818361296e565b9993985091965094509092505050565b60008080806129fb8986611c87565b90506000612a098987611c87565b90506000612a178988611c87565b90506000612a258989611c87565b90506000612a39826129ca8581898961296e565b949d949c50929a509298505050505050505050565b6000612a58611c4c565b90506000612a668383611c87565b30600090815260046020526040902054909150612a839082611c7b565b3060009081526004602090815260408083209390935560089052205460ff1615612ad25730600090815260056020526040902054612ac19084611c7b565b306000908152600560205260409020555b505050565b600c54612ae4908361296e565b600c55600d54612af49082611c7b565b600d555050565b6011546000906111b3906064906115b2908590600160a01b900461ffff16611c87565b6011546000906111b3906064906115b2908590600160b01b900461ffff16611c87565b6011546000906111b3906064906115b2908590600160d01b900461ffff16611c87565b6011546000906111b3906064906115b2908590600160c01b900461ffff16611c87565b600060208083528351808285015260005b81811015612bb457858101830151858201604001528201612b98565b81811115612bc6576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114612bf157600080fd5b50565b60008060408385031215612c0757600080fd5b8235612c1281612bdc565b946020939093013593505050565b600060208284031215612c3257600080fd5b8135610c3d81612bdc565b600080600060608486031215612c5257600080fd5b8335612c5d81612bdc565b92506020840135612c6d81612bdc565b929592945050506040919091013590565b600060208284031215612c9057600080fd5b5035919050565b803561ffff81168114612ca957600080fd5b919050565b60008060008060808587031215612cc457600080fd5b612ccd85612c97565b9350612cdb60208601612c97565b9250612ce960408601612c97565b9150612cf760608601612c97565b905092959194509250565b600080600080600080600080610100898b031215612d1f57600080fd5b612d2889612c97565b9750612d3660208a01612c97565b9650612d4460408a01612c97565b9550612d5260608a01612c97565b9450612d6060808a01612c97565b9350612d6e60a08a01612c97565b9250612d7c60c08a01612c97565b9150612d8a60e08a01612c97565b90509295985092959890939650565b600060208284031215612dab57600080fd5b81358015158114610c3d57600080fd5b60008060408385031215612dce57600080fd5b8235612dd981612bdc565b91506020830135612de981612bdc565b809150509250929050565b600181811c90821680612e0857607f821691505b60208210811415612e2957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082821015612ea257612ea2612e7a565b500390565b634e487b7160e01b600052603160045260246000fd5b6000600019821415612ed157612ed1612e7a565b5060010190565b60008219821115612eeb57612eeb612e7a565b500190565b600082612f0d57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612f2c57612f2c612e7a565b500290565b600061ffff808316818516808303821115612f4e57612f4e612e7a565b01949350505050565b600061ffff80831681851681830481118215151615612f7857612f78612e7a565b02949350505050565b600060208284031215612f9357600080fd5b8151610c3d81612bdc565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612fee5784516001600160a01b031683529383019391830191600101612fc9565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561302457600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122066311934681b08d12cafff5b08bd1364dd895944b2026211dc8181253cfc325d64736f6c63430008090033

Deployed Bytecode Sourcemap

222:22553:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3760:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4672:161;;;;;;;;;;-1:-1:-1;4672:161:6;;;;;:::i;:::-;;:::i;:::-;;;1237:14:7;;1230:22;1212:41;;1200:2;1185:18;4672:161:6;1072:187:7;8268:115:6;;;;;;;;;;-1:-1:-1;8268:115:6;;;;;:::i;:::-;;:::i;:::-;;1487:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:7;;;1689:51;;1677:2;1662:18;1487:51:6;1516:230:7;4037:95:6;;;;;;;;;;-1:-1:-1;4117:7:6;;4037:95;;;1897:25:7;;;1885:2;1870:18;4037:95:6;1751:177:7;6308:348:6;;;;;;;;;;-1:-1:-1;6308:348:6;;;;;:::i;:::-;;:::i;6188:112::-;;;;;;;;;;-1:-1:-1;6188:112:6;;;;;:::i;:::-;;:::i;4841:313::-;;;;;;;;;;-1:-1:-1;4841:313:6;;;;;:::i;:::-;;:::i;2187:22::-;;;;;;;;;;-1:-1:-1;2187:22:6;;;;;;;;;;;;;;;-1:-1:-1;;;2187:22:6;;;;;-1:-1:-1;;;2187:22:6;;;;;;;;;2887:6:7;2920:15;;;2902:34;;2972:15;;;2967:2;2952:18;;2945:43;3024:15;;;3004:18;;;2997:43;;;;3076:15;;;3071:2;3056:18;;3049:43;2864:3;2849:19;2187:22:6;2654:444:7;5793:253:6;;;;;;;;;;-1:-1:-1;5793:253:6;;;;;:::i;:::-;;:::i;3946:83::-;;;;;;;;;;-1:-1:-1;4012:9:6;;3946:83;;4012:9;;;;3430:36:7;;3418:2;3403:18;3946:83:6;3288:184:7;7550:473:6;;;;;;;;;;-1:-1:-1;7550:473:6;;;;;:::i;:::-;;:::i;5162:218::-;;;;;;;;;;-1:-1:-1;5162:218:6;;;;;:::i;:::-;;:::i;8031:111::-;;;;;;;;;;-1:-1:-1;8031:111:6;;;;;:::i;:::-;;:::i;2160:20::-;;;;;;;;;;-1:-1:-1;2160:20:6;;;;;;;;;;;;;;;-1:-1:-1;;;2160:20:6;;;;;-1:-1:-1;;;2160:20:6;;;;;1545:38;;;;;;;;;;;;;;;1620:40;;;;;;;;;;-1:-1:-1;1620:40:6;;;;-1:-1:-1;;;1620:40:6;;;;;;7210:332;;;;;;;;;;-1:-1:-1;7210:332:6;;;;;:::i;:::-;;:::i;13933:124::-;;;;;;;;;;-1:-1:-1;13933:124:6;;;;;:::i;:::-;-1:-1:-1;;;;;14022:27:6;13998:4;14022:27;;;:18;:27;;;;;;;;;13933:124;8759:243;;;;;;;;;;-1:-1:-1;8759:243:6;;;;;:::i;:::-;;:::i;6056:124::-;;;;;;;;;;-1:-1:-1;6056:124:6;;;;;:::i;:::-;;:::i;9010:453::-;;;;;;;;;;-1:-1:-1;9010:453:6;;;;;:::i;:::-;;:::i;4140:198::-;;;;;;;;;;-1:-1:-1;4140:198:6;;;;;:::i;:::-;;:::i;1691:148:4:-;;;;;;;;;;;;;:::i;1669:49:6:-;;;;;;;;;;;;;;;;5665:120;;;;;;;;;;-1:-1:-1;5665:120:6;;;;;:::i;:::-;-1:-1:-1;;;;;5757:20:6;5733:4;5757:20;;;:11;:20;;;;;;;;;5665:120;1048:87:4;;;;;;;;;;-1:-1:-1;1094:7:4;1121:6;-1:-1:-1;;;;;1121:6:4;1048:87;;8513:238:6;;;;;;;;;;-1:-1:-1;8513:238:6;;;;;:::i;:::-;;:::i;1826:51::-;;;;;;;;;;;;;;;;8391:114;;;;;;;;;;-1:-1:-1;8391:114:6;;;;;:::i;:::-;;:::i;3851:87::-;;;;;;;;;;;;;:::i;5388:269::-;;;;;;;;;;-1:-1:-1;5388:269:6;;;;;:::i;:::-;;:::i;4346:167::-;;;;;;;;;;-1:-1:-1;4346:167:6;;;;;:::i;:::-;;:::i;6664:538::-;;;;;;;;;;-1:-1:-1;6664:538:6;;;;;:::i;:::-;;:::i;1753:66::-;;;;;;;;;;;;;;;;9920:171;;;;;;;;;;-1:-1:-1;9920:171:6;;;;;:::i;:::-;;:::i;9620:136::-;;;;;;;;;;-1:-1:-1;9620:136:6;;;;;:::i;:::-;;:::i;14065:128::-;;;;;;;;;;-1:-1:-1;14065:128:6;;;;;:::i;:::-;-1:-1:-1;;;;;14156:29:6;14132:4;14156:29;;;:20;:29;;;;;;;;;14065:128;4521:143;;;;;;;;;;-1:-1:-1;4521:143:6;;;;;:::i;:::-;-1:-1:-1;;;;;4629:18:6;;;4602:7;4629:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4521:143;8150:110;;;;;;;;;;-1:-1:-1;8150:110:6;;;;;:::i;:::-;;:::i;9471:141::-;;;;;;;;;;-1:-1:-1;9471:141:6;;;;;:::i;:::-;;:::i;9764:148::-;;;;;;;;;;-1:-1:-1;9764:148:6;;;;;:::i;:::-;;:::i;3760:83::-;3797:13;3830:5;3823:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3760:83;:::o;4672:161::-;4747:4;4764:39;679:10:1;4787:7:6;4796:6;4764:8;:39::i;:::-;-1:-1:-1;4821:4:6;4672:161;;;;:::o;8268:115::-;1094:7:4;1121:6;-1:-1:-1;;;;;1121:6:4;679:10:1;1266:23:4;1258:68;;;;-1:-1:-1;;;1258:68:4;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;8339:29:6::1;;::::0;;;:20:::1;:29;::::0;;;;:36;;-1:-1:-1;;8339:36:6::1;8371:4;8339:36;::::0;;8268:115::o;6308:348::-;1094:7:4;1121:6;-1:-1:-1;;;;;1121:6:4;679:10:1;1266:23:4;1258:68;;;;-1:-1:-1;;;1258:68:4;;;;;;;:::i;:::-;6401:42:6::1;-1:-1:-1::0;;;;;6390:53:6;::::1;;;6382:100;;;::::0;-1:-1:-1;;;6382:100:6;;6572:2:7;6382:100:6::1;::::0;::::1;6554:21:7::0;6611:2;6591:18;;;6584:30;6650:34;6630:18;;;6623:62;-1:-1:-1;;;6701:18:7;;;6694:32;6743:19;;6382:100:6::1;6370:398:7::0;6382:100:6::1;-1:-1:-1::0;;;;;6502:26:6;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;6501:27;6493:70;;;::::0;-1:-1:-1;;;6493:70:6;;6975:2:7;6493:70:6::1;::::0;::::1;6957:21:7::0;7014:2;6994:18;;;6987:30;7053:32;7033:18;;;7026:60;7103:18;;6493:70:6::1;6773:354:7::0;6493:70:6::1;-1:-1:-1::0;;;;;6574:26:6::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;6574:33:6::1;6603:4;6574:33:::0;;::::1;::::0;;;6618:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;6618:30:6::1;::::0;;::::1;::::0;;6308:348::o;6188:112::-;1094:7:4;1121:6;-1:-1:-1;;;;;1121:6:4;679:10:1;1266:23:4;1258:68;;;;-1:-1:-1;;;1258:68:4;;;;;;;:::i;:::-;6268:11:6::1;:24:::0;;-1:-1:-1;;;;;;6268:24:6::1;-1:-1:-1::0;;;;;6268:24:6;;;::::1;::::0;;;::::1;::::0;;6188:112::o;4841:313::-;4939:4;4956:36;4966:6;4974:9;4985:6;4956:9;:36::i;:::-;5003:121;5012:6;679:10:1;5034:89:6;5072:6;5034:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5034:19:6;;;;;;:11;:19;;;;;;;;679:10:1;5034:33:6;;;;;;;;;;:37;:89::i;:::-;5003:8;:121::i;:::-;-1:-1:-1;5142:4:6;4841:313;;;;;:::o;5793:253::-;5860:7;5899;;5888;:18;;5880:73;;;;-1:-1:-1;;;5880:73:6;;7334:2:7;5880:73:6;;;7316:21:7;7373:2;7353:18;;;7346:30;7412:34;7392:18;;;7385:62;-1:-1:-1;;;7463:18:7;;;7456:40;7513:19;;5880:73:6;7132:406:7;5880:73:6;5964:19;5986:10;:8;:10::i;:::-;5964:32;-1:-1:-1;6014:24:6;:7;5964:32;6014:11;:24::i;:::-;6007:31;5793:253;-1:-1:-1;;;5793:253:6:o;7550:473::-;1094:7:4;1121:6;-1:-1:-1;;;;;1121:6:4;679:10:1;1266:23:4;1258:68;;;;-1:-1:-1;;;1258:68:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;7630:20:6;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;7622:56;;;::::0;-1:-1:-1;;;7622:56:6;;7745:2:7;7622:56:6::1;::::0;::::1;7727:21:7::0;7784:2;7764:18;;;7757:30;7823:25;7803:18;;;7796:53;7866:18;;7622:56:6::1;7543:347:7::0;7622:56:6::1;7694:9;7689:327;7713:9;:16:::0;7709:20;::::1;7689:327;;;7771:7;-1:-1:-1::0;;;;;7755:23:6::1;:9;7765:1;7755:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;7755:12:6::1;:23;7751:254;;;7814:9;7824:16:::0;;:20:::1;::::0;7843:1:::1;::::0;7824:20:::1;:::i;:::-;7814:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;7799:9:::1;:12:::0;;-1:-1:-1;;;;;7814:31:6;;::::1;::::0;7809:1;;7799:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;7799:46:6::1;-1:-1:-1::0;;;;;7799:46:6;;::::1;;::::0;;7864:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;7903:11:::1;:20:::0;;;;:28;;-1:-1:-1;;7903:28:6::1;::::0;;7950:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;7950:15:6;;;;;-1:-1:-1;;;;;;7950:15:6::1;::::0;;;;;7689:327:::1;7550:473:::0;:::o;7751:254::-:1;7731:3:::0;::::1;::::0;::::1;:::i;:::-;;;;7689:327;;;;7550:473:::0;:::o;5162:218::-;679:10:1;5250:4:6;5299:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5299:34:6;;;;;;;;;;5250:4;;5267:83;;5290:7;;5299:50;;5338:10;5299:38;:50::i;8031:111::-;1094:7:4;1121:6;-1:-1:-1;;;;;1121:6:4;679:10:1;1266:23:4;1258:68;;;;-1:-1:-1;;;1258:68:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;8100:27:6::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;8100:34:6::1;8130:4;8100:34;::::0;;8031:111::o;7210:332::-;1094:7:4;1121:6;-1:-1:-1;;;;;1121:6:4;679:10:1;1266:23:4;1258:68;;;;-1:-1:-1;;;1258:68:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;7291:20:6;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;7290:21;7282:61;;;::::0;-1:-1:-1;;;7282:61:6;;8763:2:7;7282:61:6::1;::::0;::::1;8745:21:7::0;8802:2;8782:18;;;8775:30;8841:29;8821:18;;;8814:57;8888:18;;7282:61:6::1;8561:351:7::0;7282:61:6::1;-1:-1:-1::0;;;;;7358:16:6;::::1;7377:1;7358:16:::0;;;:7:::1;:16;::::0;;;;;:20;7354:109:::1;;-1:-1:-1::0;;;;;7434:16:6;::::1;;::::0;;;:7:::1;:16;::::0;;;;;7414:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;7395:16:6;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;7354:109:::1;-1:-1:-1::0;;;;;7473:20:6::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;7473:27:6::1;7496:4;7473:27:::0;;::::1;::::0;;;7511:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;7511:23:6::1;::::0;;::::1;::::0;;7210:332::o;8759:243::-;1094:7:4;1121:6;-1:-1:-1;;;;;1121:6:4;679:10:1;1266:23:4;1258:68;;;;-1:-1:-1;;;1258:68:4;;;;;;;:::i;:::-;8869:7:6::1;:17:::0;;::::1;8977::::0;;::::1;-1:-1:-1::0;;;8977:17:6::1;-1:-1:-1::0;;;;8937:29:6;;::::1;::::0;::::1;8977:17:::0;;;;-1:-1:-1;;8897:29:6;;::::1;-1:-1:-1::0;;;8897:29:6::1;-1:-1:-1::0;;8897:29:6;;;8869:17;;;::::1;8897:29:::0;;;;;;;::::1;8977:17:::0;;;;;;;;::::1;::::0;;8759:243::o;6056:124::-;1094:7:4;1121:6;-1:-1:-1;;;;;1121:6:4;679:10:1;1266:23:4;1258:68;;;;-1:-1:-1;;;1258:68:4;;;;;;;:::i;:::-;6142:17:6::1;:30:::0;;-1:-1:-1;;;;;;6142:30:6::1;-1:-1:-1::0;;;;;6142:30:6;;;::::1;::::0;;;::::1;::::0;;6056:124::o;9010:453::-;1094:7:4;1121:6;-1:-1:-1;;;;;1121:6:4;679:10:1;1266:23:4;1258:68;;;;-1:-1:-1;;;1258:68:4;;;;;;;:::i;:::-;9188:6:6::1;:17:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;9216:29:6;;;;-1:-1:-1;;;9216:29:6;;::::1;::::0;::::1;;-1:-1:-1::0;;9296:17:6;;;9256:29;;;::::1;::::0;::::1;-1:-1:-1::0;;;;9296:17:6;;;;;;;-1:-1:-1;;;9296:17:6;;::::1;::::0;::::1;;::::0;;;9326:7:::1;:18:::0;;;;::::1;9355:30:::0;;;;;;;;;;::::1;::::0;;::::1;::::0;;;::::1;9437:18:::0;;;9396:30;;::::1;::::0;;::::1;9437:18:::0;;;;;;;;;;::::1;::::0;;::::1;;::::0;;9010:453::o;4140:198::-;-1:-1:-1;;;;;4230:20:6;;4206:7;4230:20;;;:11;:20;;;;;;;;4226:49;;;-1:-1:-1;;;;;;4259:16:6;;;;;:7;:16;;;;;;;4140:198::o;4226:49::-;-1:-1:-1;;;;;4313:16:6;;;;;;:7;:16;;;;;;4293:37;;:19;:37::i;:::-;4286:44;4140:198;-1:-1:-1;;4140:198:6:o;1691:148:4:-;1094:7;1121:6;-1:-1:-1;;;;;1121:6:4;679:10:1;1266:23:4;1258:68;;;;-1:-1:-1;;;1258:68:4;;;;;;;:::i;:::-;1798:1:::1;1782:6:::0;;1761:40:::1;::::0;-1:-1:-1;;;;;1782:6:4;;::::1;::::0;1761:40:::1;::::0;1798:1;;1761:40:::1;1829:1;1812:19:::0;;-1:-1:-1;;;;;;1812:19:4::1;::::0;;1691:148::o;8513:238:6:-;1094:7:4;1121:6;-1:-1:-1;;;;;1121:6:4;679:10:1;1266:23:4;1258:68;;;;-1:-1:-1;;;1258:68:4;;;;;;;:::i;:::-;8622:6:6::1;:16:::0;;::::1;8727::::0;;::::1;-1:-1:-1::0;;;8727:16:6::1;-1:-1:-1::0;;;;8688:28:6;;::::1;::::0;::::1;8727:16:::0;;;;-1:-1:-1;;8649:28:6;;::::1;-1:-1:-1::0;;;8649:28:6::1;-1:-1:-1::0;;8649:28:6;;;8622:16;;;::::1;8649:28:::0;;;;;;;::::1;8727:16:::0;;;;;;;;::::1;::::0;;8513:238::o;8391:114::-;1094:7:4;1121:6;-1:-1:-1;;;;;1121:6:4;679:10:1;1266:23:4;1258:68;;;;-1:-1:-1;;;1258:68:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;8460:29:6::1;8492:5;8460:29:::0;;;:20:::1;:29;::::0;;;;:37;;-1:-1:-1;;8460:37:6::1;::::0;;8391:114::o;3851:87::-;3890:13;3923:7;3916:14;;;;;:::i;5388:269::-;5481:4;5498:129;679:10:1;5521:7:6;5530:96;5569:15;5530:96;;;;;;;;;;;;;;;;;679:10:1;5530:25:6;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5530:34:6;;;;;;;;;;;;:38;:96::i;4346:167::-;4424:4;4441:42;679:10:1;4465:9:6;4476:6;4441:9;:42::i;6664:538::-;1094:7:4;1121:6;-1:-1:-1;;;;;1121:6:4;679:10:1;1266:23:4;1258:68;;;;-1:-1:-1;;;1258:68:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;6751:26:6;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;6743:65;;;::::0;-1:-1:-1;;;6743:65:6;;9119:2:7;6743:65:6::1;::::0;::::1;9101:21:7::0;9158:2;9138:18;;;9131:30;9197:28;9177:18;;;9170:56;9243:18;;6743:65:6::1;8917:350:7::0;6743:65:6::1;6824:9;6819:376;6843:16;:23:::0;6839:27;::::1;6819:376;;;6915:7;-1:-1:-1::0;;;;;6892:30:6::1;:16;6909:1;6892:19;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;6892:19:6::1;:30;6888:296;;;6965:16;7004:23:::0;;:27:::1;::::0;7030:1:::1;::::0;7004:27:::1;:::i;:::-;6965:85;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;6943:16:::1;:19:::0;;-1:-1:-1;;;;;6965:85:6;;::::1;::::0;6960:1;;6943:19;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:107:::0;;-1:-1:-1;;;;;;6943:107:6::1;-1:-1:-1::0;;;;;6943:107:6;;::::1;;::::0;;7069:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;7069:34:6::1;::::0;;7122:16:::1;:22:::0;;;::::1;;;;:::i;6888:296::-;6868:3:::0;::::1;::::0;::::1;:::i;:::-;;;;6819:376;;9920:171:::0;1094:7:4;1121:6;-1:-1:-1;;;;;1121:6:4;679:10:1;1266:23:4;1258:68;;;;-1:-1:-1;;;1258:68:4;;;;;;;:::i;:::-;9997:21:6::1;:32:::0;;;::::1;;-1:-1:-1::0;;;9997:32:6::1;-1:-1:-1::0;;;;9997:32:6;;::::1;;::::0;;10045:38:::1;::::0;::::1;::::0;::::1;::::0;10021:8;1237:14:7;1230:22;1212:41;;1200:2;1185:18;;1072:187;10045:38:6::1;;;;;;;;9920:171:::0;:::o;9620:136::-;1094:7:4;1121:6;-1:-1:-1;;;;;1121:6:4;679:10:1;1266:23:4;1258:68;;;;-1:-1:-1;;;1258:68:4;;;;;;;:::i;:::-;9712:36:6::1;9742:5;9712:25;9724:12;9712:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:36::i;:::-;9697:12;:51:::0;-1:-1:-1;9620:136:6:o;8150:110::-;1094:7:4;1121:6;-1:-1:-1;;;;;1121:6:4;679:10:1;1266:23:4;1258:68;;;;-1:-1:-1;;;1258:68:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;8217:27:6::1;8247:5;8217:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;8217:35:6::1;::::0;;8150:110::o;9471:141::-;1094:7:4;1121:6;-1:-1:-1;;;;;1121:6:4;679:10:1;1266:23:4;1258:68;;;;-1:-1:-1;;;1258:68:4;;;;;;;:::i;:::-;9562:30:6::1;:42:::0;9471:141::o;9764:148::-;1094:7:4;1121:6;-1:-1:-1;;;;;1121:6:4;679:10:1;1266:23:4;1258:68;;;;-1:-1:-1;;;1258:68:4;;;;;;;:::i;:::-;9867:37:6::1;9898:5;9867:26;9879:13;9867:7;;:11;;:26;;;;:::i;:37::-;9850:14;:54:::0;-1:-1:-1;9764:148:6:o;14201:337::-;-1:-1:-1;;;;;14294:19:6;;14286:68;;;;-1:-1:-1;;;14286:68:6;;9474:2:7;14286:68:6;;;9456:21:7;9513:2;9493:18;;;9486:30;9552:34;9532:18;;;9525:62;-1:-1:-1;;;9603:18:7;;;9596:34;9647:19;;14286:68:6;9272:400:7;14286:68:6;-1:-1:-1;;;;;14373:21:6;;14365:68;;;;-1:-1:-1;;;14365:68:6;;9879:2:7;14365:68:6;;;9861:21:7;9918:2;9898:18;;;9891:30;9957:34;9937:18;;;9930:62;-1:-1:-1;;;10008:18:7;;;10001:32;10050:19;;14365:68:6;9677:398:7;14365:68:6;-1:-1:-1;;;;;14446:18:6;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14498:32;;1897:25:7;;;14498:32:6;;1870:18:7;14498:32:6;;;;;;;14201:337;;;:::o;14546:1972::-;-1:-1:-1;;;;;14634:18:6;;14626:68;;;;-1:-1:-1;;;14626:68:6;;10282:2:7;14626:68:6;;;10264:21:7;10321:2;10301:18;;;10294:30;10360:34;10340:18;;;10333:62;-1:-1:-1;;;10411:18:7;;;10404:35;10456:19;;14626:68:6;10080:401:7;14626:68:6;-1:-1:-1;;;;;14713:16:6;;14705:64;;;;-1:-1:-1;;;14705:64:6;;10688:2:7;14705:64:6;;;10670:21:7;10727:2;10707:18;;;10700:30;10766:34;10746:18;;;10739:62;-1:-1:-1;;;10817:18:7;;;10810:33;10860:19;;14705:64:6;10486:399:7;14705:64:6;14797:1;14788:6;:10;14780:64;;;;-1:-1:-1;;;14780:64:6;;11092:2:7;14780:64:6;;;11074:21:7;11131:2;11111:18;;;11104:30;11170:34;11150:18;;;11143:62;-1:-1:-1;;;11221:18:7;;;11214:39;11270:19;;14780:64:6;10890:405:7;14780:64:6;-1:-1:-1;;;;;14864:23:6;;;;;;:17;:23;;;;;;;;14863:24;14855:56;;;;-1:-1:-1;;;14855:56:6;;11502:2:7;14855:56:6;;;11484:21:7;11541:2;11521:18;;;11514:30;-1:-1:-1;;;11560:18:7;;;11553:49;11619:18;;14855:56:6;11300:343:7;14855:56:6;14949:10;14931:29;;;;:17;:29;;;;;;;;14930:30;14922:54;;;;-1:-1:-1;;;14922:54:6;;11850:2:7;14922:54:6;;;11832:21:7;11889:2;11869:18;;;11862:30;-1:-1:-1;;;11908:18:7;;;11901:41;11959:18;;14922:54:6;11648:335:7;14922:54:6;15014:9;14996:28;;;;:17;:28;;;;;;;;14995:29;14987:53;;;;-1:-1:-1;;;14987:53:6;;11850:2:7;14987:53:6;;;11832:21:7;11889:2;11869:18;;;11862:30;-1:-1:-1;;;11908:18:7;;;11901:41;11959:18;;14987:53:6;11648:335:7;14987:53:6;15335:28;15366:24;15384:4;15366:9;:24::i;:::-;15335:55;;15431:12;;15407:20;:36;15403:104;;-1:-1:-1;15483:12:6;;15403:104;15570:30;;15546:54;;;;;;;15631:53;;-1:-1:-1;15668:16:6;;-1:-1:-1;;;15668:16:6;;;;15667:17;15631:53;:91;;;;;15709:13;-1:-1:-1;;;;;15701:21:6;:4;-1:-1:-1;;;;;15701:21:6;;;15631:91;:129;;;;-1:-1:-1;15739:21:6;;-1:-1:-1;;;15739:21:6;;;;15631:129;15613:306;;;15810:30;;15787:53;;15855:36;15870:20;15855:14;:36::i;:::-;-1:-1:-1;;;;;15967:24:6;;15931:12;15967:24;;;:18;:24;;;;;;15946:4;;15967:24;;;:50;;-1:-1:-1;;;;;;15995:22:6;;;;;;:18;:22;;;;;;;;15967:50;15963:98;;;-1:-1:-1;16044:5:6;15963:98;16077:7;16073:384;;;-1:-1:-1;;;;;16106:26:6;;;;;;:20;:26;;;;;;;;16105:27;:56;;;;-1:-1:-1;;;;;;16137:24:6;;;;;;:20;:24;;;;;;;;16136:25;16105:56;16101:345;;;16200:12;;16190:6;:22;;16182:75;;;;-1:-1:-1;;;16182:75:6;;12190:2:7;16182:75:6;;;12172:21:7;12229:2;12209:18;;;12202:30;12268:34;12248:18;;;12241:62;-1:-1:-1;;;12319:18:7;;;12312:38;12367:19;;16182:75:6;11988:404:7;16182:75:6;16286:13;-1:-1:-1;;;;;16280:19:6;:2;-1:-1:-1;;;;;16280:19:6;;16276:155;;16358:14;;16341:13;16351:2;16341:9;:13::i;:::-;16332:22;;:6;:22;:::i;:::-;:40;;16324:87;;;;-1:-1:-1;;;16324:87:6;;12732:2:7;16324:87:6;;;12714:21:7;12771:2;12751:18;;;12744:30;12810:34;12790:18;;;12783:62;-1:-1:-1;;;12861:18:7;;;12854:32;12903:19;;16324:87:6;12530:398:7;16324:87:6;16469:41;16484:4;16490:2;16494:6;16502:7;16469:14;:41::i;:::-;14615:1903;;;14546:1972;;;:::o;4961:206:5:-;5047:7;5108:12;5100:6;;;;5092:29;;;;-1:-1:-1;;;5092:29:5;;;;;;;;:::i;:::-;-1:-1:-1;;;5143:5:5;;;4961:206::o;11377:164:6:-;11419:7;11440:15;11457;11476:19;:17;:19::i;:::-;11439:56;;-1:-1:-1;11439:56:6;-1:-1:-1;11513:20:6;11439:56;;11513:11;:20::i;:::-;11506:27;;;;11377:164;:::o;3842:98:5:-;3900:7;3927:5;3931:1;3927;:5;:::i;2732:98::-;2790:7;2817:5;2821:1;2817;:5;:::i;3452:98::-;3510:7;3537:5;3541:1;3537;:5;:::i;16526:1369:6:-;2614:16;:23;;-1:-1:-1;;;;2614:23:6;-1:-1:-1;;;2614:23:6;;;16762:7:::1;:11:::0;16749:6:::1;:10:::0;2614:23;;16762:11:::1;-1:-1:-1::0;;;16762:11:6;;::::1;::::0;::::1;::::0;16749:10;;::::1;::::0;::::1;::::0;-1:-1:-1;;;16729:17:6;;::::1;::::0;::::1;::::0;16710:16;;::::1;::::0;::::1;::::0;16671:36:::1;::::0;16690:17;;;;::::1;::::0;::::1;::::0;16671:16;::::1;;:36;:::i;:::-;:55;;;;:::i;:::-;:75;;;;:::i;:::-;:88;;;;:::i;:::-;:102;;;;:::i;:::-;16670:108;::::0;16777:1:::1;16670:108;:::i;:::-;16854:7;:17:::0;16835:6:::1;:16:::0;16648:130:::1;::::0;;::::1;::::0;-1:-1:-1;16789:32:6::1;::::0;16648:130;;16835:36:::1;::::0;16854:17;;;;::::1;::::0;::::1;::::0;16835:16;;::::1;;:36;:::i;:::-;16825:47;::::0;::::1;;:6:::0;:47:::1;:::i;:::-;16824:63;;;;:::i;:::-;16789:98:::0;-1:-1:-1;16898:14:6::1;16915:33;16789:98:::0;16915:6;:33:::1;:::i;:::-;16898:50:::0;-1:-1:-1;16984:21:6::1;17018:24;16898:50:::0;17018:16:::1;:24::i;:::-;17055:20;17078:38;17102:14:::0;17078:21:::1;:38;:::i;:::-;17199:7;:17:::0;17180:6:::1;:16:::0;17055:61;;-1:-1:-1;17127:19:6::1;::::0;17180:36:::1;::::0;17199:17:::1;::::0;;;;::::1;::::0;::::1;::::0;17180:16;;;::::1;;:36;:::i;:::-;17165:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;17149:69;::::0;:12;:69:::1;:::i;:::-;17295:7;:17:::0;17276:6:::1;:16:::0;17127:91;;-1:-1:-1;17229:29:6::1;::::0;17276:36:::1;::::0;17295:17:::1;::::0;;;;::::1;::::0;::::1;::::0;17276:16;;;::::1;;:36;:::i;:::-;17261:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;17229:84:::0;-1:-1:-1;17330:25:6;;17326:119:::1;;17372:61;17385:24;17411:21;17372:12;:61::i;:::-;17518:7;:17:::0;17499:6:::1;:16:::0;17457:20:::1;::::0;17499:36:::1;::::0;17518:17:::1;-1:-1:-1::0;;;17518:17:6;;;::::1;::::0;::::1;::::0;17499:16;;::::1;;:36;:::i;:::-;17480:56;;:15;:11:::0;17494:1:::1;17480:15;:::i;:::-;:56;;;;:::i;:::-;17596:7;:11:::0;17583:6:::1;:10:::0;17457:79;;-1:-1:-1;17547:14:6::1;::::0;17611:21:::1;::::0;17583:24:::1;::::0;17596:11:::1;-1:-1:-1::0;;;17596:11:6;;;::::1;::::0;::::1;::::0;17583:10;;::::1;;:24;:::i;:::-;17564:44;;:15;:11:::0;17578:1:::1;17564:15;:::i;:::-;:44;;;;:::i;:::-;:68;:139;;17691:7;:11:::0;17678:6:::1;:10:::0;:24:::1;::::0;17691:11:::1;-1:-1:-1::0;;;17691:11:6;;;::::1;::::0;::::1;::::0;17678:10;;;::::1;;:24;:::i;:::-;17659:44;;:15;:11:::0;17673:1:::1;17659:15;:::i;:::-;:44;;;;:::i;:::-;17564:139;;;17635:21;17564:139;17547:156:::0;-1:-1:-1;17720:16:6;;17716:89:::1;;17753:17;::::0;:40:::1;::::0;-1:-1:-1;;;;;17753:17:6;;::::1;::::0;:40;::::1;;;::::0;17780:12;;17753:17:::1;:40:::0;:17;:40;17780:12;17753:17;:40;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;17716:89;17821:10:::0;;17817:71:::1;;17848:11;::::0;:28:::1;::::0;-1:-1:-1;;;;;17848:11:6;;::::1;::::0;:28;::::1;;;::::0;17869:6;;17848:11:::1;:28:::0;:11;:28;17869:6;17848:11;:28;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;17817:71;-1:-1:-1::0;;2660:16:6;:24;;-1:-1:-1;;;;2660:24:6;;;-1:-1:-1;;;;;;;;16526:1369:6:o;18961:979::-;19073:7;19069:230;;;19097:14;13443:7;:11;;-1:-1:-1;;;;13521:11:6;;;13400:140;19097:14;19140:13;-1:-1:-1;;;;;19130:23:6;:6;-1:-1:-1;;;;;19130:23:6;;19126:72;;;13595:6;:10;13585:7;:20;;-1:-1:-1;;;;13616:32:6;13595:10;;;;-1:-1:-1;;;13585:20:6;-1:-1:-1;;;;13616:32:6;;;;;13632:16;;;;;-1:-1:-1;;;13616:32:6;;-1:-1:-1;;;;13702:20:6;-1:-1:-1;;;13675:16:6;;;;-1:-1:-1;;;13659:32:6;-1:-1:-1;;;;13702:20:6;;-1:-1:-1;;;13712:10:6;;;;-1:-1:-1;;;13702:20:6;;;;;;;19174:8;19229:13;-1:-1:-1;;;;;19216:26:6;:9;-1:-1:-1;;;;;19216:26:6;;19212:76;;;13786:7;:11;13776:7;:21;;-1:-1:-1;;;;13808:33:6;13786:11;;;;-1:-1:-1;;;13776:21:6;-1:-1:-1;;;;13808:33:6;;;;;13824:17;;;;;-1:-1:-1;;;13808:33:6;;-1:-1:-1;;;;13896:21:6;-1:-1:-1;;;13868:17:6;;;;-1:-1:-1;;;13852:33:6;-1:-1:-1;;;;13896:21:6;;-1:-1:-1;;;13906:11:6;;;;-1:-1:-1;;;13896:21:6;;;;;;;19263:9;-1:-1:-1;;;;;19315:19:6;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;19339:22:6;;;;;;:11;:22;;;;;;;;19338:23;19315:46;19311:597;;;19378:48;19400:6;19408:9;19419:6;19378:21;:48::i;:::-;19311:597;;;-1:-1:-1;;;;;19449:19:6;;;;;;:11;:19;;;;;;;;19448:20;:46;;;;-1:-1:-1;;;;;;19472:22:6;;;;;;:11;:22;;;;;;;;19448:46;19444:464;;;19511:46;19531:6;19539:9;19550:6;19511:19;:46::i;19444:464::-;-1:-1:-1;;;;;19580:19:6;;;;;;:11;:19;;;;;;;;19579:20;:47;;;;-1:-1:-1;;;;;;19604:22:6;;;;;;:11;:22;;;;;;;;19603:23;19579:47;19575:333;;;19643:44;19661:6;19669:9;19680:6;19643:17;:44::i;19575:333::-;-1:-1:-1;;;;;19709:19:6;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;19732:22:6;;;;;;:11;:22;;;;;;;;19709:45;19705:203;;;19771:48;19793:6;19801:9;19812:6;19771:21;:48::i;19705:203::-;19852:44;19870:6;19878:9;19889:6;19852:17;:44::i;:::-;19918:14;13443:7;:11;;-1:-1:-1;;;;13521:11:6;;;13400:140;19918:14;18961:979;;;;:::o;11549:556::-;11647:7;;11683;;11600;;;;;11701:289;11725:9;:16;11721:20;;11701:289;;;11791:7;11767;:21;11775:9;11785:1;11775:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;11775:12:6;11767:21;;;;;;;;;;;;;:31;;:66;;;11826:7;11802;:21;11810:9;11820:1;11810:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;11810:12:6;11802:21;;;;;;;;;;;;;:31;11767:66;11763:97;;;11843:7;;11852;;11835:25;;;;;;;11549:556;;:::o;11763:97::-;11885:34;11897:7;:21;11905:9;11915:1;11905:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;11905:12:6;11897:21;;;;;;;;;;;;;11885:7;;:11;:34::i;:::-;11875:44;;11944:34;11956:7;:21;11964:9;11974:1;11964:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;11964:12:6;11956:21;;;;;;;;;;;;;11944:7;;:11;:34::i;:::-;11934:44;-1:-1:-1;11743:3:6;;;;:::i;:::-;;;;11701:289;;;-1:-1:-1;12026:7:6;;12014;;:20;;:11;:20::i;:::-;12004:7;:30;12000:61;;;12044:7;;12053;;12036:25;;;;;;11549:556;;:::o;12000:61::-;12080:7;;12089;;-1:-1:-1;11549:556:6;-1:-1:-1;11549:556:6:o;17903:590::-;18053:16;;;18067:1;18053:16;;;;;;;;18029:21;;18053:16;;;;;;;;;;-1:-1:-1;18053:16:6;18029:40;;18098:4;18080;18085:1;18080:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;18080:23:6;;;-1:-1:-1;;;;;18080:23:6;;;;;18124:15;-1:-1:-1;;;;;18124:20:6;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18114:4;18119:1;18114:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;18114:32:6;;;-1:-1:-1;;;;;18114:32:6;;;;;18160:62;18177:4;18192:15;18210:11;18160:8;:62::i;:::-;18261:224;;-1:-1:-1;;;18261:224:6;;-1:-1:-1;;;;;18261:15:6;:66;;;;:224;;18342:11;;18368:1;;18412:4;;18439;;18459:15;;18261:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18501:452;18582:62;18599:4;18614:15;18632:11;18582:8;:62::i;:::-;18687:258;;-1:-1:-1;;;18687:258:6;;18759:4;18687:258;;;15534:34:7;;;15584:18;;;15577:34;;;18805:1:6;15627:18:7;;;15620:34;;;15670:18;;;15663:34;15713:19;;;15706:44;18919:15:6;15766:19:7;;;15759:35;18687:15:6;-1:-1:-1;;;;;18687:31:6;;;;18726:9;;15468:19:7;;18687:258:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;18501:452;;:::o;21301:692::-;21404:23;21429:12;21443:18;21463:15;21482:20;21494:7;21482:11;:20::i;:::-;21403:99;;;;;;;;21514:15;21531:23;21556:12;21572:59;21584:7;21593:4;21599:10;21611:7;21620:10;:8;:10::i;:::-;21572:11;:59::i;:::-;-1:-1:-1;;;;;21662:15:6;;;;;;:7;:15;;;;;;21513:118;;-1:-1:-1;21513:118:6;;-1:-1:-1;21513:118:6;-1:-1:-1;21662:28:6;;21682:7;21662:19;:28::i;:::-;-1:-1:-1;;;;;21644:15:6;;;;;;:7;:15;;;;;;;;:46;;;;21719:7;:15;;;;:28;;21739:7;21719:19;:28::i;:::-;-1:-1:-1;;;;;21701:15:6;;;;;;;:7;:15;;;;;;:46;;;;21779:18;;;;;;;:39;;21802:15;21779:22;:39::i;:::-;-1:-1:-1;;;;;21758:18:6;;;;;;:7;:18;;;;;:60;21829:26;21844:10;21829:14;:26::i;:::-;21866:23;21881:7;21866:14;:23::i;:::-;21900;21912:4;21918;21900:11;:23::i;:::-;21958:9;-1:-1:-1;;;;;21941:44:6;21950:6;-1:-1:-1;;;;;21941:44:6;;21969:15;21941:44;;;;1897:25:7;;1885:2;1870:18;;1751:177;21941:44:6;;;;;;;;21392:601;;;;;;;21301:692;;;:::o;20589:704::-;20690:23;20715:12;20729:18;20749:15;20768:20;20780:7;20768:11;:20::i;:::-;20689:99;;;;;;;;20800:15;20817:23;20842:12;20858:59;20870:7;20879:4;20885:10;20897:7;20906:10;:8;:10::i;20858:59::-;-1:-1:-1;;;;;20948:15:6;;;;;;:7;:15;;;;;;20799:118;;-1:-1:-1;20799:118:6;;-1:-1:-1;20799:118:6;-1:-1:-1;20948:28:6;;20799:118;20948:19;:28::i;:::-;-1:-1:-1;;;;;20930:15:6;;;;;;;:7;:15;;;;;;;;:46;;;;21008:18;;;;;:7;:18;;;;;:39;;21031:15;21008:22;:39::i;:::-;-1:-1:-1;;;;;20987:18:6;;;;;;:7;:18;;;;;;;;:60;;;;21079:7;:18;;;;:39;;21102:15;21079:22;:39::i;19948:631::-;20047:23;20072:12;20086:18;20106:15;20125:20;20137:7;20125:11;:20::i;:::-;20046:99;;;;;;;;20157:15;20174:23;20199:12;20215:59;20227:7;20236:4;20242:10;20254:7;20263:10;:8;:10::i;20215:59::-;-1:-1:-1;;;;;20305:15:6;;;;;;:7;:15;;;;;;20156:118;;-1:-1:-1;20156:118:6;;-1:-1:-1;20156:118:6;-1:-1:-1;20305:28:6;;20156:118;20305:19;:28::i;22001:771::-;22104:23;22129:12;22143:18;22163:15;22182:20;22194:7;22182:11;:20::i;:::-;22103:99;;;;;;;;22214:15;22231:23;22256:12;22272:59;22284:7;22293:4;22299:10;22311:7;22320:10;:8;:10::i;22272:59::-;-1:-1:-1;;;;;22362:15:6;;;;;;:7;:15;;;;;;22213:118;;-1:-1:-1;22213:118:6;;-1:-1:-1;22213:118:6;-1:-1:-1;22362:28:6;;22382:7;22362:19;:28::i;:::-;-1:-1:-1;;;;;22344:15:6;;;;;;:7;:15;;;;;;;;:46;;;;22419:7;:15;;;;:28;;22439:7;3104:98:5;3162:7;3189:5;3193:1;3189;:5;:::i;10348:501:6:-;10408:7;10417;10426;10435;10455:12;10470:24;10486:7;10470:15;:24::i;:::-;10455:39;;10505:18;10526:30;10548:7;10526:21;:30::i;:::-;10505:51;;10567:15;10618:24;10634:7;10618:15;:24::i;:::-;10585:30;10607:7;10585:21;:30::i;:::-;:57;;;;:::i;:::-;10567:75;-1:-1:-1;10653:23:6;10679:33;10701:10;10679:17;:7;10691:4;10679:11;:17::i;:::-;:21;;:33::i;:::-;10653:59;-1:-1:-1;10741:28:6;10653:59;10761:7;10741:19;:28::i;:::-;10723:46;10815:4;;-1:-1:-1;10821:10:6;;-1:-1:-1;10821:10:6;-1:-1:-1;10348:501:6;;-1:-1:-1;;;10348:501:6:o;10857:512::-;10989:7;;;;11045:24;:7;11057:11;11045;:24::i;:::-;11027:42;-1:-1:-1;11080:12:6;11095:21;:4;11104:11;11095:8;:21::i;:::-;11080:36;-1:-1:-1;11127:18:6;11148:27;:10;11163:11;11148:14;:27::i;:::-;11127:48;-1:-1:-1;11186:15:6;11204:24;:7;11216:11;11204;:24::i;:::-;11186:42;-1:-1:-1;11239:23:6;11265:46;11186:42;11265:33;11287:10;11265:33;:7;11277:4;11265:11;:17::i;:46::-;11330:7;;;;-1:-1:-1;11356:4:6;;-1:-1:-1;10857:512:6;;-1:-1:-1;;;;;;;;;10857:512:6:o;12113:355::-;12176:19;12198:10;:8;:10::i;:::-;12176:32;-1:-1:-1;12219:18:6;12240:27;:10;12176:32;12240:14;:27::i;:::-;12319:4;12303:22;;;;:7;:22;;;;;;12219:48;;-1:-1:-1;12303:38:6;;12219:48;12303:26;:38::i;:::-;12294:4;12278:22;;;;:7;:22;;;;;;;;:63;;;;12356:11;:26;;;;;;12352:108;;;12438:4;12422:22;;;;:7;:22;;;;;;:38;;12449:10;12422:26;:38::i;:::-;12413:4;12397:22;;;;:7;:22;;;;;:63;12352:108;12165:303;;12113:355;:::o;10193:147::-;10271:7;;:17;;10283:4;10271:11;:17::i;:::-;10261:7;:27;10312:10;;:20;;10327:4;10312:14;:20::i;:::-;10299:10;:33;-1:-1:-1;;10193:147:6:o;12824:130::-;12927:7;;12888;;12915:31;;12940:5;;12915:20;;:7;;-1:-1:-1;;;12927:7:6;;;;12915:11;:20::i;12962:142::-;13071:13;;13032:7;;13059:37;;13090:5;;13059:26;;:7;;-1:-1:-1;;;13071:13:6;;;;13059:11;:26::i;13262:130::-;13365:7;;13326;;13353:31;;13378:5;;13353:20;;:7;;-1:-1:-1;;;13365:7:6;;;;13353:11;:20::i;13112:142::-;13221:13;;13182:7;;13209:37;;13240:5;;13209:26;;:7;;-1:-1:-1;;;13221:13:6;;;;13209:11;:26::i;14:597:7:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:7;574:15;-1:-1:-1;;570:29:7;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:7:o;616:131::-;-1:-1:-1;;;;;691:31:7;;681:42;;671:70;;737:1;734;727:12;671:70;616:131;:::o;752:315::-;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:7:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;2193:456::-;2270:6;2278;2286;2339:2;2327:9;2318:7;2314:23;2310:32;2307:52;;;2355:1;2352;2345:12;2307:52;2394:9;2381:23;2413:31;2438:5;2413:31;:::i;:::-;2463:5;-1:-1:-1;2520:2:7;2505:18;;2492:32;2533:33;2492:32;2533:33;:::i;:::-;2193:456;;2585:7;;-1:-1:-1;;;2639:2:7;2624:18;;;;2611:32;;2193:456::o;3103:180::-;3162:6;3215:2;3203:9;3194:7;3190:23;3186:32;3183:52;;;3231:1;3228;3221:12;3183:52;-1:-1:-1;3254:23:7;;3103:180;-1:-1:-1;3103:180:7:o;3685:159::-;3752:20;;3812:6;3801:18;;3791:29;;3781:57;;3834:1;3831;3824:12;3781:57;3685:159;;;:::o;3849:401::-;3931:6;3939;3947;3955;4008:3;3996:9;3987:7;3983:23;3979:33;3976:53;;;4025:1;4022;4015:12;3976:53;4048:28;4066:9;4048:28;:::i;:::-;4038:38;;4095:37;4128:2;4117:9;4113:18;4095:37;:::i;:::-;4085:47;;4151:37;4184:2;4173:9;4169:18;4151:37;:::i;:::-;4141:47;;4207:37;4240:2;4229:9;4225:18;4207:37;:::i;:::-;4197:47;;3849:401;;;;;;;:::o;4255:693::-;4369:6;4377;4385;4393;4401;4409;4417;4425;4478:3;4466:9;4457:7;4453:23;4449:33;4446:53;;;4495:1;4492;4485:12;4446:53;4518:28;4536:9;4518:28;:::i;:::-;4508:38;;4565:37;4598:2;4587:9;4583:18;4565:37;:::i;:::-;4555:47;;4621:37;4654:2;4643:9;4639:18;4621:37;:::i;:::-;4611:47;;4677:37;4710:2;4699:9;4695:18;4677:37;:::i;:::-;4667:47;;4733:38;4766:3;4755:9;4751:19;4733:38;:::i;:::-;4723:48;;4790:38;4823:3;4812:9;4808:19;4790:38;:::i;:::-;4780:48;;4847:38;4880:3;4869:9;4865:19;4847:38;:::i;:::-;4837:48;;4904:38;4937:3;4926:9;4922:19;4904:38;:::i;:::-;4894:48;;4255:693;;;;;;;;;;;:::o;4953:273::-;5009:6;5062:2;5050:9;5041:7;5037:23;5033:32;5030:52;;;5078:1;5075;5068:12;5030:52;5117:9;5104:23;5170:5;5163:13;5156:21;5149:5;5146:32;5136:60;;5192:1;5189;5182:12;5231:388;5299:6;5307;5360:2;5348:9;5339:7;5335:23;5331:32;5328:52;;;5376:1;5373;5366:12;5328:52;5415:9;5402:23;5434:31;5459:5;5434:31;:::i;:::-;5484:5;-1:-1:-1;5541:2:7;5526:18;;5513:32;5554:33;5513:32;5554:33;:::i;:::-;5606:7;5596:17;;;5231:388;;;;;:::o;5624:380::-;5703:1;5699:12;;;;5746;;;5767:61;;5821:4;5813:6;5809:17;5799:27;;5767:61;5874:2;5866:6;5863:14;5843:18;5840:38;5837:161;;;5920:10;5915:3;5911:20;5908:1;5901:31;5955:4;5952:1;5945:15;5983:4;5980:1;5973:15;5837:161;;5624:380;;;:::o;6009:356::-;6211:2;6193:21;;;6230:18;;;6223:30;6289:34;6284:2;6269:18;;6262:62;6356:2;6341:18;;6009:356::o;7895:127::-;7956:10;7951:3;7947:20;7944:1;7937:31;7987:4;7984:1;7977:15;8011:4;8008:1;8001:15;8027:127;8088:10;8083:3;8079:20;8076:1;8069:31;8119:4;8116:1;8109:15;8143:4;8140:1;8133:15;8159:125;8199:4;8227:1;8224;8221:8;8218:34;;;8232:18;;:::i;:::-;-1:-1:-1;8269:9:7;;8159:125::o;8289:127::-;8350:10;8345:3;8341:20;8338:1;8331:31;8381:4;8378:1;8371:15;8405:4;8402:1;8395:15;8421:135;8460:3;-1:-1:-1;;8481:17:7;;8478:43;;;8501:18;;:::i;:::-;-1:-1:-1;8548:1:7;8537:13;;8421:135::o;12397:128::-;12437:3;12468:1;12464:6;12461:1;12458:13;12455:39;;;12474:18;;:::i;:::-;-1:-1:-1;12510:9:7;;12397:128::o;12933:217::-;12973:1;12999;12989:132;;13043:10;13038:3;13034:20;13031:1;13024:31;13078:4;13075:1;13068:15;13106:4;13103:1;13096:15;12989:132;-1:-1:-1;13135:9:7;;12933:217::o;13155:168::-;13195:7;13261:1;13257;13253:6;13249:14;13246:1;13243:21;13238:1;13231:9;13224:17;13220:45;13217:71;;;13268:18;;:::i;:::-;-1:-1:-1;13308:9:7;;13155:168::o;13328:224::-;13367:3;13395:6;13428:2;13425:1;13421:10;13458:2;13455:1;13451:10;13489:3;13485:2;13481:12;13476:3;13473:21;13470:47;;;13497:18;;:::i;:::-;13533:13;;13328:224;-1:-1:-1;;;;13328:224:7:o;13557:258::-;13596:7;13628:6;13661:2;13658:1;13654:10;13691:2;13688:1;13684:10;13747:3;13743:2;13739:12;13734:3;13731:21;13724:3;13717:11;13710:19;13706:47;13703:73;;;13756:18;;:::i;:::-;13796:13;;13557:258;-1:-1:-1;;;;13557:258:7:o;13952:251::-;14022:6;14075:2;14063:9;14054:7;14050:23;14046:32;14043:52;;;14091:1;14088;14081:12;14043:52;14123:9;14117:16;14142:31;14167:5;14142:31;:::i;14208:980::-;14470:4;14518:3;14507:9;14503:19;14549:6;14538:9;14531:25;14575:2;14613:6;14608:2;14597:9;14593:18;14586:34;14656:3;14651:2;14640:9;14636:18;14629:31;14680:6;14715;14709:13;14746:6;14738;14731:22;14784:3;14773:9;14769:19;14762:26;;14823:2;14815:6;14811:15;14797:29;;14844:1;14854:195;14868:6;14865:1;14862:13;14854:195;;;14933:13;;-1:-1:-1;;;;;14929:39:7;14917:52;;15024:15;;;;14989:12;;;;14965:1;14883:9;14854:195;;;-1:-1:-1;;;;;;;15105:32:7;;;;15100:2;15085:18;;15078:60;-1:-1:-1;;;15169:3:7;15154:19;15147:35;15066:3;14208:980;-1:-1:-1;;;14208:980:7:o;15805:306::-;15893:6;15901;15909;15962:2;15950:9;15941:7;15937:23;15933:32;15930:52;;;15978:1;15975;15968:12;15930:52;16007:9;16001:16;15991:26;;16057:2;16046:9;16042:18;16036:25;16026:35;;16101:2;16090:9;16086:18;16080:25;16070:35;;15805:306;;;;;:::o

Swarm Source

ipfs://66311934681b08d12cafff5b08bd1364dd895944b2026211dc8181253cfc325d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.