ETH Price: $3,360.02 (-1.66%)
Gas: 7 Gwei

Token

Cutt Token (CUTT)
 

Overview

Max Total Supply

1,000,000,000,000,000 CUTT

Holders

66

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
5,953,568,417.584495397 CUTT

Value
$0.00
0xab4787b17BfB2004C4B074Ea64871dfA238bd50c
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:
CuttToken

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 3 of 17: CuttToken.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Address.sol";
import "./ISwapRouter.sol";
import "./INonfungiblePositionManager.sol";

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

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

    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) private _isExcluded;
    mapping(address => bool) private _isExcludedFromMaxTxAmount;

    address[] private _excluded;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000000000 * 10**6 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "Cutt Token";
    string private _symbol = "CUTT";
    uint8 private _decimals = 9;

    uint256 public _taxFee = 5;
    uint256 private _previousTaxFee = _taxFee;

    uint256 public _liquidityFee = 5;
    uint256 private _previousLiquidityFee = _liquidityFee;

    uint256 public _liquidityPercent = 20;
    uint256 public _cuttiesPercent = 10;
    uint256 public _nftStakingPercent = 15;
    uint256 public _v3StakingPercent = 25;
    uint256 public _smartFarmingPercent = 25;
    uint256 public _treasuryPercent = 5;

    address public _liquidityAddress;
    address public _cuttiesAddress;
    address public _nftStakingAddress;
    address public _v3StakingAddress;
    address public _smartFarmingAddress;
    address public _treasuryAddress;

    bool public _liquidityLocked = false;
    bool public _cuttiesLocked = false;
    bool public _nftStakingLocked = false;
    bool public _v3StakingLocked = false;
    bool public _smartFarmingLocked = false;
    bool public _treasuryLocked = false;

    ISwapRouter public swapRouter;
    INonfungiblePositionManager public nonfungiblePositionManager;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    uint256 public _maxTxAmount = 5000000 * 10**6 * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 500000 * 10**6 * 10**9;

    uint24 private _uniswapV3Fee = 500;
    int24 private _tickLower = -887270;
    int24 private _tickUpper = 887270;

    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

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

    constructor() {
        swapRouter = ISwapRouter(0xE592427A0AEce92De3Edee1F18E0157C05861564);
        nonfungiblePositionManager = INonfungiblePositionManager(
            0xC36442b4a4522E871399CD717aBDD847Ab11FE88
        );

        //exclude owner and this contract from fee
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromMaxTxAmount[address(this)] = true;

        _setExcludedAll(0xE592427A0AEce92De3Edee1F18E0157C05861564);
        _setExcludedAll(0xC36442b4a4522E871399CD717aBDD847Ab11FE88);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    function setSwapParam(
        uint24 fee,
        int24 tickLower,
        int24 tickUpper
    ) public onlyOwner {
        _uniswapV3Fee = fee;
        _tickLower = tickLower;
        _tickUpper = tickUpper;
    }

    function setTreasuryAddress(address treasuryAddress) public onlyOwner {
        _treasuryAddress = treasuryAddress;
        _setExcludedAll(_cuttiesAddress);
    }

    function setLiquidityAddress(address liquidityAddress) public onlyOwner {
        _liquidityAddress = liquidityAddress;
        _setExcludedAll(_cuttiesAddress);
    }

    function setNFTStakingAddress(address nftStakingAddress) public onlyOwner {
        _nftStakingAddress = nftStakingAddress;
        _setExcludedAll(_nftStakingAddress);
    }

    function setV3StakingAddress(address v3StakingAddress) public onlyOwner {
        _v3StakingAddress = v3StakingAddress;
        _setExcludedAll(_v3StakingAddress);
    }

    function setSmartFarmingAddress(address farmingAddress) public onlyOwner {
        _smartFarmingAddress = farmingAddress;
        _setExcludedAll(_smartFarmingAddress);
    }

    function setPoolAddress(address poolAddress) external {
        require(_msgSender() == _liquidityAddress);
        _setExcludedAll(poolAddress);
    }

    function setCuttiesAddress(address cuttiesAddress) public onlyOwner {
        _cuttiesAddress = cuttiesAddress;
        _setExcludedAll(_cuttiesAddress);
    }

    function _setExcludedAll(address settingAddress) private {
        _isExcludedFromFee[settingAddress] = true;
        _isExcluded[settingAddress] = true;
        _isExcludedFromMaxTxAmount[settingAddress] = true;
    }

    function mintTreasuryToken() external {
        require(_msgSender() == _treasuryAddress);
        require(!_treasuryLocked);

        _mint(_treasuryAddress, _treasuryPercent);
        _treasuryLocked = true;
    }

    function mintLiquidityToken() external {
        require(_msgSender() == _liquidityAddress);
        require(!_liquidityLocked);

        _mint(_liquidityAddress, _liquidityPercent);
        _liquidityLocked = true;
    }

    function mintNFTStakingToken() external {
        require(_msgSender() == _nftStakingAddress);
        require(!_nftStakingLocked);

        _mint(_nftStakingAddress, _nftStakingPercent);
        _nftStakingLocked = true;
    }

    function mintV3StakingToken() external {
        require(_msgSender() == _v3StakingAddress);
        require(!_v3StakingLocked);

        _mint(_v3StakingAddress, _v3StakingPercent);
        _v3StakingLocked = true;
    }

    function mintSmartFarmingToken() external {
        require(_msgSender() == _smartFarmingAddress);
        require(!_smartFarmingLocked);

        _mint(_smartFarmingAddress, _smartFarmingPercent);
        _smartFarmingLocked = true;
    }

    function mintCuttiesToken() external {
        require(_msgSender() == _cuttiesAddress);
        require(!_cuttiesLocked);

        _mint(_cuttiesAddress, _cuttiesPercent);
        _cuttiesLocked = true;
    }

    function _mint(address to, uint256 percent) private {
        uint256 tAmount = _tTotal.div(10**2).mul(percent);
        uint256 rAmount = _rTotal.div(10**2).mul(percent);

        _tOwned[to] = _tOwned[to].add(tAmount);
        _rOwned[to] = _rOwned[to].add(rAmount);
        emit Transfer(address(0), to, tAmount);
    }

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

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

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

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

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

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

    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

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

    function excludeFromMaxTxAmount(address account) public onlyOwner {
        _isExcludedFromMaxTxAmount[account] = true;
    }

    function includeInMaxTxAmount(address account) public onlyOwner {
        _isExcludedFromMaxTxAmount[account] = false;
    }

    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        _taxFee = taxFee;
    }

    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }

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

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

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

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

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

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

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

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

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

    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate = _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if (_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }

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

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

    function removeAllFee() private {
        if (_taxFee == 0 && _liquidityFee == 0) return;

        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;

        _taxFee = 0;
        _liquidityFee = 0;
    }

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
    }

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

    function isExcludedFromMaxTxAmount(address account)
        public
        view
        returns (bool)
    {
        return _isExcludedFromMaxTxAmount[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");
        if (
            !_isExcludedFromMaxTxAmount[from] && !_isExcludedFromMaxTxAmount[to]
        )
            require(
                amount <= _maxTxAmount,
                "Transfer amount exceeds the maxTxAmount."
            );

        uint256 contractTokenBalance = balanceOf(address(this));

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

        bool overMinTokenBalance =
            contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != address(swapRouter) &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;

            swapAndLiquify(contractTokenBalance);
        }

        bool takeFee = true;

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

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

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);

        uint256 initialBalance =
            IERC20(nonfungiblePositionManager.WETH9()).balanceOf(address(this));

        swapTokensForEth(half);

        uint256 newBalance =
            IERC20(nonfungiblePositionManager.WETH9())
                .balanceOf(address(this))
                .sub(initialBalance);

        addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        ISwapRouter.ExactInputSingleParams memory data =
            ISwapRouter.ExactInputSingleParams(
                address(this),
                nonfungiblePositionManager.WETH9(),
                500,
                address(this),
                (uint256)(block.timestamp).add(1000),
                tokenAmount,
                0,
                0
            );

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

        swapRouter.exactInputSingle(data);
    }

    function getTokens() private view returns (address token0, address token1) {
        token0 = (nonfungiblePositionManager.WETH9() < address(this))
            ? nonfungiblePositionManager.WETH9()
            : address(this);
        token1 = (nonfungiblePositionManager.WETH9() > address(this))
            ? nonfungiblePositionManager.WETH9()
            : address(this);
    }

    function getTokenBalances(uint256 tokenAmount, uint256 ethAmount)
        private
        view
        returns (uint256 balance0, uint256 balance1)
    {
        balance0 = (nonfungiblePositionManager.WETH9() < address(this))
            ? ethAmount
            : tokenAmount;
        balance1 = (nonfungiblePositionManager.WETH9() > address(this))
            ? ethAmount
            : tokenAmount;
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        (address token0, address token1) = getTokens();
        (uint256 balance0, uint256 balance1) =
            getTokenBalances(tokenAmount, ethAmount);

        _approve(
            address(this),
            address(nonfungiblePositionManager),
            tokenAmount
        );
        IERC20(nonfungiblePositionManager.WETH9()).approve(
            address(nonfungiblePositionManager),
            ethAmount
        );

        INonfungiblePositionManager.MintParams memory data =
            INonfungiblePositionManager.MintParams(
                token0,
                token1,
                _uniswapV3Fee,
                _tickLower,
                _tickUpper,
                balance0,
                balance1,
                0,
                0,
                _cuttiesAddress,
                (uint256)(block.timestamp).add(1000)
            );

        nonfungiblePositionManager.mint(data);
    }

    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        if (!takeFee) removeAllFee();

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

        if (!takeFee) restoreAllFee();
    }

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

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

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

    function burn(uint256 amount) public returns (bool) {
        uint256 tAmount = amount;
        if (_isExcluded[_msgSender()]) {
            if (tAmount >= _tOwned[_msgSender()]) {
                tAmount = _tOwned[_msgSender()];
            }

            uint256 rAmount = tAmount.mul(_getRate());
            _tOwned[_msgSender()] = _tOwned[_msgSender()].sub(tAmount);
            _rOwned[_msgSender()] = _rOwned[_msgSender()].sub(rAmount);
            _tTotal = _tTotal.sub(tAmount);
            _rTotal = _rTotal.sub(rAmount);
        } else {
            uint256 rAmount = tAmount.mul(_getRate());
            if (rAmount >= _rOwned[_msgSender()]) {
                rAmount = _rOwned[_msgSender()];
            }
            _rOwned[_msgSender()] = _rOwned[_msgSender()].sub(rAmount);
            _tTotal = _tTotal.sub(tAmount);
            _rTotal = _rTotal.sub(rAmount);
        }
        return true;
    }
}

File 1 of 17: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @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);
        require(isContract(target));

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) =
            target.call{value: value}(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 17: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 4 of 17: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 6 of 17: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
      * - `from` cannot be the zero address.
      * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}

File 7 of 17: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 8 of 17: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 9 of 17: IERC721Permit.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/// @title ERC721 with permit
/// @notice Extension to ERC721 that includes a permit function for signature based approvals
interface IERC721Permit is IERC721 {
    /// @notice The permit typehash used in the permit signature
    /// @return The typehash for the permit
    function PERMIT_TYPEHASH() external pure returns (bytes32);

    /// @notice The domain separator used in the permit signature
    /// @return The domain seperator used in encoding of permit signature
    function DOMAIN_SEPARATOR() external view returns (bytes32);

    /// @notice Approve of a specific token ID for spending by spender via signature
    /// @param spender The account that is being approved
    /// @param tokenId The ID of the token that is being approved for spending
    /// @param deadline The deadline timestamp by which the call must be mined for the approve to work
    /// @param v Must produce valid secp256k1 signature from the holder along with `r` and `s`
    /// @param r Must produce valid secp256k1 signature from the holder along with `v` and `s`
    /// @param s Must produce valid secp256k1 signature from the holder along with `r` and `v`
    function permit(
        address spender,
        uint256 tokenId,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external payable;
}

File 10 of 17: INonfungiblePositionManager.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import './IERC721Metadata.sol';
import './IERC721Enumerable.sol';

import './IPoolInitializer.sol';
import './IERC721Permit.sol';
import './IPeripheryPayments.sol';
import './IPeripheryImmutableState.sol';
// import './PoolAddress.sol';

/// @title Non-fungible token for positions
/// @notice Wraps Uniswap V3 positions in a non-fungible token interface which allows for them to be transferred
/// and authorized.
interface INonfungiblePositionManager is
    IPoolInitializer,
    IPeripheryPayments,
    IPeripheryImmutableState,
    IERC721Metadata,
    IERC721Enumerable,
    IERC721Permit
{
    /// @notice Emitted when liquidity is increased for a position NFT
    /// @dev Also emitted when a token is minted
    /// @param tokenId The ID of the token for which liquidity was increased
    /// @param liquidity The amount by which liquidity for the NFT position was increased
    /// @param amount0 The amount of token0 that was paid for the increase in liquidity
    /// @param amount1 The amount of token1 that was paid for the increase in liquidity
    event IncreaseLiquidity(uint256 indexed tokenId, uint128 liquidity, uint256 amount0, uint256 amount1);
    /// @notice Emitted when liquidity is decreased for a position NFT
    /// @param tokenId The ID of the token for which liquidity was decreased
    /// @param liquidity The amount by which liquidity for the NFT position was decreased
    /// @param amount0 The amount of token0 that was accounted for the decrease in liquidity
    /// @param amount1 The amount of token1 that was accounted for the decrease in liquidity
    event DecreaseLiquidity(uint256 indexed tokenId, uint128 liquidity, uint256 amount0, uint256 amount1);
    /// @notice Emitted when tokens are collected for a position NFT
    /// @dev The amounts reported may not be exactly equivalent to the amounts transferred, due to rounding behavior
    /// @param tokenId The ID of the token for which underlying tokens were collected
    /// @param recipient The address of the account that received the collected tokens
    /// @param amount0 The amount of token0 owed to the position that was collected
    /// @param amount1 The amount of token1 owed to the position that was collected
    event Collect(uint256 indexed tokenId, address recipient, uint256 amount0, uint256 amount1);

    /// @notice Returns the position information associated with a given token ID.
    /// @dev Throws if the token ID is not valid.
    /// @param tokenId The ID of the token that represents the position
    /// @return nonce The nonce for permits
    /// @return operator The address that is approved for spending
    /// @return token0 The address of the token0 for a specific pool
    /// @return token1 The address of the token1 for a specific pool
    /// @return fee The fee associated with the pool
    /// @return tickLower The lower end of the tick range for the position
    /// @return tickUpper The higher end of the tick range for the position
    /// @return liquidity The liquidity of the position
    /// @return feeGrowthInside0LastX128 The fee growth of token0 as of the last action on the individual position
    /// @return feeGrowthInside1LastX128 The fee growth of token1 as of the last action on the individual position
    /// @return tokensOwed0 The uncollected amount of token0 owed to the position as of the last computation
    /// @return tokensOwed1 The uncollected amount of token1 owed to the position as of the last computation
    function positions(uint256 tokenId)
        external
        view
        returns (
            uint96 nonce,
            address operator,
            address token0,
            address token1,
            uint24 fee,
            int24 tickLower,
            int24 tickUpper,
            uint128 liquidity,
            uint256 feeGrowthInside0LastX128,
            uint256 feeGrowthInside1LastX128,
            uint128 tokensOwed0,
            uint128 tokensOwed1
        );

    struct MintParams {
        address token0;
        address token1;
        uint24 fee;
        int24 tickLower;
        int24 tickUpper;
        uint256 amount0Desired;
        uint256 amount1Desired;
        uint256 amount0Min;
        uint256 amount1Min;
        address recipient;
        uint256 deadline;
    }

    /// @notice Creates a new position wrapped in a NFT
    /// @dev Call this when the pool does exist and is initialized. Note that if the pool is created but not initialized
    /// a method does not exist, i.e. the pool is assumed to be initialized.
    /// @param params The params necessary to mint a position, encoded as `MintParams` in calldata
    /// @return tokenId The ID of the token that represents the minted position
    /// @return liquidity The amount of liquidity for this position
    /// @return amount0 The amount of token0
    /// @return amount1 The amount of token1
    function mint(MintParams calldata params)
        external
        payable
        returns (
            uint256 tokenId,
            uint128 liquidity,
            uint256 amount0,
            uint256 amount1
        );

    struct IncreaseLiquidityParams {
        uint256 tokenId;
        uint256 amount0Desired;
        uint256 amount1Desired;
        uint256 amount0Min;
        uint256 amount1Min;
        uint256 deadline;
    }

    /// @notice Increases the amount of liquidity in a position, with tokens paid by the `msg.sender`
    /// @param params tokenId The ID of the token for which liquidity is being increased,
    /// amount0Desired The desired amount of token0 to be spent,
    /// amount1Desired The desired amount of token1 to be spent,
    /// amount0Min The minimum amount of token0 to spend, which serves as a slippage check,
    /// amount1Min The minimum amount of token1 to spend, which serves as a slippage check,
    /// deadline The time by which the transaction must be included to effect the change
    /// @return liquidity The new liquidity amount as a result of the increase
    /// @return amount0 The amount of token0 to acheive resulting liquidity
    /// @return amount1 The amount of token1 to acheive resulting liquidity
    function increaseLiquidity(IncreaseLiquidityParams calldata params)
        external
        payable
        returns (
            uint128 liquidity,
            uint256 amount0,
            uint256 amount1
        );

    struct DecreaseLiquidityParams {
        uint256 tokenId;
        uint128 liquidity;
        uint256 amount0Min;
        uint256 amount1Min;
        uint256 deadline;
    }

    /// @notice Decreases the amount of liquidity in a position and accounts it to the position
    /// @param params tokenId The ID of the token for which liquidity is being decreased,
    /// amount The amount by which liquidity will be decreased,
    /// amount0Min The minimum amount of token0 that should be accounted for the burned liquidity,
    /// amount1Min The minimum amount of token1 that should be accounted for the burned liquidity,
    /// deadline The time by which the transaction must be included to effect the change
    /// @return amount0 The amount of token0 accounted to the position's tokens owed
    /// @return amount1 The amount of token1 accounted to the position's tokens owed
    function decreaseLiquidity(DecreaseLiquidityParams calldata params)
        external
        payable
        returns (uint256 amount0, uint256 amount1);

    struct CollectParams {
        uint256 tokenId;
        address recipient;
        uint128 amount0Max;
        uint128 amount1Max;
    }

    /// @notice Collects up to a maximum amount of fees owed to a specific position to the recipient
    /// @param params tokenId The ID of the NFT for which tokens are being collected,
    /// recipient The account that should receive the tokens,
    /// amount0Max The maximum amount of token0 to collect,
    /// amount1Max The maximum amount of token1 to collect
    /// @return amount0 The amount of fees collected in token0
    /// @return amount1 The amount of fees collected in token1
    function collect(CollectParams calldata params) external payable returns (uint256 amount0, uint256 amount1);

    /// @notice Burns a token ID, which deletes it from the NFT contract. The token must have 0 liquidity and all tokens
    /// must be collected first.
    /// @param tokenId The ID of the token that is being burned
    function burn(uint256 tokenId) external payable;
}

File 11 of 17: IPeripheryImmutableState.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/// @title Immutable state
/// @notice Functions that return immutable state of the router
interface IPeripheryImmutableState {
    /// @return Returns the address of the Uniswap V3 factory
    function factory() external view returns (address);

    /// @return Returns the address of WETH9
    function WETH9() external view returns (address);
}

File 12 of 17: IPeripheryPayments.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/// @title Periphery Payments
/// @notice Functions to ease deposits and withdrawals of ETH
interface IPeripheryPayments {
    /// @notice Unwraps the contract's WETH9 balance and sends it to recipient as ETH.
    /// @dev The amountMinimum parameter prevents malicious contracts from stealing WETH9 from users.
    /// @param amountMinimum The minimum amount of WETH9 to unwrap
    /// @param recipient The address receiving ETH
    function unwrapWETH9(uint256 amountMinimum, address recipient) external payable;

    /// @notice Refunds any ETH balance held by this contract to the `msg.sender`
    /// @dev Useful for bundling with mint or increase liquidity that uses ether, or exact output swaps
    /// that use ether for the input amount
    function refundETH() external payable;

    /// @notice Transfers the full amount of a token held by this contract to recipient
    /// @dev The amountMinimum parameter prevents malicious contracts from stealing the token from users
    /// @param token The contract address of the token which will be transferred to `recipient`
    /// @param amountMinimum The minimum amount of token required for a transfer
    /// @param recipient The destination address of the token
    function sweepToken(
        address token,
        uint256 amountMinimum,
        address recipient
    ) external payable;
}

File 13 of 17: IPoolInitializer.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/// @title Creates and initializes V3 Pools
/// @notice Provides a method for creating and initializing a pool, if necessary, for bundling with other methods that
/// require the pool to exist.
interface IPoolInitializer {
    /// @notice Creates a new pool if it does not exist, then initializes if not initialized
    /// @dev This method can be bundled with others via IMulticall for the first action (e.g. mint) performed against a pool
    /// @param token0 The contract address of token0 of the pool
    /// @param token1 The contract address of token1 of the pool
    /// @param fee The fee amount of the v3 pool for the specified token pair
    /// @param sqrtPriceX96 The initial square root price of the pool as a Q64.96 value
    /// @return pool Returns the pool address based on the pair of tokens and fee, will return the newly created pool address if necessary
    function createAndInitializePoolIfNecessary(
        address token0,
        address token1,
        uint24 fee,
        uint160 sqrtPriceX96
    ) external payable returns (address pool);
}

File 14 of 17: ISwapRouter.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IUniswapV3SwapCallback.sol";

/// @title Router token swapping functionality
/// @notice Functions for swapping tokens via Uniswap V3
interface ISwapRouter is IUniswapV3SwapCallback {
    struct ExactInputSingleParams {
        address tokenIn;
        address tokenOut;
        uint24 fee;
        address recipient;
        uint256 deadline;
        uint256 amountIn;
        uint256 amountOutMinimum;
        uint160 sqrtPriceLimitX96;
    }

    /// @notice Swaps `amountIn` of one token for as much as possible of another token
    /// @param params The parameters necessary for the swap, encoded as `ExactInputSingleParams` in calldata
    /// @return amountOut The amount of the received token
    function exactInputSingle(ExactInputSingleParams calldata params)
        external
        payable
        returns (uint256 amountOut);

    struct ExactInputParams {
        bytes path;
        address recipient;
        uint256 deadline;
        uint256 amountIn;
        uint256 amountOutMinimum;
    }

    /// @notice Swaps `amountIn` of one token for as much as possible of another along the specified path
    /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactInputParams` in calldata
    /// @return amountOut The amount of the received token
    function exactInput(ExactInputParams calldata params)
        external
        payable
        returns (uint256 amountOut);

    struct ExactOutputSingleParams {
        address tokenIn;
        address tokenOut;
        uint24 fee;
        address recipient;
        uint256 deadline;
        uint256 amountOut;
        uint256 amountInMaximum;
        uint160 sqrtPriceLimitX96;
    }

    /// @notice Swaps as little as possible of one token for `amountOut` of another token
    /// @param params The parameters necessary for the swap, encoded as `ExactOutputSingleParams` in calldata
    /// @return amountIn The amount of the input token
    function exactOutputSingle(ExactOutputSingleParams calldata params)
        external
        payable
        returns (uint256 amountIn);

    struct ExactOutputParams {
        bytes path;
        address recipient;
        uint256 deadline;
        uint256 amountOut;
        uint256 amountInMaximum;
    }

    /// @notice Swaps as little as possible of one token for `amountOut` of another along the specified path (reversed)
    /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactOutputParams` in calldata
    /// @return amountIn The amount of the input token
    function exactOutput(ExactOutputParams calldata params)
        external
        payable
        returns (uint256 amountIn);
}

File 15 of 17: IUniswapV3SwapCallback.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/// @title Callback for IUniswapV3PoolActions#swap
/// @notice Any contract that calls IUniswapV3PoolActions#swap must implement this interface
interface IUniswapV3SwapCallback {
    /// @notice Called to `msg.sender` after executing a swap via IUniswapV3Pool#swap.
    /// @dev In the implementation you must pay the pool tokens owed for the swap.
    /// The caller of this method must be checked to be a UniswapV3Pool deployed by the canonical UniswapV3Factory.
    /// amount0Delta and amount1Delta can both be 0 if no tokens were swapped.
    /// @param amount0Delta The amount of token0 that was sent (negative) or must be received (positive) by the pool by
    /// the end of the swap. If positive, the callback must send that amount of token0 to the pool.
    /// @param amount1Delta The amount of token1 that was sent (negative) or must be received (positive) by the pool by
    /// the end of the swap. If positive, the callback must send that amount of token1 to the pool.
    /// @param data Any data passed through by the caller via the IUniswapV3PoolActions#swap call
    function uniswapV3SwapCallback(
        int256 amount0Delta,
        int256 amount1Delta,
        bytes calldata data
    ) external;
}

File 16 of 17: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    /**
     * @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) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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

pragma solidity ^0.8.0;

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, 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":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":"tokensIntoLiquidity","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"},{"inputs":[],"name":"_cuttiesAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_cuttiesLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_cuttiesPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_nftStakingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_nftStakingLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_nftStakingPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_smartFarmingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_smartFarmingLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_smartFarmingPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_treasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_treasuryLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_treasuryPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_v3StakingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_v3StakingLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_v3StakingPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"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":"excludeFromMaxTxAmount","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":"includeInMaxTxAmount","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":"isExcludedFromMaxTxAmount","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":"mintCuttiesToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintLiquidityToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintNFTStakingToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintSmartFarmingToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintTreasuryToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintV3StakingToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonfungiblePositionManager","outputs":[{"internalType":"contract INonfungiblePositionManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"cuttiesAddress","type":"address"}],"name":"setCuttiesAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidityAddress","type":"address"}],"name":"setLiquidityAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nftStakingAddress","type":"address"}],"name":"setNFTStakingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"poolAddress","type":"address"}],"name":"setPoolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"farmingAddress","type":"address"}],"name":"setSmartFarmingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint24","name":"fee","type":"uint24"},{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"}],"name":"setSwapParam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"setTreasuryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"v3StakingAddress","type":"address"}],"name":"setV3StakingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapRouter","outputs":[{"internalType":"contract ISwapRouter","name":"","type":"address"}],"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":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405269d3c21bcecceda100000060088190556200002290600019620003b4565b620000309060001962000353565b60095560408051808201909152600a8082526921baba3a102a37b5b2b760b11b60209092019182526200006691600b91620002ad565b506040805180820190915260048082526310d5551560e21b60209092019182526200009491600c91620002ad565b50600d8054600960ff199091161790556005600e819055600f8181556010829055601182905560146012819055600a6013555560196015819055601655601755601d805465ffffffffffff60a01b19169055601f8054600160a81b60ff60a81b1990911617905569010f0cf064dd59200000602055681b1ae4d6e2ef500000602155602280546101f462ffffff199091161765ffffff000000191665f2761a0000001762ffffff60301b1916680d89e60000000000001790553480156200015a57600080fd5b506000620001676200025e565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601e80546001600160a01b031990811673e592427a0aece92de3edee1f18e0157c05861564908117909255601f805490911673c36442b4a4522e871399cd717abdd847ab11fe88179055306000908152600460209081526040808320805460ff1990811660019081179092556006909352922080549091169091179055620002399062000262565b6200025873c36442b4a4522e871399cd717abdd847ab11fe8862000262565b620003d5565b3390565b6001600160a01b031660009081526004602090815260408083208054600160ff1991821681179092556005845282852080548216831790556006909352922080549091169091179055565b828054620002bb9062000377565b90600052602060002090601f016020900481019282620002df57600085556200032a565b82601f10620002fa57805160ff19168380011785556200032a565b828001600101855582156200032a579182015b828111156200032a5782518255916020019190600101906200030d565b50620003389291506200033c565b5090565b5b808211156200033857600081556001016200033d565b6000828210156200037257634e487b7160e01b81526011600452602481fd5b500390565b6002810460018216806200038c57607f821691505b60208210811415620003ae57634e487b7160e01b600052602260045260246000fd5b50919050565b600082620003d057634e487b7160e01b81526012600452602481fd5b500690565b613f3280620003e56000396000f3fe6080604052600436106104095760003560e01c806370a0823111610213578063a9059cbb11610123578063d543dbeb116100ab578063ea2f0b371161007a578063ea2f0b3714610b0b578063ec48a60114610b2b578063edd251d414610b40578063f2fde38b14610b55578063fe099d3614610b7557610410565b8063d543dbeb14610a96578063dd62ed3e14610ab6578063ddd3d3a614610ad6578063e9e15b4f14610aeb57610410565b8063c1aeeb08116100f2578063c1aeeb0814610a17578063c261c1ce14610a2c578063c31c9c0714610a41578063c49b9a8014610a56578063d3b64ecd14610a7657610410565b8063a9059cbb146109ad578063b44a2722146109cd578063b9d499a3146109e2578063bb62107c14610a0257610410565b806388f82020116101a657806396b99cde1161017557806396b99cde146109395780639c05e7871461094e5780639edfbe7614610963578063a0e7bd2e14610978578063a457c2d71461098d57610410565b806388f82020146108cf5780638da5cb5b146108ef5780638ee88c531461090457806395d89b411461092457610410565b80637e3f5606116101e25780637e3f56061461086557806380122f97146108855780638743da6d146108a557806388e8d4b1146108ba57610410565b806370a0823114610806578063715018a6146108265780637d1db4a51461083b5780637dae83b71461085057610410565b8063395093511161031957806352390c02116102a157806362d27c3c1161027057806362d27c3c146107925780636605bfda146107a75780636bc87c3a146107c75780636c6ac329146107dc5780636e0e4864146107f157610410565b806352390c0214610710578063525fa81f1461073057806352d33a75146107505780635342acb41461077257610410565b806342966c68116102e857806342966c6814610686578063437823ec146106a65780634549b039146106c65780634a74bb02146106e6578063502b4fa8146106fb57610410565b806339509351146106115780633b124fe7146106315780633bd5d173146106465780634205819d1461066657610410565b806318160ddd1161039c5780632ad9be7e1161036b5780632ad9be7e1461056f5780632d8381191461058f5780632f119143146105af578063313ce567146105cf5780633685d419146105f157610410565b806318160ddd1461050557806322d1fd511461051a57806323b872dd1461053a57806329338e0d1461055a57610410565b80630f70d500116103d85780630f70d500146104b157806313114a9d146104c657806314d40688146104db5780631732c1e2146104f057610410565b8063061c82d01461041557806306fdde031461043757806308b3110c14610462578063095ea7b31461048457610410565b3661041057005b600080fd5b34801561042157600080fd5b50610435610430366004613803565b610b8a565b005b34801561044357600080fd5b5061044c610bd7565b60405161045991906138fd565b60405180910390f35b34801561046e57600080fd5b50610477610c69565b6040516104599190613d85565b34801561049057600080fd5b506104a461049f366004613755565b610c6f565b60405161045991906138f2565b3480156104bd57600080fd5b50610477610c8d565b3480156104d257600080fd5b50610477610c93565b3480156104e757600080fd5b50610435610c99565b3480156104fc57600080fd5b506104a4610d05565b34801561051157600080fd5b50610477610d15565b34801561052657600080fd5b506104356105353660046136a5565b610d1b565b34801561054657600080fd5b506104a4610555366004613715565b610d88565b34801561056657600080fd5b50610435610e0f565b34801561057b57600080fd5b5061043561058a3660046137b8565b610e7b565b34801561059b57600080fd5b506104776105aa366004613803565b610f05565b3480156105bb57600080fd5b506104356105ca3660046136a5565b610f48565b3480156105db57600080fd5b506105e4610fa8565b6040516104599190613da4565b3480156105fd57600080fd5b5061043561060c3660046136a5565b610fb1565b34801561061d57600080fd5b506104a461062c366004613755565b611186565b34801561063d57600080fd5b506104776111d4565b34801561065257600080fd5b50610435610661366004613803565b6111da565b34801561067257600080fd5b506104356106813660046136a5565b611295565b34801561069257600080fd5b506104a46106a1366004613803565b6112ff565b3480156106b257600080fd5b506104356106c13660046136a5565b611536565b3480156106d257600080fd5b506104776106e1366004613833565b611599565b3480156106f257600080fd5b506104a46115f6565b34801561070757600080fd5b50610435611606565b34801561071c57600080fd5b5061043561072b3660046136a5565b611672565b34801561073c57600080fd5b5061043561074b3660046136a5565b6117aa565b34801561075c57600080fd5b50610765611816565b60405161045991906138c5565b34801561077e57600080fd5b506104a461078d3660046136a5565b611825565b34801561079e57600080fd5b50610477611843565b3480156107b357600080fd5b506104356107c23660046136a5565b611849565b3480156107d357600080fd5b506104776118b5565b3480156107e857600080fd5b506107656118bb565b3480156107fd57600080fd5b506104a46118ca565b34801561081257600080fd5b506104776108213660046136a5565b6118da565b34801561083257600080fd5b5061043561193c565b34801561084757600080fd5b506104776119c5565b34801561085c57600080fd5b506104a46119cb565b34801561087157600080fd5b506104356108803660046136a5565b6119db565b34801561089157600080fd5b506104356108a03660046136a5565b611a3e565b3480156108b157600080fd5b50610765611aa8565b3480156108c657600080fd5b50610765611ab7565b3480156108db57600080fd5b506104a46108ea3660046136a5565b611ac6565b3480156108fb57600080fd5b50610765611ae4565b34801561091057600080fd5b5061043561091f366004613803565b611af3565b34801561093057600080fd5b5061044c611b37565b34801561094557600080fd5b506104a4611b46565b34801561095a57600080fd5b50610477611b56565b34801561096f57600080fd5b50610435611b5c565b34801561098457600080fd5b506104a4611bc8565b34801561099957600080fd5b506104a46109a8366004613755565b611bd8565b3480156109b957600080fd5b506104a46109c8366004613755565b611c40565b3480156109d957600080fd5b50610765611c54565b3480156109ee57600080fd5b506104356109fd3660046136a5565b611c63565b348015610a0e57600080fd5b50610765611ccd565b348015610a2357600080fd5b50610435611cdc565b348015610a3857600080fd5b50610435611d48565b348015610a4d57600080fd5b50610765611db4565b348015610a6257600080fd5b50610435610a71366004613780565b611dc3565b348015610a8257600080fd5b506104a4610a913660046136a5565b611e54565b348015610aa257600080fd5b50610435610ab1366004613803565b611e72565b348015610ac257600080fd5b50610477610ad13660046136dd565b611ed7565b348015610ae257600080fd5b50610477611f02565b348015610af757600080fd5b50610435610b063660046136a5565b611f08565b348015610b1757600080fd5b50610435610b263660046136a5565b611f38565b348015610b3757600080fd5b50610477611f98565b348015610b4c57600080fd5b50610765611f9e565b348015610b6157600080fd5b50610435610b703660046136a5565b611fad565b348015610b8157600080fd5b506104a461206d565b610b9261207d565b6001600160a01b0316610ba3611ae4565b6001600160a01b031614610bd25760405162461bcd60e51b8152600401610bc990613b1b565b60405180910390fd5b600e55565b6060600b8054610be690613e20565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1290613e20565b8015610c5f5780601f10610c3457610100808354040283529160200191610c5f565b820191906000526020600020905b815481529060010190602001808311610c4257829003601f168201915b5050505050905090565b60125481565b6000610c83610c7c61207d565b8484612081565b5060015b92915050565b60155481565b600a5490565b6019546001600160a01b0316610cad61207d565b6001600160a01b031614610cc057600080fd5b601d54600160a81b900460ff1615610cd757600080fd5b601954601354610cf0916001600160a01b031690612135565b601d805460ff60a81b1916600160a81b179055565b601d54600160a01b900460ff1681565b60085490565b610d2361207d565b6001600160a01b0316610d34611ae4565b6001600160a01b031614610d5a5760405162461bcd60e51b8152600401610bc990613b1b565b601c80546001600160a01b0319166001600160a01b038381169190911791829055610d859116612227565b50565b6000610d95848484612272565b610e0584610da161207d565b610e0085604051806060016040528060288152602001613eb0602891396001600160a01b038a16600090815260036020526040812090610ddf61207d565b6001600160a01b031681526020810191909152604001600020549190612421565b612081565b5060019392505050565b601b546001600160a01b0316610e2361207d565b6001600160a01b031614610e3657600080fd5b601d54600160b81b900460ff1615610e4d57600080fd5b601b54601554610e66916001600160a01b031690612135565b601d805460ff60b81b1916600160b81b179055565b610e8361207d565b6001600160a01b0316610e94611ae4565b6001600160a01b031614610eba5760405162461bcd60e51b8152600401610bc990613b1b565b6022805462ffffff191662ffffff9485161765ffffff00000019166301000000600294850b8616021768ffffff000000000000191666010000000000009290930b9390931602179055565b6000600954821115610f295760405162461bcd60e51b8152600401610bc990613993565b6000610f3361244d565b9050610f3f8382612470565b9150505b919050565b610f5061207d565b6001600160a01b0316610f61611ae4565b6001600160a01b031614610f875760405162461bcd60e51b8152600401610bc990613b1b565b6001600160a01b03166000908152600660205260409020805460ff19169055565b600d5460ff1690565b610fb961207d565b6001600160a01b0316610fca611ae4565b6001600160a01b031614610ff05760405162461bcd60e51b8152600401610bc990613b1b565b6001600160a01b03811660009081526005602052604090205460ff166110285760405162461bcd60e51b8152600401610bc990613a65565b60005b60075481101561118257816001600160a01b03166007828154811061106057634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415611170576007805461108b90600190613e09565b815481106110a957634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600780546001600160a01b0390921691839081106110e357634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600590925220805460ff19169055600780548061114957634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b0319169055019055611182565b8061117a81613e5b565b91505061102b565b5050565b6000610c8361119361207d565b84610e0085600360006111a461207d565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612483565b600e5481565b60006111e461207d565b6001600160a01b03811660009081526005602052604090205490915060ff16156112205760405162461bcd60e51b8152600401610bc990613c22565b600061122b8361248f565b505050506001600160a01b038416600090815260016020526040902054919250611257919050826124de565b6001600160a01b03831660009081526001602052604090205560095461127d90826124de565b600955600a5461128d9084612483565b600a55505050565b61129d61207d565b6001600160a01b03166112ae611ae4565b6001600160a01b0316146112d45760405162461bcd60e51b8152600401610bc990613b1b565b601980546001600160a01b0319166001600160a01b038381169190911791829055610d859116612227565b60008160058261130d61207d565b6001600160a01b0316815260208101919091526040016000205460ff1615611464576002600061133b61207d565b6001600160a01b03166001600160a01b03168152602001908152602001600020548110611392576002600061136e61207d565b6001600160a01b03166001600160a01b031681526020019081526020016000205490505b60006113a661139f61244d565b83906124ea565b90506113d882600260006113b861207d565b6001600160a01b03168152602081019190915260400160002054906124de565b600260006113e461207d565b6001600160a01b03166001600160a01b031681526020019081526020016000208190555061141881600160006113b861207d565b6001600061142461207d565b6001600160a01b0316815260208101919091526040016000205560085461144b90836124de565b60085560095461145b90826124de565b60095550610c83565b600061147161139f61244d565b90506001600061147f61207d565b6001600160a01b03166001600160a01b031681526020019081526020016000205481106114d657600160006114b261207d565b6001600160a01b03166001600160a01b031681526020019081526020016000205490505b6114e681600160006113b861207d565b600160006114f261207d565b6001600160a01b0316815260208101919091526040016000205560085461151990836124de565b60085560095461152990826124de565b6009555050600192915050565b61153e61207d565b6001600160a01b031661154f611ae4565b6001600160a01b0316146115755760405162461bcd60e51b8152600401610bc990613b1b565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b60006008548311156115bd5760405162461bcd60e51b8152600401610bc990613a9c565b816115dc5760006115cd8461248f565b50939550610c87945050505050565b60006115e78461248f565b50929550610c87945050505050565b601f54600160a81b900460ff1681565b601a546001600160a01b031661161a61207d565b6001600160a01b03161461162d57600080fd5b601d54600160b01b900460ff161561164457600080fd5b601a5460145461165d916001600160a01b031690612135565b601d805460ff60b01b1916600160b01b179055565b61167a61207d565b6001600160a01b031661168b611ae4565b6001600160a01b0316146116b15760405162461bcd60e51b8152600401610bc990613b1b565b6001600160a01b03811660009081526005602052604090205460ff16156116ea5760405162461bcd60e51b8152600401610bc990613a65565b6001600160a01b03811660009081526001602052604090205415611744576001600160a01b03811660009081526001602052604090205461172a90610f05565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6117b261207d565b6001600160a01b03166117c3611ae4565b6001600160a01b0316146117e95760405162461bcd60e51b8152600401610bc990613b1b565b601880546001600160a01b0319166001600160a01b0383811691909117909155601954610d859116612227565b601b546001600160a01b031681565b6001600160a01b031660009081526004602052604090205460ff1690565b60135481565b61185161207d565b6001600160a01b0316611862611ae4565b6001600160a01b0316146118885760405162461bcd60e51b8152600401610bc990613b1b565b601d80546001600160a01b0319166001600160a01b0383811691909117909155601954610d859116612227565b60105481565b6018546001600160a01b031681565b601d54600160b01b900460ff1681565b6001600160a01b03811660009081526005602052604081205460ff161561191a57506001600160a01b038116600090815260026020526040902054610f43565b6001600160a01b038216600090815260016020526040902054610c8790610f05565b61194461207d565b6001600160a01b0316611955611ae4565b6001600160a01b03161461197b5760405162461bcd60e51b8152600401610bc990613b1b565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60205481565b601d54600160a81b900460ff1681565b6119e361207d565b6001600160a01b03166119f4611ae4565b6001600160a01b031614611a1a5760405162461bcd60e51b8152600401610bc990613b1b565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b611a4661207d565b6001600160a01b0316611a57611ae4565b6001600160a01b031614611a7d5760405162461bcd60e51b8152600401610bc990613b1b565b601a80546001600160a01b0319166001600160a01b038381169190911791829055610d859116612227565b601d546001600160a01b031681565b6019546001600160a01b031681565b6001600160a01b031660009081526005602052604090205460ff1690565b6000546001600160a01b031690565b611afb61207d565b6001600160a01b0316611b0c611ae4565b6001600160a01b031614611b325760405162461bcd60e51b8152600401610bc990613b1b565b601055565b6060600c8054610be690613e20565b601d54600160b81b900460ff1681565b60175481565b6018546001600160a01b0316611b7061207d565b6001600160a01b031614611b8357600080fd5b601d54600160a01b900460ff1615611b9a57600080fd5b601854601254611bb3916001600160a01b031690612135565b601d805460ff60a01b1916600160a01b179055565b601d54600160c81b900460ff1681565b6000610c83611be561207d565b84610e0085604051806060016040528060258152602001613ed86025913960036000611c0f61207d565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612421565b6000610c83611c4d61207d565b8484612272565b601f546001600160a01b031681565b611c6b61207d565b6001600160a01b0316611c7c611ae4565b6001600160a01b031614611ca25760405162461bcd60e51b8152600401610bc990613b1b565b601b80546001600160a01b0319166001600160a01b038381169190911791829055610d859116612227565b601c546001600160a01b031681565b601c546001600160a01b0316611cf061207d565b6001600160a01b031614611d0357600080fd5b601d54600160c01b900460ff1615611d1a57600080fd5b601c54601654611d33916001600160a01b031690612135565b601d805460ff60c01b1916600160c01b179055565b601d546001600160a01b0316611d5c61207d565b6001600160a01b031614611d6f57600080fd5b601d54600160c81b900460ff1615611d8657600080fd5b601d54601754611d9f916001600160a01b031690612135565b601d805460ff60c81b1916600160c81b179055565b601e546001600160a01b031681565b611dcb61207d565b6001600160a01b0316611ddc611ae4565b6001600160a01b031614611e025760405162461bcd60e51b8152600401610bc990613b1b565b601f805460ff60a81b1916600160a81b831515021790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990611e499083906138f2565b60405180910390a150565b6001600160a01b031660009081526006602052604090205460ff1690565b611e7a61207d565b6001600160a01b0316611e8b611ae4565b6001600160a01b031614611eb15760405162461bcd60e51b8152600401610bc990613b1b565b611ed16064611ecb836008546124ea90919063ffffffff16565b90612470565b60205550565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b60165481565b6018546001600160a01b0316611f1c61207d565b6001600160a01b031614611f2f57600080fd5b610d8581612227565b611f4061207d565b6001600160a01b0316611f51611ae4565b6001600160a01b031614611f775760405162461bcd60e51b8152600401610bc990613b1b565b6001600160a01b03166000908152600460205260409020805460ff19169055565b60145481565b601a546001600160a01b031681565b611fb561207d565b6001600160a01b0316611fc6611ae4565b6001600160a01b031614611fec5760405162461bcd60e51b8152600401610bc990613b1b565b6001600160a01b0381166120125760405162461bcd60e51b8152600401610bc9906139dd565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b601d54600160c01b900460ff1681565b3390565b6001600160a01b0383166120a75760405162461bcd60e51b8152600401610bc990613bde565b6001600160a01b0382166120cd5760405162461bcd60e51b8152600401610bc990613a23565b6001600160a01b0380841660008181526003602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590612128908590613d85565b60405180910390a3505050565b600061215782612151606460085461247090919063ffffffff16565b906124ea565b9050600061217583612151606460095461247090919063ffffffff16565b6001600160a01b03851660009081526002602052604090205490915061219b9083612483565b6001600160a01b0385166000908152600260209081526040808320939093556001905220546121ca9082612483565b6001600160a01b0385166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612219908690613d85565b60405180910390a350505050565b6001600160a01b031660009081526004602090815260408083208054600160ff1991821681179092556005845282852080548216831790556006909352922080549091169091179055565b6001600160a01b0383166122985760405162461bcd60e51b8152600401610bc990613b99565b6001600160a01b0382166122be5760405162461bcd60e51b8152600401610bc990613950565b600081116122de5760405162461bcd60e51b8152600401610bc990613b50565b6001600160a01b03831660009081526006602052604090205460ff1615801561232057506001600160a01b03821660009081526006602052604090205460ff16155b15612347576020548111156123475760405162461bcd60e51b8152600401610bc990613ad3565b6000612352306118da565b9050602054811061236257506020545b602154811080159081906123805750601f54600160a01b900460ff16155b801561239a5750601e546001600160a01b03868116911614155b80156123af5750601f54600160a81b900460ff165b156123c25760215491506123c2826124f6565b6001600160a01b03851660009081526004602052604090205460019060ff168061240457506001600160a01b03851660009081526004602052604090205460ff165b1561240d575060005b6124198686868461279c565b505050505050565b600081848411156124455760405162461bcd60e51b8152600401610bc991906138fd565b505050900390565b600080600061245a612910565b90925090506124698282612470565b9250505090565b600061247c8284613dca565b9392505050565b600061247c8284613db2565b60008060008060008060008060006124a68a612acd565b92509250925060008060006124c48d86866124bf61244d565b612b09565b919f909e50909c50959a5093985091965092945050505050565b600061247c8284613e09565b600061247c8284613dea565b601f805460ff60a01b1916600160a01b1790556000612516826002612470565b9050600061252483836124de565b90506000601f60009054906101000a90046001600160a01b03166001600160a01b0316634aa4a4fc6040518163ffffffff1660e01b815260040160206040518083038186803b15801561257657600080fd5b505afa15801561258a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125ae91906136c1565b6001600160a01b03166370a08231306040518263ffffffff1660e01b81526004016125d991906138c5565b60206040518083038186803b1580156125f157600080fd5b505afa158015612605573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612629919061381b565b905061263483612b59565b600061274182601f60009054906101000a90046001600160a01b03166001600160a01b0316634aa4a4fc6040518163ffffffff1660e01b815260040160206040518083038186803b15801561268857600080fd5b505afa15801561269c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126c091906136c1565b6001600160a01b03166370a08231306040518263ffffffff1660e01b81526004016126eb91906138c5565b60206040518083038186803b15801561270357600080fd5b505afa158015612717573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061273b919061381b565b906124de565b905061274d8382612cc7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161278093929190613d8e565b60405180910390a15050601f805460ff60a01b19169055505050565b806127a9576127a9612f32565b6001600160a01b03841660009081526005602052604090205460ff1680156127ea57506001600160a01b03831660009081526005602052604090205460ff16155b156127ff576127fa848484612f64565b6128fd565b6001600160a01b03841660009081526005602052604090205460ff1615801561284057506001600160a01b03831660009081526005602052604090205460ff165b15612850576127fa848484613088565b6001600160a01b03841660009081526005602052604090205460ff1615801561289257506001600160a01b03831660009081526005602052604090205460ff16155b156128a2576127fa848484613131565b6001600160a01b03841660009081526005602052604090205460ff1680156128e257506001600160a01b03831660009081526005602052604090205460ff165b156128f2576127fa848484613175565b6128fd848484613131565b8061290a5761290a6131e8565b50505050565b6009546008546000918291825b600754811015612a9b5782600160006007848154811061294d57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806129c6575081600260006007848154811061299f57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156129dd5760095460085494509450505050612ac9565b612a316001600060078481548110612a0557634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906124de565b9250612a876002600060078481548110612a5b57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906124de565b915080612a9381613e5b565b91505061291d565b50600854600954612aab91612470565b821015612ac357600954600854935093505050612ac9565b90925090505b9091565b600080600080612adc856131f6565b90506000612ae986613212565b90506000612afb8261273b89866124de565b979296509094509092505050565b6000808080612b1888866124ea565b90506000612b2688876124ea565b90506000612b3488886124ea565b90506000612b468261273b86866124de565b939b939a50919850919650505050505050565b6040805161010081018252308152601f5482516312a9293f60e21b815292516000936020808501936001600160a01b031692634aa4a4fc926004808201939291829003018186803b158015612bad57600080fd5b505afa158015612bc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612be591906136c1565b6001600160a01b031681526101f46020820152306040820152606001612c0d426103e8612483565b815260208101849052600060408201819052606090910152601e54909150612c409030906001600160a01b031684612081565b601e5460405163414bf38960e01b81526001600160a01b039091169063414bf38990612c70908490600401613c6e565b602060405180830381600087803b158015612c8a57600080fd5b505af1158015612c9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cc2919061381b565b505050565b600080612cd261322e565b91509150600080612ce3868661348d565b601f549193509150612d009030906001600160a01b031688612081565b601f60009054906101000a90046001600160a01b03166001600160a01b0316634aa4a4fc6040518163ffffffff1660e01b815260040160206040518083038186803b158015612d4e57600080fd5b505afa158015612d62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d8691906136c1565b601f5460405163095ea7b360e01b81526001600160a01b039283169263095ea7b392612db99291169089906004016138d9565b602060405180830381600087803b158015612dd357600080fd5b505af1158015612de7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e0b919061379c565b5060408051610160810182526001600160a01b038087168252858116602083015260225462ffffff81169383019390935263010000008304600290810b810b60608401526601000000000000909304830b90920b608082015260a0810184905260c08101839052600060e0820181905261010082018190526019549092166101208201526101408101612ea0426103e8612483565b9052601f54604051634418b22b60e11b81529192506001600160a01b031690638831645690612ed3908490600401613cd7565b608060405180830381600087803b158015612eed57600080fd5b505af1158015612f01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f259190613857565b5050505050505050505050565b600e54158015612f425750601054155b15612f4c57612f62565b600e8054600f5560108054601155600091829055555b565b600080600080600080612f768761248f565b6001600160a01b038f16600090815260026020526040902054959b50939950919750955093509150612fa890886124de565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054612fd790876124de565b6001600160a01b03808b1660009081526001602052604080822093909355908a16815220546130069086612483565b6001600160a01b038916600090815260016020526040902055613028816135e7565b613032848361366f565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516130759190613d85565b60405180910390a3505050505050505050565b60008060008060008061309a8761248f565b6001600160a01b038f16600090815260016020526040902054959b509399509197509550935091506130cc90876124de565b6001600160a01b03808b16600090815260016020908152604080832094909455918b168152600290915220546131029084612483565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546130069086612483565b6000806000806000806131438761248f565b6001600160a01b038f16600090815260016020526040902054959b50939950919750955093509150612fd790876124de565b6000806000806000806131878761248f565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506131b990886124de565b6001600160a01b038a166000908152600260209081526040808320939093556001905220546130cc90876124de565b600f54600e55601154601055565b6000610c876064611ecb600e54856124ea90919063ffffffff16565b6000610c876064611ecb601054856124ea90919063ffffffff16565b600080306001600160a01b0316601f60009054906101000a90046001600160a01b03166001600160a01b0316634aa4a4fc6040518163ffffffff1660e01b815260040160206040518083038186803b15801561328957600080fd5b505afa15801561329d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132c191906136c1565b6001600160a01b0316106132d5573061335b565b601f60009054906101000a90046001600160a01b03166001600160a01b0316634aa4a4fc6040518163ffffffff1660e01b815260040160206040518083038186803b15801561332357600080fd5b505afa158015613337573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061335b91906136c1565b9150306001600160a01b0316601f60009054906101000a90046001600160a01b03166001600160a01b0316634aa4a4fc6040518163ffffffff1660e01b815260040160206040518083038186803b1580156133b557600080fd5b505afa1580156133c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133ed91906136c1565b6001600160a01b0316116134015730613487565b601f60009054906101000a90046001600160a01b03166001600160a01b0316634aa4a4fc6040518163ffffffff1660e01b815260040160206040518083038186803b15801561344f57600080fd5b505afa158015613463573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061348791906136c1565b90509091565b600080306001600160a01b0316601f60009054906101000a90046001600160a01b03166001600160a01b0316634aa4a4fc6040518163ffffffff1660e01b815260040160206040518083038186803b1580156134e857600080fd5b505afa1580156134fc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061352091906136c1565b6001600160a01b0316106135345783613536565b825b9150306001600160a01b0316601f60009054906101000a90046001600160a01b03166001600160a01b0316634aa4a4fc6040518163ffffffff1660e01b815260040160206040518083038186803b15801561359057600080fd5b505afa1580156135a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135c891906136c1565b6001600160a01b0316116135dc57836135de565b825b90509250929050565b60006135f161244d565b905060006135ff83836124ea565b3060009081526001602052604090205490915061361c9082612483565b3060009081526001602090815260408083209390935560059052205460ff1615612cc2573060009081526002602052604090205461365a9084612483565b30600090815260026020526040902055505050565b60095461367c90836124de565b600955600a5461368c9082612483565b600a555050565b8035600281900b8114610f4357600080fd5b6000602082840312156136b6578081fd5b813561247c81613e8c565b6000602082840312156136d2578081fd5b815161247c81613e8c565b600080604083850312156136ef578081fd5b82356136fa81613e8c565b9150602083013561370a81613e8c565b809150509250929050565b600080600060608486031215613729578081fd5b833561373481613e8c565b9250602084013561374481613e8c565b929592945050506040919091013590565b60008060408385031215613767578182fd5b823561377281613e8c565b946020939093013593505050565b600060208284031215613791578081fd5b813561247c81613ea1565b6000602082840312156137ad578081fd5b815161247c81613ea1565b6000806000606084860312156137cc578283fd5b833562ffffff811681146137de578384fd5b92506137ec60208501613693565b91506137fa60408501613693565b90509250925092565b600060208284031215613814578081fd5b5035919050565b60006020828403121561382c578081fd5b5051919050565b60008060408385031215613845578182fd5b82359150602083013561370a81613ea1565b6000806000806080858703121561386c578081fd5b8451935060208501516fffffffffffffffffffffffffffffffff81168114613892578182fd5b6040860151606090960151949790965092505050565b6001600160a01b03169052565b60020b9052565b62ffffff169052565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b818110156139295785810183015185820160400152820161390d565b8181111561393a5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260408201526965666c656374696f6e7360b01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604082015260600190565b6020808252601f908201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604082015260600190565b60208082526028908201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546040820152673c20b6b7bab73a1760c11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206040820152687468616e207a65726f60b81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252602c908201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460408201526b3434b990333ab731ba34b7b760a11b606082015260800190565b81516001600160a01b03908116825260208084015182169083015260408084015162ffffff16908301526060808401518216908301526080808401519083015260a0838101519083015260c0808401519083015260e09283015116918101919091526101000190565b600061016082019050613ceb8284516138a8565b6020830151613cfd60208401826138a8565b506040830151613d1060408401826138bc565b506060830151613d2360608401826138b5565b506080830151613d3660808401826138b5565b5060a083015160a083015260c083015160c083015260e083015160e083015261010080840151818401525061012080840151613d74828501826138a8565b505061014092830151919092015290565b90815260200190565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b60008219821115613dc557613dc5613e76565b500190565b600082613de557634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615613e0457613e04613e76565b500290565b600082821015613e1b57613e1b613e76565b500390565b600281046001821680613e3457607f821691505b60208210811415613e5557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613e6f57613e6f613e76565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610d8557600080fd5b8015158114610d8557600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d049d4620ba0148886b8dd568a331cc64d79415e7b956b1dc5ca29393810649f64736f6c63430008010033

Deployed Bytecode

0x6080604052600436106104095760003560e01c806370a0823111610213578063a9059cbb11610123578063d543dbeb116100ab578063ea2f0b371161007a578063ea2f0b3714610b0b578063ec48a60114610b2b578063edd251d414610b40578063f2fde38b14610b55578063fe099d3614610b7557610410565b8063d543dbeb14610a96578063dd62ed3e14610ab6578063ddd3d3a614610ad6578063e9e15b4f14610aeb57610410565b8063c1aeeb08116100f2578063c1aeeb0814610a17578063c261c1ce14610a2c578063c31c9c0714610a41578063c49b9a8014610a56578063d3b64ecd14610a7657610410565b8063a9059cbb146109ad578063b44a2722146109cd578063b9d499a3146109e2578063bb62107c14610a0257610410565b806388f82020116101a657806396b99cde1161017557806396b99cde146109395780639c05e7871461094e5780639edfbe7614610963578063a0e7bd2e14610978578063a457c2d71461098d57610410565b806388f82020146108cf5780638da5cb5b146108ef5780638ee88c531461090457806395d89b411461092457610410565b80637e3f5606116101e25780637e3f56061461086557806380122f97146108855780638743da6d146108a557806388e8d4b1146108ba57610410565b806370a0823114610806578063715018a6146108265780637d1db4a51461083b5780637dae83b71461085057610410565b8063395093511161031957806352390c02116102a157806362d27c3c1161027057806362d27c3c146107925780636605bfda146107a75780636bc87c3a146107c75780636c6ac329146107dc5780636e0e4864146107f157610410565b806352390c0214610710578063525fa81f1461073057806352d33a75146107505780635342acb41461077257610410565b806342966c68116102e857806342966c6814610686578063437823ec146106a65780634549b039146106c65780634a74bb02146106e6578063502b4fa8146106fb57610410565b806339509351146106115780633b124fe7146106315780633bd5d173146106465780634205819d1461066657610410565b806318160ddd1161039c5780632ad9be7e1161036b5780632ad9be7e1461056f5780632d8381191461058f5780632f119143146105af578063313ce567146105cf5780633685d419146105f157610410565b806318160ddd1461050557806322d1fd511461051a57806323b872dd1461053a57806329338e0d1461055a57610410565b80630f70d500116103d85780630f70d500146104b157806313114a9d146104c657806314d40688146104db5780631732c1e2146104f057610410565b8063061c82d01461041557806306fdde031461043757806308b3110c14610462578063095ea7b31461048457610410565b3661041057005b600080fd5b34801561042157600080fd5b50610435610430366004613803565b610b8a565b005b34801561044357600080fd5b5061044c610bd7565b60405161045991906138fd565b60405180910390f35b34801561046e57600080fd5b50610477610c69565b6040516104599190613d85565b34801561049057600080fd5b506104a461049f366004613755565b610c6f565b60405161045991906138f2565b3480156104bd57600080fd5b50610477610c8d565b3480156104d257600080fd5b50610477610c93565b3480156104e757600080fd5b50610435610c99565b3480156104fc57600080fd5b506104a4610d05565b34801561051157600080fd5b50610477610d15565b34801561052657600080fd5b506104356105353660046136a5565b610d1b565b34801561054657600080fd5b506104a4610555366004613715565b610d88565b34801561056657600080fd5b50610435610e0f565b34801561057b57600080fd5b5061043561058a3660046137b8565b610e7b565b34801561059b57600080fd5b506104776105aa366004613803565b610f05565b3480156105bb57600080fd5b506104356105ca3660046136a5565b610f48565b3480156105db57600080fd5b506105e4610fa8565b6040516104599190613da4565b3480156105fd57600080fd5b5061043561060c3660046136a5565b610fb1565b34801561061d57600080fd5b506104a461062c366004613755565b611186565b34801561063d57600080fd5b506104776111d4565b34801561065257600080fd5b50610435610661366004613803565b6111da565b34801561067257600080fd5b506104356106813660046136a5565b611295565b34801561069257600080fd5b506104a46106a1366004613803565b6112ff565b3480156106b257600080fd5b506104356106c13660046136a5565b611536565b3480156106d257600080fd5b506104776106e1366004613833565b611599565b3480156106f257600080fd5b506104a46115f6565b34801561070757600080fd5b50610435611606565b34801561071c57600080fd5b5061043561072b3660046136a5565b611672565b34801561073c57600080fd5b5061043561074b3660046136a5565b6117aa565b34801561075c57600080fd5b50610765611816565b60405161045991906138c5565b34801561077e57600080fd5b506104a461078d3660046136a5565b611825565b34801561079e57600080fd5b50610477611843565b3480156107b357600080fd5b506104356107c23660046136a5565b611849565b3480156107d357600080fd5b506104776118b5565b3480156107e857600080fd5b506107656118bb565b3480156107fd57600080fd5b506104a46118ca565b34801561081257600080fd5b506104776108213660046136a5565b6118da565b34801561083257600080fd5b5061043561193c565b34801561084757600080fd5b506104776119c5565b34801561085c57600080fd5b506104a46119cb565b34801561087157600080fd5b506104356108803660046136a5565b6119db565b34801561089157600080fd5b506104356108a03660046136a5565b611a3e565b3480156108b157600080fd5b50610765611aa8565b3480156108c657600080fd5b50610765611ab7565b3480156108db57600080fd5b506104a46108ea3660046136a5565b611ac6565b3480156108fb57600080fd5b50610765611ae4565b34801561091057600080fd5b5061043561091f366004613803565b611af3565b34801561093057600080fd5b5061044c611b37565b34801561094557600080fd5b506104a4611b46565b34801561095a57600080fd5b50610477611b56565b34801561096f57600080fd5b50610435611b5c565b34801561098457600080fd5b506104a4611bc8565b34801561099957600080fd5b506104a46109a8366004613755565b611bd8565b3480156109b957600080fd5b506104a46109c8366004613755565b611c40565b3480156109d957600080fd5b50610765611c54565b3480156109ee57600080fd5b506104356109fd3660046136a5565b611c63565b348015610a0e57600080fd5b50610765611ccd565b348015610a2357600080fd5b50610435611cdc565b348015610a3857600080fd5b50610435611d48565b348015610a4d57600080fd5b50610765611db4565b348015610a6257600080fd5b50610435610a71366004613780565b611dc3565b348015610a8257600080fd5b506104a4610a913660046136a5565b611e54565b348015610aa257600080fd5b50610435610ab1366004613803565b611e72565b348015610ac257600080fd5b50610477610ad13660046136dd565b611ed7565b348015610ae257600080fd5b50610477611f02565b348015610af757600080fd5b50610435610b063660046136a5565b611f08565b348015610b1757600080fd5b50610435610b263660046136a5565b611f38565b348015610b3757600080fd5b50610477611f98565b348015610b4c57600080fd5b50610765611f9e565b348015610b6157600080fd5b50610435610b703660046136a5565b611fad565b348015610b8157600080fd5b506104a461206d565b610b9261207d565b6001600160a01b0316610ba3611ae4565b6001600160a01b031614610bd25760405162461bcd60e51b8152600401610bc990613b1b565b60405180910390fd5b600e55565b6060600b8054610be690613e20565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1290613e20565b8015610c5f5780601f10610c3457610100808354040283529160200191610c5f565b820191906000526020600020905b815481529060010190602001808311610c4257829003601f168201915b5050505050905090565b60125481565b6000610c83610c7c61207d565b8484612081565b5060015b92915050565b60155481565b600a5490565b6019546001600160a01b0316610cad61207d565b6001600160a01b031614610cc057600080fd5b601d54600160a81b900460ff1615610cd757600080fd5b601954601354610cf0916001600160a01b031690612135565b601d805460ff60a81b1916600160a81b179055565b601d54600160a01b900460ff1681565b60085490565b610d2361207d565b6001600160a01b0316610d34611ae4565b6001600160a01b031614610d5a5760405162461bcd60e51b8152600401610bc990613b1b565b601c80546001600160a01b0319166001600160a01b038381169190911791829055610d859116612227565b50565b6000610d95848484612272565b610e0584610da161207d565b610e0085604051806060016040528060288152602001613eb0602891396001600160a01b038a16600090815260036020526040812090610ddf61207d565b6001600160a01b031681526020810191909152604001600020549190612421565b612081565b5060019392505050565b601b546001600160a01b0316610e2361207d565b6001600160a01b031614610e3657600080fd5b601d54600160b81b900460ff1615610e4d57600080fd5b601b54601554610e66916001600160a01b031690612135565b601d805460ff60b81b1916600160b81b179055565b610e8361207d565b6001600160a01b0316610e94611ae4565b6001600160a01b031614610eba5760405162461bcd60e51b8152600401610bc990613b1b565b6022805462ffffff191662ffffff9485161765ffffff00000019166301000000600294850b8616021768ffffff000000000000191666010000000000009290930b9390931602179055565b6000600954821115610f295760405162461bcd60e51b8152600401610bc990613993565b6000610f3361244d565b9050610f3f8382612470565b9150505b919050565b610f5061207d565b6001600160a01b0316610f61611ae4565b6001600160a01b031614610f875760405162461bcd60e51b8152600401610bc990613b1b565b6001600160a01b03166000908152600660205260409020805460ff19169055565b600d5460ff1690565b610fb961207d565b6001600160a01b0316610fca611ae4565b6001600160a01b031614610ff05760405162461bcd60e51b8152600401610bc990613b1b565b6001600160a01b03811660009081526005602052604090205460ff166110285760405162461bcd60e51b8152600401610bc990613a65565b60005b60075481101561118257816001600160a01b03166007828154811061106057634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415611170576007805461108b90600190613e09565b815481106110a957634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600780546001600160a01b0390921691839081106110e357634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600590925220805460ff19169055600780548061114957634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b0319169055019055611182565b8061117a81613e5b565b91505061102b565b5050565b6000610c8361119361207d565b84610e0085600360006111a461207d565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612483565b600e5481565b60006111e461207d565b6001600160a01b03811660009081526005602052604090205490915060ff16156112205760405162461bcd60e51b8152600401610bc990613c22565b600061122b8361248f565b505050506001600160a01b038416600090815260016020526040902054919250611257919050826124de565b6001600160a01b03831660009081526001602052604090205560095461127d90826124de565b600955600a5461128d9084612483565b600a55505050565b61129d61207d565b6001600160a01b03166112ae611ae4565b6001600160a01b0316146112d45760405162461bcd60e51b8152600401610bc990613b1b565b601980546001600160a01b0319166001600160a01b038381169190911791829055610d859116612227565b60008160058261130d61207d565b6001600160a01b0316815260208101919091526040016000205460ff1615611464576002600061133b61207d565b6001600160a01b03166001600160a01b03168152602001908152602001600020548110611392576002600061136e61207d565b6001600160a01b03166001600160a01b031681526020019081526020016000205490505b60006113a661139f61244d565b83906124ea565b90506113d882600260006113b861207d565b6001600160a01b03168152602081019190915260400160002054906124de565b600260006113e461207d565b6001600160a01b03166001600160a01b031681526020019081526020016000208190555061141881600160006113b861207d565b6001600061142461207d565b6001600160a01b0316815260208101919091526040016000205560085461144b90836124de565b60085560095461145b90826124de565b60095550610c83565b600061147161139f61244d565b90506001600061147f61207d565b6001600160a01b03166001600160a01b031681526020019081526020016000205481106114d657600160006114b261207d565b6001600160a01b03166001600160a01b031681526020019081526020016000205490505b6114e681600160006113b861207d565b600160006114f261207d565b6001600160a01b0316815260208101919091526040016000205560085461151990836124de565b60085560095461152990826124de565b6009555050600192915050565b61153e61207d565b6001600160a01b031661154f611ae4565b6001600160a01b0316146115755760405162461bcd60e51b8152600401610bc990613b1b565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b60006008548311156115bd5760405162461bcd60e51b8152600401610bc990613a9c565b816115dc5760006115cd8461248f565b50939550610c87945050505050565b60006115e78461248f565b50929550610c87945050505050565b601f54600160a81b900460ff1681565b601a546001600160a01b031661161a61207d565b6001600160a01b03161461162d57600080fd5b601d54600160b01b900460ff161561164457600080fd5b601a5460145461165d916001600160a01b031690612135565b601d805460ff60b01b1916600160b01b179055565b61167a61207d565b6001600160a01b031661168b611ae4565b6001600160a01b0316146116b15760405162461bcd60e51b8152600401610bc990613b1b565b6001600160a01b03811660009081526005602052604090205460ff16156116ea5760405162461bcd60e51b8152600401610bc990613a65565b6001600160a01b03811660009081526001602052604090205415611744576001600160a01b03811660009081526001602052604090205461172a90610f05565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6117b261207d565b6001600160a01b03166117c3611ae4565b6001600160a01b0316146117e95760405162461bcd60e51b8152600401610bc990613b1b565b601880546001600160a01b0319166001600160a01b0383811691909117909155601954610d859116612227565b601b546001600160a01b031681565b6001600160a01b031660009081526004602052604090205460ff1690565b60135481565b61185161207d565b6001600160a01b0316611862611ae4565b6001600160a01b0316146118885760405162461bcd60e51b8152600401610bc990613b1b565b601d80546001600160a01b0319166001600160a01b0383811691909117909155601954610d859116612227565b60105481565b6018546001600160a01b031681565b601d54600160b01b900460ff1681565b6001600160a01b03811660009081526005602052604081205460ff161561191a57506001600160a01b038116600090815260026020526040902054610f43565b6001600160a01b038216600090815260016020526040902054610c8790610f05565b61194461207d565b6001600160a01b0316611955611ae4565b6001600160a01b03161461197b5760405162461bcd60e51b8152600401610bc990613b1b565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60205481565b601d54600160a81b900460ff1681565b6119e361207d565b6001600160a01b03166119f4611ae4565b6001600160a01b031614611a1a5760405162461bcd60e51b8152600401610bc990613b1b565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b611a4661207d565b6001600160a01b0316611a57611ae4565b6001600160a01b031614611a7d5760405162461bcd60e51b8152600401610bc990613b1b565b601a80546001600160a01b0319166001600160a01b038381169190911791829055610d859116612227565b601d546001600160a01b031681565b6019546001600160a01b031681565b6001600160a01b031660009081526005602052604090205460ff1690565b6000546001600160a01b031690565b611afb61207d565b6001600160a01b0316611b0c611ae4565b6001600160a01b031614611b325760405162461bcd60e51b8152600401610bc990613b1b565b601055565b6060600c8054610be690613e20565b601d54600160b81b900460ff1681565b60175481565b6018546001600160a01b0316611b7061207d565b6001600160a01b031614611b8357600080fd5b601d54600160a01b900460ff1615611b9a57600080fd5b601854601254611bb3916001600160a01b031690612135565b601d805460ff60a01b1916600160a01b179055565b601d54600160c81b900460ff1681565b6000610c83611be561207d565b84610e0085604051806060016040528060258152602001613ed86025913960036000611c0f61207d565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612421565b6000610c83611c4d61207d565b8484612272565b601f546001600160a01b031681565b611c6b61207d565b6001600160a01b0316611c7c611ae4565b6001600160a01b031614611ca25760405162461bcd60e51b8152600401610bc990613b1b565b601b80546001600160a01b0319166001600160a01b038381169190911791829055610d859116612227565b601c546001600160a01b031681565b601c546001600160a01b0316611cf061207d565b6001600160a01b031614611d0357600080fd5b601d54600160c01b900460ff1615611d1a57600080fd5b601c54601654611d33916001600160a01b031690612135565b601d805460ff60c01b1916600160c01b179055565b601d546001600160a01b0316611d5c61207d565b6001600160a01b031614611d6f57600080fd5b601d54600160c81b900460ff1615611d8657600080fd5b601d54601754611d9f916001600160a01b031690612135565b601d805460ff60c81b1916600160c81b179055565b601e546001600160a01b031681565b611dcb61207d565b6001600160a01b0316611ddc611ae4565b6001600160a01b031614611e025760405162461bcd60e51b8152600401610bc990613b1b565b601f805460ff60a81b1916600160a81b831515021790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990611e499083906138f2565b60405180910390a150565b6001600160a01b031660009081526006602052604090205460ff1690565b611e7a61207d565b6001600160a01b0316611e8b611ae4565b6001600160a01b031614611eb15760405162461bcd60e51b8152600401610bc990613b1b565b611ed16064611ecb836008546124ea90919063ffffffff16565b90612470565b60205550565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b60165481565b6018546001600160a01b0316611f1c61207d565b6001600160a01b031614611f2f57600080fd5b610d8581612227565b611f4061207d565b6001600160a01b0316611f51611ae4565b6001600160a01b031614611f775760405162461bcd60e51b8152600401610bc990613b1b565b6001600160a01b03166000908152600460205260409020805460ff19169055565b60145481565b601a546001600160a01b031681565b611fb561207d565b6001600160a01b0316611fc6611ae4565b6001600160a01b031614611fec5760405162461bcd60e51b8152600401610bc990613b1b565b6001600160a01b0381166120125760405162461bcd60e51b8152600401610bc9906139dd565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b601d54600160c01b900460ff1681565b3390565b6001600160a01b0383166120a75760405162461bcd60e51b8152600401610bc990613bde565b6001600160a01b0382166120cd5760405162461bcd60e51b8152600401610bc990613a23565b6001600160a01b0380841660008181526003602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590612128908590613d85565b60405180910390a3505050565b600061215782612151606460085461247090919063ffffffff16565b906124ea565b9050600061217583612151606460095461247090919063ffffffff16565b6001600160a01b03851660009081526002602052604090205490915061219b9083612483565b6001600160a01b0385166000908152600260209081526040808320939093556001905220546121ca9082612483565b6001600160a01b0385166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612219908690613d85565b60405180910390a350505050565b6001600160a01b031660009081526004602090815260408083208054600160ff1991821681179092556005845282852080548216831790556006909352922080549091169091179055565b6001600160a01b0383166122985760405162461bcd60e51b8152600401610bc990613b99565b6001600160a01b0382166122be5760405162461bcd60e51b8152600401610bc990613950565b600081116122de5760405162461bcd60e51b8152600401610bc990613b50565b6001600160a01b03831660009081526006602052604090205460ff1615801561232057506001600160a01b03821660009081526006602052604090205460ff16155b15612347576020548111156123475760405162461bcd60e51b8152600401610bc990613ad3565b6000612352306118da565b9050602054811061236257506020545b602154811080159081906123805750601f54600160a01b900460ff16155b801561239a5750601e546001600160a01b03868116911614155b80156123af5750601f54600160a81b900460ff165b156123c25760215491506123c2826124f6565b6001600160a01b03851660009081526004602052604090205460019060ff168061240457506001600160a01b03851660009081526004602052604090205460ff165b1561240d575060005b6124198686868461279c565b505050505050565b600081848411156124455760405162461bcd60e51b8152600401610bc991906138fd565b505050900390565b600080600061245a612910565b90925090506124698282612470565b9250505090565b600061247c8284613dca565b9392505050565b600061247c8284613db2565b60008060008060008060008060006124a68a612acd565b92509250925060008060006124c48d86866124bf61244d565b612b09565b919f909e50909c50959a5093985091965092945050505050565b600061247c8284613e09565b600061247c8284613dea565b601f805460ff60a01b1916600160a01b1790556000612516826002612470565b9050600061252483836124de565b90506000601f60009054906101000a90046001600160a01b03166001600160a01b0316634aa4a4fc6040518163ffffffff1660e01b815260040160206040518083038186803b15801561257657600080fd5b505afa15801561258a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125ae91906136c1565b6001600160a01b03166370a08231306040518263ffffffff1660e01b81526004016125d991906138c5565b60206040518083038186803b1580156125f157600080fd5b505afa158015612605573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612629919061381b565b905061263483612b59565b600061274182601f60009054906101000a90046001600160a01b03166001600160a01b0316634aa4a4fc6040518163ffffffff1660e01b815260040160206040518083038186803b15801561268857600080fd5b505afa15801561269c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126c091906136c1565b6001600160a01b03166370a08231306040518263ffffffff1660e01b81526004016126eb91906138c5565b60206040518083038186803b15801561270357600080fd5b505afa158015612717573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061273b919061381b565b906124de565b905061274d8382612cc7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161278093929190613d8e565b60405180910390a15050601f805460ff60a01b19169055505050565b806127a9576127a9612f32565b6001600160a01b03841660009081526005602052604090205460ff1680156127ea57506001600160a01b03831660009081526005602052604090205460ff16155b156127ff576127fa848484612f64565b6128fd565b6001600160a01b03841660009081526005602052604090205460ff1615801561284057506001600160a01b03831660009081526005602052604090205460ff165b15612850576127fa848484613088565b6001600160a01b03841660009081526005602052604090205460ff1615801561289257506001600160a01b03831660009081526005602052604090205460ff16155b156128a2576127fa848484613131565b6001600160a01b03841660009081526005602052604090205460ff1680156128e257506001600160a01b03831660009081526005602052604090205460ff165b156128f2576127fa848484613175565b6128fd848484613131565b8061290a5761290a6131e8565b50505050565b6009546008546000918291825b600754811015612a9b5782600160006007848154811061294d57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806129c6575081600260006007848154811061299f57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156129dd5760095460085494509450505050612ac9565b612a316001600060078481548110612a0557634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906124de565b9250612a876002600060078481548110612a5b57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906124de565b915080612a9381613e5b565b91505061291d565b50600854600954612aab91612470565b821015612ac357600954600854935093505050612ac9565b90925090505b9091565b600080600080612adc856131f6565b90506000612ae986613212565b90506000612afb8261273b89866124de565b979296509094509092505050565b6000808080612b1888866124ea565b90506000612b2688876124ea565b90506000612b3488886124ea565b90506000612b468261273b86866124de565b939b939a50919850919650505050505050565b6040805161010081018252308152601f5482516312a9293f60e21b815292516000936020808501936001600160a01b031692634aa4a4fc926004808201939291829003018186803b158015612bad57600080fd5b505afa158015612bc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612be591906136c1565b6001600160a01b031681526101f46020820152306040820152606001612c0d426103e8612483565b815260208101849052600060408201819052606090910152601e54909150612c409030906001600160a01b031684612081565b601e5460405163414bf38960e01b81526001600160a01b039091169063414bf38990612c70908490600401613c6e565b602060405180830381600087803b158015612c8a57600080fd5b505af1158015612c9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cc2919061381b565b505050565b600080612cd261322e565b91509150600080612ce3868661348d565b601f549193509150612d009030906001600160a01b031688612081565b601f60009054906101000a90046001600160a01b03166001600160a01b0316634aa4a4fc6040518163ffffffff1660e01b815260040160206040518083038186803b158015612d4e57600080fd5b505afa158015612d62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d8691906136c1565b601f5460405163095ea7b360e01b81526001600160a01b039283169263095ea7b392612db99291169089906004016138d9565b602060405180830381600087803b158015612dd357600080fd5b505af1158015612de7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e0b919061379c565b5060408051610160810182526001600160a01b038087168252858116602083015260225462ffffff81169383019390935263010000008304600290810b810b60608401526601000000000000909304830b90920b608082015260a0810184905260c08101839052600060e0820181905261010082018190526019549092166101208201526101408101612ea0426103e8612483565b9052601f54604051634418b22b60e11b81529192506001600160a01b031690638831645690612ed3908490600401613cd7565b608060405180830381600087803b158015612eed57600080fd5b505af1158015612f01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f259190613857565b5050505050505050505050565b600e54158015612f425750601054155b15612f4c57612f62565b600e8054600f5560108054601155600091829055555b565b600080600080600080612f768761248f565b6001600160a01b038f16600090815260026020526040902054959b50939950919750955093509150612fa890886124de565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054612fd790876124de565b6001600160a01b03808b1660009081526001602052604080822093909355908a16815220546130069086612483565b6001600160a01b038916600090815260016020526040902055613028816135e7565b613032848361366f565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516130759190613d85565b60405180910390a3505050505050505050565b60008060008060008061309a8761248f565b6001600160a01b038f16600090815260016020526040902054959b509399509197509550935091506130cc90876124de565b6001600160a01b03808b16600090815260016020908152604080832094909455918b168152600290915220546131029084612483565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546130069086612483565b6000806000806000806131438761248f565b6001600160a01b038f16600090815260016020526040902054959b50939950919750955093509150612fd790876124de565b6000806000806000806131878761248f565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506131b990886124de565b6001600160a01b038a166000908152600260209081526040808320939093556001905220546130cc90876124de565b600f54600e55601154601055565b6000610c876064611ecb600e54856124ea90919063ffffffff16565b6000610c876064611ecb601054856124ea90919063ffffffff16565b600080306001600160a01b0316601f60009054906101000a90046001600160a01b03166001600160a01b0316634aa4a4fc6040518163ffffffff1660e01b815260040160206040518083038186803b15801561328957600080fd5b505afa15801561329d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132c191906136c1565b6001600160a01b0316106132d5573061335b565b601f60009054906101000a90046001600160a01b03166001600160a01b0316634aa4a4fc6040518163ffffffff1660e01b815260040160206040518083038186803b15801561332357600080fd5b505afa158015613337573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061335b91906136c1565b9150306001600160a01b0316601f60009054906101000a90046001600160a01b03166001600160a01b0316634aa4a4fc6040518163ffffffff1660e01b815260040160206040518083038186803b1580156133b557600080fd5b505afa1580156133c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133ed91906136c1565b6001600160a01b0316116134015730613487565b601f60009054906101000a90046001600160a01b03166001600160a01b0316634aa4a4fc6040518163ffffffff1660e01b815260040160206040518083038186803b15801561344f57600080fd5b505afa158015613463573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061348791906136c1565b90509091565b600080306001600160a01b0316601f60009054906101000a90046001600160a01b03166001600160a01b0316634aa4a4fc6040518163ffffffff1660e01b815260040160206040518083038186803b1580156134e857600080fd5b505afa1580156134fc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061352091906136c1565b6001600160a01b0316106135345783613536565b825b9150306001600160a01b0316601f60009054906101000a90046001600160a01b03166001600160a01b0316634aa4a4fc6040518163ffffffff1660e01b815260040160206040518083038186803b15801561359057600080fd5b505afa1580156135a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135c891906136c1565b6001600160a01b0316116135dc57836135de565b825b90509250929050565b60006135f161244d565b905060006135ff83836124ea565b3060009081526001602052604090205490915061361c9082612483565b3060009081526001602090815260408083209390935560059052205460ff1615612cc2573060009081526002602052604090205461365a9084612483565b30600090815260026020526040902055505050565b60095461367c90836124de565b600955600a5461368c9082612483565b600a555050565b8035600281900b8114610f4357600080fd5b6000602082840312156136b6578081fd5b813561247c81613e8c565b6000602082840312156136d2578081fd5b815161247c81613e8c565b600080604083850312156136ef578081fd5b82356136fa81613e8c565b9150602083013561370a81613e8c565b809150509250929050565b600080600060608486031215613729578081fd5b833561373481613e8c565b9250602084013561374481613e8c565b929592945050506040919091013590565b60008060408385031215613767578182fd5b823561377281613e8c565b946020939093013593505050565b600060208284031215613791578081fd5b813561247c81613ea1565b6000602082840312156137ad578081fd5b815161247c81613ea1565b6000806000606084860312156137cc578283fd5b833562ffffff811681146137de578384fd5b92506137ec60208501613693565b91506137fa60408501613693565b90509250925092565b600060208284031215613814578081fd5b5035919050565b60006020828403121561382c578081fd5b5051919050565b60008060408385031215613845578182fd5b82359150602083013561370a81613ea1565b6000806000806080858703121561386c578081fd5b8451935060208501516fffffffffffffffffffffffffffffffff81168114613892578182fd5b6040860151606090960151949790965092505050565b6001600160a01b03169052565b60020b9052565b62ffffff169052565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b818110156139295785810183015185820160400152820161390d565b8181111561393a5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260408201526965666c656374696f6e7360b01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604082015260600190565b6020808252601f908201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604082015260600190565b60208082526028908201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546040820152673c20b6b7bab73a1760c11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206040820152687468616e207a65726f60b81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252602c908201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460408201526b3434b990333ab731ba34b7b760a11b606082015260800190565b81516001600160a01b03908116825260208084015182169083015260408084015162ffffff16908301526060808401518216908301526080808401519083015260a0838101519083015260c0808401519083015260e09283015116918101919091526101000190565b600061016082019050613ceb8284516138a8565b6020830151613cfd60208401826138a8565b506040830151613d1060408401826138bc565b506060830151613d2360608401826138b5565b506080830151613d3660808401826138b5565b5060a083015160a083015260c083015160c083015260e083015160e083015261010080840151818401525061012080840151613d74828501826138a8565b505061014092830151919092015290565b90815260200190565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b60008219821115613dc557613dc5613e76565b500190565b600082613de557634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615613e0457613e04613e76565b500290565b600082821015613e1b57613e1b613e76565b500390565b600281046001821680613e3457607f821691505b60208210811415613e5557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613e6f57613e6f613e76565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610d8557600080fd5b8015158114610d8557600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d049d4620ba0148886b8dd568a331cc64d79415e7b956b1dc5ca29393810649f64736f6c63430008010033

Deployed Bytecode Sourcemap

227:24893:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12276:96;;;;;;;;;;-1:-1:-1;12276:96:2;;;;;:::i;:::-;;:::i;:::-;;3215:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1207:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4161:186::-;;;;;;;;;;-1:-1:-1;4161:186:2;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1335:37::-;;;;;;;;;;;;;:::i;5601:85::-;;;;;;;;;;;;;:::i;8489:209::-;;;;;;;;;;;;;:::i;1696:36::-;;;;;;;;;;;;;:::i;3480:93::-;;;;;;;;;;;;;:::i;6610:174::-;;;;;;;;;;-1:-1:-1;6610:174:2;;;;;:::i;:::-;;:::i;4353:431::-;;;;;;;;;;-1:-1:-1;4353:431:2;;;;;:::i;:::-;;:::i;8017:221::-;;;;;;;;;;;;;:::i;5692:215::-;;;;;;;;;;-1:-1:-1;5692:215:2;;;;;:::i;:::-;;:::i;9919:311::-;;;;;;;;;;-1:-1:-1;9919:311:2;;;;;:::i;:::-;;:::i;12146:124::-;;;;;;;;;;-1:-1:-1;12146:124:2;;;;;:::i;:::-;;:::i;3393:81::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;10569:468::-;;;;;;;;;;-1:-1:-1;10569:468:2;;;;;:::i;:::-;;:::i;4790:289::-;;;;;;;;;;-1:-1:-1;4790:289:2;;;;;:::i;:::-;;:::i;1029:26::-;;;;;;;;;;;;;:::i;9032:409::-;;;;;;;;;;-1:-1:-1;9032:409:2;;;;;:::i;:::-;;:::i;6947:159::-;;;;;;;;;;-1:-1:-1;6947:159:2;;;;;:::i;:::-;;:::i;24203:915::-;;;;;;;;;;-1:-1:-1;24203:915:2;;;;;:::i;:::-;;:::i;11786:109::-;;;;;;;;;;-1:-1:-1;11786:109:2;;;;;:::i;:::-;;:::i;9447:466::-;;;;;;;;;;-1:-1:-1;9447:466:2;;;;;:::i;:::-;;:::i;2080:40::-;;;;;;;;;;;;;:::i;7784:227::-;;;;;;;;;;;;;:::i;10236:327::-;;;;;;;;;;-1:-1:-1;10236:327:2;;;;;:::i;:::-;;:::i;6082:167::-;;;;;;;;;;-1:-1:-1;6082:167:2;;;;;:::i;:::-;;:::i;1579:32::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;16432:122::-;;;;;;;;;;-1:-1:-1;16432:122:2;;;;;:::i;:::-;;:::i;1250:35::-;;;;;;;;;;;;;:::i;5913:163::-;;;;;;;;;;-1:-1:-1;5913:163:2;;;;;:::i;:::-;;:::i;1109:32::-;;;;;;;;;;;;;:::i;1466:::-;;;;;;;;;;;;;:::i;1778:37::-;;;;;;;;;;;;;:::i;3579:195::-;;;;;;;;;;-1:-1:-1;3579:195:2;;;;;:::i;:::-;;:::i;1693:145:15:-;;;;;;;;;;;;;:::i;2127:53:2:-;;;;;;;;;;;;;:::i;1738:34::-;;;;;;;;;;;;;:::i;12015:125::-;;;;;;;;;;-1:-1:-1;12015:125:2;;;;;:::i;:::-;;:::i;6255:174::-;;;;;;;;;;-1:-1:-1;6255:174:2;;;;;:::i;:::-;;:::i;1658:31::-;;;;;;;;;;;;;:::i;1504:30::-;;;;;;;;;;;;;:::i;5477:118::-;;;;;;;;;;-1:-1:-1;5477:118:2;;;;;:::i;:::-;;:::i;1061:85:15:-;;;;;;;;;;;;;:::i;12378:120:2:-;;;;;;;;;;-1:-1:-1;12378:120:2;;;;;:::i;:::-;;:::i;3302:85::-;;;;;;;;;;;;;:::i;1821:36::-;;;;;;;;;;;;;:::i;1424:35::-;;;;;;;;;;;;;:::i;7557:221::-;;;;;;;;;;;;;:::i;1908:35::-;;;;;;;;;;;;;:::i;5085:386::-;;;;;;;;;;-1:-1:-1;5085:386:2;;;;;:::i;:::-;;:::i;3780:192::-;;;;;;;;;;-1:-1:-1;3780:192:2;;;;;:::i;:::-;;:::i;1985:61::-;;;;;;;;;;;;;:::i;6435:169::-;;;;;;;;;;-1:-1:-1;6435:169:2;;;;;:::i;:::-;;:::i;1617:35::-;;;;;;;;;;;;;:::i;8244:239::-;;;;;;;;;;;;;:::i;7336:215::-;;;;;;;;;;;;;:::i;1950:29::-;;;;;;;;;;;;;:::i;12646:168::-;;;;;;;;;;-1:-1:-1;12646:168:2;;;;;:::i;:::-;;:::i;16560:166::-;;;;;;;;;;-1:-1:-1;16560:166:2;;;;;:::i;:::-;;:::i;12504:136::-;;;;;;;;;;-1:-1:-1;12504:136:2;;;;;:::i;:::-;;:::i;3978:177::-;;;;;;;;;;-1:-1:-1;3978:177:2;;;;;:::i;:::-;;:::i;1378:40::-;;;;;;;;;;;;;:::i;6790:151::-;;;;;;;;;;-1:-1:-1;6790:151:2;;;;;:::i;:::-;;:::i;11901:108::-;;;;;;;;;;-1:-1:-1;11901:108:2;;;;;:::i;:::-;;:::i;1291:38::-;;;;;;;;;;;;;:::i;1540:33::-;;;;;;;;;;;;;:::i;1987:240:15:-;;;;;;;;;;-1:-1:-1;1987:240:15;;;;;:::i;:::-;;:::i;1863:39:2:-;;;;;;;;;;;;;:::i;12276:96::-;1284:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:15;;1265:68;;;;-1:-1:-1;;;1265:68:15;;;;;;;:::i;:::-;;;;;;;;;12349:7:2::1;:16:::0;12276:96::o;3215:81::-;3252:13;3284:5;3277:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3215:81;:::o;1207:37::-;;;;:::o;4161:186::-;4260:4;4280:39;4289:12;:10;:12::i;:::-;4303:7;4312:6;4280:8;:39::i;:::-;-1:-1:-1;4336:4:2;4161:186;;;;;:::o;1335:37::-;;;;:::o;5601:85::-;5669:10;;5601:85;:::o;8489:209::-;8560:15;;-1:-1:-1;;;;;8560:15:2;8544:12;:10;:12::i;:::-;-1:-1:-1;;;;;8544:31:2;;8536:40;;;;;;8595:14;;-1:-1:-1;;;8595:14:2;;;;8594:15;8586:24;;;;;;8627:15;;8644;;8621:39;;-1:-1:-1;;;;;8627:15:2;;8621:5;:39::i;:::-;8670:14;:21;;-1:-1:-1;;;;8670:21:2;-1:-1:-1;;;8670:21:2;;;8489:209::o;1696:36::-;;;-1:-1:-1;;;1696:36:2;;;;;:::o;3480:93::-;3559:7;;3480:93;:::o;6610:174::-;1284:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:15;;1265:68;;;;-1:-1:-1;;;1265:68:15;;;;;;;:::i;:::-;6693:20:2::1;:37:::0;;-1:-1:-1;;;;;;6693:37:2::1;-1:-1:-1::0;;;;;6693:37:2;;::::1;::::0;;;::::1;::::0;;;;6740::::1;::::0;6756:20:::1;6740:15;:37::i;:::-;6610:174:::0;:::o;4353:431::-;4481:4;4497:36;4507:6;4515:9;4526:6;4497:9;:36::i;:::-;4543:213;4565:6;4585:12;:10;:12::i;:::-;4611:135;4666:6;4611:135;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4611:19:2;;;;;;:11;:19;;;;;;4631:12;:10;:12::i;:::-;-1:-1:-1;;;;;4611:33:2;;;;;;;;;;;;-1:-1:-1;4611:33:2;;;:135;:37;:135::i;:::-;4543:8;:213::i;:::-;-1:-1:-1;4773:4:2;4353:431;;;;;:::o;8017:221::-;8090:17;;-1:-1:-1;;;;;8090:17:2;8074:12;:10;:12::i;:::-;-1:-1:-1;;;;;8074:33:2;;8066:42;;;;;;8127:16;;-1:-1:-1;;;8127:16:2;;;;8126:17;8118:26;;;;;;8161:17;;8180;;8155:43;;-1:-1:-1;;;;;8161:17:2;;8155:5;:43::i;:::-;8208:16;:23;;-1:-1:-1;;;;8208:23:2;-1:-1:-1;;;8208:23:2;;;8017:221::o;5692:215::-;1284:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:15;;1265:68;;;;-1:-1:-1;;;1265:68:15;;;;;;;:::i;:::-;5817:13:2::1;:19:::0;;-1:-1:-1;;5817:19:2::1;;::::0;;::::1;;-1:-1:-1::0;;5846:22:2::1;::::0;::::1;::::0;;::::1;::::0;::::1;;;-1:-1:-1::0;;5878:22:2::1;::::0;;;;::::1;::::0;;;::::1;;;::::0;;5692:215::o;9919:311::-;10010:7;10065;;10054;:18;;10033:107;;;;-1:-1:-1;;;10033:107:2;;;;;;;:::i;:::-;10150:19;10172:10;:8;:10::i;:::-;10150:32;-1:-1:-1;10199:24:2;:7;10150:32;10199:11;:24::i;:::-;10192:31;;;9919:311;;;;:::o;12146:124::-;1284:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:15;;1265:68;;;;-1:-1:-1;;;1265:68:15;;;;;;;:::i;:::-;-1:-1:-1;;;;;12220:35:2::1;12258:5;12220:35:::0;;;:26:::1;:35;::::0;;;;:43;;-1:-1:-1;;12220:43:2::1;::::0;;12146:124::o;3393:81::-;3458:9;;;;3393:81;:::o;10569:468::-;1284:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:15;;1265:68;;;;-1:-1:-1;;;1265:68:15;;;;;;;:::i;:::-;-1:-1:-1;;;;;10650:20:2;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;10642:60;;;;-1:-1:-1::0;;;10642:60:2::1;;;;;;;:::i;:::-;10717:9;10712:319;10736:9;:16:::0;10732:20;::::1;10712:319;;;10793:7;-1:-1:-1::0;;;;;10777:23:2::1;:9;10787:1;10777:12;;;;;;-1:-1:-1::0;;;10777:12:2::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;10777:12:2::1;:23;10773:248;;;10835:9;10845:16:::0;;:20:::1;::::0;10864:1:::1;::::0;10845:20:::1;:::i;:::-;10835:31;;;;;;-1:-1:-1::0;;;10835:31:2::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;10820:9:::1;:12:::0;;-1:-1:-1;;;;;10835:31:2;;::::1;::::0;10830:1;;10820:12;::::1;;;-1:-1:-1::0;;;10820:12:2::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;10820:46:2::1;-1:-1:-1::0;;;;;10820:46:2;;::::1;;::::0;;10884:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;10922:11:::1;:20:::0;;;;:28;;-1:-1:-1;;10922:28:2::1;::::0;;10968:9:::1;:15:::0;;;::::1;;-1:-1:-1::0;;;10968:15:2::1;;;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;10968:15:2;;;;;-1:-1:-1;;;;;;10968:15:2::1;::::0;;;;;11001:5:::1;;10773:248;10754:3:::0;::::1;::::0;::::1;:::i;:::-;;;;10712:319;;;;10569:468:::0;:::o;4790:289::-;4902:4;4922:129;4944:12;:10;:12::i;:::-;4970:7;4991:50;5030:10;4991:11;:25;5003:12;:10;:12::i;:::-;-1:-1:-1;;;;;4991:25:2;;;;;;;;;;;;;;;;;-1:-1:-1;4991:25:2;;;:34;;;;;;;;;;;:38;:50::i;1029:26::-;;;;:::o;9032:409::-;9083:14;9100:12;:10;:12::i;:::-;-1:-1:-1;;;;;9144:19:2;;;;;;:11;:19;;;;;;9083:29;;-1:-1:-1;9144:19:2;;9143:20;9122:111;;;;-1:-1:-1;;;9122:111:2;;;;;;;:::i;:::-;9244:15;9273:19;9284:7;9273:10;:19::i;:::-;-1:-1:-1;;;;;;;;;9320:15:2;;;;;;:7;:15;;;;;;9243:49;;-1:-1:-1;9320:28:2;;:15;-1:-1:-1;9243:49:2;9320:19;:28::i;:::-;-1:-1:-1;;;;;9302:15:2;;;;;;:7;:15;;;;;:46;9368:7;;:20;;9380:7;9368:11;:20::i;:::-;9358:7;:30;9411:10;;:23;;9426:7;9411:14;:23::i;:::-;9398:10;:36;-1:-1:-1;;;9032:409:2:o;6947:159::-;1284:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:15;;1265:68;;;;-1:-1:-1;;;1265:68:15;;;;;;;:::i;:::-;7025:15:2::1;:32:::0;;-1:-1:-1;;;;;;7025:32:2::1;-1:-1:-1::0;;;;;7025:32:2;;::::1;::::0;;;::::1;::::0;;;;7067::::1;::::0;7083:15:::1;7067;:32::i;24203:915::-:0;24249:4;24283:6;24303:11;24249:4;24315:12;:10;:12::i;:::-;-1:-1:-1;;;;;24303:25:2;;;;;;;;;;;;-1:-1:-1;24303:25:2;;;;24299:792;;;24359:7;:21;24367:12;:10;:12::i;:::-;-1:-1:-1;;;;;24359:21:2;-1:-1:-1;;;;;24359:21:2;;;;;;;;;;;;;24348:7;:32;24344:102;;24410:7;:21;24418:12;:10;:12::i;:::-;-1:-1:-1;;;;;24410:21:2;-1:-1:-1;;;;;24410:21:2;;;;;;;;;;;;;24400:31;;24344:102;24460:15;24478:23;24490:10;:8;:10::i;:::-;24478:7;;:11;:23::i;:::-;24460:41;;24539:34;24565:7;24539;:21;24547:12;:10;:12::i;:::-;-1:-1:-1;;;;;24539:21:2;;;;;;;;;;;;-1:-1:-1;24539:21:2;;;:25;:34::i;:::-;24515:7;:21;24523:12;:10;:12::i;:::-;-1:-1:-1;;;;;24515:21:2;-1:-1:-1;;;;;24515:21:2;;;;;;;;;;;;:58;;;;24611:34;24637:7;24611;:21;24619:12;:10;:12::i;24611:34::-;24587:7;:21;24595:12;:10;:12::i;:::-;-1:-1:-1;;;;;24587:21:2;;;;;;;;;;;;-1:-1:-1;24587:21:2;:58;24669:7;;:20;;24681:7;24669:11;:20::i;:::-;24659:7;:30;24713:7;;:20;;24725:7;24713:11;:20::i;:::-;24703:7;:30;-1:-1:-1;24299:792:2;;;24764:15;24782:23;24794:10;:8;:10::i;24782:23::-;24764:41;;24834:7;:21;24842:12;:10;:12::i;:::-;-1:-1:-1;;;;;24834:21:2;-1:-1:-1;;;;;24834:21:2;;;;;;;;;;;;;24823:7;:32;24819:102;;24885:7;:21;24893:12;:10;:12::i;:::-;-1:-1:-1;;;;;24885:21:2;-1:-1:-1;;;;;24885:21:2;;;;;;;;;;;;;24875:31;;24819:102;24958:34;24984:7;24958;:21;24966:12;:10;:12::i;24958:34::-;24934:7;:21;24942:12;:10;:12::i;:::-;-1:-1:-1;;;;;24934:21:2;;;;;;;;;;;;-1:-1:-1;24934:21:2;:58;25016:7;;:20;;25028:7;25016:11;:20::i;:::-;25006:7;:30;25060:7;;:20;;25072:7;25060:11;:20::i;:::-;25050:7;:30;-1:-1:-1;;25107:4:2;;24203:915;-1:-1:-1;;24203:915:2:o;11786:109::-;1284:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:15;;1265:68;;;;-1:-1:-1;;;1265:68:15;;;;;;;:::i;:::-;-1:-1:-1;;;;;11854:27:2::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;11854:34:2::1;11884:4;11854:34;::::0;;11786:109::o;9447:466::-;9562:7;9604;;9593;:18;;9585:62;;;;-1:-1:-1;;;9585:62:2;;;;;;;:::i;:::-;9662:17;9657:250;;9696:15;9725:19;9736:7;9725:10;:19::i;:::-;-1:-1:-1;9695:49:2;;-1:-1:-1;9758:14:2;;-1:-1:-1;;;;;9758:14:2;9657:250;9806:23;9841:19;9852:7;9841:10;:19::i;:::-;-1:-1:-1;9803:57:2;;-1:-1:-1;9874:22:2;;-1:-1:-1;;;;;9874:22:2;2080:40;;;-1:-1:-1;;;2080:40:2;;;;;:::o;7784:227::-;7858:18;;-1:-1:-1;;;;;7858:18:2;7842:12;:10;:12::i;:::-;-1:-1:-1;;;;;7842:34:2;;7834:43;;;;;;7896:17;;-1:-1:-1;;;7896:17:2;;;;7895:18;7887:27;;;;;;7931:18;;7951;;7925:45;;-1:-1:-1;;;;;7931:18:2;;7925:5;:45::i;:::-;7980:17;:24;;-1:-1:-1;;;;7980:24:2;-1:-1:-1;;;7980:24:2;;;7784:227::o;10236:327::-;1284:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:15;;1265:68;;;;-1:-1:-1;;;1265:68:15;;;;;;;:::i;:::-;-1:-1:-1;;;;;10318:20:2;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;10317:21;10309:61;;;;-1:-1:-1::0;;;10309:61:2::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;10384:16:2;::::1;10403:1;10384:16:::0;;;:7:::1;:16;::::0;;;;;:20;10380:107:::1;;-1:-1:-1::0;;;;;10459:16:2;::::1;;::::0;;;:7:::1;:16;::::0;;;;;10439:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;10420:16:2;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;10380:107:::1;-1:-1:-1::0;;;;;10496:20:2::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;10496:27:2::1;10519:4;10496:27:::0;;::::1;::::0;;;10533:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;10533:23:2::1;::::0;;::::1;::::0;;10236:327::o;6082:167::-;1284:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:15;;1265:68;;;;-1:-1:-1;;;1265:68:15;;;;;;;:::i;:::-;6164:17:2::1;:36:::0;;-1:-1:-1;;;;;;6164:36:2::1;-1:-1:-1::0;;;;;6164:36:2;;::::1;::::0;;;::::1;::::0;;;6226:15:::1;::::0;6210:32:::1;::::0;6226:15:::1;6210;:32::i;1579:::-:0;;;-1:-1:-1;;;;;1579:32:2;;:::o;16432:122::-;-1:-1:-1;;;;;16520:27:2;16497:4;16520:27;;;:18;:27;;;;;;;;;16432:122::o;1250:35::-;;;;:::o;5913:163::-;1284:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:15;;1265:68;;;;-1:-1:-1;;;1265:68:15;;;;;;;:::i;:::-;5993:16:2::1;:34:::0;;-1:-1:-1;;;;;;5993:34:2::1;-1:-1:-1::0;;;;;5993:34:2;;::::1;::::0;;;::::1;::::0;;;6053:15:::1;::::0;6037:32:::1;::::0;6053:15:::1;6037;:32::i;1109:::-:0;;;;:::o;1466:::-;;;-1:-1:-1;;;;;1466:32:2;;:::o;1778:37::-;;;-1:-1:-1;;;1778:37:2;;;;;:::o;3579:195::-;-1:-1:-1;;;;;3668:20:2;;3645:7;3668:20;;;:11;:20;;;;;;;;3664:49;;;-1:-1:-1;;;;;;3697:16:2;;;;;;:7;:16;;;;;;3690:23;;3664:49;-1:-1:-1;;;;;3750:16:2;;;;;;:7;:16;;;;;;3730:37;;:19;:37::i;1693:145:15:-;1284:12;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:15;;1265:68;;;;-1:-1:-1;;;1265:68:15;;;;;;;:::i;:::-;1799:1:::1;1783:6:::0;;1762:40:::1;::::0;-1:-1:-1;;;;;1783:6:15;;::::1;::::0;1762:40:::1;::::0;1799:1;;1762:40:::1;1829:1;1812:19:::0;;-1:-1:-1;;;;;;1812:19:15::1;::::0;;1693:145::o;2127:53:2:-;;;;:::o;1738:34::-;;;-1:-1:-1;;;1738:34:2;;;;;:::o;12015:125::-;1284:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:15;;1265:68;;;;-1:-1:-1;;;1265:68:15;;;;;;;:::i;:::-;-1:-1:-1;;;;;12091:35:2::1;;::::0;;;:26:::1;:35;::::0;;;;:42;;-1:-1:-1;;12091:42:2::1;12129:4;12091:42;::::0;;12015:125::o;6255:174::-;1284:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:15;;1265:68;;;;-1:-1:-1;;;1265:68:15;;;;;;;:::i;:::-;6339:18:2::1;:38:::0;;-1:-1:-1;;;;;;6339:38:2::1;-1:-1:-1::0;;;;;6339:38:2;;::::1;::::0;;;::::1;::::0;;;;6387:35:::1;::::0;6403:18:::1;6387:15;:35::i;1658:31::-:0;;;-1:-1:-1;;;;;1658:31:2;;:::o;1504:30::-;;;-1:-1:-1;;;;;1504:30:2;;:::o;5477:118::-;-1:-1:-1;;;;;5568:20:2;5545:4;5568:20;;;:11;:20;;;;;;;;;5477:118::o;1061:85:15:-;1107:7;1133:6;-1:-1:-1;;;;;1133:6:15;1061:85;:::o;12378:120:2:-;1284:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:15;;1265:68;;;;-1:-1:-1;;;1265:68:15;;;;;;;:::i;:::-;12463:13:2::1;:28:::0;12378:120::o;3302:85::-;3341:13;3373:7;3366:14;;;;;:::i;1821:36::-;;;-1:-1:-1;;;1821:36:2;;;;;:::o;1424:35::-;;;;:::o;7557:221::-;7630:17;;-1:-1:-1;;;;;7630:17:2;7614:12;:10;:12::i;:::-;-1:-1:-1;;;;;7614:33:2;;7606:42;;;;;;7667:16;;-1:-1:-1;;;7667:16:2;;;;7666:17;7658:26;;;;;;7701:17;;7720;;7695:43;;-1:-1:-1;;;;;7701:17:2;;7695:5;:43::i;:::-;7748:16;:23;;-1:-1:-1;;;;7748:23:2;-1:-1:-1;;;7748:23:2;;;7557:221::o;1908:35::-;;;-1:-1:-1;;;1908:35:2;;;;;:::o;5085:386::-;5202:4;5222:221;5244:12;:10;:12::i;:::-;5270:7;5291:142;5347:15;5291:142;;;;;;;;;;;;;;;;;:11;:25;5303:12;:10;:12::i;:::-;-1:-1:-1;;;;;5291:25:2;;;;;;;;;;;;;;;;;-1:-1:-1;5291:25:2;;;:34;;;;;;;;;;;:142;:38;:142::i;3780:192::-;3882:4;3902:42;3912:12;:10;:12::i;:::-;3926:9;3937:6;3902:9;:42::i;1985:61::-;;;-1:-1:-1;;;;;1985:61:2;;:::o;6435:169::-;1284:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:15;;1265:68;;;;-1:-1:-1;;;1265:68:15;;;;;;;:::i;:::-;6517:17:2::1;:36:::0;;-1:-1:-1;;;;;;6517:36:2::1;-1:-1:-1::0;;;;;6517:36:2;;::::1;::::0;;;::::1;::::0;;;;6563:34:::1;::::0;6579:17:::1;6563:15;:34::i;1617:35::-:0;;;-1:-1:-1;;;;;1617:35:2;;:::o;8244:239::-;8320:20;;-1:-1:-1;;;;;8320:20:2;8304:12;:10;:12::i;:::-;-1:-1:-1;;;;;8304:36:2;;8296:45;;;;;;8360:19;;-1:-1:-1;;;8360:19:2;;;;8359:20;8351:29;;;;;;8397:20;;8419;;8391:49;;-1:-1:-1;;;;;8397:20:2;;8391:5;:49::i;:::-;8450:19;:26;;-1:-1:-1;;;;8450:26:2;-1:-1:-1;;;8450:26:2;;;8244:239::o;7336:215::-;7408:16;;-1:-1:-1;;;;;7408:16:2;7392:12;:10;:12::i;:::-;-1:-1:-1;;;;;7392:32:2;;7384:41;;;;;;7444:15;;-1:-1:-1;;;7444:15:2;;;;7443:16;7435:25;;;;;;7477:16;;7495;;7471:41;;-1:-1:-1;;;;;7477:16:2;;7471:5;:41::i;:::-;7522:15;:22;;-1:-1:-1;;;;7522:22:2;-1:-1:-1;;;7522:22:2;;;7336:215::o;1950:29::-;;;-1:-1:-1;;;;;1950:29:2;;:::o;12646:168::-;1284:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:15;;1265:68;;;;-1:-1:-1;;;1265:68:15;;;;;;;:::i;:::-;12722:21:2::1;:32:::0;;-1:-1:-1;;;;12722:32:2::1;-1:-1:-1::0;;;12722:32:2;::::1;;;;::::0;;12769:38:::1;::::0;::::1;::::0;::::1;::::0;12722:32;;12769:38:::1;:::i;:::-;;;;;;;;12646:168:::0;:::o;16560:166::-;-1:-1:-1;;;;;16684:35:2;16657:4;16684:35;;;:26;:35;;;;;;;;;16560:166::o;12504:136::-;1284:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:15;;1265:68;;;;-1:-1:-1;;;1265:68:15;;;;;;;:::i;:::-;12597:36:2::1;12627:5;12597:25;12609:12;12597:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:36::i;:::-;12582:12;:51:::0;-1:-1:-1;12504:136:2:o;3978:177::-;-1:-1:-1;;;;;4121:18:2;;;4091:7;4121:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3978:177::o;1378:40::-;;;;:::o;6790:151::-;6878:17;;-1:-1:-1;;;;;6878:17:2;6862:12;:10;:12::i;:::-;-1:-1:-1;;;;;6862:33:2;;6854:42;;;;;;6906:28;6922:11;6906:15;:28::i;11901:108::-;1284:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:15;;1265:68;;;;-1:-1:-1;;;1265:68:15;;;;;;;:::i;:::-;-1:-1:-1;;;;;11967:27:2::1;11997:5;11967:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;11967:35:2::1;::::0;;11901:108::o;1291:38::-;;;;:::o;1540:33::-;;;-1:-1:-1;;;;;1540:33:2;;:::o;1987:240:15:-;1284:12;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:15;;1265:68;;;;-1:-1:-1;;;1265:68:15;;;;;;;:::i;:::-;-1:-1:-1;;;;;2075:22:15;::::1;2067:73;;;;-1:-1:-1::0;;;2067:73:15::1;;;;;;;:::i;:::-;2176:6;::::0;;2155:38:::1;::::0;-1:-1:-1;;;;;2155:38:15;;::::1;::::0;2176:6;::::1;::::0;2155:38:::1;::::0;::::1;2203:6;:17:::0;;-1:-1:-1;;;;;;2203:17:15::1;-1:-1:-1::0;;;;;2203:17:15;;;::::1;::::0;;;::::1;::::0;;1987:240::o;1863:39:2:-;;;-1:-1:-1;;;1863:39:2;;;;;:::o;586:96:1:-;665:10;586:96;:::o;16732:361:2:-;-1:-1:-1;;;;;16854:19:2;;16846:68;;;;-1:-1:-1;;;16846:68:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;16932:21:2;;16924:68;;;;-1:-1:-1;;;16924:68:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;17003:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;17054:32;;;;;17033:6;;17054:32;:::i;:::-;;;;;;;;16732:361;;;:::o;8704:322::-;8766:15;8784:31;8807:7;8784:18;8796:5;8784:7;;:11;;:18;;;;:::i;:::-;:22;;:31::i;:::-;8766:49;;8825:15;8843:31;8866:7;8843:18;8855:5;8843:7;;:11;;:18;;;;:::i;:31::-;-1:-1:-1;;;;;8899:11:2;;;;;;:7;:11;;;;;;8825:49;;-1:-1:-1;8899:24:2;;8915:7;8899:15;:24::i;:::-;-1:-1:-1;;;;;8885:11:2;;;;;;:7;:11;;;;;;;;:38;;;;8947:7;:11;;;;:24;;8963:7;8947:15;:24::i;:::-;-1:-1:-1;;;;;8933:11:2;;;;;;:7;:11;;;;;;:38;;;;8986:33;;8933:11;;;8986:33;;;;9011:7;;8986:33;:::i;:::-;;;;;;;;8704:322;;;;:::o;7112:218::-;-1:-1:-1;;;;;7179:34:2;;;;;:18;:34;;;;;;;;:41;;7216:4;-1:-1:-1;;7179:41:2;;;;;;;;7230:11;:27;;;;;:34;;;;;;;;7274:26;:42;;;;;:49;;;;;;;;;;7112:218::o;17099:1337::-;-1:-1:-1;;;;;17216:18:2;;17208:68;;;;-1:-1:-1;;;17208:68:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;17294:16:2;;17286:64;;;;-1:-1:-1;;;17286:64:2;;;;;;;:::i;:::-;17377:1;17368:6;:10;17360:64;;;;-1:-1:-1;;;17360:64:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;17452:32:2;;;;;;:26;:32;;;;;;;;17451:33;:68;;;;-1:-1:-1;;;;;;17489:30:2;;;;;;:26;:30;;;;;;;;17488:31;17451:68;17434:229;;;17577:12;;17567:6;:22;;17542:121;;;;-1:-1:-1;;;17542:121:2;;;;;;;:::i;:::-;17674:28;17705:24;17723:4;17705:9;:24::i;:::-;17674:55;;17768:12;;17744:20;:36;17740:102;;-1:-1:-1;17819:12:2;;17740:102;17915:29;;17891:53;;;;;;;17971:52;;-1:-1:-1;18007:16:2;;-1:-1:-1;;;18007:16:2;;;;18006:17;17971:52;:95;;;;-1:-1:-1;18055:10:2;;-1:-1:-1;;;;;18039:27:2;;;18055:10;;18039:27;;17971:95;:132;;;;-1:-1:-1;18082:21:2;;-1:-1:-1;;;18082:21:2;;;;17971:132;17954:288;;;18151:29;;18128:52;;18195:36;18210:20;18195:14;:36::i;:::-;-1:-1:-1;;;;;18286:24:2;;18252:12;18286:24;;;:18;:24;;;;;;18267:4;;18286:24;;;:50;;-1:-1:-1;;;;;;18314:22:2;;;;;;:18;:22;;;;;;;;18286:50;18282:96;;;-1:-1:-1;18362:5:2;18282:96;18388:41;18403:4;18409:2;18413:6;18421:7;18388:14;:41::i;:::-;17099:1337;;;;;;:::o;2854:201:16:-;2940:7;2999:12;2991:6;;;;2983:29;;;;-1:-1:-1;;;2983:29:16;;;;;;;;:::i;:::-;-1:-1:-1;;;3033:5:16;;;2854:201::o;14643:161:2:-;14685:7;14705:15;14722;14741:19;:17;:19::i;:::-;14704:56;;-1:-1:-1;14704:56:2;-1:-1:-1;14777:20:2;14704:56;;14777:11;:20::i;:::-;14770:27;;;;14643:161;:::o;1745:96:16:-;1803:7;1829:5;1833:1;1829;:5;:::i;:::-;1822:12;1745:96;-1:-1:-1;;;1745:96:16:o;650:::-;708:7;734:5;738:1;734;:5;:::i;13060:631:2:-;13156:7;13177;13198;13219;13240;13261;13294:23;13319:12;13333:18;13367:20;13379:7;13367:11;:20::i;:::-;13293:94;;;;;;13398:15;13415:23;13440:12;13468:50;13480:7;13489:4;13495:10;13507;:8;:10::i;:::-;13468:11;:50::i;:::-;13397:121;;;;-1:-1:-1;13397:121:2;;-1:-1:-1;13617:15:2;;-1:-1:-1;13646:4:2;;-1:-1:-1;13664:10:2;;-1:-1:-1;13060:631:2;;-1:-1:-1;;;;;13060:631:2:o;1017:96:16:-;1075:7;1101:5;1105:1;1101;:5;:::i;1360:96::-;1418:7;1444:5;1448:1;1444;:5;:::i;18442:611:2:-;2598:16;:23;;-1:-1:-1;;;;2598:23:2;-1:-1:-1;;;2598:23:2;;;;18541:27:::1;:20:::0;18566:1:::1;18541:24;:27::i;:::-;18526:42:::0;-1:-1:-1;18578:17:2::1;18598:30;:20:::0;18526:42;18598:24:::1;:30::i;:::-;18578:50;;18639:22;18683:26;;;;;;;;;-1:-1:-1::0;;;;;18683:26:2::1;-1:-1:-1::0;;;;;18683:32:2::1;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18676:52:2::1;;18737:4;18676:67;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18639:104;;18754:22;18771:4;18754:16;:22::i;:::-;18787:18;18820:121;18926:14;18827:26;;;;;;;;;-1:-1:-1::0;;;;;18827:26:2::1;-1:-1:-1::0;;;;;18827:32:2::1;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18820:69:2::1;;18898:4;18820:84;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:105:::0;::::1;:121::i;:::-;18787:154;;18952:35;18965:9;18976:10;18952:12;:35::i;:::-;19003:43;19018:4;19024:10;19036:9;19003:43;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;2642:16:2;:24;;-1:-1:-1;;;;2642:24:2;;;-1:-1:-1;;;18442:611:2:o;21409:817::-;21559:7;21554:28;;21568:14;:12;:14::i;:::-;-1:-1:-1;;;;;21597:19:2;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;21621:22:2;;;;;;:11;:22;;;;;;;;21620:23;21597:46;21593:587;;;21659:48;21681:6;21689:9;21700:6;21659:21;:48::i;:::-;21593:587;;;-1:-1:-1;;;;;21729:19:2;;;;;;:11;:19;;;;;;;;21728:20;:46;;;;-1:-1:-1;;;;;;21752:22:2;;;;;;:11;:22;;;;;;;;21728:46;21724:456;;;21790:46;21810:6;21818:9;21829:6;21790:19;:46::i;21724:456::-;-1:-1:-1;;;;;21858:19:2;;;;;;:11;:19;;;;;;;;21857:20;:47;;;;-1:-1:-1;;;;;;21882:22:2;;;;;;:11;:22;;;;;;;;21881:23;21857:47;21853:327;;;21920:44;21938:6;21946:9;21957:6;21920:17;:44::i;21853:327::-;-1:-1:-1;;;;;21985:19:2;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;22008:22:2;;;;;;:11;:22;;;;;;;;21985:45;21981:199;;;22046:48;22068:6;22076:9;22087:6;22046:21;:48::i;21981:199::-;22125:44;22143:6;22151:9;22162:6;22125:17;:44::i;:::-;22195:7;22190:29;;22204:15;:13;:15::i;:::-;21409:817;;;;:::o;14810:592::-;14907:7;;14942;;14861;;;;;14959:331;14983:9;:16;14979:20;;14959:331;;;15065:7;15041;:21;15049:9;15059:1;15049:12;;;;;;-1:-1:-1;;;15049:12:2;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15049:12:2;15041:21;;;;;;;;;;;;;:31;;:82;;;15116:7;15092;:21;15100:9;15110:1;15100:12;;;;;;-1:-1:-1;;;15100:12:2;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15100:12:2;15092:21;;;;;;;;;;;;;:31;15041:82;15020:143;;;15146:7;;15155;;15138:25;;;;;;;;;15020:143;15187:34;15199:7;:21;15207:9;15217:1;15207:12;;;;;;-1:-1:-1;;;15207:12:2;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15207:12:2;15199:21;;;;;;;;;;;;;15187:7;;:11;:34::i;:::-;15177:44;;15245:34;15257:7;:21;15265:9;15275:1;15265:12;;;;;;-1:-1:-1;;;15265:12:2;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15265:12:2;15257:21;;;;;;;;;;;;;15245:7;;:11;:34::i;:::-;15235:44;-1:-1:-1;15001:3:2;;;;:::i;:::-;;;;14959:331;;;-1:-1:-1;15325:7:2;;15313;;:20;;:11;:20::i;:::-;15303:7;:30;15299:61;;;15343:7;;15352;;15335:25;;;;;;;;15299:61;15378:7;;-1:-1:-1;15387:7:2;-1:-1:-1;14810:592:2;;;:::o;13697:399::-;13794:7;13815;13836;13868:12;13883:24;13899:7;13883:15;:24::i;:::-;13868:39;;13917:18;13938:30;13960:7;13938:21;:30::i;:::-;13917:51;-1:-1:-1;13978:23:2;14004:33;13917:51;14004:17;:7;14016:4;14004:11;:17::i;:33::-;13978:59;14072:4;;-1:-1:-1;14078:10:2;;-1:-1:-1;13697:399:2;;-1:-1:-1;;;13697:399:2:o;14102:535::-;14292:7;;;;14384:24;:7;14396:11;14384;:24::i;:::-;14366:42;-1:-1:-1;14418:12:2;14433:21;:4;14442:11;14433:8;:21::i;:::-;14418:36;-1:-1:-1;14464:18:2;14485:27;:10;14500:11;14485:14;:27::i;:::-;14464:48;-1:-1:-1;14522:23:2;14548:33;14464:48;14548:17;:7;14560:4;14548:11;:17::i;:33::-;14599:7;;;;-1:-1:-1;14625:4:2;;-1:-1:-1;14102:535:2;;-1:-1:-1;;;;;;;14102:535:2:o;19059:549::-;19185:304;;;;;;;;19245:4;19185:304;;19268:26;;:34;;-1:-1:-1;;;19268:34:2;;;;19124:46;;19185:304;;;;;-1:-1:-1;;;;;19268:26:2;;:32;;:34;;;;;19185:304;19268:34;;;;;;:26;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;19185:304:2;;;19320:3;19185:304;;;;19349:4;19185:304;;;;;;19372:36;19382:15;19403:4;19372:30;:36::i;:::-;19185:304;;;;;;;;-1:-1:-1;19185:304:2;;;;;;;;;;;19532:10;;19124:365;;-1:-1:-1;19500:57:2;;19517:4;;-1:-1:-1;;;;;19532:10:2;19426:11;19500:8;:57::i;:::-;19568:10;;:33;;-1:-1:-1;;;19568:33:2;;-1:-1:-1;;;;;19568:10:2;;;;:27;;:33;;19596:4;;19568:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19059:549;;:::o;20409:994::-;20490:14;20506;20524:11;:9;:11::i;:::-;20489:46;;;;20546:16;20564;20596:40;20613:11;20626:9;20596:16;:40::i;:::-;20704:26;;20545:91;;-1:-1:-1;20545:91:2;-1:-1:-1;20647:119:2;;20677:4;;-1:-1:-1;;;;;20704:26:2;20745:11;20647:8;:119::i;:::-;20783:26;;;;;;;;;-1:-1:-1;;;;;20783:26:2;-1:-1:-1;;;;;20783:32:2;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20848:26;;20776:132;;-1:-1:-1;;;20776:132:2;;-1:-1:-1;;;;;20776:50:2;;;;;;:132;;20848:26;;;20889:9;;20776:132;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;20984:364:2;;;;;;;;-1:-1:-1;;;;;20984:364:2;;;;;;;;;;;;21088:13;;;;;20984:364;;;;;;;21119:10;;;;;;;20984:364;;;;;;21147:10;;;;;;20984:364;;;;;;;;;;;;;;;;;;;20919:50;20984:364;;;;;;21088:13;20984:364;;;;;21265:15;;;;;20984:364;;;;;;;21298:36;21308:15;21329:4;21298:30;:36::i;:::-;20984:364;;21359:26;;:37;;-1:-1:-1;;;21359:37:2;;20919:429;;-1:-1:-1;;;;;;21359:26:2;;:31;;:37;;20919:429;;21359:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;20409:994;;;;;;;:::o;16071:227::-;16117:7;;:12;:34;;;;-1:-1:-1;16133:13:2;;:18;16117:34;16113:47;;;16153:7;;16113:47;16188:7;;;16170:15;:25;16229:13;;;16205:21;:37;-1:-1:-1;16253:11:2;;;;16274:17;16071:227;:::o;23530:667::-;23675:15;23704:23;23741:12;23767:23;23804:12;23830:18;23861:19;23872:7;23861:10;:19::i;:::-;-1:-1:-1;;;;;23908:15:2;;;;;;:7;:15;;;;;;23661:219;;-1:-1:-1;23661:219:2;;-1:-1:-1;23661:219:2;;-1:-1:-1;23661:219:2;-1:-1:-1;23661:219:2;-1:-1:-1;23661:219:2;-1:-1:-1;23908:28:2;;23928:7;23908:19;:28::i;:::-;-1:-1:-1;;;;;23890:15:2;;;;;;:7;:15;;;;;;;;:46;;;;23964:7;:15;;;;:28;;23984:7;23964:19;:28::i;:::-;-1:-1:-1;;;;;23946:15:2;;;;;;;:7;:15;;;;;;:46;;;;24023:18;;;;;;;:39;;24046:15;24023:22;:39::i;:::-;-1:-1:-1;;;;;24002:18:2;;;;;;:7;:18;;;;;:60;24072:26;24087:10;24072:14;:26::i;:::-;24108:23;24120:4;24126;24108:11;:23::i;:::-;24163:9;-1:-1:-1;;;;;24146:44:2;24155:6;-1:-1:-1;;;;;24146:44:2;;24174:15;24146:44;;;;;;:::i;:::-;;;;;;;;23530:667;;;;;;;;;:::o;22845:679::-;22988:15;23017:23;23054:12;23080:23;23117:12;23143:18;23174:19;23185:7;23174:10;:19::i;:::-;-1:-1:-1;;;;;23221:15:2;;;;;;:7;:15;;;;;;22974:219;;-1:-1:-1;22974:219:2;;-1:-1:-1;22974:219:2;;-1:-1:-1;22974:219:2;-1:-1:-1;22974:219:2;-1:-1:-1;22974:219:2;-1:-1:-1;23221:28:2;;22974:219;23221:19;:28::i;:::-;-1:-1:-1;;;;;23203:15:2;;;;;;;:7;:15;;;;;;;;:46;;;;23280:18;;;;;:7;:18;;;;;:39;;23303:15;23280:22;:39::i;:::-;-1:-1:-1;;;;;23259:18:2;;;;;;:7;:18;;;;;;;;:60;;;;23350:7;:18;;;;:39;;23373:15;23350:22;:39::i;22232:607::-;22373:15;22402:23;22439:12;22465:23;22502:12;22528:18;22559:19;22570:7;22559:10;:19::i;:::-;-1:-1:-1;;;;;22606:15:2;;;;;;:7;:15;;;;;;22359:219;;-1:-1:-1;22359:219:2;;-1:-1:-1;22359:219:2;;-1:-1:-1;22359:219:2;-1:-1:-1;22359:219:2;-1:-1:-1;22359:219:2;-1:-1:-1;22606:28:2;;22359:219;22606:19;:28::i;11043:737::-;11188:15;11217:23;11254:12;11280:23;11317:12;11343:18;11374:19;11385:7;11374:10;:19::i;:::-;-1:-1:-1;;;;;11421:15:2;;;;;;:7;:15;;;;;;11174:219;;-1:-1:-1;11174:219:2;;-1:-1:-1;11174:219:2;;-1:-1:-1;11174:219:2;-1:-1:-1;11174:219:2;-1:-1:-1;11174:219:2;-1:-1:-1;11421:28:2;;11441:7;11421:19;:28::i;:::-;-1:-1:-1;;;;;11403:15:2;;;;;;:7;:15;;;;;;;;:46;;;;11477:7;:15;;;;:28;;11497:7;11477:19;:28::i;16304:122::-;16357:15;;16347:7;:25;16398:21;;16382:13;:37;16304:122::o;15763:128::-;15827:7;15853:31;15878:5;15853:20;15865:7;;15853;:11;;:20;;;;:::i;15897:168::-;15991:7;16021:37;16052:5;16021:26;16033:13;;16021:7;:11;;:26;;;;:::i;19614:378::-;19657:14;19673;19754:4;-1:-1:-1;;;;;19709:50:2;:26;;;;;;;;;-1:-1:-1;;;;;19709:26:2;-1:-1:-1;;;;;19709:32:2;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;19709:50:2;;19708:129;;19832:4;19708:129;;;19775:26;;;;;;;;;-1:-1:-1;;;;;19775:26:2;-1:-1:-1;;;;;19775:32:2;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19699:138;;19902:4;-1:-1:-1;;;;;19857:50:2;:26;;;;;;;;;-1:-1:-1;;;;;19857:26:2;-1:-1:-1;;;;;19857:32:2;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;19857:50:2;;19856:129;;19980:4;19856:129;;;19923:26;;;;;;;;;-1:-1:-1;;;;;19923:26:2;-1:-1:-1;;;;;19923:32:2;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19847:138;;19614:378;;:::o;19998:405::-;20110:16;20128;20217:4;-1:-1:-1;;;;;20172:50:2;:26;;;;;;;;;-1:-1:-1;;;;;20172:26:2;-1:-1:-1;;;;;20172:32:2;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;20172:50:2;;20171:102;;20262:11;20171:102;;;20238:9;20171:102;20160:113;;20340:4;-1:-1:-1;;;;;20295:50:2;:26;;;;;;;;;-1:-1:-1;;;;;20295:26:2;-1:-1:-1;;;;;20295:32:2;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;20295:50:2;;20294:102;;20385:11;20294:102;;;20361:9;20294:102;20283:113;;19998:405;;;;;:::o;15408:349::-;15470:19;15492:10;:8;:10::i;:::-;15470:32;-1:-1:-1;15512:18:2;15533:27;:10;15470:32;15533:14;:27::i;:::-;15611:4;15595:22;;;;:7;:22;;;;;;15512:48;;-1:-1:-1;15595:38:2;;15512:48;15595:26;:38::i;:::-;15586:4;15570:22;;;;:7;:22;;;;;;;;:63;;;;15647:11;:26;;;;;;15643:107;;;15728:4;15712:22;;;;:7;:22;;;;;;:38;;15739:10;15712:26;:38::i;:::-;15703:4;15687:22;;;;:7;:22;;;;;:63;15408:349;;;:::o;12910:144::-;12987:7;;:17;;12999:4;12987:11;:17::i;:::-;12977:7;:27;13027:10;;:20;;13042:4;13027:14;:20::i;:::-;13014:10;:33;-1:-1:-1;;12910:144:2:o;14:162:17:-;82:20;;142:1;131:20;;;121:31;;111:2;;166:1;163;156:12;181:259;;293:2;281:9;272:7;268:23;264:32;261:2;;;314:6;306;299:22;261:2;358:9;345:23;377:33;404:5;377:33;:::i;445:263::-;;568:2;556:9;547:7;543:23;539:32;536:2;;;589:6;581;574:22;536:2;626:9;620:16;645:33;672:5;645:33;:::i;713:402::-;;;842:2;830:9;821:7;817:23;813:32;810:2;;;863:6;855;848:22;810:2;907:9;894:23;926:33;953:5;926:33;:::i;:::-;978:5;-1:-1:-1;1035:2:17;1020:18;;1007:32;1048:35;1007:32;1048:35;:::i;:::-;1102:7;1092:17;;;800:315;;;;;:::o;1120:470::-;;;;1266:2;1254:9;1245:7;1241:23;1237:32;1234:2;;;1287:6;1279;1272:22;1234:2;1331:9;1318:23;1350:33;1377:5;1350:33;:::i;:::-;1402:5;-1:-1:-1;1459:2:17;1444:18;;1431:32;1472:35;1431:32;1472:35;:::i;:::-;1224:366;;1526:7;;-1:-1:-1;;;1580:2:17;1565:18;;;;1552:32;;1224:366::o;1595:327::-;;;1724:2;1712:9;1703:7;1699:23;1695:32;1692:2;;;1745:6;1737;1730:22;1692:2;1789:9;1776:23;1808:33;1835:5;1808:33;:::i;:::-;1860:5;1912:2;1897:18;;;;1884:32;;-1:-1:-1;;;1682:240:17:o;1927:253::-;;2036:2;2024:9;2015:7;2011:23;2007:32;2004:2;;;2057:6;2049;2042:22;2004:2;2101:9;2088:23;2120:30;2144:5;2120:30;:::i;2185:257::-;;2305:2;2293:9;2284:7;2280:23;2276:32;2273:2;;;2326:6;2318;2311:22;2273:2;2363:9;2357:16;2382:30;2406:5;2382:30;:::i;2447:438::-;;;;2588:2;2576:9;2567:7;2563:23;2559:32;2556:2;;;2609:6;2601;2594:22;2556:2;2653:9;2640:23;2703:8;2696:5;2692:20;2685:5;2682:31;2672:2;;2732:6;2724;2717:22;2672:2;2760:5;-1:-1:-1;2784:38:17;2818:2;2803:18;;2784:38;:::i;:::-;2774:48;;2841:38;2875:2;2864:9;2860:18;2841:38;:::i;:::-;2831:48;;2546:339;;;;;:::o;2890:190::-;;3002:2;2990:9;2981:7;2977:23;2973:32;2970:2;;;3023:6;3015;3008:22;2970:2;-1:-1:-1;3051:23:17;;2960:120;-1:-1:-1;2960:120:17:o;3085:194::-;;3208:2;3196:9;3187:7;3183:23;3179:32;3176:2;;;3229:6;3221;3214:22;3176:2;-1:-1:-1;3257:16:17;;3166:113;-1:-1:-1;3166:113:17:o;3284:321::-;;;3410:2;3398:9;3389:7;3385:23;3381:32;3378:2;;;3431:6;3423;3416:22;3378:2;3472:9;3459:23;3449:33;;3532:2;3521:9;3517:18;3504:32;3545:30;3569:5;3545:30;:::i;3610:509::-;;;;;3784:3;3772:9;3763:7;3759:23;3755:33;3752:2;;;3806:6;3798;3791:22;3752:2;3840:9;3834:16;3824:26;;3893:2;3882:9;3878:18;3872:25;3937:34;3930:5;3926:46;3919:5;3916:57;3906:2;;3992:6;3984;3977:22;3906:2;4065;4050:18;;4044:25;4109:2;4094:18;;;4088:25;3742:377;;4020:5;;-1:-1:-1;3742:377:17;-1:-1:-1;;;3742:377:17:o;4124:106::-;-1:-1:-1;;;;;4192:31:17;4180:44;;4170:60::o;4235:93::-;4312:1;4301:20;4289:33;;4279:49::o;4333:94::-;4411:8;4400:20;4388:33;;4378:49::o;4432:203::-;-1:-1:-1;;;;;4596:32:17;;;;4578:51;;4566:2;4551:18;;4533:102::o;4640:274::-;-1:-1:-1;;;;;4832:32:17;;;;4814:51;;4896:2;4881:18;;4874:34;4802:2;4787:18;;4769:145::o;4919:187::-;5084:14;;5077:22;5059:41;;5047:2;5032:18;;5014:92::o;5583:603::-;;5724:2;5753;5742:9;5735:21;5785:6;5779:13;5828:6;5823:2;5812:9;5808:18;5801:34;5853:4;5866:140;5880:6;5877:1;5874:13;5866:140;;;5975:14;;;5971:23;;5965:30;5941:17;;;5960:2;5937:26;5930:66;5895:10;;5866:140;;;6024:6;6021:1;6018:13;6015:2;;;6094:4;6089:2;6080:6;6069:9;6065:22;6061:31;6054:45;6015:2;-1:-1:-1;6170:2:17;6149:15;-1:-1:-1;;6145:29:17;6130:45;;;;6177:2;6126:54;;5704:482;-1:-1:-1;;;5704:482:17:o;6191:399::-;6393:2;6375:21;;;6432:2;6412:18;;;6405:30;6471:34;6466:2;6451:18;;6444:62;-1:-1:-1;;;6537:2:17;6522:18;;6515:33;6580:3;6565:19;;6365:225::o;6595:406::-;6797:2;6779:21;;;6836:2;6816:18;;;6809:30;6875:34;6870:2;6855:18;;6848:62;-1:-1:-1;;;6941:2:17;6926:18;;6919:40;6991:3;6976:19;;6769:232::o;7006:402::-;7208:2;7190:21;;;7247:2;7227:18;;;7220:30;7286:34;7281:2;7266:18;;7259:62;-1:-1:-1;;;7352:2:17;7337:18;;7330:36;7398:3;7383:19;;7180:228::o;7413:398::-;7615:2;7597:21;;;7654:2;7634:18;;;7627:30;7693:34;7688:2;7673:18;;7666:62;-1:-1:-1;;;7759:2:17;7744:18;;7737:32;7801:3;7786:19;;7587:224::o;7816:351::-;8018:2;8000:21;;;8057:2;8037:18;;;8030:30;8096:29;8091:2;8076:18;;8069:57;8158:2;8143:18;;7990:177::o;8172:355::-;8374:2;8356:21;;;8413:2;8393:18;;;8386:30;8452:33;8447:2;8432:18;;8425:61;8518:2;8503:18;;8346:181::o;8532:404::-;8734:2;8716:21;;;8773:2;8753:18;;;8746:30;8812:34;8807:2;8792:18;;8785:62;-1:-1:-1;;;8878:2:17;8863:18;;8856:38;8926:3;8911:19;;8706:230::o;8941:356::-;9143:2;9125:21;;;9162:18;;;9155:30;9221:34;9216:2;9201:18;;9194:62;9288:2;9273:18;;9115:182::o;9302:405::-;9504:2;9486:21;;;9543:2;9523:18;;;9516:30;9582:34;9577:2;9562:18;;9555:62;-1:-1:-1;;;9648:2:17;9633:18;;9626:39;9697:3;9682:19;;9476:231::o;9712:401::-;9914:2;9896:21;;;9953:2;9933:18;;;9926:30;9992:34;9987:2;9972:18;;9965:62;-1:-1:-1;;;10058:2:17;10043:18;;10036:35;10103:3;10088:19;;9886:227::o;10118:400::-;10320:2;10302:21;;;10359:2;10339:18;;;10332:30;10398:34;10393:2;10378:18;;10371:62;-1:-1:-1;;;10464:2:17;10449:18;;10442:34;10508:3;10493:19;;10292:226::o;10523:408::-;10725:2;10707:21;;;10764:2;10744:18;;;10737:30;10803:34;10798:2;10783:18;;10776:62;-1:-1:-1;;;10869:2:17;10854:18;;10847:42;10921:3;10906:19;;10697:234::o;10936:795::-;11223:13;;-1:-1:-1;;;;;11219:22:17;;;11201:41;;11302:4;11290:17;;;11284:24;11280:33;;11258:20;;;11251:63;11374:4;11362:17;;;11356:24;11382:8;11352:39;11330:20;;;11323:69;11452:4;11440:17;;;11434:24;11430:33;;11408:20;;;11401:63;11520:4;11508:17;;;11502:24;11480:20;;;11473:54;11181:3;11571:17;;;11565:24;11543:20;;;11536:54;11646:4;11634:17;;;11628:24;11606:20;;;11599:54;11713:4;11701:17;;;11695:24;11691:33;11669:20;;;11662:63;;;;11150:3;11135:19;;11117:614::o;11736:1234::-;;11926:3;11915:9;11911:19;11903:27;;11939:46;11975:9;11966:6;11960:13;11939:46;:::i;:::-;12032:4;12024:6;12020:17;12014:24;12047:56;12097:4;12086:9;12082:20;12068:12;12047:56;:::i;:::-;;12152:4;12144:6;12140:17;12134:24;12167:57;12218:4;12207:9;12203:20;12187:14;12167:57;:::i;:::-;;12273:4;12265:6;12261:17;12255:24;12288:56;12338:4;12327:9;12323:20;12307:14;12288:56;:::i;:::-;;12393:4;12385:6;12381:17;12375:24;12408:56;12458:4;12447:9;12443:20;12427:14;12408:56;:::i;:::-;;12520:4;12512:6;12508:17;12502:24;12495:4;12484:9;12480:20;12473:54;12583:4;12575:6;12571:17;12565:24;12558:4;12547:9;12543:20;12536:54;12646:4;12638:6;12634:17;12628:24;12621:4;12610:9;12606:20;12599:54;12672:6;12732:2;12724:6;12720:15;12714:22;12709:2;12698:9;12694:18;12687:50;;12756:6;12811:2;12803:6;12799:15;12793:22;12824:56;12876:2;12865:9;12861:18;12845:14;12824:56;:::i;:::-;-1:-1:-1;;12899:6:17;12947:15;;;12941:22;12921:18;;;;12914:50;11893:1077;:::o;12975:177::-;13121:25;;;13109:2;13094:18;;13076:76::o;13157:319::-;13359:25;;;13415:2;13400:18;;13393:34;;;;13458:2;13443:18;;13436:34;13347:2;13332:18;;13314:162::o;13481:184::-;13653:4;13641:17;;;;13623:36;;13611:2;13596:18;;13578:87::o;13670:128::-;;13741:1;13737:6;13734:1;13731:13;13728:2;;;13747:18;;:::i;:::-;-1:-1:-1;13783:9:17;;13718:80::o;13803:217::-;;13869:1;13859:2;;-1:-1:-1;;;13894:31:17;;13948:4;13945:1;13938:15;13976:4;13901:1;13966:15;13859:2;-1:-1:-1;14005:9:17;;13849:171::o;14025:168::-;;14131:1;14127;14123:6;14119:14;14116:1;14113:21;14108:1;14101:9;14094:17;14090:45;14087:2;;;14138:18;;:::i;:::-;-1:-1:-1;14178:9:17;;14077:116::o;14198:125::-;;14266:1;14263;14260:8;14257:2;;;14271:18;;:::i;:::-;-1:-1:-1;14308:9:17;;14247:76::o;14328:380::-;14413:1;14403:12;;14460:1;14450:12;;;14471:2;;14525:4;14517:6;14513:17;14503:27;;14471:2;14578;14570:6;14567:14;14547:18;14544:38;14541:2;;;14624:10;14619:3;14615:20;14612:1;14605:31;14659:4;14656:1;14649:15;14687:4;14684:1;14677:15;14541:2;;14383:325;;;:::o;14713:135::-;;-1:-1:-1;;14773:17:17;;14770:2;;;14793:18;;:::i;:::-;-1:-1:-1;14840:1:17;14829:13;;14760:88::o;14853:127::-;14914:10;14909:3;14905:20;14902:1;14895:31;14945:4;14942:1;14935:15;14969:4;14966:1;14959:15;14985:133;-1:-1:-1;;;;;15062:31:17;;15052:42;;15042:2;;15108:1;15105;15098:12;15123:120;15211:5;15204:13;15197:21;15190:5;15187:32;15177:2;;15233:1;15230;15223:12

Swarm Source

ipfs://d049d4620ba0148886b8dd568a331cc64d79415e7b956b1dc5ca29393810649f
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.